2 * Copyright (C) 2009 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
4 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation;
8 * version 2.1 of the License (not later!)
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this program; if not, see <http://www.gnu.org/licenses>
18 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
26 #include "event-parse.h"
27 #include "event-utils.h"
30 * The TRACE_SEQ_POISON is to catch the use of using
31 * a trace_seq structure after it was destroyed.
33 #define TRACE_SEQ_POISON ((void *)0xdeadbeef)
34 #define TRACE_SEQ_CHECK(s) \
36 if (WARN_ONCE((s)->buffer == TRACE_SEQ_POISON, \
37 "Usage of trace_seq after it was destroyed")) \
38 (s)->state = TRACE_SEQ__BUFFER_POISONED; \
41 #define TRACE_SEQ_CHECK_RET_N(s, n) \
44 if ((s)->state != TRACE_SEQ__GOOD) \
48 #define TRACE_SEQ_CHECK_RET(s) TRACE_SEQ_CHECK_RET_N(s, )
49 #define TRACE_SEQ_CHECK_RET0(s) TRACE_SEQ_CHECK_RET_N(s, 0)
52 * trace_seq_init - initialize the trace_seq structure
53 * @s: a pointer to the trace_seq structure to initialize
55 void trace_seq_init(struct trace_seq
*s
)
59 s
->buffer_size
= TRACE_SEQ_BUF_SIZE
;
60 s
->buffer
= malloc(s
->buffer_size
);
61 if (s
->buffer
!= NULL
)
62 s
->state
= TRACE_SEQ__GOOD
;
64 s
->state
= TRACE_SEQ__MEM_ALLOC_FAILED
;
68 * trace_seq_reset - re-initialize the trace_seq structure
69 * @s: a pointer to the trace_seq structure to reset
71 void trace_seq_reset(struct trace_seq
*s
)
81 * trace_seq_destroy - free up memory of a trace_seq
82 * @s: a pointer to the trace_seq to free the buffer
84 * Only frees the buffer, not the trace_seq struct itself.
86 void trace_seq_destroy(struct trace_seq
*s
)
90 TRACE_SEQ_CHECK_RET(s
);
92 s
->buffer
= TRACE_SEQ_POISON
;
95 static void expand_buffer(struct trace_seq
*s
)
99 buf
= realloc(s
->buffer
, s
->buffer_size
+ TRACE_SEQ_BUF_SIZE
);
100 if (WARN_ONCE(!buf
, "Can't allocate trace_seq buffer memory")) {
101 s
->state
= TRACE_SEQ__MEM_ALLOC_FAILED
;
106 s
->buffer_size
+= TRACE_SEQ_BUF_SIZE
;
110 * trace_seq_printf - sequence printing of trace information
111 * @s: trace sequence descriptor
112 * @fmt: printf format string
114 * It returns 0 if the trace oversizes the buffer's free
115 * space, 1 otherwise.
117 * The tracer may use either sequence operations or its own
118 * copy to user routines. To simplify formating of a trace
119 * trace_seq_printf is used to store strings into a special
120 * buffer (@s). Then the output may be either used by
121 * the sequencer or pulled into another buffer.
124 trace_seq_printf(struct trace_seq
*s
, const char *fmt
, ...)
131 TRACE_SEQ_CHECK_RET0(s
);
133 len
= (s
->buffer_size
- 1) - s
->len
;
136 ret
= vsnprintf(s
->buffer
+ s
->len
, len
, fmt
, ap
);
150 * trace_seq_vprintf - sequence printing of trace information
151 * @s: trace sequence descriptor
152 * @fmt: printf format string
154 * The tracer may use either sequence operations or its own
155 * copy to user routines. To simplify formating of a trace
156 * trace_seq_printf is used to store strings into a special
157 * buffer (@s). Then the output may be either used by
158 * the sequencer or pulled into another buffer.
161 trace_seq_vprintf(struct trace_seq
*s
, const char *fmt
, va_list args
)
167 TRACE_SEQ_CHECK_RET0(s
);
169 len
= (s
->buffer_size
- 1) - s
->len
;
171 ret
= vsnprintf(s
->buffer
+ s
->len
, len
, fmt
, args
);
184 * trace_seq_puts - trace sequence printing of simple string
185 * @s: trace sequence descriptor
186 * @str: simple string to record
188 * The tracer may use either the sequence operations or its own
189 * copy to user routines. This function records a simple string
190 * into a special buffer (@s) for later retrieval by a sequencer
191 * or other mechanism.
193 int trace_seq_puts(struct trace_seq
*s
, const char *str
)
197 TRACE_SEQ_CHECK_RET0(s
);
201 while (len
> ((s
->buffer_size
- 1) - s
->len
))
204 TRACE_SEQ_CHECK_RET0(s
);
206 memcpy(s
->buffer
+ s
->len
, str
, len
);
212 int trace_seq_putc(struct trace_seq
*s
, unsigned char c
)
214 TRACE_SEQ_CHECK_RET0(s
);
216 while (s
->len
>= (s
->buffer_size
- 1))
219 TRACE_SEQ_CHECK_RET0(s
);
221 s
->buffer
[s
->len
++] = c
;
226 void trace_seq_terminate(struct trace_seq
*s
)
228 TRACE_SEQ_CHECK_RET(s
);
230 /* There's always one character left on the buffer */
231 s
->buffer
[s
->len
] = 0;
234 int trace_seq_do_fprintf(struct trace_seq
*s
, FILE *fp
)
239 case TRACE_SEQ__GOOD
:
240 return fprintf(fp
, "%.*s", s
->len
, s
->buffer
);
241 case TRACE_SEQ__BUFFER_POISONED
:
242 fprintf(fp
, "%s\n", "Usage of trace_seq after it was destroyed");
244 case TRACE_SEQ__MEM_ALLOC_FAILED
:
245 fprintf(fp
, "%s\n", "Can't allocate trace_seq buffer memory");
251 int trace_seq_do_printf(struct trace_seq
*s
)
253 return trace_seq_do_fprintf(s
, stdout
);