forked from linux-nvme/nvme-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogging.c
More file actions
246 lines (210 loc) · 6.09 KB
/
logging.c
File metadata and controls
246 lines (210 loc) · 6.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
// SPDX-License-Identifier: GPL-2.0-or-later
#include <inttypes.h>
#include <signal.h>
#include <stdint.h>
#include <string.h>
#include <errno.h>
#include <sys/ioctl.h>
#include <sys/syslog.h>
#include <sys/time.h>
#include <linux/types.h>
#include <libnvme.h>
#include <libnvme-mi.h>
#include <ccan/endian/endian.h>
#include "logging.h"
#include "util/sighdl.h"
#include "nvme-print.h"
struct submit_data {
struct timeval start;
struct timeval end;
};
int log_level;
static struct submit_data sb;
bool is_printable_at_level(int level)
{
return ((log_level >= level) &&
(strcmp(nvme_args.output_format, "normal") == 0));
}
int map_log_level(int verbose, bool quiet)
{
int log_level;
/*
* LOG_NOTICE is unused thus the user has to provide two 'v' for getting
* any feedback at all. Thus skip this level
*/
verbose++;
switch (verbose) {
case 0:
log_level = LOG_WARNING;
break;
case 1:
log_level = LOG_NOTICE;
break;
case 2:
log_level = LOG_INFO;
break;
default:
log_level = LOG_DEBUG;
break;
}
if (quiet)
log_level = LOG_ERR;
return log_level;
}
static void nvme_show_common(struct nvme_passthru_cmd *cmd)
{
nvme_show_key_value("opcode ", "%02x", cmd->opcode);
nvme_show_key_value("flags ", "%02x", cmd->flags);
nvme_show_key_value("rsvd1 ", "%04x", cmd->rsvd1);
nvme_show_key_value("nsid ", "%08x", cmd->nsid);
nvme_show_key_value("cdw2 ", "%08x", cmd->cdw2);
nvme_show_key_value("cdw3 ", "%08x", cmd->cdw3);
nvme_show_key_value("data_len ", "%08x", cmd->data_len);
nvme_show_key_value("metadata_len ", "%08x", cmd->metadata_len);
nvme_show_key_value("addr ", "%"PRIx64"", (uint64_t)(uintptr_t)cmd->addr);
nvme_show_key_value("metadata ", "%"PRIx64"", (uint64_t)(uintptr_t)cmd->metadata);
nvme_show_key_value("cdw10 ", "%08x", cmd->cdw10);
nvme_show_key_value("cdw11 ", "%08x", cmd->cdw11);
nvme_show_key_value("cdw12 ", "%08x", cmd->cdw12);
nvme_show_key_value("cdw13 ", "%08x", cmd->cdw13);
nvme_show_key_value("cdw14 ", "%08x", cmd->cdw14);
nvme_show_key_value("cdw15 ", "%08x", cmd->cdw15);
nvme_show_key_value("timeout_ms ", "%08x", cmd->timeout_ms);
}
static void nvme_show_command(struct nvme_passthru_cmd *cmd, int err)
{
nvme_show_common(cmd);
nvme_show_key_value("result ", "%"PRIx64"", (uint64_t)(uintptr_t)cmd->result);
nvme_show_key_value("err ", "%d", err);
}
static void nvme_show_latency(struct timeval start, struct timeval end)
{
nvme_show_key_value("latency ", "%llu us",
(unsigned long long)((end.tv_sec - start.tv_sec) * 1000000 +
(end.tv_usec - start.tv_usec)));
}
static void nvme_log_retry(int errnum)
{
if (log_level < LOG_DEBUG)
return;
printf("passthru command returned '%s'\n", nvme_strerror(errnum));
}
void *nvme_submit_entry(struct nvme_transport_handle *hdl,
struct nvme_passthru_cmd *cmd)
{
memset(&sb, 0, sizeof(sb));
if (log_level >= LOG_DEBUG)
gettimeofday(&sb.start, NULL);
return &sb;
}
void nvme_submit_exit(struct nvme_transport_handle *hdl,
struct nvme_passthru_cmd *cmd, int err, void *user_data)
{
struct submit_data *sb = user_data;
if (log_level >= LOG_DEBUG) {
gettimeofday(&sb->end, NULL);
nvme_show_command(cmd, err);
nvme_show_latency(sb->start, sb->end);
}
}
bool nvme_decide_retry(struct nvme_transport_handle *hdl,
struct nvme_passthru_cmd *cmd, int err)
{
if (!nvme_args.no_retries)
return false;
if (err != -EAGAIN ||
!(err == -EINTR && !nvme_sigint_received))
return false;
nvme_log_retry(errno);
return true;
}
static void nvme_show_req_admin(const struct nvme_mi_admin_req_hdr *hdr, size_t hdr_len,
const void *data, size_t data_len)
{
struct nvme_passthru_cmd cmd = {
.opcode = hdr->opcode,
.flags = hdr->flags,
.nsid = le32_to_cpu(hdr->cdw1),
.cdw2 = le32_to_cpu(hdr->cdw2),
.cdw3 = le32_to_cpu(hdr->cdw3),
.addr = (uint64_t)(uintptr_t)data,
.data_len = data_len,
.cdw10 = le32_to_cpu(hdr->cdw10),
.cdw11 = le32_to_cpu(hdr->cdw11),
.cdw12 = le32_to_cpu(hdr->cdw12),
.cdw13 = le32_to_cpu(hdr->cdw13),
.cdw14 = le32_to_cpu(hdr->cdw14),
.cdw15 = le32_to_cpu(hdr->cdw15),
};
nvme_show_common(&cmd);
nvme_show_key_value("doff ", "%08x", le32_to_cpu(hdr->doff));
nvme_show_key_value("dlen ", "%08x", le32_to_cpu(hdr->dlen));
}
static void nvme_show_req(__u8 type, const struct nvme_mi_msg_hdr *hdr, size_t hdr_len,
const void *data, size_t data_len)
{
if (type != NVME_MI_MSGTYPE_NVME)
return;
switch (hdr->nmp >> 3 & 0xf) {
case NVME_MI_MT_CONTROL:
break;
case NVME_MI_MT_MI:
break;
case NVME_MI_MT_ADMIN:
nvme_show_req_admin((struct nvme_mi_admin_req_hdr *)hdr, hdr_len, data, data_len);
break;
case NVME_MI_MT_PCIE:
break;
case NVME_MI_MT_AE:
break;
default:
break;
}
}
void *nvme_mi_submit_entry(__u8 type, const struct nvme_mi_msg_hdr *hdr, size_t hdr_len,
const void *data, size_t data_len)
{
memset(&sb, 0, sizeof(sb));
if (log_level >= LOG_DEBUG) {
nvme_show_req(type, hdr, hdr_len, data, data_len);
gettimeofday(&sb.start, NULL);
}
return &sb;
}
static void nvme_show_resp_admin(const struct nvme_mi_admin_resp_hdr *hdr, size_t hdr_len,
const void *data, size_t data_len)
{
printf("result : %08x\n", le32_to_cpu(hdr->cdw0));
printf("err : %d\n", hdr->status);
}
static void nvme_show_resp(__u8 type, const struct nvme_mi_msg_hdr *hdr, size_t hdr_len,
const void *data, size_t data_len)
{
if (type != NVME_MI_MSGTYPE_NVME)
return;
switch (hdr->nmp >> 3 & 0xf) {
case NVME_MI_MT_CONTROL:
break;
case NVME_MI_MT_MI:
break;
case NVME_MI_MT_ADMIN:
nvme_show_resp_admin((struct nvme_mi_admin_resp_hdr *)hdr, hdr_len, data, data_len);
break;
case NVME_MI_MT_PCIE:
break;
case NVME_MI_MT_AE:
break;
default:
break;
}
}
void nvme_mi_submit_exit(__u8 type, const struct nvme_mi_msg_hdr *hdr, size_t hdr_len,
const void *data, size_t data_len, void *user_data)
{
struct submit_data *sb = user_data;
if (log_level >= LOG_DEBUG) {
gettimeofday(&sb->end, NULL);
nvme_show_resp(type, hdr, hdr_len, data, data_len);
nvme_show_latency(sb->start, sb->end);
}
}