blk-mq: really fix plug list flushing for nomerge queues
[linux-2.6-block.git] / kernel / trace / trace_seq.c
CommitLineData
12306276
SRRH
1/*
2 * trace_seq.c
3 *
4 * Copyright (C) 2008-2014 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
5 *
36aabfff
SRRH
6 * The trace_seq is a handy tool that allows you to pass a descriptor around
7 * to a buffer that other functions can write to. It is similar to the
8 * seq_file functionality but has some differences.
9 *
10 * To use it, the trace_seq must be initialized with trace_seq_init().
11 * This will set up the counters within the descriptor. You can call
12 * trace_seq_init() more than once to reset the trace_seq to start
13 * from scratch.
14 *
15 * The buffer size is currently PAGE_SIZE, although it may become dynamic
16 * in the future.
17 *
18 * A write to the buffer will either succed or fail. That is, unlike
19 * sprintf() there will not be a partial write (well it may write into
20 * the buffer but it wont update the pointers). This allows users to
21 * try to write something into the trace_seq buffer and if it fails
22 * they can flush it and try again.
23 *
12306276
SRRH
24 */
25#include <linux/uaccess.h>
26#include <linux/seq_file.h>
27#include <linux/trace_seq.h>
28
36aabfff 29/* How much buffer is left on the trace_seq? */
3a161d99 30#define TRACE_SEQ_BUF_LEFT(s) seq_buf_buffer_left(&(s)->seq)
36aabfff
SRRH
31
32/* How much buffer is written? */
5ac48378 33#define TRACE_SEQ_BUF_USED(s) seq_buf_used(&(s)->seq)
3a161d99
SRRH
34
35/*
36 * trace_seq should work with being initialized with 0s.
37 */
38static inline void __trace_seq_init(struct trace_seq *s)
39{
40 if (unlikely(!s->seq.size))
41 trace_seq_init(s);
42}
36aabfff
SRRH
43
44/**
45 * trace_print_seq - move the contents of trace_seq into a seq_file
46 * @m: the seq_file descriptor that is the destination
47 * @s: the trace_seq descriptor that is the source.
48 *
49 * Returns 0 on success and non zero on error. If it succeeds to
50 * write to the seq_file it will reset the trace_seq, otherwise
51 * it does not modify the trace_seq to let the caller try again.
52 */
12306276
SRRH
53int trace_print_seq(struct seq_file *m, struct trace_seq *s)
54{
12306276
SRRH
55 int ret;
56
3a161d99
SRRH
57 __trace_seq_init(s);
58
59 ret = seq_buf_print_seq(m, &s->seq);
12306276
SRRH
60
61 /*
62 * Only reset this buffer if we successfully wrote to the
36aabfff
SRRH
63 * seq_file buffer. This lets the caller try again or
64 * do something else with the contents.
12306276
SRRH
65 */
66 if (!ret)
67 trace_seq_init(s);
68
69 return ret;
70}
71
72/**
73 * trace_seq_printf - sequence printing of trace information
74 * @s: trace sequence descriptor
75 * @fmt: printf format string
76 *
12306276
SRRH
77 * The tracer may use either sequence operations or its own
78 * copy to user routines. To simplify formating of a trace
36aabfff 79 * trace_seq_printf() is used to store strings into a special
12306276
SRRH
80 * buffer (@s). Then the output may be either used by
81 * the sequencer or pulled into another buffer.
82 */
dba39448 83void trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
12306276 84{
3a161d99 85 unsigned int save_len = s->seq.len;
12306276 86 va_list ap;
12306276 87
3a161d99 88 if (s->full)
dba39448 89 return;
12306276 90
3a161d99
SRRH
91 __trace_seq_init(s);
92
12306276 93 va_start(ap, fmt);
3a161d99 94 seq_buf_vprintf(&s->seq, fmt, ap);
12306276
SRRH
95 va_end(ap);
96
97 /* If we can't write it all, don't bother writing anything */
3a161d99
SRRH
98 if (unlikely(seq_buf_has_overflowed(&s->seq))) {
99 s->seq.len = save_len;
12306276 100 s->full = 1;
12306276 101 }
12306276
SRRH
102}
103EXPORT_SYMBOL_GPL(trace_seq_printf);
104
105/**
36aabfff 106 * trace_seq_bitmask - write a bitmask array in its ASCII representation
12306276
SRRH
107 * @s: trace sequence descriptor
108 * @maskp: points to an array of unsigned longs that represent a bitmask
109 * @nmaskbits: The number of bits that are valid in @maskp
110 *
12306276
SRRH
111 * Writes a ASCII representation of a bitmask string into @s.
112 */
dba39448 113void trace_seq_bitmask(struct trace_seq *s, const unsigned long *maskp,
36aabfff 114 int nmaskbits)
12306276 115{
3a161d99 116 unsigned int save_len = s->seq.len;
12306276 117
3a161d99 118 if (s->full)
dba39448 119 return;
12306276 120
3a161d99
SRRH
121 __trace_seq_init(s);
122
1a40243b 123 seq_buf_printf(&s->seq, "%*pb", nmaskbits, maskp);
3a161d99
SRRH
124
125 if (unlikely(seq_buf_has_overflowed(&s->seq))) {
126 s->seq.len = save_len;
127 s->full = 1;
128 }
12306276
SRRH
129}
130EXPORT_SYMBOL_GPL(trace_seq_bitmask);
131
132/**
133 * trace_seq_vprintf - sequence printing of trace information
134 * @s: trace sequence descriptor
135 * @fmt: printf format string
136 *
137 * The tracer may use either sequence operations or its own
138 * copy to user routines. To simplify formating of a trace
139 * trace_seq_printf is used to store strings into a special
140 * buffer (@s). Then the output may be either used by
141 * the sequencer or pulled into another buffer.
142 */
dba39448 143void trace_seq_vprintf(struct trace_seq *s, const char *fmt, va_list args)
12306276 144{
3a161d99 145 unsigned int save_len = s->seq.len;
12306276 146
3a161d99 147 if (s->full)
dba39448 148 return;
12306276 149
3a161d99
SRRH
150 __trace_seq_init(s);
151
152 seq_buf_vprintf(&s->seq, fmt, args);
12306276
SRRH
153
154 /* If we can't write it all, don't bother writing anything */
3a161d99
SRRH
155 if (unlikely(seq_buf_has_overflowed(&s->seq))) {
156 s->seq.len = save_len;
12306276 157 s->full = 1;
12306276 158 }
12306276
SRRH
159}
160EXPORT_SYMBOL_GPL(trace_seq_vprintf);
161
36aabfff
SRRH
162/**
163 * trace_seq_bprintf - Write the printf string from binary arguments
164 * @s: trace sequence descriptor
165 * @fmt: The format string for the @binary arguments
166 * @binary: The binary arguments for @fmt.
167 *
168 * When recording in a fast path, a printf may be recorded with just
169 * saving the format and the arguments as they were passed to the
170 * function, instead of wasting cycles converting the arguments into
171 * ASCII characters. Instead, the arguments are saved in a 32 bit
172 * word array that is defined by the format string constraints.
173 *
174 * This function will take the format and the binary array and finish
175 * the conversion into the ASCII string within the buffer.
36aabfff 176 */
dba39448 177void trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary)
12306276 178{
3a161d99 179 unsigned int save_len = s->seq.len;
12306276 180
3a161d99 181 if (s->full)
dba39448 182 return;
12306276 183
3a161d99
SRRH
184 __trace_seq_init(s);
185
186 seq_buf_bprintf(&s->seq, fmt, binary);
12306276
SRRH
187
188 /* If we can't write it all, don't bother writing anything */
3a161d99
SRRH
189 if (unlikely(seq_buf_has_overflowed(&s->seq))) {
190 s->seq.len = save_len;
12306276 191 s->full = 1;
dba39448 192 return;
12306276 193 }
12306276 194}
36aabfff 195EXPORT_SYMBOL_GPL(trace_seq_bprintf);
12306276
SRRH
196
197/**
198 * trace_seq_puts - trace sequence printing of simple string
199 * @s: trace sequence descriptor
200 * @str: simple string to record
201 *
202 * The tracer may use either the sequence operations or its own
203 * copy to user routines. This function records a simple string
204 * into a special buffer (@s) for later retrieval by a sequencer
205 * or other mechanism.
206 */
dba39448 207void trace_seq_puts(struct trace_seq *s, const char *str)
12306276 208{
36aabfff 209 unsigned int len = strlen(str);
12306276
SRRH
210
211 if (s->full)
dba39448 212 return;
12306276 213
3a161d99
SRRH
214 __trace_seq_init(s);
215
36aabfff 216 if (len > TRACE_SEQ_BUF_LEFT(s)) {
12306276 217 s->full = 1;
dba39448 218 return;
12306276
SRRH
219 }
220
3a161d99 221 seq_buf_putmem(&s->seq, str, len);
12306276 222}
36aabfff 223EXPORT_SYMBOL_GPL(trace_seq_puts);
12306276 224
36aabfff
SRRH
225/**
226 * trace_seq_putc - trace sequence printing of simple character
227 * @s: trace sequence descriptor
228 * @c: simple character to record
229 *
230 * The tracer may use either the sequence operations or its own
231 * copy to user routines. This function records a simple charater
232 * into a special buffer (@s) for later retrieval by a sequencer
233 * or other mechanism.
36aabfff 234 */
dba39448 235void trace_seq_putc(struct trace_seq *s, unsigned char c)
12306276
SRRH
236{
237 if (s->full)
dba39448 238 return;
12306276 239
3a161d99
SRRH
240 __trace_seq_init(s);
241
36aabfff 242 if (TRACE_SEQ_BUF_LEFT(s) < 1) {
12306276 243 s->full = 1;
dba39448 244 return;
12306276
SRRH
245 }
246
3a161d99 247 seq_buf_putc(&s->seq, c);
12306276 248}
36aabfff 249EXPORT_SYMBOL_GPL(trace_seq_putc);
12306276 250
36aabfff
SRRH
251/**
252 * trace_seq_putmem - write raw data into the trace_seq buffer
253 * @s: trace sequence descriptor
254 * @mem: The raw memory to copy into the buffer
255 * @len: The length of the raw memory to copy (in bytes)
256 *
257 * There may be cases where raw memory needs to be written into the
258 * buffer and a strcpy() would not work. Using this function allows
259 * for such cases.
36aabfff 260 */
dba39448 261void trace_seq_putmem(struct trace_seq *s, const void *mem, unsigned int len)
12306276
SRRH
262{
263 if (s->full)
dba39448 264 return;
12306276 265
3a161d99
SRRH
266 __trace_seq_init(s);
267
36aabfff 268 if (len > TRACE_SEQ_BUF_LEFT(s)) {
12306276 269 s->full = 1;
dba39448 270 return;
12306276
SRRH
271 }
272
3a161d99 273 seq_buf_putmem(&s->seq, mem, len);
12306276 274}
36aabfff 275EXPORT_SYMBOL_GPL(trace_seq_putmem);
12306276 276
36aabfff
SRRH
277/**
278 * trace_seq_putmem_hex - write raw memory into the buffer in ASCII hex
279 * @s: trace sequence descriptor
280 * @mem: The raw memory to write its hex ASCII representation of
281 * @len: The length of the raw memory to copy (in bytes)
282 *
283 * This is similar to trace_seq_putmem() except instead of just copying the
284 * raw memory into the buffer it writes its ASCII representation of it
285 * in hex characters.
36aabfff 286 */
dba39448 287void trace_seq_putmem_hex(struct trace_seq *s, const void *mem,
36aabfff 288 unsigned int len)
12306276 289{
3a161d99 290 unsigned int save_len = s->seq.len;
12306276
SRRH
291
292 if (s->full)
dba39448 293 return;
12306276 294
3a161d99
SRRH
295 __trace_seq_init(s);
296
297 /* Each byte is represented by two chars */
298 if (len * 2 > TRACE_SEQ_BUF_LEFT(s)) {
299 s->full = 1;
300 return;
301 }
302
303 /* The added spaces can still cause an overflow */
304 seq_buf_putmem_hex(&s->seq, mem, len);
305
306 if (unlikely(seq_buf_has_overflowed(&s->seq))) {
307 s->seq.len = save_len;
308 s->full = 1;
309 return;
6d2289f3 310 }
12306276 311}
36aabfff 312EXPORT_SYMBOL_GPL(trace_seq_putmem_hex);
12306276 313
36aabfff
SRRH
314/**
315 * trace_seq_path - copy a path into the sequence buffer
316 * @s: trace sequence descriptor
317 * @path: path to write into the sequence buffer.
318 *
319 * Write a path name into the sequence buffer.
320 *
321 * Returns 1 if we successfully written all the contents to
322 * the buffer.
323 * Returns 0 if we the length to write is bigger than the
324 * reserved buffer space. In this case, nothing gets written.
325 */
12306276
SRRH
326int trace_seq_path(struct trace_seq *s, const struct path *path)
327{
3a161d99 328 unsigned int save_len = s->seq.len;
12306276
SRRH
329
330 if (s->full)
331 return 0;
332
3a161d99
SRRH
333 __trace_seq_init(s);
334
36aabfff 335 if (TRACE_SEQ_BUF_LEFT(s) < 1) {
12306276
SRRH
336 s->full = 1;
337 return 0;
338 }
339
dd23180a 340 seq_buf_path(&s->seq, path, "\n");
3a161d99
SRRH
341
342 if (unlikely(seq_buf_has_overflowed(&s->seq))) {
343 s->seq.len = save_len;
344 s->full = 1;
345 return 0;
12306276
SRRH
346 }
347
dd23180a 348 return 1;
12306276 349}
36aabfff 350EXPORT_SYMBOL_GPL(trace_seq_path);
12306276 351
36aabfff
SRRH
352/**
353 * trace_seq_to_user - copy the squence buffer to user space
354 * @s: trace sequence descriptor
355 * @ubuf: The userspace memory location to copy to
356 * @cnt: The amount to copy
357 *
358 * Copies the sequence buffer into the userspace memory pointed to
359 * by @ubuf. It starts from the last read position (@s->readpos)
360 * and writes up to @cnt characters or till it reaches the end of
361 * the content in the buffer (@s->len), which ever comes first.
362 *
363 * On success, it returns a positive number of the number of bytes
364 * it copied.
365 *
366 * On failure it returns -EBUSY if all of the content in the
367 * sequence has been already read, which includes nothing in the
368 * sequenc (@s->len == @s->readpos).
369 *
370 * Returns -EFAULT if the copy to userspace fails.
371 */
372int trace_seq_to_user(struct trace_seq *s, char __user *ubuf, int cnt)
12306276 373{
3a161d99
SRRH
374 __trace_seq_init(s);
375 return seq_buf_to_user(&s->seq, ubuf, cnt);
12306276 376}
36aabfff 377EXPORT_SYMBOL_GPL(trace_seq_to_user);