blob: 0fdf2f5c07ba997218d49b16cab904cf51b8432b [file] [log] [blame]
Steve Frencheccb4422018-05-17 21:16:55 -05001/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Copyright (C) 2018, Microsoft Corporation.
4 *
5 * Author(s): Steve French <stfrench@microsoft.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
15 * the GNU General Public License for more details.
16 */
17#undef TRACE_SYSTEM
18#define TRACE_SYSTEM cifs
19
20#if !defined(_CIFS_TRACE_H) || defined(TRACE_HEADER_MULTI_READ)
21#define _CIFS_TRACE_H
22
23#include <linux/tracepoint.h>
24
25/* For logging errors in read or write */
26DECLARE_EVENT_CLASS(smb3_rw_err_class,
27 TP_PROTO(unsigned int xid,
28 __u64 fid,
29 __u32 tid,
30 __u64 sesid,
31 __u64 offset,
32 __u32 len,
33 int rc),
34 TP_ARGS(xid, fid, tid, sesid, offset, len, rc),
35 TP_STRUCT__entry(
36 __field(unsigned int, xid)
37 __field(__u64, fid)
38 __field(__u32, tid)
39 __field(__u64, sesid)
40 __field(__u64, offset)
41 __field(__u32, len)
42 __field(int, rc)
43 ),
44 TP_fast_assign(
45 __entry->xid = xid;
46 __entry->fid = fid;
47 __entry->tid = tid;
48 __entry->sesid = sesid;
49 __entry->offset = offset;
50 __entry->len = len;
51 __entry->rc = rc;
52 ),
Steve Frenchd683bcd2018-05-19 02:28:53 -050053 TP_printk("\txid=%u sid=0x%llx tid=0x%x fid=0x%llx offset=0x%llx len=0x%x rc=%d",
54 __entry->xid, __entry->sesid, __entry->tid, __entry->fid,
Steve Frencheccb4422018-05-17 21:16:55 -050055 __entry->offset, __entry->len, __entry->rc)
56)
57
58#define DEFINE_SMB3_RW_ERR_EVENT(name) \
59DEFINE_EVENT(smb3_rw_err_class, smb3_##name, \
60 TP_PROTO(unsigned int xid, \
61 __u64 fid, \
62 __u32 tid, \
63 __u64 sesid, \
64 __u64 offset, \
65 __u32 len, \
66 int rc), \
67 TP_ARGS(xid, fid, tid, sesid, offset, len, rc))
68
69DEFINE_SMB3_RW_ERR_EVENT(write_err);
70DEFINE_SMB3_RW_ERR_EVENT(read_err);
71
72
73/* For logging successful read or write */
74DECLARE_EVENT_CLASS(smb3_rw_done_class,
75 TP_PROTO(unsigned int xid,
76 __u64 fid,
77 __u32 tid,
78 __u64 sesid,
79 __u64 offset,
80 __u32 len),
81 TP_ARGS(xid, fid, tid, sesid, offset, len),
82 TP_STRUCT__entry(
83 __field(unsigned int, xid)
84 __field(__u64, fid)
85 __field(__u32, tid)
86 __field(__u64, sesid)
87 __field(__u64, offset)
88 __field(__u32, len)
89 ),
90 TP_fast_assign(
91 __entry->xid = xid;
92 __entry->fid = fid;
93 __entry->tid = tid;
94 __entry->sesid = sesid;
95 __entry->offset = offset;
96 __entry->len = len;
97 ),
Steve Frenchd683bcd2018-05-19 02:28:53 -050098 TP_printk("xid=%u sid=0x%llx tid=0x%x fid=0x%llx offset=0x%llx len=0x%x",
99 __entry->xid, __entry->sesid, __entry->tid, __entry->fid,
Steve Frencheccb4422018-05-17 21:16:55 -0500100 __entry->offset, __entry->len)
101)
102
103#define DEFINE_SMB3_RW_DONE_EVENT(name) \
104DEFINE_EVENT(smb3_rw_done_class, smb3_##name, \
105 TP_PROTO(unsigned int xid, \
106 __u64 fid, \
107 __u32 tid, \
108 __u64 sesid, \
109 __u64 offset, \
110 __u32 len), \
111 TP_ARGS(xid, fid, tid, sesid, offset, len))
112
113DEFINE_SMB3_RW_DONE_EVENT(write_done);
114DEFINE_SMB3_RW_DONE_EVENT(read_done);
115
116/*
117 * For handle based calls other than read and write, and get/set info
118 */
119DECLARE_EVENT_CLASS(smb3_fd_err_class,
120 TP_PROTO(unsigned int xid,
121 __u64 fid,
122 __u32 tid,
123 __u64 sesid,
124 int rc),
125 TP_ARGS(xid, fid, tid, sesid, rc),
126 TP_STRUCT__entry(
127 __field(unsigned int, xid)
128 __field(__u64, fid)
129 __field(__u32, tid)
130 __field(__u64, sesid)
131 __field(int, rc)
132 ),
133 TP_fast_assign(
134 __entry->xid = xid;
135 __entry->fid = fid;
136 __entry->tid = tid;
137 __entry->sesid = sesid;
138 __entry->rc = rc;
139 ),
Steve Frenchd683bcd2018-05-19 02:28:53 -0500140 TP_printk("\txid=%u sid=0x%llx tid=0x%x fid=0x%llx rc=%d",
141 __entry->xid, __entry->sesid, __entry->tid, __entry->fid,
Steve Frencheccb4422018-05-17 21:16:55 -0500142 __entry->rc)
143)
144
145#define DEFINE_SMB3_FD_ERR_EVENT(name) \
146DEFINE_EVENT(smb3_fd_err_class, smb3_##name, \
147 TP_PROTO(unsigned int xid, \
148 __u64 fid, \
149 __u32 tid, \
150 __u64 sesid, \
151 int rc), \
152 TP_ARGS(xid, fid, tid, sesid, rc))
153
154DEFINE_SMB3_FD_ERR_EVENT(flush_err);
155DEFINE_SMB3_FD_ERR_EVENT(lock_err);
156DEFINE_SMB3_FD_ERR_EVENT(close_err);
157
158/*
159 * For handle based query/set info calls
160 */
161DECLARE_EVENT_CLASS(smb3_inf_err_class,
162 TP_PROTO(unsigned int xid,
163 __u64 fid,
164 __u32 tid,
165 __u64 sesid,
166 __u8 infclass,
167 __u32 type,
168 int rc),
169 TP_ARGS(xid, fid, tid, sesid, infclass, type, rc),
170 TP_STRUCT__entry(
171 __field(unsigned int, xid)
172 __field(__u64, fid)
173 __field(__u32, tid)
174 __field(__u64, sesid)
175 __field(__u8, infclass)
176 __field(__u32, type)
177 __field(int, rc)
178 ),
179 TP_fast_assign(
180 __entry->xid = xid;
181 __entry->fid = fid;
182 __entry->tid = tid;
183 __entry->sesid = sesid;
184 __entry->infclass = infclass;
185 __entry->type = type;
186 __entry->rc = rc;
187 ),
Steve Frenchd683bcd2018-05-19 02:28:53 -0500188 TP_printk("xid=%u sid=0x%llx tid=0x%x fid=0x%llx class=%u type=0x%x rc=%d",
189 __entry->xid, __entry->sesid, __entry->tid, __entry->fid,
Steve Frencheccb4422018-05-17 21:16:55 -0500190 __entry->infclass, __entry->type, __entry->rc)
191)
192
193#define DEFINE_SMB3_INF_ERR_EVENT(name) \
194DEFINE_EVENT(smb3_inf_err_class, smb3_##name, \
195 TP_PROTO(unsigned int xid, \
196 __u64 fid, \
197 __u32 tid, \
198 __u64 sesid, \
199 __u8 infclass, \
200 __u32 type, \
201 int rc), \
202 TP_ARGS(xid, fid, tid, sesid, infclass, type, rc))
203
204DEFINE_SMB3_INF_ERR_EVENT(query_info_err);
205DEFINE_SMB3_INF_ERR_EVENT(set_info_err);
206DEFINE_SMB3_INF_ERR_EVENT(fsctl_err);
207
208/*
209 * For logging SMB3 Status code and Command for responses which return errors
210 */
211DECLARE_EVENT_CLASS(smb3_cmd_err_class,
Steve Frenchd683bcd2018-05-19 02:28:53 -0500212 TP_PROTO(__u32 tid,
Steve Frencheccb4422018-05-17 21:16:55 -0500213 __u64 sesid,
214 __u16 cmd,
215 __u64 mid,
216 __u32 status,
217 int rc),
Steve Frenchd683bcd2018-05-19 02:28:53 -0500218 TP_ARGS(tid, sesid, cmd, mid, status, rc),
Steve Frencheccb4422018-05-17 21:16:55 -0500219 TP_STRUCT__entry(
Steve Frencheccb4422018-05-17 21:16:55 -0500220 __field(__u32, tid)
221 __field(__u64, sesid)
222 __field(__u16, cmd)
223 __field(__u64, mid)
224 __field(__u32, status)
225 __field(int, rc)
226 ),
227 TP_fast_assign(
Steve Frencheccb4422018-05-17 21:16:55 -0500228 __entry->tid = tid;
229 __entry->sesid = sesid;
230 __entry->cmd = cmd;
231 __entry->mid = mid;
232 __entry->status = status;
233 __entry->rc = rc;
234 ),
Steve Frenchd683bcd2018-05-19 02:28:53 -0500235 TP_printk("\tsid=0x%llx tid=0x%x cmd=%u mid=%llu status=0x%x rc=%d",
236 __entry->sesid, __entry->tid, __entry->cmd, __entry->mid,
237 __entry->status, __entry->rc)
Steve Frencheccb4422018-05-17 21:16:55 -0500238)
239
240#define DEFINE_SMB3_CMD_ERR_EVENT(name) \
241DEFINE_EVENT(smb3_cmd_err_class, smb3_##name, \
Steve Frenchd683bcd2018-05-19 02:28:53 -0500242 TP_PROTO(__u32 tid, \
Steve Frencheccb4422018-05-17 21:16:55 -0500243 __u64 sesid, \
244 __u16 cmd, \
245 __u64 mid, \
246 __u32 status, \
247 int rc), \
Steve Frenchd683bcd2018-05-19 02:28:53 -0500248 TP_ARGS(tid, sesid, cmd, mid, status, rc))
Steve Frencheccb4422018-05-17 21:16:55 -0500249
250DEFINE_SMB3_CMD_ERR_EVENT(cmd_err);
251
252DECLARE_EVENT_CLASS(smb3_cmd_done_class,
Steve Frenchd683bcd2018-05-19 02:28:53 -0500253 TP_PROTO(__u32 tid,
Steve Frencheccb4422018-05-17 21:16:55 -0500254 __u64 sesid,
255 __u16 cmd,
256 __u64 mid),
Steve Frenchd683bcd2018-05-19 02:28:53 -0500257 TP_ARGS(tid, sesid, cmd, mid),
Steve Frencheccb4422018-05-17 21:16:55 -0500258 TP_STRUCT__entry(
Steve Frencheccb4422018-05-17 21:16:55 -0500259 __field(__u32, tid)
260 __field(__u64, sesid)
261 __field(__u16, cmd)
262 __field(__u64, mid)
263 ),
264 TP_fast_assign(
Steve Frencheccb4422018-05-17 21:16:55 -0500265 __entry->tid = tid;
266 __entry->sesid = sesid;
267 __entry->cmd = cmd;
268 __entry->mid = mid;
269 ),
Steve Frenchd683bcd2018-05-19 02:28:53 -0500270 TP_printk("\tsid=0x%llx tid=0x%x cmd=%u mid=%llu",
271 __entry->sesid, __entry->tid,
Steve Frencheccb4422018-05-17 21:16:55 -0500272 __entry->cmd, __entry->mid)
273)
274
275#define DEFINE_SMB3_CMD_DONE_EVENT(name) \
276DEFINE_EVENT(smb3_cmd_done_class, smb3_##name, \
Steve Frenchd683bcd2018-05-19 02:28:53 -0500277 TP_PROTO(__u32 tid, \
Steve Frencheccb4422018-05-17 21:16:55 -0500278 __u64 sesid, \
279 __u16 cmd, \
280 __u64 mid), \
Steve Frenchd683bcd2018-05-19 02:28:53 -0500281 TP_ARGS(tid, sesid, cmd, mid))
Steve Frencheccb4422018-05-17 21:16:55 -0500282
283DEFINE_SMB3_CMD_DONE_EVENT(cmd_done);
Steve Frenche68a9322018-07-30 14:23:58 -0500284DEFINE_SMB3_CMD_DONE_EVENT(ses_expired);
Steve Frencheccb4422018-05-17 21:16:55 -0500285
Steve Frenchd683bcd2018-05-19 02:28:53 -0500286DECLARE_EVENT_CLASS(smb3_exit_err_class,
287 TP_PROTO(unsigned int xid,
288 const char *func_name,
289 int rc),
290 TP_ARGS(xid, func_name, rc),
291 TP_STRUCT__entry(
292 __field(unsigned int, xid)
293 __field(const char *, func_name)
294 __field(int, rc)
295 ),
296 TP_fast_assign(
297 __entry->xid = xid;
298 __entry->func_name = func_name;
299 __entry->rc = rc;
300 ),
301 TP_printk("\t%s: xid=%u rc=%d",
302 __entry->func_name, __entry->xid, __entry->rc)
303)
304
305#define DEFINE_SMB3_EXIT_ERR_EVENT(name) \
306DEFINE_EVENT(smb3_exit_err_class, smb3_##name, \
307 TP_PROTO(unsigned int xid, \
308 const char *func_name, \
309 int rc), \
310 TP_ARGS(xid, func_name, rc))
311
312DEFINE_SMB3_EXIT_ERR_EVENT(exit_err);
313
314DECLARE_EVENT_CLASS(smb3_enter_exit_class,
315 TP_PROTO(unsigned int xid,
316 const char *func_name),
317 TP_ARGS(xid, func_name),
318 TP_STRUCT__entry(
319 __field(unsigned int, xid)
320 __field(const char *, func_name)
321 ),
322 TP_fast_assign(
323 __entry->xid = xid;
324 __entry->func_name = func_name;
325 ),
326 TP_printk("\t%s: xid=%u",
327 __entry->func_name, __entry->xid)
328)
329
330#define DEFINE_SMB3_ENTER_EXIT_EVENT(name) \
331DEFINE_EVENT(smb3_enter_exit_class, smb3_##name, \
332 TP_PROTO(unsigned int xid, \
333 const char *func_name), \
334 TP_ARGS(xid, func_name))
335
336DEFINE_SMB3_ENTER_EXIT_EVENT(enter);
337DEFINE_SMB3_ENTER_EXIT_EVENT(exit_done);
338
Steve French28d59362018-05-30 21:42:34 -0500339/*
340 * For smb2/smb3 open call
341 */
342DECLARE_EVENT_CLASS(smb3_open_err_class,
343 TP_PROTO(unsigned int xid,
344 __u32 tid,
345 __u64 sesid,
346 int create_options,
347 int desired_access,
348 int rc),
349 TP_ARGS(xid, tid, sesid, create_options, desired_access, rc),
350 TP_STRUCT__entry(
351 __field(unsigned int, xid)
352 __field(__u32, tid)
353 __field(__u64, sesid)
354 __field(int, create_options)
355 __field(int, desired_access)
356 __field(int, rc)
357 ),
358 TP_fast_assign(
359 __entry->xid = xid;
360 __entry->tid = tid;
361 __entry->sesid = sesid;
362 __entry->create_options = create_options;
363 __entry->desired_access = desired_access;
364 __entry->rc = rc;
365 ),
366 TP_printk("xid=%u sid=0x%llx tid=0x%x cr_opts=0x%x des_access=0x%x rc=%d",
367 __entry->xid, __entry->sesid, __entry->tid,
368 __entry->create_options, __entry->desired_access, __entry->rc)
369)
370
371#define DEFINE_SMB3_OPEN_ERR_EVENT(name) \
372DEFINE_EVENT(smb3_open_err_class, smb3_##name, \
373 TP_PROTO(unsigned int xid, \
374 __u32 tid, \
375 __u64 sesid, \
376 int create_options, \
377 int desired_access, \
378 int rc), \
379 TP_ARGS(xid, tid, sesid, create_options, desired_access, rc))
380
381DEFINE_SMB3_OPEN_ERR_EVENT(open_err);
Steve Frenchbea851b2018-06-14 21:56:32 -0500382DEFINE_SMB3_OPEN_ERR_EVENT(posix_mkdir_err);
Steve French28d59362018-05-30 21:42:34 -0500383
384DECLARE_EVENT_CLASS(smb3_open_done_class,
385 TP_PROTO(unsigned int xid,
386 __u64 fid,
387 __u32 tid,
388 __u64 sesid,
389 int create_options,
390 int desired_access),
391 TP_ARGS(xid, fid, tid, sesid, create_options, desired_access),
392 TP_STRUCT__entry(
393 __field(unsigned int, xid)
394 __field(__u64, fid)
395 __field(__u32, tid)
396 __field(__u64, sesid)
397 __field(int, create_options)
398 __field(int, desired_access)
399 ),
400 TP_fast_assign(
401 __entry->xid = xid;
402 __entry->fid = fid;
403 __entry->tid = tid;
404 __entry->sesid = sesid;
405 __entry->create_options = create_options;
406 __entry->desired_access = desired_access;
407 ),
408 TP_printk("xid=%u sid=0x%llx tid=0x%x fid=0x%llx cr_opts=0x%x des_access=0x%x",
409 __entry->xid, __entry->sesid, __entry->tid, __entry->fid,
410 __entry->create_options, __entry->desired_access)
411)
412
413#define DEFINE_SMB3_OPEN_DONE_EVENT(name) \
414DEFINE_EVENT(smb3_open_done_class, smb3_##name, \
415 TP_PROTO(unsigned int xid, \
416 __u64 fid, \
417 __u32 tid, \
418 __u64 sesid, \
419 int create_options, \
420 int desired_access), \
421 TP_ARGS(xid, fid, tid, sesid, create_options, desired_access))
422
423DEFINE_SMB3_OPEN_DONE_EVENT(open_done);
Steve Frenchbea851b2018-06-14 21:56:32 -0500424DEFINE_SMB3_OPEN_DONE_EVENT(posix_mkdir_done);
Steve French28d59362018-05-30 21:42:34 -0500425
Steve Frencheccb4422018-05-17 21:16:55 -0500426#endif /* _CIFS_TRACE_H */
427
428#undef TRACE_INCLUDE_PATH
429#define TRACE_INCLUDE_PATH .
430#define TRACE_INCLUDE_FILE trace
431#include <trace/define_trace.h>