-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathbasic.c
695 lines (541 loc) · 16.2 KB
/
basic.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
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
/*
* Copyright (c) 2017, [Ribose Inc](https://www.ribose.com).
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "actions.h"
#include "logger.h"
#include "real_impls.h"
#include "data_types.h"
#define ARR_MAX_COUNT 64
/*
* action_params:
* omit_params [array] - skip logging of params in this list
*/
static int ia_log_params
(struct ThreadContext *t_ctx,
const JSON_Object *action_params)
{
/*
* serialization to JSON format.
* Shall be the same for struct data type
* under presumption that both serializations define a complex data,
* this allows important unification between the serialization formats
*
* example
*
* * func(int_param,
* ptr_to_smth_param,
* ptr_to_arr_param,
* arr_count_param,
* ptr_to_struct_param)
*
* will be serialized to (with dereferencing one level):
*
* { "int_param" : "int_to_sz()", \
* "ptr_to_smth_param" : "ptr_to_sz()", \
* "*ptr_to_smth_param" : typeof(*)_to_sz(), \
* .ptr_to_arr_param = ptr_to_sz(), \
* .*ptr_to_arr_param = { typeof(*)_to_sz(), ..., typeof(*)_to_sz() }, \
* .arr_count_param = size_t_to_sz() }
*/
const struct FuncParam *param;
const struct FuncParam *arr_cnt_param;
const struct DataType *ref_data_type;
int ret;
size_t i;
int param_idx;
int cnt_param_idx;
JSON_Value *root_value;
JSON_Object *root_object;
JSON_Value *arr_val;
JSON_Array *omit_params;
size_t sz_size;
size_t arr_size;
size_t ref_data_size;
const void *ref_data;
char *sz;
/* one for * and one for '\0' */
char deref_sz[MAXLEN_PARAM_NAME + 2];
root_value = json_value_init_object();
root_object = json_value_get_object(root_value);
omit_params = NULL;
if (action_params != NULL)
omit_params = json_object_get_array(action_params, "omit_params");
for (param_idx = 0; param_idx != t_ctx->params_cnt; param_idx++) {
param = &t_ctx->params[param_idx];
/* check if this param is in omit_params array */
if (omit_params != NULL) {
for (i = 0; i < json_array_get_count(omit_params); i++) {
if (!retrace_real_impls.strcmp(
param->param_meta.name,
json_array_get_string(omit_params, i))) {
log_info("omitting param '%s'",
param->param_meta.name);
goto next_param;
}
}
}
sz_size = param->data_type->get_sz_size(
(const void *) ¶m->val,
param->data_type);
sz = (char *) retrace_real_impls.malloc(sz_size + 1);
param->data_type->to_sz(
(const void *) ¶m->val,
param->data_type,
sz);
json_object_set_string(root_object,
param->param_meta.name,
sz);
retrace_real_impls.free(sz);
if (param->param_meta.modifiers & CDM_POINTER) {
/* in case of pointers we want to dereference one level
* and handle arrays accordingly.
* FIXME: dereferencing may lead to loop if pointers
* reference each other
*/
/* TODO: Maybe should cast via data_type? */
ref_data = (void *) param->val;
ref_data_type =
retrace_datatype_get(param->param_meta.ref_type_name);
if (ref_data_type == NULL) {
log_err("get_param_type() failed for %s",
param->param_meta.ref_type_name);
break;
}
/* pointer to ARRAY */
if (param->param_meta.modifiers & CDM_ARRAY) {
for (cnt_param_idx = 0;
cnt_param_idx != t_ctx->params_cnt;
cnt_param_idx++) {
if (!retrace_real_impls.strcmp(
t_ctx->params[cnt_param_idx].param_meta.name,
param->param_meta.array_cnt_param))
break;
}
if (cnt_param_idx == t_ctx->params_cnt) {
log_err("wrong array_cnt_param for param '%s'",
param->param_meta.name);
break;
}
arr_cnt_param = &t_ctx->params[cnt_param_idx];
ret = arr_cnt_param->data_type->to_size_t(
(const void *) &arr_cnt_param->val,
&arr_size);
if (ret) {
log_err("to_size_t() failed for %s, error %d",
arr_cnt_param->param_meta.name, ret);
break;
}
} else
arr_size = 1;
if (arr_size > ARR_MAX_COUNT)
arr_size = ARR_MAX_COUNT;
arr_val = json_value_init_array();
while (arr_size) {
sz_size = ref_data_type->get_sz_size(ref_data,
ref_data_type);
sz = (char *) retrace_real_impls.malloc(
sz_size + 1);
ref_data_type->to_sz(ref_data,
ref_data_type, sz);
json_array_append_string(json_array(arr_val),
sz);
retrace_real_impls.free(sz);
/* advance to the next element */
ret = ref_data_type->get_size(ref_data,
ref_data_type,
&ref_data_size);
if (ret) {
log_err(
"get_size() failed for type %s, error %d",
ref_data_type->name,
ret);
break;
}
ref_data += ref_data_size;
arr_size--;
}
retrace_real_impls.snprintf(deref_sz,
sizeof(deref_sz),
"*%s", param->param_meta.name);
json_object_set_value(root_object, deref_sz, arr_val);
}
next_param:;
/* process next member */
}
//serialized_string = json_serialize_to_string_pretty(root_value);
/* finally */
//log_info("%s", serialized_string);
retrace_logger_log_json(ACTIONS, SEVERITY_INFO, root_value);
//json_free_serialized_string(serialized_string);
//json_value_free(root_value);
/* 0 indicates successful processing */
return 0;
}
static int ia_modify_in_param_str
(struct ThreadContext *t_ctx,
const JSON_Object *action_params)
{
const char *param_name;
const char *match_str;
const char *new_str;
const struct FuncParam *param;
int param_idx;
if (action_params == NULL) {
log_err("action_params must exists for modify_in_param_str");
return -1;
}
param_name = json_object_get_string(action_params,
"param_name");
if (param_name == NULL) {
log_err("param_name must exist in action_params "
"for modify_in_param_str");
return -1;
}
/* check that param exists in parsed params */
for (param_idx = 0; param_idx != t_ctx->params_cnt; param_idx++) {
if (!retrace_real_impls.strcmp(
t_ctx->params[param_idx].param_meta.name,
param_name))
break;
}
if (param_idx == t_ctx->params_cnt) {
log_err("param '%s', is not defined for func '%s'",
param_name, t_ctx->prototype->name);
return -1;
}
param = &t_ctx->params[param_idx];
/* check param in or inout */
if (param->param_meta.direction != PDIR_IN) {
log_err("param '%s' is not an input param", param_name);
return -1;
}
/* check param is a pointer to C string */
if (!(param->param_meta.modifiers & CDM_POINTER) ||
(retrace_real_impls.strcmp(
param->param_meta.ref_type_name, "sz"))) {
log_err("param '%s' is not a pointer to string", param_name);
return -1;
}
new_str = json_object_get_string(action_params,
"new_str");
if (new_str == NULL) {
log_err("new_str must exist in action_params "
"for modify_in_param_str");
return -1;
}
match_str = json_object_get_string(action_params,
"match_str");
if (match_str != NULL) {
log_info("match requested for param '%s', val='%s'",
param_name, match_str);
/* Note avoiding the use of data_types funcs
* since we know its a pointer to C str
*/
if (retrace_real_impls.strcmp(match_str,
(char *) param->val)) {
log_info("no match for param '%s'", param_name);
/* no match, do nothing */
return 0;
}
log_info("match for param '%s'", param_name);
} else
log_info("match not requested for param '%s'",
param_name);
/* allocate new str */
/* override if parameters is already modified */
if (t_ctx->params[param_idx].free_val) {
retrace_real_impls.free((void *) t_ctx->params[param_idx].val);
t_ctx->params[param_idx].free_val = 0;
}
t_ctx->params[param_idx].val =
(long) retrace_real_impls.malloc(
retrace_real_impls.strlen(new_str) + 1);
t_ctx->params[param_idx].free_val = 1;
retrace_real_impls.strcpy(
(char *) t_ctx->params[param_idx].val,
new_str);
/* mark allocation for clean up */
t_ctx->params[param_idx].free_val = 1;
log_info("param '%s' set to '%s'",
param_name, new_str);
/* 0 indicates successful processing */
return 0;
}
static int ia_modify_in_param_arr
(struct ThreadContext *t_ctx,
const JSON_Object *action_params)
{
const char *param_name;
const JSON_Array *match_arr;
const JSON_Array *new_arr;
struct FuncParam *param;
struct FuncParam *cnt_param;
int param_idx;
int cnt_param_idx;
char *match_str;
size_t match_idx;
char *param_arr;
size_t new_arr_idx;
char *new_str;
if (action_params == NULL) {
log_err("action_params must exists for modify_in_param_arr");
return -1;
}
param_name = json_object_get_string(action_params,
"param_name");
if (param_name == NULL) {
log_err("param_name must exist in action_params "
"for modify_in_param_arr");
return -1;
}
/* check that param exists in prototype */
for (param_idx = 0; param_idx != t_ctx->params_cnt; param_idx++) {
if (!retrace_real_impls.strcmp(
t_ctx->params[param_idx].param_meta.name,
param_name))
break;
}
if (param_idx == t_ctx->params_cnt) {
log_err("param '%s', is not defined for func '%s'",
param_name, t_ctx->prototype->name);
return -1;
}
param = &t_ctx->params[param_idx];
/* check param in or inout */
if (param->param_meta.direction != PDIR_IN) {
log_err("param '%s' is not an input param", param_name);
return -1;
}
/* check param is a pointer */
if (!(param->param_meta.modifiers & CDM_POINTER)) {
log_err("param '%s' is not a pointer", param_name);
return -1;
}
new_arr = json_object_get_array(action_params, "new_arr");
if (new_arr == NULL) {
log_err("new_arr must exist in action_params "
"for modify_in_param_arr");
return -1;
}
if (!json_array_get_count(new_arr)) {
log_err("new_arr cannot be empty for modify_in_param_arr");
return -1;
}
/* get match bytes */
match_arr = json_object_get_array(action_params, "match_arr");
if (match_arr != NULL) {
match_str = json_serialize_to_string_pretty(
json_array_get_wrapping_value(match_arr));
log_info("match requested for param '%s', val='%s'",
param_name, match_str);
json_free_serialized_string(match_str);
/* match loop
* TODO Consider to use size param as well
*/
for (match_idx = 0,
param_arr = (char *) param->val;
match_idx != json_array_get_count(match_arr);
match_idx++) {
if (param_arr[match_idx] !=
(char) json_array_get_number(match_arr, match_idx)) {
log_info("no match for param '%s'", param_name);
/* no match, do nothing */
return 0;
}
}
log_info("match for param '%s'", param_name);
} else
log_info("match not requested for param '%s'",
param_name);
/* allocate and override */
if (param->free_val) {
retrace_real_impls.free((void *) param->val);
param->free_val = 0;
}
param->val =
(long) retrace_real_impls.malloc(
json_array_get_count(new_arr));
param->free_val = 1;
for (new_arr_idx = 0;
new_arr_idx != json_array_get_count(new_arr);
new_arr_idx++) {
*((char *) (param->val + new_arr_idx)) =
(char) json_array_get_number(new_arr, new_arr_idx);
}
/* update the size param if exists */
if (retrace_real_impls.strlen(param->param_meta.array_cnt_param)) {
for (cnt_param_idx = 0;
cnt_param_idx != t_ctx->params_cnt;
cnt_param_idx++) {
if (!retrace_real_impls.strcmp(
t_ctx->params[cnt_param_idx].param_meta.name,
param->param_meta.array_cnt_param))
break;
}
if (cnt_param_idx == t_ctx->params_cnt) {
log_err("wrong array_cnt_param for param '%s'",
param->param_meta.name);
return -1;
}
cnt_param = &t_ctx->params[cnt_param_idx];
/* not sure size_t or int or use virtual method */
cnt_param->val = json_array_get_count(new_arr);
log_info("array_cnt_param '%s' set to '%ld",
cnt_param->param_meta.name,
cnt_param->val);
}
new_str = json_serialize_to_string_pretty(
json_array_get_wrapping_value(new_arr));
log_info("param '%s' set to '%s",
param_name, new_str);
json_free_serialized_string(new_str);
/* 0 indicates successful processing */
return 0;
}
static int ia_modify_in_param_int
(struct ThreadContext *t_ctx,
const JSON_Object *action_params)
{
const char *param_name;
double match_int;
double new_int;
int param_idx;
struct FuncParam *param;
if (action_params == NULL) {
log_err("action_params must exists for modify_in_param_int");
return -1;
}
param_name = json_object_get_string(action_params,
"param_name");
if (param_name == NULL) {
log_err("param_name must exist in action_params "
"for modify_in_param_int");
return -1;
}
/* check that param exists in prototype */
for (param_idx = 0; param_idx != t_ctx->params_cnt; param_idx++) {
if (!retrace_real_impls.strcmp(
t_ctx->params[param_idx].param_meta.name,
param_name))
break;
}
if (param_idx == t_ctx->params_cnt) {
log_err("param '%s', is not defined for func '%s'",
param_name, t_ctx->prototype->name);
return -1;
}
param = &t_ctx->params[param_idx];
/* check param in or inout */
if (param->param_meta.direction != PDIR_IN) {
log_err("param '%s' is not an input param", param_name);
return -1;
}
if (!json_object_has_value(action_params, "new_int")) {
log_err("new_int must exist in action_params "
"for modify_in_param_int");
return -1;
}
new_int = json_object_get_number(action_params, "new_int");
if (json_object_has_value(action_params, "match_int")) {
match_int = json_object_get_number(action_params, "match_int");
log_info("match requested for param '%s', val='%d",
param_name, (int) match_int);
if (((int) param->val) != (int) match_int) {
log_info("no match for param '%s'", param_name);
/* no match, do nothing */
return 0;
}
log_info("match for param '%s'", param_name);
} else
log_info("match not requested for param '%s'",
param_name);
/* direct modification */
param->val = (long) new_int;
log_info("param '%s' set to '%d'",
param_name, (int) new_int);
/* 0 indicates successful processing */
return 0;
}
static int ia_call_real
(struct ThreadContext *t_ctx,
const JSON_Object *action_params)
{
(void)(action_params);
log_dbg("calling real at 0x%lx for %s...",
(long) t_ctx->real_impl,
t_ctx->prototype->name);
t_ctx->ret_val = retrace_as_call_real(t_ctx->real_impl,
t_ctx->params,
t_ctx->params_cnt);
log_dbg("real returned val=0x%lx", t_ctx->ret_val);
/* 0 indicates successful processing */
return 0;
}
static int ia_modify_return_value_int
(struct ThreadContext *t_ctx,
const JSON_Object *action_params)
{
double new_int;
if (action_params == NULL) {
log_err("action_params must exists for modify_return_value_int");
return -1;
}
if (!json_object_has_value(action_params, "retval_int")) {
log_err("retval_int must exist in action_params "
"for modify_return_value_int");
return -1;
}
new_int = json_object_get_number(action_params, "retval_int");
t_ctx->ret_val = (long) new_int;
log_info("retval set to '%d'",
(int) new_int);
/* 0 indicates successful processing */
return 0;
}
retrace_actions_define_package(basic) = {
{
.name = "log_params",
.action = ia_log_params
},
{
.name = "call_real",
.action = ia_call_real
},
{
.name = "modify_in_param_str",
.action = ia_modify_in_param_str
},
{
.name = "modify_in_param_int",
.action = ia_modify_in_param_int
},
{
.name = "modify_in_param_arr",
.action = ia_modify_in_param_arr
},
{
.name = "modify_return_value_int",
.action = ia_modify_return_value_int
}
};