blob: 9a3a342076b8db107af2a92ba97477a790b19afd [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/*
16 Copyright (c) 2001, 2002, 2003 Eliot Dresselhaus
17
18 Permission is hereby granted, free of charge, to any person obtaining
19 a copy of this software and associated documentation files (the
20 "Software"), to deal in the Software without restriction, including
21 without limitation the rights to use, copy, modify, merge, publish,
22 distribute, sublicense, and/or sell copies of the Software, and to
23 permit persons to whom the Software is furnished to do so, subject to
24 the following conditions:
25
26 The above copyright notice and this permission notice shall be
27 included in all copies or substantial portions of the Software.
28
29 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
30 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
32 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
33 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
34 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
35 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36*/
37
38#ifndef included_format_h
39#define included_format_h
40
41#include <stdarg.h>
42
Dave Barachc3799992016-08-15 11:12:27 -040043#include <vppinfra/clib.h> /* for CLIB_UNIX, etc. */
Ed Warnickecb9cada2015-12-08 15:45:58 -070044#include <vppinfra/vec.h>
Dave Barachc3799992016-08-15 11:12:27 -040045#include <vppinfra/error.h> /* for ASSERT */
Ed Warnickecb9cada2015-12-08 15:45:58 -070046#include <vppinfra/string.h>
47
Dave Barachc3799992016-08-15 11:12:27 -040048typedef u8 *(format_function_t) (u8 * s, va_list * args);
Ed Warnickecb9cada2015-12-08 15:45:58 -070049
Neale Ranns0bfe5d82016-08-25 15:29:12 +010050u8 *va_format (u8 * s, const char *format, va_list * args);
51u8 *format (u8 * s, const char *format, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -070052
53#ifdef CLIB_UNIX
54
55#include <stdio.h>
56
57#else /* ! CLIB_UNIX */
58
59/* We're not Unix and have not stdio.h */
60#define FILE void
61#define stdin ((FILE *) 0)
62#define stdout ((FILE *) 1)
63#define stderr ((FILE *) 2)
64
65#endif
66
Dave Barachc3799992016-08-15 11:12:27 -040067word va_fformat (FILE * f, char *fmt, va_list * va);
68word fformat (FILE * f, char *fmt, ...);
69word fdformat (int fd, char *fmt, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -070070
Christophe Fontained3c008d2017-10-02 18:10:54 +020071always_inline u32
Ed Warnickecb9cada2015-12-08 15:45:58 -070072format_get_indent (u8 * s)
73{
Christophe Fontained3c008d2017-10-02 18:10:54 +020074 u32 indent = 0;
Dave Barachc3799992016-08-15 11:12:27 -040075 u8 *nl;
Ed Warnickecb9cada2015-12-08 15:45:58 -070076
Dave Barachc3799992016-08-15 11:12:27 -040077 if (!s)
Ed Warnickecb9cada2015-12-08 15:45:58 -070078 return indent;
79
80 nl = vec_end (s) - 1;
81 while (nl >= s)
82 {
83 if (*nl-- == '\n')
84 break;
85 indent++;
86 }
87 return indent;
88}
89
90#define _(f) u8 * f (u8 * s, va_list * va)
91
92/* Standard user-defined formats. */
Dave Barachc3799992016-08-15 11:12:27 -040093_(format_vec32);
94_(format_vec_uword);
95_(format_ascii_bytes);
96_(format_hex_bytes);
97_(format_white_space);
98_(format_f64);
99_(format_time_interval);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100
101#ifdef CLIB_UNIX
102/* Unix specific formats. */
Dave Barachc3799992016-08-15 11:12:27 -0400103_(format_address_family);
104_(format_unix_arphrd);
105_(format_unix_interface_flags);
106_(format_network_address);
107_(format_network_protocol);
108_(format_network_port);
109_(format_sockaddr);
110_(format_ip4_tos_byte);
111_(format_ip4_packet);
112_(format_icmp4_type_and_code);
113_(format_ethernet_packet);
114_(format_hostname);
115_(format_timeval);
116_(format_time_float);
117_(format_signal);
118_(format_ucontext_pc);
Damjan Marion926b5642018-07-02 21:33:31 +0200119_(format_page_map);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120#endif
121
122#undef _
123
124/* Unformat. */
125
Dave Barachc3799992016-08-15 11:12:27 -0400126typedef struct _unformat_input_t
127{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128 /* Input buffer (vector). */
Dave Barachc3799992016-08-15 11:12:27 -0400129 u8 *buffer;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130
131 /* Current index in input buffer. */
132 uword index;
133
134 /* Vector of buffer marks. Used to delineate pieces of the buffer
135 for error reporting and for parse recovery. */
Dave Barachc3799992016-08-15 11:12:27 -0400136 uword *buffer_marks;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137
138 /* User's function to fill the buffer when its empty
139 (and argument). */
Dave Barachc3799992016-08-15 11:12:27 -0400140 uword (*fill_buffer) (struct _unformat_input_t * i);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141
142 /* Return values for fill buffer function which indicate whether not
143 input has been exhausted. */
144#define UNFORMAT_END_OF_INPUT (~0)
145#define UNFORMAT_MORE_INPUT 0
146
147 /* User controlled argument to fill buffer function. */
Dave Barachc3799992016-08-15 11:12:27 -0400148 void *fill_buffer_arg;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149} unformat_input_t;
150
151always_inline void
152unformat_init (unformat_input_t * i,
Dave Barachc3799992016-08-15 11:12:27 -0400153 uword (*fill_buffer) (unformat_input_t *),
154 void *fill_buffer_arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155{
156 memset (i, 0, sizeof (i[0]));
157 i->fill_buffer = fill_buffer;
158 i->fill_buffer_arg = fill_buffer_arg;
159}
160
161always_inline void
162unformat_free (unformat_input_t * i)
163{
164 vec_free (i->buffer);
165 vec_free (i->buffer_marks);
166 memset (i, 0, sizeof (i[0]));
167}
168
169always_inline uword
170unformat_check_input (unformat_input_t * i)
171{
172 /* Low level fill input function. */
173 extern uword _unformat_fill_input (unformat_input_t * i);
174
Dave Barachc3799992016-08-15 11:12:27 -0400175 if (i->index >= vec_len (i->buffer) && i->index != UNFORMAT_END_OF_INPUT)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176 _unformat_fill_input (i);
177
178 return i->index;
179}
180
181/* Return true if input is exhausted */
182always_inline uword
183unformat_is_eof (unformat_input_t * input)
184{
185 return unformat_check_input (input) == UNFORMAT_END_OF_INPUT;
186}
187
188/* Return next element in input vector,
189 possibly calling fill input to get more. */
190always_inline uword
191unformat_get_input (unformat_input_t * input)
192{
193 uword i = unformat_check_input (input);
194 if (i < vec_len (input->buffer))
195 {
196 input->index = i + 1;
197 i = input->buffer[i];
198 }
199 return i;
200}
201
202/* Back up input pointer by one. */
203always_inline void
204unformat_put_input (unformat_input_t * input)
Dave Barachc3799992016-08-15 11:12:27 -0400205{
206 input->index -= 1;
207}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208
209/* Peek current input character without advancing. */
210always_inline uword
211unformat_peek_input (unformat_input_t * input)
212{
213 uword c = unformat_get_input (input);
214 if (c != UNFORMAT_END_OF_INPUT)
215 unformat_put_input (input);
216 return c;
217}
218
219/* Skip current input line. */
Dave Barachc3799992016-08-15 11:12:27 -0400220always_inline void
221unformat_skip_line (unformat_input_t * i)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700222{
223 uword c;
224
Dave Barachc3799992016-08-15 11:12:27 -0400225 while ((c = unformat_get_input (i)) != UNFORMAT_END_OF_INPUT && c != '\n')
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226 ;
227}
228
229uword unformat_skip_white_space (unformat_input_t * input);
230
231/* Unformat function. */
Dave Barachc3799992016-08-15 11:12:27 -0400232typedef uword (unformat_function_t) (unformat_input_t * input,
233 va_list * args);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234
235/* External functions. */
236
237/* General unformatting function with programmable input stream. */
Neale Ranns32e1c012016-11-22 17:07:28 +0000238uword unformat (unformat_input_t * i, const char *fmt, ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239
240/* Call user defined parse function.
241 unformat_user (i, f, ...) is equivalent to unformat (i, "%U", f, ...) */
Dave Barachc3799992016-08-15 11:12:27 -0400242uword unformat_user (unformat_input_t * input, unformat_function_t * func,
243 ...);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244
245/* Alternate version which allows for extensions. */
Neale Ranns32e1c012016-11-22 17:07:28 +0000246uword va_unformat (unformat_input_t * i, const char *fmt, va_list * args);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247
248/* Setup for unformat of Unix style command line. */
Dave Barachc3799992016-08-15 11:12:27 -0400249void unformat_init_command_line (unformat_input_t * input, char *argv[]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250
251/* Setup for unformat of given string. */
252void unformat_init_string (unformat_input_t * input,
Dave Barachc3799992016-08-15 11:12:27 -0400253 char *string, int string_len);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700254
255always_inline void
Dave Barachc3799992016-08-15 11:12:27 -0400256unformat_init_cstring (unformat_input_t * input, char *string)
257{
258 unformat_init_string (input, string, strlen (string));
259}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260
261/* Setup for unformat of given vector string; vector will be freed by unformat_string. */
Dave Barachc3799992016-08-15 11:12:27 -0400262void unformat_init_vector (unformat_input_t * input, u8 * vector_string);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263
264/* Format function for unformat input usable when an unformat error
265 has occurred. */
Dave Barachc3799992016-08-15 11:12:27 -0400266u8 *format_unformat_error (u8 * s, va_list * va);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700267
268#define unformat_parse_error(input) \
269 clib_error_return (0, "parse error `%U'", format_unformat_error, input)
270
271/* Print all input: not just error context. */
Dave Barachc3799992016-08-15 11:12:27 -0400272u8 *format_unformat_input (u8 * s, va_list * va);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700273
274/* Unformat (parse) function which reads a %s string and converts it
275 to and unformat_input_t. */
276unformat_function_t unformat_input;
277
278/* Parse a line ending with \n and return it. */
279unformat_function_t unformat_line;
280
281/* Parse a line ending with \n and return it as an unformat_input_t. */
282unformat_function_t unformat_line_input;
283
284/* Parse a token containing given set of characters. */
285unformat_function_t unformat_token;
286
287/* Parses a hexstring into a vector of bytes. */
288unformat_function_t unformat_hex_string;
289
290/* Returns non-zero match if input is exhausted.
291 Useful to ensure that the entire input matches with no trailing junk. */
292unformat_function_t unformat_eof;
293
294/* Parse memory size e.g. 100, 100k, 100m, 100g. */
295unformat_function_t unformat_memory_size;
296
297/* Unparse memory size e.g. 100, 100k, 100m, 100g. */
Dave Barachc3799992016-08-15 11:12:27 -0400298u8 *format_memory_size (u8 * s, va_list * va);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299
300/* Format c identifier: e.g. a_name -> "a name". */
Dave Barachc3799992016-08-15 11:12:27 -0400301u8 *format_c_identifier (u8 * s, va_list * va);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700302
Damjan Mariona7e83ce2016-06-09 12:38:22 +0200303/* Format hexdump with both hex and printable chars - compatible with text2pcap */
Dave Barachc3799992016-08-15 11:12:27 -0400304u8 *format_hexdump (u8 * s, va_list * va);
Damjan Mariona7e83ce2016-06-09 12:38:22 +0200305
Ed Warnickecb9cada2015-12-08 15:45:58 -0700306/* Unix specific formats. */
307#ifdef CLIB_UNIX
308/* Setup input from Unix file. */
Dave Barach59b25652017-09-10 15:04:27 -0400309void unformat_init_clib_file (unformat_input_t * input, int file_descriptor);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700310
311/* Take input from Unix environment variable; returns
312 1 if variable exists zero otherwise. */
Dave Barachc3799992016-08-15 11:12:27 -0400313uword unformat_init_unix_env (unformat_input_t * input, char *var);
Damjan Mariona54230d2017-06-21 11:57:07 +0200314
315/* Unformat unix group id (gid) specified as integer or string */
316unformat_function_t unformat_unix_gid;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700317#endif /* CLIB_UNIX */
318
319/* Test code. */
320int test_format_main (unformat_input_t * input);
321int test_unformat_main (unformat_input_t * input);
322
Dave Barachc3799992016-08-15 11:12:27 -0400323/* This is not the right place for this, but putting it in vec.h
Ed Warnickecb9cada2015-12-08 15:45:58 -0700324created circular dependency problems. */
325int test_vec_main (unformat_input_t * input);
326
327#endif /* included_format_h */
Dave Barachc3799992016-08-15 11:12:27 -0400328
329/*
330 * fd.io coding-style-patch-verification: ON
331 *
332 * Local Variables:
333 * eval: (c-set-style "gnu")
334 * End:
335 */