1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /* -*- mode: c; c-basic-offset: 8; -*-
3 * vim: noexpandtab sw=8 ts=8 sts=0:
5 * Copyright (C) 2005 Oracle. All rights reserved.
8 #ifndef O2CLUSTER_MASKLOG_H
9 #define O2CLUSTER_MASKLOG_H
12 * For now this is a trivial wrapper around printk() that gives the critical
13 * ability to enable sets of debugging output at run-time. In the future this
14 * will almost certainly be redirected to relayfs so that it can pay a
15 * substantially lower heisenberg tax.
17 * Callers associate the message with a bitmask and a global bitmask is
18 * maintained with help from /proc. If any of the bits match the message is
21 * We must have efficient bit tests on i386 and it seems gcc still emits crazy
22 * code for the 64bit compare. It emits very good code for the dual unsigned
23 * long tests, though, completely avoiding tests that can never pass if the
24 * caller gives a constant bitmask that fills one of the longs with all 0s. So
25 * the desire is to have almost all of the calls decided on by comparing just
26 * one of the longs. This leads to having infrequently given bits that are
27 * frequently matched in the high bits.
29 * _ERROR and _NOTICE are used for messages that always go to the console and
30 * have appropriate KERN_ prefixes. We wrap these in our function instead of
31 * just calling printk() so that this can eventually make its way through
32 * relayfs along with the debugging messages. Everything else gets KERN_DEBUG.
33 * The inline tests and macro dance give GCC the opportunity to quite cleverly
34 * only emit the appropriage printk() when the caller passes in a constant
35 * mask, as is almost always the case.
37 * All this bitmask nonsense is managed from the files under
38 * /sys/fs/o2cb/logmask/. Reading the files gives a straightforward
39 * indication of which bits are allowed (allow) or denied (off/deny).
48 * Writing changes the state of a given bit and requires a strictly formatted
49 * single write() call:
51 * write(fd, "allow", 5);
53 * Echoing allow/deny/off string into the logmask files can flip the bits
54 * on or off as expected; here is the bash script for example:
56 * log_mask="/sys/fs/o2cb/log_mask"
57 * for node in ENTRY EXIT TCP MSG SOCKET ERROR NOTICE; do
58 * echo allow >"$log_mask"/"$node"
61 * The debugfs.ocfs2 tool can also flip the bits with the -l option:
63 * debugfs.ocfs2 -l TCP allow
67 #include <linux/sched.h>
69 /* bits that are frequently given and infrequently matched in the low word */
70 /* NOTE: If you add a flag, you need to also update masklog.c! */
71 #define ML_TCP 0x0000000000000001ULL /* net cluster/tcp.c */
72 #define ML_MSG 0x0000000000000002ULL /* net network messages */
73 #define ML_SOCKET 0x0000000000000004ULL /* net socket lifetime */
74 #define ML_HEARTBEAT 0x0000000000000008ULL /* hb all heartbeat tracking */
75 #define ML_HB_BIO 0x0000000000000010ULL /* hb io tracing */
76 #define ML_DLMFS 0x0000000000000020ULL /* dlm user dlmfs */
77 #define ML_DLM 0x0000000000000040ULL /* dlm general debugging */
78 #define ML_DLM_DOMAIN 0x0000000000000080ULL /* dlm domain debugging */
79 #define ML_DLM_THREAD 0x0000000000000100ULL /* dlm domain thread */
80 #define ML_DLM_MASTER 0x0000000000000200ULL /* dlm master functions */
81 #define ML_DLM_RECOVERY 0x0000000000000400ULL /* dlm master functions */
82 #define ML_DLM_GLUE 0x0000000000000800ULL /* ocfs2 dlm glue layer */
83 #define ML_VOTE 0x0000000000001000ULL /* ocfs2 node messaging */
84 #define ML_CONN 0x0000000000002000ULL /* net connection management */
85 #define ML_QUORUM 0x0000000000004000ULL /* net connection quorum */
86 #define ML_BASTS 0x0000000000008000ULL /* dlmglue asts and basts */
87 #define ML_CLUSTER 0x0000000000010000ULL /* cluster stack */
89 /* bits that are infrequently given and frequently matched in the high word */
90 #define ML_ERROR 0x1000000000000000ULL /* sent to KERN_ERR */
91 #define ML_NOTICE 0x2000000000000000ULL /* setn to KERN_NOTICE */
92 #define ML_KTHREAD 0x4000000000000000ULL /* kernel thread activity */
94 #define MLOG_INITIAL_AND_MASK (ML_ERROR|ML_NOTICE)
95 #ifndef MLOG_MASK_PREFIX
96 #define MLOG_MASK_PREFIX 0
100 * When logging is disabled, force the bit test to 0 for anything other
101 * than errors and notices, allowing gcc to remove the code completely.
102 * When enabled, allow all masks.
104 #if defined(CONFIG_OCFS2_DEBUG_MASKLOG)
105 #define ML_ALLOWED_BITS ~0
107 #define ML_ALLOWED_BITS (ML_ERROR|ML_NOTICE)
110 #define MLOG_MAX_BITS 64
113 unsigned long words
[MLOG_MAX_BITS
/ BITS_PER_LONG
];
116 extern struct mlog_bits mlog_and_bits
, mlog_not_bits
;
118 #if BITS_PER_LONG == 32
120 #define __mlog_test_u64(mask, bits) \
121 ( (u32)(mask & 0xffffffff) & bits.words[0] || \
122 ((u64)(mask) >> 32) & bits.words[1] )
123 #define __mlog_set_u64(mask, bits) do { \
124 bits.words[0] |= (u32)(mask & 0xffffffff); \
125 bits.words[1] |= (u64)(mask) >> 32; \
127 #define __mlog_clear_u64(mask, bits) do { \
128 bits.words[0] &= ~((u32)(mask & 0xffffffff)); \
129 bits.words[1] &= ~((u64)(mask) >> 32); \
131 #define MLOG_BITS_RHS(mask) { \
133 [0] = (u32)(mask & 0xffffffff), \
134 [1] = (u64)(mask) >> 32, \
138 #else /* 32bit long above, 64bit long below */
140 #define __mlog_test_u64(mask, bits) ((mask) & bits.words[0])
141 #define __mlog_set_u64(mask, bits) do { \
142 bits.words[0] |= (mask); \
144 #define __mlog_clear_u64(mask, bits) do { \
145 bits.words[0] &= ~(mask); \
147 #define MLOG_BITS_RHS(mask) { { (mask) } }
152 void __mlog_printk(const u64
*m
, const char *func
, int line
,
153 const char *fmt
, ...);
156 * Testing before the __mlog_printk call lets the compiler eliminate the
157 * call completely when (m & ML_ALLOWED_BITS) is 0.
159 #define mlog(mask, fmt, ...) \
161 u64 _m = MLOG_MASK_PREFIX | (mask); \
162 if (_m & ML_ALLOWED_BITS) \
163 __mlog_printk(&_m, __func__, __LINE__, fmt, \
167 #define mlog_ratelimited(mask, fmt, ...) \
169 static DEFINE_RATELIMIT_STATE(_rs, \
170 DEFAULT_RATELIMIT_INTERVAL, \
171 DEFAULT_RATELIMIT_BURST); \
172 if (__ratelimit(&_rs)) \
173 mlog(mask, fmt, ##__VA_ARGS__); \
176 #define mlog_errno(st) ({ \
178 if (_st != -ERESTARTSYS && _st != -EINTR && \
179 _st != AOP_TRUNCATED_PAGE && _st != -ENOSPC && \
181 mlog(ML_ERROR, "status = %lld\n", (long long)_st); \
185 #define mlog_bug_on_msg(cond, fmt, args...) do { \
187 mlog(ML_ERROR, "bug expression: " #cond "\n"); \
188 mlog(ML_ERROR, fmt, ##args); \
193 #include <linux/kobject.h>
194 #include <linux/sysfs.h>
195 int mlog_sys_init(struct kset
*o2cb_subsys
);
196 void mlog_sys_shutdown(void);
198 #endif /* O2CLUSTER_MASKLOG_H */