36
36
#include <stdio.h>
37
37
#endif
38
38
39
- #define CTL_MAX_ENTRIES 100
40
-
41
39
#define MAX_CONFIG_FILE_LEN (1 << 20) /* 1 megabyte */
42
40
43
41
#define CTL_STRING_QUERY_SEPARATOR ";"
49
47
static int ctl_global_first_free = 0 ;
50
48
static umf_ctl_node_t CTL_NODE (global )[CTL_MAX_ENTRIES ];
51
49
52
- /*
53
- * This is the top level node of the ctl tree structure. Each node can contain
54
- * children and leaf nodes.
55
- *
56
- * Internal nodes simply create a new path in the tree whereas child nodes are
57
- * the ones providing the read/write functionality by the means of callbacks.
58
- *
59
- * Each tree node must be NULL-terminated, CTL_NODE_END macro is provided for
60
- * convenience.
61
- */
62
- struct ctl {
63
- umf_ctl_node_t root [CTL_MAX_ENTRIES ];
64
- int first_free ;
65
- };
66
-
67
50
void * Zalloc (size_t sz ) {
68
51
void * ptr = umf_ba_global_alloc (sz );
69
52
if (ptr ) {
@@ -81,32 +64,41 @@ char *Strdup(const char *s) {
81
64
return p ;
82
65
}
83
66
84
- umf_result_t umfCtlGet (const char * name , void * ctx , void * arg ) {
85
- if (name == NULL || arg == NULL || ctx == NULL ) {
67
+ umf_result_t umfCtlGet (const char * name , void * ctx , void * arg , size_t size ) {
68
+ if (name == NULL || arg == NULL ) {
69
+ return UMF_RESULT_ERROR_INVALID_ARGUMENT ;
70
+ }
71
+ // using ctx is disallowed for default settings
72
+ if (ctx && strstr (name , ".default." )) {
86
73
return UMF_RESULT_ERROR_INVALID_ARGUMENT ;
87
74
}
88
75
return ctl_query (NULL , ctx , CTL_QUERY_PROGRAMMATIC , name , CTL_QUERY_READ ,
89
- arg )
76
+ arg , size )
90
77
? UMF_RESULT_ERROR_UNKNOWN
91
78
: UMF_RESULT_SUCCESS ;
92
79
}
93
80
94
- umf_result_t umfCtlSet (const char * name , void * ctx , void * arg ) {
95
- if (name == NULL || arg == NULL || ctx == NULL ) {
81
+ umf_result_t umfCtlSet (const char * name , void * ctx , void * arg , size_t size ) {
82
+ // Context can be NULL when setting defaults
83
+ if (name == NULL || arg == NULL || size == 0 ) {
84
+ return UMF_RESULT_ERROR_INVALID_ARGUMENT ;
85
+ }
86
+ // using ctx is disallowed for default settings
87
+ if (ctx && strstr (name , ".default." )) {
96
88
return UMF_RESULT_ERROR_INVALID_ARGUMENT ;
97
89
}
98
90
return ctl_query (NULL , ctx , CTL_QUERY_PROGRAMMATIC , name , CTL_QUERY_WRITE ,
99
- arg )
91
+ arg , size )
100
92
? UMF_RESULT_ERROR_UNKNOWN
101
93
: UMF_RESULT_SUCCESS ;
102
94
}
103
95
104
- umf_result_t umfCtlExec (const char * name , void * ctx , void * arg ) {
96
+ umf_result_t umfCtlExec (const char * name , void * ctx , void * arg , size_t size ) {
105
97
if (name == NULL || arg == NULL || ctx == NULL ) {
106
98
return UMF_RESULT_ERROR_INVALID_ARGUMENT ;
107
99
}
108
100
return ctl_query (NULL , ctx , CTL_QUERY_PROGRAMMATIC , name ,
109
- CTL_QUERY_RUNNABLE , arg )
101
+ CTL_QUERY_RUNNABLE , arg , size )
110
102
? UMF_RESULT_ERROR_UNKNOWN
111
103
: UMF_RESULT_SUCCESS ;
112
104
}
@@ -287,10 +279,10 @@ static void ctl_query_cleanup_real_args(const umf_ctl_node_t *n, void *real_arg,
287
279
*/
288
280
static int ctl_exec_query_read (void * ctx , const umf_ctl_node_t * n ,
289
281
umf_ctl_query_source_t source , void * arg ,
290
- umf_ctl_index_utlist_t * indexes ,
282
+ size_t size , umf_ctl_index_utlist_t * indexes ,
291
283
const char * extra_name ,
292
284
umf_ctl_query_type_t query_type ) {
293
- (void )extra_name , ( void ) query_type ;
285
+ (void )query_type ;
294
286
assert (n != NULL );
295
287
assert (n -> cb [CTL_QUERY_READ ] != NULL );
296
288
assert (MAX_CTL_QUERY_TYPE != query_type );
@@ -300,7 +292,7 @@ static int ctl_exec_query_read(void *ctx, const umf_ctl_node_t *n,
300
292
return -1 ;
301
293
}
302
294
303
- return n -> cb [CTL_QUERY_READ ](ctx , source , arg , indexes , NULL ,
295
+ return n -> cb [CTL_QUERY_READ ](ctx , source , arg , size , indexes , extra_name ,
304
296
MAX_CTL_QUERY_TYPE );
305
297
}
306
298
@@ -309,10 +301,10 @@ static int ctl_exec_query_read(void *ctx, const umf_ctl_node_t *n,
309
301
*/
310
302
static int ctl_exec_query_write (void * ctx , const umf_ctl_node_t * n ,
311
303
umf_ctl_query_source_t source , void * arg ,
312
- umf_ctl_index_utlist_t * indexes ,
304
+ size_t size , umf_ctl_index_utlist_t * indexes ,
313
305
const char * extra_name ,
314
306
umf_ctl_query_type_t query_type ) {
315
- (void )extra_name , ( void ) query_type ;
307
+ (void )query_type ;
316
308
assert (n != NULL );
317
309
assert (n -> cb [CTL_QUERY_WRITE ] != NULL );
318
310
assert (MAX_CTL_QUERY_TYPE != query_type );
@@ -327,8 +319,8 @@ static int ctl_exec_query_write(void *ctx, const umf_ctl_node_t *n,
327
319
return -1 ;
328
320
}
329
321
330
- int ret = n -> cb [CTL_QUERY_WRITE ](ctx , source , real_arg , indexes , NULL ,
331
- MAX_CTL_QUERY_TYPE );
322
+ int ret = n -> cb [CTL_QUERY_WRITE ](ctx , source , real_arg , size , indexes ,
323
+ extra_name , MAX_CTL_QUERY_TYPE );
332
324
ctl_query_cleanup_real_args (n , real_arg , source );
333
325
334
326
return ret ;
@@ -339,31 +331,32 @@ static int ctl_exec_query_write(void *ctx, const umf_ctl_node_t *n,
339
331
*/
340
332
static int ctl_exec_query_runnable (void * ctx , const umf_ctl_node_t * n ,
341
333
umf_ctl_query_source_t source , void * arg ,
342
- umf_ctl_index_utlist_t * indexes ,
334
+ size_t size , umf_ctl_index_utlist_t * indexes ,
343
335
const char * extra_name ,
344
336
umf_ctl_query_type_t query_type ) {
345
337
(void )extra_name , (void )query_type ;
346
338
assert (n != NULL );
347
339
assert (n -> cb [CTL_QUERY_RUNNABLE ] != NULL );
348
340
assert (MAX_CTL_QUERY_TYPE != query_type );
349
- return n -> cb [CTL_QUERY_RUNNABLE ](ctx , source , arg , indexes , NULL ,
350
- MAX_CTL_QUERY_TYPE );
341
+ return n -> cb [CTL_QUERY_RUNNABLE ](ctx , source , arg , size , indexes ,
342
+ extra_name , MAX_CTL_QUERY_TYPE );
351
343
}
352
344
353
345
static int ctl_exec_query_subtree (void * ctx , const umf_ctl_node_t * n ,
354
346
umf_ctl_query_source_t source , void * arg ,
355
- umf_ctl_index_utlist_t * indexes ,
347
+ size_t size , umf_ctl_index_utlist_t * indexes ,
356
348
const char * extra_name ,
357
349
umf_ctl_query_type_t query_type ) {
358
350
assert (n != NULL );
359
351
assert (n -> cb [CTL_QUERY_SUBTREE ] != NULL );
360
352
assert (MAX_CTL_QUERY_TYPE != query_type );
361
- return n -> cb [CTL_QUERY_SUBTREE ](ctx , source , arg , indexes , extra_name ,
353
+ return n -> cb [CTL_QUERY_SUBTREE ](ctx , source , arg , size , indexes , extra_name ,
362
354
query_type );
363
355
}
364
356
365
357
typedef int (* umf_ctl_exec_query_t )(void * ctx , const umf_ctl_node_t * n ,
366
358
umf_ctl_query_source_t source , void * arg ,
359
+ size_t size ,
367
360
umf_ctl_index_utlist_t * indexes ,
368
361
const char * extra_name ,
369
362
umf_ctl_query_type_t query_type );
@@ -380,7 +373,8 @@ static umf_ctl_exec_query_t ctl_exec_query[MAX_CTL_QUERY_TYPE] = {
380
373
* from the ctl tree
381
374
*/
382
375
int ctl_query (struct ctl * ctl , void * ctx , umf_ctl_query_source_t source ,
383
- const char * name , umf_ctl_query_type_t type , void * arg ) {
376
+ const char * name , umf_ctl_query_type_t type , void * arg ,
377
+ size_t size ) {
384
378
if (name == NULL ) {
385
379
errno = EINVAL ;
386
380
return -1 ;
@@ -417,10 +411,9 @@ int ctl_query(struct ctl *ctl, void *ctx, umf_ctl_query_source_t source,
417
411
goto out ;
418
412
}
419
413
420
- const char * extra_name = & name [0 ] + name_offset ;
421
414
ret =
422
415
ctl_exec_query [n -> type == CTL_NODE_SUBTREE ? CTL_QUERY_SUBTREE : type ](
423
- ctx , n , source , arg , indexes , extra_name , type );
416
+ ctx , n , source , arg , size , indexes , name + name_offset , type );
424
417
out :
425
418
ctl_delete_indexes (indexes );
426
419
@@ -487,7 +480,7 @@ static int ctl_load_config(struct ctl *ctl, void *ctx, char *buf) {
487
480
}
488
481
489
482
r = ctl_query (ctl , ctx , CTL_QUERY_CONFIG_INPUT , name , CTL_QUERY_WRITE ,
490
- value );
483
+ value , 0 );
491
484
492
485
if (r < 0 && ctx != NULL ) {
493
486
return -1 ;
0 commit comments