-
Notifications
You must be signed in to change notification settings - Fork 37
/
cligen_syntax.c
505 lines (479 loc) · 16.9 KB
/
cligen_syntax.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
/*
***** BEGIN LICENSE BLOCK *****
Copyright (C) 2001-2022 Olof Hagsand
This file is part of CLIgen.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Alternatively, the contents of this file may be used under the terms of
the GNU General Public License Version 2 or later (the "GPL"),
in which case the provisions of the GPL are applicable instead
of those above. If you wish to allow use of your version of this file only
under the terms of the GPL, and not to allow others to
use your version of this file under the terms of Apache License version 2, indicate
your decision by deleting the provisions above and replace them with the
notice and other provisions required by the GPL. If you do not delete
the provisions above, a recipient may use your version of this file under
the terms of any one of the Apache License version 2 or the GPL.
***** END LICENSE BLOCK *****
*/
#include "cligen_config.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <netinet/in.h>
#include "cligen_buf.h"
#include "cligen_cv.h"
#include "cligen_cvec.h"
#include "cligen_parsetree.h"
#include "cligen_pt_head.h"
#include "cligen_callback.h"
#include "cligen_object.h"
#include "cligen_parse.h"
#include "cligen_handle.h"
#include "cligen_result.h"
#include "cligen_read.h"
#include "cligen_syntax.h"
/*! Parse a string containing a CLIgen spec into a parse-tree
*
* Syntax parsing. A string is input and a syntax-tree is returned (or error).
* A variable record is also returned containing a list of (global) variable values.
* The string contains a hierarchy of syntax specs bounded by {} and semi-colon. Comma is used
* to tag a syntax-spec with assignments or callbacks. Help strings are delimited with ("").
* '#' anywhere on the line means the rest is comment.
* @param[in] h CLIgen handle
* @param[in] str String to parse containing CLIgen specification statements
* @param[in] name Debug string identifying the spec, typically a filename
* @param[in] treename Initial treename, overriden by treename= in the clispec (or NULL)
* @param[in,out] pt Parse-tree, if set, add commands to this. Can be NULL
* @param[out] cvv Global variables
* @see cligen_parse_file
* @note parse-trees can be added as side-effect:s using the treename clispec:s. The tree returned
* in pt is only the "latest" one.
*/
int
clispec_parse_str(cligen_handle h,
char *str,
char *name,
char *treename,
parse_tree *ptp,
cvec *cvv)
{
int retval = -1;
int i;
cligen_yacc cy = {0,};
cg_obj *co;
cg_obj *cot = NULL;
parse_tree *pt = NULL;
pt_head *ph;
cg_var *cv;
/* "Fake" top-level object that is removed on exit */
if ((cot = co_new(NULL, NULL)) == NULL)
goto done;
cy.cy_handle = h; /* cligen_handle */
cy.cy_name = name;
if (treename){
if ((cy.cy_treename = strdup(treename)) == NULL)
goto done;
}
/* If no explicit treename, use name as initial treename */
else if ((cy.cy_treename = strdup(name)) == NULL)
goto done;
cy.cy_linenum = 1;
cy.cy_parse_string = str;
cy.cy_stack = NULL;
if (ptp != NULL)
pt = ptp;
else
if ((pt = pt_new()) == NULL)
goto done;
co_pt_set(cot, pt);
if (cvv)
cy.cy_globals = cvv;
else
if ((cy.cy_globals = cvec_new(0)) == NULL){
fprintf(stderr, "%s: malloc: %s\n", __FUNCTION__, strerror(errno));
goto done;
}
if (strlen(str)){ /* Not empty */
if (cgl_init(&cy) < 0)
goto done;
if (cgy_init(&cy, cot) < 0)
goto done;
if (cligen_parseparse(&cy) != 0) { /* yacc returns 1 on error */
cgy_exit(&cy);
cgl_exit(&cy);
goto done;
}
/* Note pt/ptp is stale after parsing due to treename that replaces cot->pt
* Add final tree */
pt = co_pt_get(cot);
if (ptp == NULL){
if ((ph = cligen_ph_add(cy.cy_handle, cy.cy_treename)) == NULL)
goto done;
if (cligen_ph_parsetree_set(ph, pt) < 0)
goto done;
if ((cv = cvec_find(cy.cy_globals, "pipetree")) != NULL){
char *str;
if ((str = cv_string_get(cv)) != NULL && strlen(str))
if (cligen_ph_pipe_set(ph, str) < 0)
goto done;
}
}
if (cgy_exit(&cy) < 0)
goto done;
if (cgl_exit(&cy) < 0)
goto done;
}
if (cvv == NULL) /* Not passed to caller function */
cvec_free(cy.cy_globals);
/*
* Remove the fake top level object and remove references to it.
* This does not work for (other) trees
*/
for (i=0; i<pt_len_get(pt); i++){
if ((co=pt_vec_i_get(pt, i)) != NULL)
co_up_set(co, NULL);
}
retval = 0;
done:
if (cot)
co_free(cot, 0);
if (cy.cy_treename)
free (cy.cy_treename);
return retval;
}
/*! Parse a file containing a CLIgen spec into a parse-tree
*
* @param[in] h CLIgen handle
* @param[in] f Open stdio file handle
* @param[in] name Debug string identifying the spec, typically a filename
* @param[in] treename Initial treename, overriden by treename= in the clispec
* @param[in,out] pt Parse-tree, if set, add commands to this
* @param[out] cvv Global variables
* @see clispec_parse_str
*/
int
clispec_parse_file(cligen_handle h,
FILE *f,
char *name,
char *treename,
parse_tree *pt,
cvec *cvv)
{
char *buf;
int i;
int c;
int len;
int retval = -1;
len = 1024; /* any number is fine */
if ((buf = malloc(len)) == NULL){
perror("pt_file malloc");
return -1;
}
memset(buf, 0, len);
i = 0; /* position in buf */
while (1){ /* read the whole file */
if ((c = fgetc(f)) == EOF)
break;
if (i == len-1){
if ((buf = realloc(buf, 2*len)) == NULL){
fprintf(stderr, "%s: realloc: %s\n", __FUNCTION__, strerror(errno));
goto done;
}
memset(buf+len, 0, len);
len *= 2;
}
buf[i++] = (char)(c&0xff);
} /* read a line */
if (clispec_parse_str(h, buf, name, treename, pt, cvv) < 0)
goto done;
retval = 0;
done:
if (buf)
free(buf);
return retval;
}
/*! Assign functions for variable completion using a mapper function
*
* The mapping is done from string to C-function. This is done recursively.
* Example: Assume a CLIgen syntax:
* a <b:string>, fn();
* where
* fn() is called when "a 42 <CR>" is entered.
* In the CLIgen spec syntax, "fn" is a string and needs to be translated to actual
* function (pointer).
* This function goes through a complete parse-tree (pt) and applies the translator
* functions str2fn, if existring, to callback strings (eg "fn")
* in the parse-tree to produce function pointers (eg fn) which is stored in the
* parse-tree nodes. Later, at evaluation time, the actual function (fn) is
* called when evaluating/interpreting the syntax.
*
* @param[in] pt Parse-tree. Recursively loop through and call str2fn
* @param[in] str2fn Translator function from strings to function pointers for command
* callbacks. Call this function to translate callback functions
* for all nodes in the parse-tree.
* @param[in] arg Argument to call str2fn with
* @retval 0 OK
* @retval -1 Error and statement written on stderr
*
* @see cligen_expandv_str2fn For expansion/completion callbacks
* @note str2fn may return NULL on error and should then supply a (static) error string
*/
int
cligen_callbackv_str2fn(parse_tree *pt,
cgv_str2fn_t *str2fn,
void *arg)
{
int retval = -1;
cg_obj *co;
char *callback_err = NULL; /* Error from str2fn callback */
cg_callback *cc;
int i;
for (i=0; i<pt_len_get(pt); i++){
if ((co = pt_vec_i_get(pt, i)) != NULL){
for (cc = co->co_callbacks; cc; cc = co_callback_next(cc)){
if (cc->cc_fn_str != NULL &&
co_callback_fn_get(cc) == NULL){
/* Note str2fn is a function pointer */
co_callback_fn_set(cc, str2fn(cc->cc_fn_str, arg, &callback_err));
if (callback_err != NULL){
fprintf(stderr, "%s: error: No such function: %s (%s)\n",
__FUNCTION__, cc->cc_fn_str, callback_err);
goto done;
}
}
}
/* recursive call to next level */
if (cligen_callbackv_str2fn(co_pt_get(co), str2fn, arg) < 0)
goto done;
}
}
retval = 0;
done:
return retval;
}
/*! Assign functions for variable completion using a mapper function
*
* The mapping is done from string to C-function. This is done recursively.
* Example: Assume a CLIgen syntax:
* a <b:string fn("x","y")>;
* where
* fn() is called when "a <TAB>" is entered
* In the CLIgen spec syntax, "fn" is a string and needs to be translated to actual
* function (pointer).
* This function goes through a complete parse-tree (pt) and applies the translator
* functions str2fn, if existing, to callback strings (eg "fn")
* in the parse-tree to produce function pointers (eg fn) which is stored in the
* parse-tree nodes. Later, at evaluation time, the actual function (fn) is
* called when evaluating/interpreting the syntax.
*
* @param[in] pt parse-tree. Recursively loop thru this
* @param[in] str2fn Translator from strings to function pointers for expand variable
* callbacks.
* @param[in] arg Function argument for expand callbacks (at evaluation time).
* @see cligen_callbackv_str2fn for translating callback functions
*/
int
cligen_expandv_str2fn(parse_tree *pt,
expandv_str2fn_t *str2fn,
void *arg)
{
int retval = -1;
cg_obj *co;
char *callback_err = NULL; /* Error from str2fn callback */
int i;
for (i=0; i<pt_len_get(pt); i++){
if ((co = pt_vec_i_get(pt, i)) != NULL){
if (co->co_type == CO_VARIABLE &&
co->co_expand_fn_str != NULL && co->co_expandv_fn == NULL){
/* Note str2fn is a function pointer */
co->co_expandv_fn = str2fn(co->co_expand_fn_str, arg, &callback_err);
if (callback_err != NULL){
fprintf(stderr, "%s: error: No such function: %s\n",
__FUNCTION__, co->co_expand_fn_str);
goto done;
}
}
/* recursive call to next level */
if (cligen_expandv_str2fn(co_pt_get(co), str2fn, arg) < 0)
goto done;
}
}
retval = 0;
done:
return retval;
}
/*! Assign functions for translation of variables using a mapper function
*
* The mapping is done from string to C-function. This is done recursively.
* @param[in] pt Parse-tree. Recursively loop through and call str2fn
* @param[in] str2fn Translator function from strings to function pointers
* @param[in] arg Argument to call str2fn with
*/
int
cligen_translate_str2fn(parse_tree *pt,
translate_str2fn_t *str2fn,
void *arg)
{
int retval = -1;
cg_obj *co;
char *callback_err = NULL; /* Error from str2fn callback */
int i;
for (i=0; i<pt_len_get(pt); i++){
if ((co = pt_vec_i_get(pt, i)) != NULL){
if (co->co_type == CO_VARIABLE &&
co->co_translate_fn_str != NULL && co->co_translate_fn == NULL){
/* Note str2fn is a function pointer */
co->co_translate_fn = str2fn(co->co_translate_fn_str, arg, &callback_err);
if (callback_err != NULL){
fprintf(stderr, "%s: error: No such function: %s\n",
__FUNCTION__, co->co_translate_fn_str);
goto done;
}
}
/* recursive call to next level */
if (cligen_translate_str2fn(co_pt_get(co), str2fn, arg) < 0)
goto done;
}
}
retval = 0;
done:
return retval;
}
/*! Alias function
*
* @param[in] h CLIgen handle
* @param[in] cvv Vector of variables: function parameters
* @param[in] argv Arguments given at the callback: this is the command to be executed
* @retval 0 OK
* @retval -1 Error
* @see cliread_eval original fn
*/
int
cligen_alias_call(cligen_handle h,
cvec *cvv,
cvec *argv)
{
int retval = -1;
parse_tree *pt;
cg_obj *matchobj = NULL;
cvec *cvv2 = NULL;
cligen_result result;
char *reason = NULL;
if (argv == NULL || cvec_len(argv) != 1){
errno = EINVAL;
goto done;
}
if ((pt = cligen_pt_active_get(h)) == NULL){
errno = ENOENT;
goto done;
}
if (cliread_parse(h, cvec_i_str(argv, 0), pt, &matchobj, &cvv2, &result, &reason) < 0)
goto done;
if (result == CG_MATCH)
if (cligen_eval(h, matchobj, cvv2) < 0)
goto done;
retval = 0;
done:
if (matchobj)
co_free(matchobj, 0);
if (cvv2)
cvec_free(cvv2);
if (reason)
free(reason);
return retval;
}
/*! Add cli alias given treename (or default), alias name, helpstring and command
*
* Check if old alias exists, if so replace it, parse new syntax and insert into
* top-level parse-tree, and mark as alias.
* @param[in] h CLIgen handle
* @param[in] phname CLIgen parse-tree header / tree name
* @param[in] name Alias name
* @param[in] helpstr Help string of alias
* @param[in] command Alias expanded command
* @param[in] callback Alias callback (default cligen_alias_call)
* @retval 0 OK
* @retval -1 Error
*/
int
cligen_alias_add(cligen_handle h,
char *phname,
char *name,
char *helpstr,
char *command,
cgv_fnstype_t *callback)
{
int retval = -1;
cbuf *cb = NULL;
pt_head *ph;
parse_tree *pt;
cg_obj *co;
int i;
cg_callback *cc;
if (phname == NULL) {
if ((ph = cligen_ph_active_get(h)) == NULL){
errno = ENOENT;
goto done;
}
}
else {
if ((ph = cligen_ph_find(h, phname)) == NULL) {
errno = ENOENT;
goto done;
}
}
if ((pt = cligen_ph_parsetree_get(ph)) == NULL){
errno = ENOENT;
goto done;
}
/* Remove old alias, cant use search since need i for delete */
for (i=0; i<pt_len_get(pt); i++){
if ((co = pt_vec_i_get(pt, i)) == NULL)
continue;
if (strcmp(co->co_command, name) != 0)
continue;
if (co_flags_get(co, CO_FLAGS_ALIAS) == 0){
errno = EEXIST;
goto done;
}
pt_vec_i_delete(pt, i, 1);
break;
}
if ((cb = cbuf_new()) == NULL)
goto done;
cprintf(cb, "%s", name);
if (helpstr)
cprintf(cb, "(\"%s\")", helpstr);
cprintf(cb, ", cligen_alias_fn(\"%s\");", command);
if (clispec_parse_str(h, cbuf_get(cb), "Parsing alias command", NULL, pt, NULL) < 0){
goto done;
}
/* Sanity check and add alias flag */
if ((co = co_find_one(pt, name)) == NULL){
errno = ENOENT;
goto done;
}
co_flags_set(co, CO_FLAGS_ALIAS);
{
if ((cc = co->co_callbacks) == NULL){
fprintf(stderr, "No callback found\n");
goto done;
}
co_callback_fn_set(cc, callback?callback:cligen_alias_call);
}
retval = 0;
done:
if (cb)
cbuf_free(cb);
return retval;
}