Whamcloud - gitweb
cd9a9fb51859462e59becd19cda0b970d9b819e5
[fs/lustre-release.git] / libcfs / libcfs / tracefile.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #ifndef __LIBCFS_TRACEFILE_H__
34 #define __LIBCFS_TRACEFILE_H__
35
36 #include <libcfs/libcfs.h>
37
38 #define TRACEFILE_NAME_SIZE 1024
39 extern char      cfs_tracefile[TRACEFILE_NAME_SIZE];
40 extern long long cfs_tracefile_size;
41
42 /**
43  * The path of debug log dump upcall script.
44  */
45 extern char lnet_debug_log_upcall[1024];
46
47 extern void libcfs_run_debug_log_upcall(char *file);
48
49 int cfs_tracefile_dump_all_pages(char *filename);
50 void cfs_trace_debug_print(void);
51 void cfs_trace_flush_pages(void);
52 int cfs_trace_start_thread(void);
53 void cfs_trace_stop_thread(void);
54 int cfs_tracefile_init(int max_pages);
55 void cfs_tracefile_exit(void);
56
57
58
59 int cfs_trace_copyin_string(char *knl_buffer, int knl_buffer_nob,
60                             const char __user *usr_buffer, int usr_buffer_nob);
61 int cfs_trace_copyout_string(char __user *usr_buffer, int usr_buffer_nob,
62                              const char *knl_str, char *append);
63 int cfs_trace_allocate_string_buffer(char **str, int nob);
64 int cfs_trace_dump_debug_buffer_usrstr(void __user *usr_str, int usr_str_nob);
65 int cfs_trace_daemon_command(char *str);
66 int cfs_trace_daemon_command_usrstr(void __user *usr_str, int usr_str_nob);
67 int cfs_trace_set_debug_mb(int mb);
68 int cfs_trace_get_debug_mb(void);
69
70 extern void libcfs_debug_dumplog_internal(void *arg);
71 extern int  libcfs_panic_in_progress;
72
73 #define TCD_MAX_PAGES (5 << (20 - PAGE_SHIFT))
74 #define TCD_STOCK_PAGES (TCD_MAX_PAGES)
75 #define CFS_TRACEFILE_SIZE (500 << 20)
76
77 union cfs_trace_data_union {
78         struct cfs_trace_cpu_data {
79                 /*
80                  * Even though this structure is meant to be per-CPU, locking
81                  * is needed because in some places the data may be accessed
82                  * from other CPUs. This lock is directly used in trace_get_tcd
83                  * and trace_put_tcd, which are called in libcfs_debug_msg and
84                  * tcd_for_each_type_lock
85                  */
86                 spinlock_t              tcd_lock;
87                 unsigned long           tcd_lock_flags;
88
89                 /*
90                  * pages with trace records not yet processed by tracefiled.
91                  */
92                 struct list_head        tcd_pages;
93                 /* number of pages on ->tcd_pages */
94                 unsigned long           tcd_cur_pages;
95
96                 /*
97                  * pages with trace records already processed by
98                  * tracefiled. These pages are kept in memory, so that some
99                  * portion of log can be written in the event of LBUG. This
100                  * list is maintained in LRU order.
101                  *
102                  * Pages are moved to ->tcd_daemon_pages by tracefiled()
103                  * (put_pages_on_daemon_list()). LRU pages from this list are
104                  * discarded when list grows too large.
105                  */
106                 struct list_head        tcd_daemon_pages;
107                 /* number of pages on ->tcd_daemon_pages */
108                 unsigned long           tcd_cur_daemon_pages;
109
110                 /*
111                  * Maximal number of pages allowed on ->tcd_pages and
112                  * ->tcd_daemon_pages each.
113                  * Always TCD_MAX_PAGES * tcd_pages_factor / 100 in current
114                  * implementation.
115                  */
116                 unsigned long           tcd_max_pages;
117
118                 /*
119                  * preallocated pages to write trace records into. Pages from
120                  * ->tcd_stock_pages are moved to ->tcd_pages by
121                  * portals_debug_msg().
122                  *
123                  * This list is necessary, because on some platforms it's
124                  * impossible to perform efficient atomic page allocation in a
125                  * non-blockable context.
126                  *
127                  * Such platforms fill ->tcd_stock_pages "on occasion", when
128                  * tracing code is entered in blockable context.
129                  *
130                  * trace_get_tage_try() tries to get a page from
131                  * ->tcd_stock_pages first and resorts to atomic page
132                  * allocation only if this queue is empty. ->tcd_stock_pages
133                  * is replenished when tracing code is entered in blocking
134                  * context (darwin-tracefile.c:trace_get_tcd()). We try to
135                  * maintain TCD_STOCK_PAGES (40 by default) pages in this
136                  * queue. Atomic allocation is only required if more than
137                  * TCD_STOCK_PAGES pagesful are consumed by trace records all
138                  * emitted in non-blocking contexts. Which is quite unlikely.
139                  */
140                 struct list_head        tcd_stock_pages;
141                 /* number of pages on ->tcd_stock_pages */
142                 unsigned long           tcd_cur_stock_pages;
143
144                 unsigned short          tcd_shutting_down;
145                 unsigned short          tcd_cpu;
146                 unsigned short          tcd_type;
147                 /* The factors to share debug memory. */
148                 unsigned short          tcd_pages_factor;
149         } tcd;
150         char __pad[L1_CACHE_ALIGN(sizeof(struct cfs_trace_cpu_data))];
151 };
152
153 /* XXX nikita: this declaration is internal to tracefile.c and should probably
154  * be moved there */
155 struct page_collection {
156         struct list_head        pc_pages;
157         /*
158          * if this flag is set, collect_pages() will spill both
159          * ->tcd_daemon_pages and ->tcd_pages to the ->pc_pages. Otherwise,
160          * only ->tcd_pages are spilled.
161          */
162         int                     pc_want_daemon_pages;
163 };
164
165 /* XXX nikita: this declaration is internal to tracefile.c and should probably
166  * be moved there */
167 struct tracefiled_ctl {
168         struct completion       tctl_start;
169         struct completion       tctl_stop;
170         wait_queue_head_t       tctl_waitq;
171         pid_t                   tctl_pid;
172         atomic_t                tctl_shutdown;
173 };
174
175 /*
176  * small data-structure for each page owned by tracefiled.
177  */
178 /* XXX nikita: this declaration is internal to tracefile.c and should probably
179  * be moved there */
180 struct cfs_trace_page {
181         /*
182          * page itself
183          */
184         struct page             *page;
185         /*
186          * linkage into one of the lists in trace_data_union or
187          * page_collection
188          */
189         struct list_head        linkage;
190         /*
191          * number of bytes used within this page
192          */
193         unsigned int            used;
194         /*
195          * cpu that owns this page
196          */
197         unsigned short          cpu;
198         /*
199          * type(context) of this page
200          */
201         unsigned short          type;
202 };
203
204 int cfs_tcd_owns_tage(struct cfs_trace_cpu_data *tcd,
205                       struct cfs_trace_page *tage);
206
207 extern void cfs_trace_assertion_failed(const char *str,
208                                        struct libcfs_debug_msg_data *m);
209
210 /* ASSERTION that is safe to use within the debug system */
211 #define __LASSERT(cond)                                                 \
212 do {                                                                    \
213         if (unlikely(!(cond))) {                                        \
214                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_EMERG, NULL);     \
215                 cfs_trace_assertion_failed("ASSERTION("#cond") failed", \
216                                            &msgdata);                   \
217         }                                                               \
218 } while (0)
219
220 #define __LASSERT_TAGE_INVARIANT(tage)                                  \
221 do {                                                                    \
222         __LASSERT(tage != NULL);                                        \
223         __LASSERT(tage->page != NULL);                                  \
224         __LASSERT(tage->used <= PAGE_SIZE);                             \
225         __LASSERT(page_count(tage->page) > 0);                          \
226 } while (0)
227
228 #endif /* __LIBCFS_TRACEFILE_H__ */