Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * |
| 4 | * Copyright (c) International Business Machines Corp., 2000,2002 |
| 5 | * Modified by Steve French (sfrench@us.ibm.com) |
Steve French | 929be90 | 2021-06-18 00:31:49 -0500 | [diff] [blame] | 6 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | |
| 8 | #ifndef _H_CIFS_DEBUG |
| 9 | #define _H_CIFS_DEBUG |
| 10 | |
Joe Perches | a0a3036 | 2020-04-14 22:42:53 -0700 | [diff] [blame] | 11 | #ifdef pr_fmt |
| 12 | #undef pr_fmt |
| 13 | #endif |
| 14 | |
| 15 | #define pr_fmt(fmt) "CIFS: " fmt |
| 16 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | void cifs_dump_mem(char *label, void *data, int length); |
Ronnie Sahlberg | 14547f7 | 2018-04-22 14:45:53 -0600 | [diff] [blame] | 18 | void cifs_dump_detail(void *buf, struct TCP_Server_Info *ptcp_info); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 19 | void cifs_dump_mids(struct TCP_Server_Info *); |
Kees Cook | 1404297 | 2016-03-17 14:22:54 -0700 | [diff] [blame] | 20 | extern bool traceSMB; /* flag which enables the function below */ |
Pavel Shilovsky | 792af7b | 2012-03-23 14:28:02 -0400 | [diff] [blame] | 21 | void dump_smb(void *, int); |
Steve French | 1047abc | 2005-10-11 19:58:06 -0700 | [diff] [blame] | 22 | #define CIFS_INFO 0x01 |
Steve French | 13cd4b7 | 2010-10-07 18:46:32 +0000 | [diff] [blame] | 23 | #define CIFS_RC 0x02 |
Steve French | 1047abc | 2005-10-11 19:58:06 -0700 | [diff] [blame] | 24 | #define CIFS_TIMER 0x04 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 26 | #define VFS 1 |
| 27 | #define FYI 2 |
Joe Perches | bde9819 | 2012-12-05 12:42:47 -0800 | [diff] [blame] | 28 | extern int cifsFYI; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 29 | #ifdef CONFIG_CIFS_DEBUG2 |
| 30 | #define NOISY 4 |
| 31 | #else |
| 32 | #define NOISY 0 |
| 33 | #endif |
Aurelien Aptel | f2f176b | 2018-04-10 17:01:13 +0200 | [diff] [blame] | 34 | #define ONCE 8 |
Joe Perches | bde9819 | 2012-12-05 12:42:47 -0800 | [diff] [blame] | 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | /* |
| 37 | * debug ON |
| 38 | * -------- |
| 39 | */ |
Joe Perches | 471b1f9 | 2012-12-05 12:42:58 -0800 | [diff] [blame] | 40 | #ifdef CONFIG_CIFS_DEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Steve French | 8c1beb9 | 2018-10-07 13:52:18 -0500 | [diff] [blame] | 42 | |
| 43 | /* |
| 44 | * When adding tracepoints and debug messages we have various choices. |
| 45 | * Some considerations: |
| 46 | * |
| 47 | * Use cifs_dbg(VFS, ...) for things we always want logged, and the user to see |
| 48 | * cifs_info(...) slightly less important, admin can filter via loglevel > 6 |
| 49 | * cifs_dbg(FYI, ...) minor debugging messages, off by default |
| 50 | * trace_smb3_* ftrace functions are preferred for complex debug messages |
| 51 | * intended for developers or experienced admins, off by default |
| 52 | */ |
| 53 | |
Rodrigo Freire | 9a0efec | 2018-10-07 12:21:25 -0300 | [diff] [blame] | 54 | /* Information level messages, minor events */ |
Joe Perches | a0a3036 | 2020-04-14 22:42:53 -0700 | [diff] [blame] | 55 | #define cifs_info_func(ratefunc, fmt, ...) \ |
| 56 | pr_info_ ## ratefunc(fmt, ##__VA_ARGS__) |
Rodrigo Freire | 9a0efec | 2018-10-07 12:21:25 -0300 | [diff] [blame] | 57 | |
Joe Perches | a0a3036 | 2020-04-14 22:42:53 -0700 | [diff] [blame] | 58 | #define cifs_info(fmt, ...) \ |
| 59 | cifs_info_func(ratelimited, fmt, ##__VA_ARGS__) |
Rodrigo Freire | 9a0efec | 2018-10-07 12:21:25 -0300 | [diff] [blame] | 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | /* information message: e.g., configuration, major event */ |
Joe Perches | a0a3036 | 2020-04-14 22:42:53 -0700 | [diff] [blame] | 62 | #define cifs_dbg_func(ratefunc, type, fmt, ...) \ |
| 63 | do { \ |
| 64 | if ((type) & FYI && cifsFYI & CIFS_INFO) { \ |
| 65 | pr_debug_ ## ratefunc("%s: " fmt, \ |
| 66 | __FILE__, ##__VA_ARGS__); \ |
| 67 | } else if ((type) & VFS) { \ |
| 68 | pr_err_ ## ratefunc("VFS: " fmt, ##__VA_ARGS__); \ |
| 69 | } else if ((type) & NOISY && (NOISY != 0)) { \ |
| 70 | pr_debug_ ## ratefunc(fmt, ##__VA_ARGS__); \ |
| 71 | } \ |
Aurelien Aptel | f2f176b | 2018-04-10 17:01:13 +0200 | [diff] [blame] | 72 | } while (0) |
| 73 | |
Joe Perches | a0a3036 | 2020-04-14 22:42:53 -0700 | [diff] [blame] | 74 | #define cifs_dbg(type, fmt, ...) \ |
| 75 | do { \ |
| 76 | if ((type) & ONCE) \ |
| 77 | cifs_dbg_func(once, type, fmt, ##__VA_ARGS__); \ |
| 78 | else \ |
| 79 | cifs_dbg_func(ratelimited, type, fmt, ##__VA_ARGS__); \ |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 80 | } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
Joe Perches | a0a3036 | 2020-04-14 22:42:53 -0700 | [diff] [blame] | 82 | #define cifs_server_dbg_func(ratefunc, type, fmt, ...) \ |
| 83 | do { \ |
| 84 | const char *sn = ""; \ |
| 85 | if (server && server->hostname) \ |
| 86 | sn = server->hostname; \ |
| 87 | if ((type) & FYI && cifsFYI & CIFS_INFO) { \ |
| 88 | pr_debug_ ## ratefunc("%s: \\\\%s " fmt, \ |
| 89 | __FILE__, sn, ##__VA_ARGS__); \ |
| 90 | } else if ((type) & VFS) { \ |
| 91 | pr_err_ ## ratefunc("VFS: \\\\%s " fmt, \ |
| 92 | sn, ##__VA_ARGS__); \ |
| 93 | } else if ((type) & NOISY && (NOISY != 0)) { \ |
| 94 | pr_debug_ ## ratefunc("\\\\%s " fmt, \ |
| 95 | sn, ##__VA_ARGS__); \ |
| 96 | } \ |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 97 | } while (0) |
| 98 | |
Joe Perches | a0a3036 | 2020-04-14 22:42:53 -0700 | [diff] [blame] | 99 | #define cifs_server_dbg(type, fmt, ...) \ |
| 100 | do { \ |
| 101 | if ((type) & ONCE) \ |
| 102 | cifs_server_dbg_func(once, type, fmt, ##__VA_ARGS__); \ |
| 103 | else \ |
| 104 | cifs_server_dbg_func(ratelimited, type, fmt, \ |
| 105 | ##__VA_ARGS__); \ |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 106 | } while (0) |
| 107 | |
Joe Perches | a0a3036 | 2020-04-14 22:42:53 -0700 | [diff] [blame] | 108 | #define cifs_tcon_dbg_func(ratefunc, type, fmt, ...) \ |
| 109 | do { \ |
| 110 | const char *tn = ""; \ |
| 111 | if (tcon && tcon->treeName) \ |
| 112 | tn = tcon->treeName; \ |
| 113 | if ((type) & FYI && cifsFYI & CIFS_INFO) { \ |
| 114 | pr_debug_ ## ratefunc("%s: %s " fmt, \ |
| 115 | __FILE__, tn, ##__VA_ARGS__); \ |
| 116 | } else if ((type) & VFS) { \ |
| 117 | pr_err_ ## ratefunc("VFS: %s " fmt, tn, ##__VA_ARGS__); \ |
| 118 | } else if ((type) & NOISY && (NOISY != 0)) { \ |
| 119 | pr_debug_ ## ratefunc("%s " fmt, tn, ##__VA_ARGS__); \ |
| 120 | } \ |
Ronnie Sahlberg | 3175eb9 | 2019-09-04 12:32:41 +1000 | [diff] [blame] | 121 | } while (0) |
| 122 | |
Joe Perches | a0a3036 | 2020-04-14 22:42:53 -0700 | [diff] [blame] | 123 | #define cifs_tcon_dbg(type, fmt, ...) \ |
| 124 | do { \ |
| 125 | if ((type) & ONCE) \ |
| 126 | cifs_tcon_dbg_func(once, type, fmt, ##__VA_ARGS__); \ |
| 127 | else \ |
| 128 | cifs_tcon_dbg_func(ratelimited, type, fmt, \ |
| 129 | ##__VA_ARGS__); \ |
Ronnie Sahlberg | 3175eb9 | 2019-09-04 12:32:41 +1000 | [diff] [blame] | 130 | } while (0) |
| 131 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | /* |
| 133 | * debug OFF |
| 134 | * --------- |
| 135 | */ |
| 136 | #else /* _CIFS_DEBUG */ |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 137 | #define cifs_dbg(type, fmt, ...) \ |
Joe Perches | bde9819 | 2012-12-05 12:42:47 -0800 | [diff] [blame] | 138 | do { \ |
| 139 | if (0) \ |
Andy Shevchenko | 0b456f0 | 2014-08-27 16:49:44 +0300 | [diff] [blame] | 140 | pr_debug(fmt, ##__VA_ARGS__); \ |
Joe Perches | bde9819 | 2012-12-05 12:42:47 -0800 | [diff] [blame] | 141 | } while (0) |
Rodrigo Freire | 9a0efec | 2018-10-07 12:21:25 -0300 | [diff] [blame] | 142 | |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 143 | #define cifs_server_dbg(type, fmt, ...) \ |
| 144 | do { \ |
| 145 | if (0) \ |
Ronnie Sahlberg | 3175eb9 | 2019-09-04 12:32:41 +1000 | [diff] [blame] | 146 | pr_debug("\\\\%s " fmt, \ |
Ronnie Sahlberg | afe6f65 | 2019-08-28 17:15:35 +1000 | [diff] [blame] | 147 | server->hostname, ##__VA_ARGS__); \ |
| 148 | } while (0) |
| 149 | |
Ronnie Sahlberg | 3175eb9 | 2019-09-04 12:32:41 +1000 | [diff] [blame] | 150 | #define cifs_tcon_dbg(type, fmt, ...) \ |
| 151 | do { \ |
| 152 | if (0) \ |
| 153 | pr_debug("%s " fmt, tcon->treeName, ##__VA_ARGS__); \ |
| 154 | } while (0) |
| 155 | |
Rodrigo Freire | 9a0efec | 2018-10-07 12:21:25 -0300 | [diff] [blame] | 156 | #define cifs_info(fmt, ...) \ |
Joe Perches | a0a3036 | 2020-04-14 22:42:53 -0700 | [diff] [blame] | 157 | pr_info(fmt, ##__VA_ARGS__) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 158 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
| 160 | #endif /* _H_CIFS_DEBUG */ |