blob: b76d077861077a59bf7c6ededd187e45e6cc1eb2 [file] [log] [blame]
Zach Brown52fd3d62005-12-15 14:31:23 -08001/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * Copyright (C) 2005 Oracle. All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public
17 * License along with this program; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 021110-1307, USA.
20 */
21
22#ifndef O2CLUSTER_MASKLOG_H
23#define O2CLUSTER_MASKLOG_H
24
25/*
26 * For now this is a trivial wrapper around printk() that gives the critical
27 * ability to enable sets of debugging output at run-time. In the future this
28 * will almost certainly be redirected to relayfs so that it can pay a
29 * substantially lower heisenberg tax.
30 *
31 * Callers associate the message with a bitmask and a global bitmask is
32 * maintained with help from /proc. If any of the bits match the message is
33 * output.
34 *
35 * We must have efficient bit tests on i386 and it seems gcc still emits crazy
36 * code for the 64bit compare. It emits very good code for the dual unsigned
37 * long tests, though, completely avoiding tests that can never pass if the
38 * caller gives a constant bitmask that fills one of the longs with all 0s. So
39 * the desire is to have almost all of the calls decided on by comparing just
40 * one of the longs. This leads to having infrequently given bits that are
41 * frequently matched in the high bits.
42 *
43 * _ERROR and _NOTICE are used for messages that always go to the console and
44 * have appropriate KERN_ prefixes. We wrap these in our function instead of
45 * just calling printk() so that this can eventually make its way through
46 * relayfs along with the debugging messages. Everything else gets KERN_DEBUG.
47 * The inline tests and macro dance give GCC the opportunity to quite cleverly
48 * only emit the appropriage printk() when the caller passes in a constant
49 * mask, as is almost always the case.
50 *
Coly Li2b53bc72009-05-05 20:03:28 +080051 * All this bitmask nonsense is managed from the files under
52 * /sys/fs/o2cb/logmask/. Reading the files gives a straightforward
53 * indication of which bits are allowed (allow) or denied (off/deny).
54 * ENTRY deny
55 * EXIT deny
Zach Brown52fd3d62005-12-15 14:31:23 -080056 * TCP off
57 * MSG off
58 * SOCKET off
Coly Li2b53bc72009-05-05 20:03:28 +080059 * ERROR allow
60 * NOTICE allow
Zach Brown52fd3d62005-12-15 14:31:23 -080061 *
62 * Writing changes the state of a given bit and requires a strictly formatted
63 * single write() call:
64 *
Coly Li2b53bc72009-05-05 20:03:28 +080065 * write(fd, "allow", 5);
Zach Brown52fd3d62005-12-15 14:31:23 -080066 *
Coly Li2b53bc72009-05-05 20:03:28 +080067 * Echoing allow/deny/off string into the logmask files can flip the bits
68 * on or off as expected; here is the bash script for example:
Zach Brown52fd3d62005-12-15 14:31:23 -080069 *
Coly Li2b53bc72009-05-05 20:03:28 +080070 * log_mask="/sys/fs/o2cb/log_mask"
71 * for node in ENTRY EXIT TCP MSG SOCKET ERROR NOTICE; do
72 * echo allow >"$log_mask"/"$node"
73 * done
Zach Brown52fd3d62005-12-15 14:31:23 -080074 *
Coly Li2b53bc72009-05-05 20:03:28 +080075 * The debugfs.ocfs2 tool can also flip the bits with the -l option:
76 *
77 * debugfs.ocfs2 -l TCP allow
Zach Brown52fd3d62005-12-15 14:31:23 -080078 */
79
80/* for task_struct */
81#include <linux/sched.h>
82
83/* bits that are frequently given and infrequently matched in the low word */
Sunil Mushran41b41a22010-12-09 18:20:38 -080084/* NOTE: If you add a flag, you need to also update masklog.c! */
Zach Brown52fd3d62005-12-15 14:31:23 -080085#define ML_TCP 0x0000000000000004ULL /* net cluster/tcp.c */
86#define ML_MSG 0x0000000000000008ULL /* net network messages */
87#define ML_SOCKET 0x0000000000000010ULL /* net socket lifetime */
88#define ML_HEARTBEAT 0x0000000000000020ULL /* hb all heartbeat tracking */
89#define ML_HB_BIO 0x0000000000000040ULL /* hb io tracing */
90#define ML_DLMFS 0x0000000000000080ULL /* dlm user dlmfs */
91#define ML_DLM 0x0000000000000100ULL /* dlm general debugging */
92#define ML_DLM_DOMAIN 0x0000000000000200ULL /* dlm domain debugging */
93#define ML_DLM_THREAD 0x0000000000000400ULL /* dlm domain thread */
94#define ML_DLM_MASTER 0x0000000000000800ULL /* dlm master functions */
95#define ML_DLM_RECOVERY 0x0000000000001000ULL /* dlm master functions */
96#define ML_AIO 0x0000000000002000ULL /* ocfs2 aio read and write */
97#define ML_JOURNAL 0x0000000000004000ULL /* ocfs2 journalling functions */
Zach Brown52fd3d62005-12-15 14:31:23 -080098#define ML_SUPER 0x0000000000010000ULL /* ocfs2 mount / umount */
Zach Brown52fd3d62005-12-15 14:31:23 -080099#define ML_EXTENT_MAP 0x0000000000040000ULL /* ocfs2 extent map caching */
100#define ML_DLM_GLUE 0x0000000000080000ULL /* ocfs2 dlm glue layer */
101#define ML_BH_IO 0x0000000000100000ULL /* ocfs2 buffer I/O */
102#define ML_UPTODATE 0x0000000000200000ULL /* ocfs2 caching sequence #'s */
103#define ML_NAMEI 0x0000000000400000ULL /* ocfs2 directory / namespace */
Zach Brown52fd3d62005-12-15 14:31:23 -0800104#define ML_VOTE 0x0000000001000000ULL /* ocfs2 node messaging */
105#define ML_DCACHE 0x0000000002000000ULL /* ocfs2 dcache operations */
106#define ML_CONN 0x0000000004000000ULL /* net connection management */
107#define ML_QUORUM 0x0000000008000000ULL /* net connection quorum */
108#define ML_EXPORT 0x0000000010000000ULL /* ocfs2 export operations */
Tao Maf56654c2008-08-18 17:38:48 +0800109#define ML_XATTR 0x0000000020000000ULL /* ocfs2 extended attributes */
Jan Kara9e33d692008-08-25 19:56:50 +0200110#define ML_QUOTA 0x0000000040000000ULL /* ocfs2 quota operations */
Sunil Mushran41b41a22010-12-09 18:20:38 -0800111#define ML_BASTS 0x0000000100000000ULL /* dlmglue asts and basts */
112#define ML_RESERVATIONS 0x0000000200000000ULL /* ocfs2 alloc reservations */
113#define ML_CLUSTER 0x0000000400000000ULL /* cluster stack */
114
Zach Brown52fd3d62005-12-15 14:31:23 -0800115/* bits that are infrequently given and frequently matched in the high word */
Sunil Mushran41b41a22010-12-09 18:20:38 -0800116#define ML_ERROR 0x1000000000000000ULL /* sent to KERN_ERR */
117#define ML_NOTICE 0x2000000000000000ULL /* setn to KERN_NOTICE */
118#define ML_KTHREAD 0x4000000000000000ULL /* kernel thread activity */
Zach Brown52fd3d62005-12-15 14:31:23 -0800119
120#define MLOG_INITIAL_AND_MASK (ML_ERROR|ML_NOTICE)
Zach Brown52fd3d62005-12-15 14:31:23 -0800121#ifndef MLOG_MASK_PREFIX
122#define MLOG_MASK_PREFIX 0
123#endif
124
Joel Becker2b388c62006-05-10 18:28:59 -0700125/*
126 * When logging is disabled, force the bit test to 0 for anything other
127 * than errors and notices, allowing gcc to remove the code completely.
128 * When enabled, allow all masks.
129 */
130#if defined(CONFIG_OCFS2_DEBUG_MASKLOG)
131#define ML_ALLOWED_BITS ~0
132#else
133#define ML_ALLOWED_BITS (ML_ERROR|ML_NOTICE)
134#endif
135
Zach Brown52fd3d62005-12-15 14:31:23 -0800136#define MLOG_MAX_BITS 64
137
138struct mlog_bits {
139 unsigned long words[MLOG_MAX_BITS / BITS_PER_LONG];
140};
141
142extern struct mlog_bits mlog_and_bits, mlog_not_bits;
143
144#if BITS_PER_LONG == 32
145
146#define __mlog_test_u64(mask, bits) \
147 ( (u32)(mask & 0xffffffff) & bits.words[0] || \
148 ((u64)(mask) >> 32) & bits.words[1] )
149#define __mlog_set_u64(mask, bits) do { \
150 bits.words[0] |= (u32)(mask & 0xffffffff); \
151 bits.words[1] |= (u64)(mask) >> 32; \
152} while (0)
153#define __mlog_clear_u64(mask, bits) do { \
154 bits.words[0] &= ~((u32)(mask & 0xffffffff)); \
155 bits.words[1] &= ~((u64)(mask) >> 32); \
156} while (0)
157#define MLOG_BITS_RHS(mask) { \
158 { \
159 [0] = (u32)(mask & 0xffffffff), \
160 [1] = (u64)(mask) >> 32, \
161 } \
162}
163
164#else /* 32bit long above, 64bit long below */
165
166#define __mlog_test_u64(mask, bits) ((mask) & bits.words[0])
167#define __mlog_set_u64(mask, bits) do { \
168 bits.words[0] |= (mask); \
169} while (0)
170#define __mlog_clear_u64(mask, bits) do { \
171 bits.words[0] &= ~(mask); \
172} while (0)
173#define MLOG_BITS_RHS(mask) { { (mask) } }
174
175#endif
176
177/*
178 * smp_processor_id() "helpfully" screams when called outside preemptible
179 * regions in current kernels. sles doesn't have the variants that don't
180 * scream. just do this instead of trying to guess which we're building
181 * against.. *sigh*.
182 */
183#define __mlog_cpu_guess ({ \
184 unsigned long _cpu = get_cpu(); \
185 put_cpu(); \
186 _cpu; \
187})
188
189/* In the following two macros, the whitespace after the ',' just
190 * before ##args is intentional. Otherwise, gcc 2.95 will eat the
191 * previous token if args expands to nothing.
192 */
193#define __mlog_printk(level, fmt, args...) \
Sunil Mushran8545e032010-02-12 14:09:06 -0800194 printk(level "(%s,%u,%lu):%s:%d " fmt, current->comm, \
195 task_pid_nr(current), __mlog_cpu_guess, \
196 __PRETTY_FUNCTION__, __LINE__ , ##args)
Zach Brown52fd3d62005-12-15 14:31:23 -0800197
198#define mlog(mask, fmt, args...) do { \
199 u64 __m = MLOG_MASK_PREFIX | (mask); \
Joel Becker2b388c62006-05-10 18:28:59 -0700200 if ((__m & ML_ALLOWED_BITS) && \
201 __mlog_test_u64(__m, mlog_and_bits) && \
Zach Brown52fd3d62005-12-15 14:31:23 -0800202 !__mlog_test_u64(__m, mlog_not_bits)) { \
203 if (__m & ML_ERROR) \
204 __mlog_printk(KERN_ERR, "ERROR: "fmt , ##args); \
205 else if (__m & ML_NOTICE) \
206 __mlog_printk(KERN_NOTICE, fmt , ##args); \
207 else __mlog_printk(KERN_INFO, fmt , ##args); \
208 } \
209} while (0)
210
211#define mlog_errno(st) do { \
212 int _st = (st); \
213 if (_st != -ERESTARTSYS && _st != -EINTR && \
Mark Fashehef9f86c2007-11-19 18:31:17 -0800214 _st != AOP_TRUNCATED_PAGE && _st != -ENOSPC) \
Zach Brown52fd3d62005-12-15 14:31:23 -0800215 mlog(ML_ERROR, "status = %lld\n", (long long)_st); \
216} while (0)
217
Zach Brown52fd3d62005-12-15 14:31:23 -0800218#define mlog_bug_on_msg(cond, fmt, args...) do { \
219 if (cond) { \
220 mlog(ML_ERROR, "bug expression: " #cond "\n"); \
221 mlog(ML_ERROR, fmt, ##args); \
222 BUG(); \
223 } \
224} while (0)
225
Zach Brown52fd3d62005-12-15 14:31:23 -0800226#include <linux/kobject.h>
227#include <linux/sysfs.h>
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -0700228int mlog_sys_init(struct kset *o2cb_subsys);
Zach Brown52fd3d62005-12-15 14:31:23 -0800229void mlog_sys_shutdown(void);
230
231#endif /* O2CLUSTER_MASKLOG_H */