Merge branch 'for-4.20/apple' into for-linus
[linux-2.6-block.git] / tools / lib / traceevent / trace-seq.c
CommitLineData
6ab025ed 1// SPDX-License-Identifier: LGPL-2.1
f7d82350
SR
2/*
3 * Copyright (C) 2009 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
4 *
f7d82350
SR
5 */
6#include <stdio.h>
7#include <stdlib.h>
8#include <string.h>
9#include <stdarg.h>
10
3c6d8d84 11#include <asm/bug.h>
f7d82350 12#include "event-parse.h"
668fe01f 13#include "event-utils.h"
f7d82350
SR
14
15/*
16 * The TRACE_SEQ_POISON is to catch the use of using
17 * a trace_seq structure after it was destroyed.
18 */
19#define TRACE_SEQ_POISON ((void *)0xdeadbeef)
20#define TRACE_SEQ_CHECK(s) \
21do { \
3c6d8d84
NK
22 if (WARN_ONCE((s)->buffer == TRACE_SEQ_POISON, \
23 "Usage of trace_seq after it was destroyed")) \
24 (s)->state = TRACE_SEQ__BUFFER_POISONED; \
f7d82350
SR
25} while (0)
26
3c6d8d84
NK
27#define TRACE_SEQ_CHECK_RET_N(s, n) \
28do { \
29 TRACE_SEQ_CHECK(s); \
30 if ((s)->state != TRACE_SEQ__GOOD) \
31 return n; \
32} while (0)
33
34#define TRACE_SEQ_CHECK_RET(s) TRACE_SEQ_CHECK_RET_N(s, )
35#define TRACE_SEQ_CHECK_RET0(s) TRACE_SEQ_CHECK_RET_N(s, 0)
36
f7d82350
SR
37/**
38 * trace_seq_init - initialize the trace_seq structure
39 * @s: a pointer to the trace_seq structure to initialize
40 */
41void trace_seq_init(struct trace_seq *s)
42{
43 s->len = 0;
44 s->readpos = 0;
45 s->buffer_size = TRACE_SEQ_BUF_SIZE;
504586e0
NK
46 s->buffer = malloc(s->buffer_size);
47 if (s->buffer != NULL)
48 s->state = TRACE_SEQ__GOOD;
49 else
50 s->state = TRACE_SEQ__MEM_ALLOC_FAILED;
f7d82350
SR
51}
52
6a48aec3
NK
53/**
54 * trace_seq_reset - re-initialize the trace_seq structure
55 * @s: a pointer to the trace_seq structure to reset
56 */
57void trace_seq_reset(struct trace_seq *s)
58{
59 if (!s)
60 return;
61 TRACE_SEQ_CHECK(s);
62 s->len = 0;
63 s->readpos = 0;
64}
65
f7d82350
SR
66/**
67 * trace_seq_destroy - free up memory of a trace_seq
68 * @s: a pointer to the trace_seq to free the buffer
69 *
70 * Only frees the buffer, not the trace_seq struct itself.
71 */
72void trace_seq_destroy(struct trace_seq *s)
73{
74 if (!s)
75 return;
3c6d8d84 76 TRACE_SEQ_CHECK_RET(s);
f7d82350
SR
77 free(s->buffer);
78 s->buffer = TRACE_SEQ_POISON;
79}
80
81static void expand_buffer(struct trace_seq *s)
82{
3026bba3
NK
83 char *buf;
84
85 buf = realloc(s->buffer, s->buffer_size + TRACE_SEQ_BUF_SIZE);
86 if (WARN_ONCE(!buf, "Can't allocate trace_seq buffer memory")) {
3c6d8d84 87 s->state = TRACE_SEQ__MEM_ALLOC_FAILED;
3026bba3
NK
88 return;
89 }
90
91 s->buffer = buf;
92 s->buffer_size += TRACE_SEQ_BUF_SIZE;
f7d82350
SR
93}
94
95/**
96 * trace_seq_printf - sequence printing of trace information
97 * @s: trace sequence descriptor
98 * @fmt: printf format string
99 *
100 * It returns 0 if the trace oversizes the buffer's free
101 * space, 1 otherwise.
102 *
103 * The tracer may use either sequence operations or its own
104 * copy to user routines. To simplify formating of a trace
105 * trace_seq_printf is used to store strings into a special
106 * buffer (@s). Then the output may be either used by
107 * the sequencer or pulled into another buffer.
108 */
109int
110trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
111{
112 va_list ap;
113 int len;
114 int ret;
115
f7d82350 116 try_again:
3c6d8d84
NK
117 TRACE_SEQ_CHECK_RET0(s);
118
f7d82350
SR
119 len = (s->buffer_size - 1) - s->len;
120
121 va_start(ap, fmt);
122 ret = vsnprintf(s->buffer + s->len, len, fmt, ap);
123 va_end(ap);
124
125 if (ret >= len) {
126 expand_buffer(s);
127 goto try_again;
128 }
129
130 s->len += ret;
131
132 return 1;
133}
134
135/**
136 * trace_seq_vprintf - sequence printing of trace information
137 * @s: trace sequence descriptor
138 * @fmt: printf format string
139 *
140 * The tracer may use either sequence operations or its own
141 * copy to user routines. To simplify formating of a trace
142 * trace_seq_printf is used to store strings into a special
143 * buffer (@s). Then the output may be either used by
144 * the sequencer or pulled into another buffer.
145 */
146int
147trace_seq_vprintf(struct trace_seq *s, const char *fmt, va_list args)
148{
149 int len;
150 int ret;
151
f7d82350 152 try_again:
3c6d8d84
NK
153 TRACE_SEQ_CHECK_RET0(s);
154
f7d82350
SR
155 len = (s->buffer_size - 1) - s->len;
156
157 ret = vsnprintf(s->buffer + s->len, len, fmt, args);
158
159 if (ret >= len) {
160 expand_buffer(s);
161 goto try_again;
162 }
163
164 s->len += ret;
165
166 return len;
167}
168
169/**
170 * trace_seq_puts - trace sequence printing of simple string
171 * @s: trace sequence descriptor
172 * @str: simple string to record
173 *
174 * The tracer may use either the sequence operations or its own
175 * copy to user routines. This function records a simple string
176 * into a special buffer (@s) for later retrieval by a sequencer
177 * or other mechanism.
178 */
179int trace_seq_puts(struct trace_seq *s, const char *str)
180{
181 int len;
182
3c6d8d84 183 TRACE_SEQ_CHECK_RET0(s);
f7d82350
SR
184
185 len = strlen(str);
186
187 while (len > ((s->buffer_size - 1) - s->len))
188 expand_buffer(s);
189
3c6d8d84
NK
190 TRACE_SEQ_CHECK_RET0(s);
191
f7d82350
SR
192 memcpy(s->buffer + s->len, str, len);
193 s->len += len;
194
195 return len;
196}
197
198int trace_seq_putc(struct trace_seq *s, unsigned char c)
199{
3c6d8d84 200 TRACE_SEQ_CHECK_RET0(s);
f7d82350
SR
201
202 while (s->len >= (s->buffer_size - 1))
203 expand_buffer(s);
204
3c6d8d84
NK
205 TRACE_SEQ_CHECK_RET0(s);
206
f7d82350
SR
207 s->buffer[s->len++] = c;
208
209 return 1;
210}
211
212void trace_seq_terminate(struct trace_seq *s)
213{
3c6d8d84 214 TRACE_SEQ_CHECK_RET(s);
f7d82350
SR
215
216 /* There's always one character left on the buffer */
217 s->buffer[s->len] = 0;
218}
219
402bb4e6 220int trace_seq_do_fprintf(struct trace_seq *s, FILE *fp)
f7d82350
SR
221{
222 TRACE_SEQ_CHECK(s);
3c6d8d84
NK
223
224 switch (s->state) {
225 case TRACE_SEQ__GOOD:
402bb4e6 226 return fprintf(fp, "%.*s", s->len, s->buffer);
3c6d8d84 227 case TRACE_SEQ__BUFFER_POISONED:
402bb4e6 228 fprintf(fp, "%s\n", "Usage of trace_seq after it was destroyed");
3c6d8d84
NK
229 break;
230 case TRACE_SEQ__MEM_ALLOC_FAILED:
402bb4e6 231 fprintf(fp, "%s\n", "Can't allocate trace_seq buffer memory");
3c6d8d84
NK
232 break;
233 }
234 return -1;
f7d82350 235}
402bb4e6
ACM
236
237int trace_seq_do_printf(struct trace_seq *s)
238{
239 return trace_seq_do_fprintf(s, stdout);
240}