FD.io VPP  v17.07.01-10-g3be13f0
Vector Packet Processing
lex.c
Go to the documentation of this file.
1 /*
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 #include <vlib/vlib.h>
16 #include <vlib/lex.h>
17 
19 
20 #define LEX_DEBUG 0
21 
22 u8 *
23 format_vlib_lex_token (u8 * s, va_list * args)
24 {
25  vlib_lex_main_t *lm = va_arg (*args, vlib_lex_main_t *);
26  vlib_lex_token_t *t = va_arg (*args, vlib_lex_token_t *);
27 
28  if (t->token == VLIB_LEX_word)
29  s = format (s, "%s", t->value.as_pointer);
30  else
31  s = format (s, "%s", lm->lex_token_names[t->token]);
32  return s;
33 }
34 
35 void
37 {
38  u8 c;
41  uword tv;
42 
43  if (PREDICT_FALSE (lm->pushback_sp >= 0))
44  {
45  rv[0] = lm->pushback_vector[lm->pushback_sp--];
46  return;
47  }
48 
49  rv->value.as_uword = ~0;
50 
51  while (1)
52  {
54  {
55  rv->token = VLIB_LEX_eof;
56  return;
57  }
58 
60  c = (lm->input_vector[lm->current_index++]) & 0x7f;
61  e = &t->entries[c];
63 
64  switch (e->action)
65  {
66  case VLIB_LEX_IGNORE:
67  continue;
68 
70  lm->current_token_value = 0;
71  /* fallthru */
72 
74  lm->current_number_base = e->token;
76  tv = c - '0';
77  if (tv >= lm->current_number_base)
78  {
79  tv = 10 + c - 'A';
80  if (tv >= lm->current_number_base)
81  tv = 10 + c - 'a';
82  }
83  lm->current_token_value += tv;
84  continue;
85 
87  vec_add1 (lm->token_buffer, c);
88  continue;
89 
91  {
92  uword *p;
93 
94  vec_add1 (lm->token_buffer, 0);
95 
96  /* It's either a keyword or just a word. */
97  p = hash_get_mem (lm->lex_keywords, lm->token_buffer);
98  if (p)
99  {
100  rv->token = p[0];
101  if (LEX_DEBUG > 0)
102  clib_warning ("keyword '%s' token %s",
103  lm->token_buffer,
104  lm->lex_token_names[rv->token]);
105  }
106  else
107  {
108  /* it's a WORD */
109  rv->token = VLIB_LEX_word;
110  rv->value.as_pointer = vec_dup (lm->token_buffer);
111  if (LEX_DEBUG > 0)
112  clib_warning ("%s, value '%s'",
113  lm->lex_token_names[VLIB_LEX_word],
114  rv->value.as_pointer);
115  }
116  _vec_len (lm->token_buffer) = 0;
117 
118  /* Rescan the character which terminated the keyword/word. */
119  lm->current_index--;
120  return;
121  }
122 
124  ASSERT (lm->current_index);
125  lm->current_index--;
126  /* note flow-through */
127 
128  case VLIB_LEX_RETURN:
129  rv->token = e->token;
131  lm->current_token_value = ~0;
132  if (LEX_DEBUG > 0)
133  {
135  ("table %s char '%c'(0x%02x) next table %s return %s",
136  t->name, c, c, lm->lex_tables[e->next_table_index].name,
137  lm->lex_token_names[e->token]);
138  if (rv->token == VLIB_LEX_number)
139  clib_warning (" numeric value 0x%x (%d)", rv->value,
140  rv->value);
141  }
142  return;
143  }
144  }
145 }
146 
147 u16
148 vlib_lex_add_token (vlib_lex_main_t * lm, char *token_name)
149 {
150  uword *p;
151  u16 rv;
152 
153  p = hash_get_mem (lm->lex_tokens_by_name, token_name);
154 
155  if (p)
156  return p[0];
157 
158  rv = vec_len (lm->lex_token_names);
159  hash_set_mem (lm->lex_tokens_by_name, token_name, rv);
160  vec_add1 (lm->lex_token_names, token_name);
161 
162  return rv;
163 }
164 
165 static u16
166 add_keyword (vlib_lex_main_t * lm, char *keyword, char *token_name)
167 {
168  uword *p;
169  u16 token;
170 
171  p = hash_get_mem (lm->lex_keywords, keyword);
172 
173  ASSERT (p == 0);
174 
175  token = vlib_lex_add_token (lm, token_name);
176 
177  hash_set_mem (lm->lex_keywords, keyword, token);
178  return token;
179 }
180 
181 u16
183  char *token_name)
184 {
185  uword *p = hash_get_mem (lm->lex_keywords, keyword);
186  return p ? p[0] : add_keyword (lm, keyword, token_name);
187 }
188 
189 void
190 vlib_lex_set_action_range (u32 table_index, u8 lo, u8 hi, u16 action,
191  u16 token, u32 next_table_index)
192 {
193  int i;
195  vlib_lex_table_t *t = pool_elt_at_index (lm->lex_tables, table_index);
196 
197  for (i = lo; i <= hi; i++)
198  {
199  ASSERT (i < ARRAY_LEN (t->entries));
200  t->entries[i].action = action;
201  t->entries[i].token = token;
202  t->entries[i].next_table_index = next_table_index;
203  }
204 }
205 
206 u16
208 {
210  vlib_lex_table_t *t;
211  uword *p;
212 
213  p = hash_get_mem (lm->lex_tables_by_name, name);
214 
215  ASSERT (p == 0);
216 
218 
219  t->name = name;
220 
221  hash_set_mem (lm->lex_tables_by_name, name, t - lm->lex_tables);
222 
224  t - lm->lex_tables);
225 
227  VLIB_LEX_eof, t - lm->lex_tables);
228 
229  return t - lm->lex_tables;
230 }
231 
232 void
233 vlib_lex_reset (vlib_lex_main_t * lm, u8 * input_vector)
234 {
235  if (lm->pushback_vector)
236  _vec_len (lm->pushback_vector) = 0;
237  lm->pushback_sp = -1;
238 
239  lm->input_vector = input_vector;
240  lm->current_index = 0;
241 }
242 
243 static clib_error_t *
245 {
247 
248  lm->lex_tables_by_name = hash_create_string (0, sizeof (uword));
249  lm->lex_tokens_by_name = hash_create_string (0, sizeof (uword));
250  lm->lex_keywords = hash_create_string (0, sizeof (uword));
251  lm->pushback_sp = -1;
252 
253 #define _(f) { u16 tmp = vlib_lex_add_token (lm, #f); ASSERT (tmp == VLIB_LEX_##f); }
255 #undef _
256 
257  vec_validate (lm->token_buffer, 127);
258  _vec_len (lm->token_buffer) = 0;
259 
260  return 0;
261 }
262 
264 
265 /*
266  * fd.io coding-style-patch-verification: ON
267  *
268  * Local Variables:
269  * eval: (c-set-style "gnu")
270  * End:
271  */
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:436
union vlib_lex_token_t::@30 value
vmrglw vmrglh hi
sll srl srl sll sra u16x4 i
Definition: vector_sse2.h:337
u8 * input_vector
Definition: lex.h:108
Definition: lex.h:58
uword * lex_tables_by_name
Definition: lex.h:86
uword * lex_tokens_by_name
Definition: lex.h:92
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:522
#define hash_set_mem(h, key, value)
Definition: hash.h:274
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:419
void vlib_lex_set_action_range(u32 table_index, u8 lo, u8 hi, u16 action, u16 token, u32 next_table_index)
Definition: lex.c:190
static u16 add_keyword(vlib_lex_main_t *lm, char *keyword, char *token_name)
Definition: lex.c:166
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:111
char ** lex_token_names
Definition: lex.h:89
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
#define hash_create_string(elts, value_bytes)
Definition: hash.h:652
u16 vlib_lex_add_table(char *name)
Definition: lex.c:207
u32 current_index
Definition: lex.h:111
char * name
Definition: lex.h:67
vlib_lex_token_t * pushback_vector
Definition: lex.h:97
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:397
u16 action
Definition: lex.h:60
#define vec_dup(V)
Return copy of vector (no header, no alignment)
Definition: vec.h:374
#define PREDICT_FALSE(x)
Definition: clib.h:97
vlib_lex_table_entry_t entries[128]
Definition: lex.h:68
i32 pushback_sp
Definition: lex.h:99
#define pool_get_aligned(P, E, A)
Allocate an object E from a pool P (general version).
Definition: pool.h:169
svmdb_client_t * c
vlib_lex_table_t * lex_tables
Definition: lex.h:85
#define clib_warning(format, args...)
Definition: error.h:59
u16 vlib_lex_find_or_add_keyword(vlib_lex_main_t *lm, char *keyword, char *token_name)
Definition: lex.c:182
#define ARRAY_LEN(x)
Definition: clib.h:59
u32 current_table_index
Definition: lex.h:101
u16 vlib_lex_add_token(vlib_lex_main_t *lm, char *token_name)
Definition: lex.c:148
#define LEX_DEBUG
Definition: lex.c:20
#define ASSERT(truth)
uword current_token_value
Definition: lex.h:103
unsigned int u32
Definition: types.h:88
void * as_pointer
Definition: lex.h:78
void vlib_lex_reset(vlib_lex_main_t *lm, u8 *input_vector)
Definition: lex.c:233
u64 uword
Definition: types.h:112
u16 token
Definition: lex.h:62
uword current_number_base
Definition: lex.h:105
unsigned short u16
Definition: types.h:57
vlib_lex_main_t vlib_lex_main
Definition: lex.c:18
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
unsigned char u8
Definition: types.h:56
void vlib_lex_get_token(vlib_lex_main_t *lm, vlib_lex_token_t *rv)
Definition: lex.c:36
static clib_error_t * lex_onetime_init(vlib_main_t *vm)
Definition: lex.c:244
uword * lex_keywords
Definition: lex.h:95
#define hash_get_mem(h, key)
Definition: hash.h:268
u16 next_table_index
Definition: lex.h:61
uword as_uword
Definition: lex.h:77
u8 * token_buffer
Definition: lex.h:114
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:67
u32 token
Definition: lex.h:73
u8 * format_vlib_lex_token(u8 *s, va_list *args)
Definition: lex.c:23