summaryrefslogtreecommitdiff
path: root/cesar/host/fcall/fcall.h
blob: e6592e17676502e642ed8795613038feb1630f10 (plain)
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
#ifndef FCALL_H_
#define FCALL_H_

/* Cesar project {{{
 *
 * Copyright (C) 2007 Spidcom
 *
 * <<<Licence>>>
 *
 * }}} */
 
 /**
 * \file    fcall.h
 * \brief   The remote function call layer for fulminata.
 * \ingroup host
 *
 * This file descibe the content of fcall structures used by fulminata sci layer
 *
 * \todo  
 */

#include <string.h>
#include "maximus/common/types/functioncall_types.h"
#ifndef UNIT_TEST
#include "lib/swap.h"
#else /* UNIT_TEST */
#include <arpa/inet.h>
#endif /* UNIT_TEST */
#include "host/config.h"
#include "host/fwd.h"
#include "host/sci/sci.h"
#include "host/station/station.h"
#include "lib/bitstream.h"

#include "config/fcall/mme.h"
#if CONFIG_FCALL_MME
#undef FUNCTION_CALL_PARAM_MAX_SIZE
#define FUNCTION_CALL_PARAM_MAX_SIZE 1024
#endif /* CONFIG_FCALL_MME */

#define PROBE_ID_MAX_SIZE FUNCTION_CALL_ID_MAX_SIZE
#define PROBE_VAR_MAX_NB FUNCTION_CALL_FUNCTION_MAX_NB

struct station_ctx;
struct sci_msg;

/** type of fcall message; used by fcall msg header */
typedef enum Function_Call_Type fcall_type_t;

struct fcall_param_elt 
{
    /** parameter id in string format */
    char *id;
    /** parameter data length */
    unsigned short length;
    /** parameter data */
    unsigned char *data;
};  

struct fcall_param
{
    /** function id in string format */
    char id[FUNCTION_CALL_ID_MAX_SIZE];
    /** identifier for asynchronous function call return */ 
    unsigned short msg_id;
    /** true if rteurn from function call is asynchronous */
    int is_async;
    /** function parameters table */
    struct fcall_param_elt param_table[FUNCTION_CALL_PARAM_MAX_NB];
    /** number of parameter */ 
    int param_nb;
};

typedef struct fcall_param fcall_param_t;

/** fcall registring list */
struct fcall_function
{
    /** function id in string format */
    char id[FUNCTION_CALL_ID_MAX_SIZE];
    /** callback function to use */
    int (* function)(fcall_ctx_t *fcall, fcall_param_t **param, sci_msg_t **msg, void *data);
    /* pointer to private data called by function */
    void *data;
};  

/** fcall context definition */
struct fcall_ctx
{
    /** current sci context */
    struct sci_ctx *sci;
    /** table of registered functions */
    struct fcall_function function_table[FUNCTION_CALL_FUNCTION_MAX_NB];
    /** number of registered functions */
    int function_nb;
};

/** variable register structure */
struct probe_var
{
    /** var id in string format */
    char id[PROBE_ID_MAX_SIZE];
    unsigned short length;
    /** memory address of var */
    void *addr;
};

typedef struct probe_var probe_var_t;

/** probe context definition */
struct probe_ctx
{
    struct fcall_ctx *fcall;
    struct probe_var var_table[PROBE_VAR_MAX_NB];
    int var_nb;
};

//BEGIN_DECLS

/**
 * create a new fcall_param context, to manage fcall parameter list
 * \param function_id function id as string
 * \return the new fcall_param context, NULL if failed with errno=
 * - EINVAL if function_id is NULL
 */
fcall_param_t *fcall_param_new(char *function_id);

/**
 * fcall_param context destruction with memory freeing.
 * \param param pointer to fcall_param context to destroy
 */
void fcall_param_free(fcall_param_t *param);

/**
 * init the parameter table to add new paramters inside the message
 * \param param pointer to param context
 * \param id string id of parameters' function
 * \param msg_id id of fcall message to process asynchronous calls
 * \return 0 if ok, -1 if failed with errno=
 * - EINVAL if fcall or id is NULL
 * - ENAMETOOLONG if id length >= FUNCTION_CALL_ID_MAX_SIZE
 */
int fcall_param_init(fcall_param_t *param, char *id, unsigned short msg_id);

/**
 * reset the parameter table and buffer to add new paramters inside the message
 * function id, msg id and is_async stay unmodified
 * \param param pointer to param context
 * \return 0 if ok, -1 if failed with errno=
 * - EINVAL if fcall is NULL
 */
int fcall_param_reset(fcall_param_t *param);

/**
 * set if fucntion call return is asynchronous
 * \param param pointer to param context to set
 * \param async boolean to set if return is asynchronous
 */
static inline void fcall_param_set_async(fcall_param_t *param, int async)
{
    param->is_async = async;
    return;
}

/**
 * get function id
 * \param param pointer to fcall_param structure
 * \return current function id of param
 */
static inline char *fcall_param_get_id(fcall_param_t *param)
{
    return param->id;
}

/**
 * get message id
 * \param param pointer to fcall_param structure
 * \return current message id of param
 */
static inline unsigned short fcall_param_get_msg_id(fcall_param_t *param)
{
    return param->msg_id;
}

static inline void* fcall_param_copy(fcall_param_t *copy, fcall_param_t *source)
{
    return memcpy(copy, source, sizeof(fcall_param_t));
}

/**
 * find if a parameter, according to its id, is contained into an sci message
 * \param param pointer to param context
 * \param msg sci message containing the parameters
 * \param id identifier of wanted parameter as string format
 * \return true if parameter was found, false otherwise or if failed with errno=
 * - EINVAL if param, msg or id is NULL
 * - ENOENT if param->param_nb is invalid
 */
bool fcall_is_param(
     fcall_param_t *param, 
     sci_msg_t *msg, 
     char *id);

/**
 * find a parameter according to its id and bind it into a user variable
 * \param param pointer to param context
 * \param msg sci message containing the parameters
 * \param id identifier of wanted parameter as string format
 * \param max_length maximum length of receiving data area
 * \param data pointer to data area where to put the found parameter
 * \return actual length of binded data if ok, -1 if failed with errno=
 * - EINVAL if param, id or data is NULL
 * - ENOENT if id has not been found into parameter context
 */
int fcall_param_bind(
    fcall_param_t *param, 
    sci_msg_t *msg, 
    char *id,
    unsigned int max_length, 
    void *data);

/**
 * helper function to bind a u64 into a user variable;
 * value is converted from BIG-ENDIAN format (network) to CPU format
 * \param param pointer to param context
 * \param msg sci message containing the parameters
 * \param id identifier of wanted parameter as string format
 * \param data pointer to data area where to put the found parameter
 * \return actual length of binded data if ok, -1 if failed with errno=
 * - EINVAL if param, id or data is NULL
 * - ENOENT if id has not been found into parameter context
 */
static inline int fcall_param_bind_ll(
    fcall_param_t *param, 
    sci_msg_t *msg, 
    char *id, 
    void *data)
{
    int result = -1;
    u32 high = 0, low = 0;

    result = fcall_param_bind(param, msg, id, sizeof(u64), data);

    high = (u32)(*((u64 *)data) >> 32);
    low = (u32)(*((u64 *)data) & 0x00000000ffffffffL);
    *((u64 *)data) = (((u64)(ntohl(high))) << 32) | (u64)(ntohl(low));

    return result;
}

/**
 * helper function to bind a long integer into a user variable;
 * value is converted from BIG-ENDIAN format (network) to CPU format
 * \param param pointer to param context
 * \param msg sci message containing the parameters
 * \param id identifier of wanted parameter as string format
 * \param data pointer to data area where to put the found parameter
 * \return actual length of binded data if ok, -1 if failed with errno=
 * - EINVAL if param, id or data is NULL
 * - ENOENT if id has not been found into parameter context
 */
static inline int fcall_param_bind_long(
    fcall_param_t *param, 
    sci_msg_t *msg, 
    char *id, 
    void *data)
{
    int result;
    result = fcall_param_bind(param, msg, id, sizeof(long), data);
    *((long *)data) = ntohl(*((long *)data));
    return result;
}

/**
 * helper function to bind a short integer into a user variable;
 * value is converted from BIG-ENDIAN format (network) to CPU format
 * \param param pointer to param context
 * \param msg sci message containing the parameters
 * \param id identifier of wanted parameter as string format
 * \param data pointer to data area where to put the found parameter
 * \return actual length of binded data if ok, -1 if failed with errno=
 * - EINVAL if param, id or data is NULL
 * - ENOENT if id has not been found into parameter context
 */
static inline int fcall_param_bind_short(
    fcall_param_t *param, 
    sci_msg_t *msg, 
    char *id, 
    void *data)
{
    int result;
    result = fcall_param_bind(param, msg, id, sizeof(short), data);
    *((short *)data) = ntohs(*((short *)data));
    return result;
}

/**
 * Helper macro to bind a variable.
 * \param  param  param context
 * \param  msg  sci message
 * \param  id  parameter identifier
 * \param  var  variable to bind
 * \return  true if successful (parameter exists and has the right size)
 */
#define fcall_param_bind_helper_(param, msg, id, var) \
    (fcall_is_param ((param), (msg), (id)) \
     && (fcall_param_bind ((param), (msg), (id), sizeof (var), &(var)) \
         == sizeof (var)))

/**
 * Helper macro to bind a variable.
 * \param  id  parameter identifier
 * \param  var  variable to bind
 * \return  true if successful (parameter exists and has the right size)
 *
 * Variables param and msg must be defined.
 */
#define fcall_param_bind_helper(id, var) \
    fcall_param_bind_helper_ (*param, *msg, (id), (var))

/**
 * Helper macro to bind a long long integer.
 * \param  param  param context
 * \param  msg  sci message
 * \param  id  parameter identifier
 * \param  var  variable to bind
 * \return  true if successful (parameter exists and has the right size)
 */
#define fcall_param_bind_ll_helper_(param, msg, id, var) \
    (fcall_is_param ((param), (msg), (id)) \
     && (fcall_param_bind_ll ((param), (msg), (id), &(var)) \
         == sizeof (var)))

/**
 * Helper macro to bind a long long integer.
 * \param  id  parameter identifier
 * \param  var  variable to bind
 * \return  true if successful (parameter exists and has the right size)
 *
 * Variables param and msg must be defined.
 */
#define fcall_param_bind_ll_helper(id, var) \
    fcall_param_bind_ll_helper_ (*param, *msg, (id), (var))

/**
 * Helper macro to bind a long integer.
 * \param  param  param context
 * \param  msg  sci message
 * \param  id  parameter identifier
 * \param  var  variable to bind
 * \return  true if successful (parameter exists and has the right size)
 */
#define fcall_param_bind_long_helper_(param, msg, id, var) \
    (fcall_is_param ((param), (msg), (id)) \
     && (fcall_param_bind_long ((param), (msg), (id), &(var)) \
         == sizeof (var)))

/**
 * Helper macro to bind a long integer.
 * \param  id  parameter identifier
 * \param  var  variable to bind
 * \return  true if successful (parameter exists and has the right size)
 *
 * Variables param and msg must be defined.
 */
#define fcall_param_bind_long_helper(id, var) \
    fcall_param_bind_long_helper_ (*param, *msg, (id), (var))

/**
 * Helper macro to bind a short integer.
 * \param  param  param context
 * \param  msg  sci message
 * \param  id  parameter identifier
 * \param  var  variable to bind
 * \return  true if successful (parameter exists and has the right size)
 */
#define fcall_param_bind_short_helper_(param, msg, id, var) \
    (fcall_is_param ((param), (msg), (id)) \
     && (fcall_param_bind_short ((param), (msg), (id), &(var)) \
         == sizeof (var)))

/**
 * Helper macro to bind a short integer.
 * \param  id  parameter identifier
 * \param  var  variable to bind
 * \return  true if successful (parameter exists and has the right size)
 *
 * Variables param and msg must be defined.
 */
#define fcall_param_bind_short_helper(id, var) \
    fcall_param_bind_short_helper_ (*param, *msg, (id), (var))

/**
 * add a new parameter element into the parameter context
 * \param param pointer to param context where to add new parameter
 * \param msg pointer to sci message to add the paramter
 * \param id id of new parameter
 * \param length length of new parameter
 * \param data pointer to data of new added parameter
 * \return 0 if ok, -1 if failed with errno=
 * - EINVAL if param, id of data is NULL, or if length < 0 or > FUNCTION_CALL_PARAM_MAX_SIZE
 * - ENAMETOOLONG if id length >= FUNCTION_CALL_ID_MAX_SIZE
 * - ENOSPC if parameter nb is already FUNCTION_CALL_PARAM_MAX_NB
 */
int fcall_param_add(fcall_param_t *param, sci_msg_t *msg, char *id, int length, void *data);

/**
 * helper to add a new u64 parameter element into the parameter context;
 * long value is set into BIG-ENDIAN format (network)
 * \param param pointer to param context where to add new parameter
 * \param msg pointer to sci message to add the paramter
 * \param id id of new parameter
 * \param data pointer to data of new added parameter
 * \return 0 if ok, -1 if failed with errno=
 * - EINVAL if param, id of data is NULL, or if length < 0 or > FUNCTION_CALL_PARAM_MAX_SIZE
 * - ENAMETOOLONG if id length >= FUNCTION_CALL_ID_MAX_SIZE
 * - ENOSPC if parameter nb is already FUNCTION_CALL_PARAM_MAX_NB
 */
static inline int fcall_param_add_ll(fcall_param_t *param, sci_msg_t *msg, char *id, void *data)
{
    u64 tmp = 0;
    u32 high = 0, low = 0;

    high = (u32)(*((u64 *)data) >> 32);
    low = (u32)(*((u64 *)data) & 0x00000000ffffffffL);
    tmp = (((u64)(htonl(high))) << 32) | (u64)(htonl(low));

    return fcall_param_add(param, msg, id, sizeof(u64), &tmp);
}

/**
 * helper to add a new long parameter element into the parameter context;
 * long value is set into BIG-ENDIAN format (network)
 * \param param pointer to param context where to add new parameter
 * \param msg pointer to sci message to add the paramter
 * \param id id of new parameter
 * \param data pointer to data of new added parameter
 * \return 0 if ok, -1 if failed with errno=
 * - EINVAL if param, id of data is NULL, or if length < 0 or > FUNCTION_CALL_PARAM_MAX_SIZE
 * - ENAMETOOLONG if id length >= FUNCTION_CALL_ID_MAX_SIZE
 * - ENOSPC if parameter nb is already FUNCTION_CALL_PARAM_MAX_NB
 */
static inline int fcall_param_add_long(fcall_param_t *param, sci_msg_t *msg, char *id, void *data)
{
    long tmp;
    tmp = htonl(*((long *)data));
    return fcall_param_add(param, msg, id, sizeof(long), &tmp);
}

/**
 * helper to add a new short parameter element into the parameter context;
 * long value is set into BIG-ENDIAN format (network)
 * \param param pointer to param context where to add new parameter
 * \param msg pointer to sci message to add the paramter
 * \param id id of new parameter
 * \param data pointer to data of new added parameter
 * \return 0 if ok, -1 if failed with errno=
 * - EINVAL if param, id of data is NULL, or if length < 0 or > FUNCTION_CALL_PARAM_MAX_SIZE
 * - ENAMETOOLONG if id length >= FUNCTION_CALL_ID_MAX_SIZE
 * - ENOSPC if parameter nb is already FUNCTION_CALL_PARAM_MAX_NB
 */
static inline int fcall_param_add_short(fcall_param_t *param, sci_msg_t *msg, char *id, void *data)
{
    short tmp;
    tmp = htons(*((short *)data));
    return fcall_param_add(param, msg, id, sizeof(short), &tmp);
}

/**
 * Helper macro to add a variable.
 * \param  param  param context
 * \param  msg  sci message
 * \param  id  parameter identifier
 * \param  var  variable to add
 */
#define fcall_param_add_helper_(param, msg, id, var) \
    dbg_check (fcall_param_add ((param), (msg), (id), sizeof (var), \
                                &(var)) != -1)

/**
 * Helper macro to add a variable.
 * \param  id  parameter identifier
 * \param  var  variable to bind
 *
 * Variables param and msg must be defined.
 */
#define fcall_param_add_helper(id, var) \
    fcall_param_add_helper_ (&param, &msg, (id), (var))

/**
 * Helper macro to add a long long integer.
 * \param  param  param context
 * \param  msg  sci message
 * \param  id  parameter identifier
 * \param  var  variable to add
 */
#define fcall_param_add_ll_helper_(param, msg, id, var) \
    dbg_check (fcall_param_add_ll ((param), (msg), (id), \
                                   &(var)) != -1)

/**
 * Helper macro to add a long long integer.
 * \param  id  parameter identifier
 * \param  var  variable to bind
 *
 * Variables param and msg must be defined.
 */
#define fcall_param_add_ll_helper(id, var) \
    fcall_param_add_ll_helper_ (&param, &msg, (id), (var))

/**
 * Helper macro to add a long integer.
 * \param  param  param context
 * \param  msg  sci message
 * \param  id  parameter identifier
 * \param  var  variable to add
 */
#define fcall_param_add_long_helper_(param, msg, id, var) \
    dbg_check (fcall_param_add_long ((param), (msg), (id), \
                                     &(var)) != -1)

/**
 * Helper macro to add a long integer.
 * \param  id  parameter identifier
 * \param  var  variable to bind
 *
 * Variables param and msg must be defined.
 */
#define fcall_param_add_long_helper(id, var) \
    fcall_param_add_long_helper_ (&param, &msg, (id), (var))

/**
 * Helper macro to add a short integer.
 * \param  param  param context
 * \param  msg  sci message
 * \param  id  parameter identifier
 * \param  var  variable to add
 */
#define fcall_param_add_short_helper_(param, msg, id, var) \
    dbg_check (fcall_param_add_short ((param), (msg), (id), \
                                      &(var)) != -1)

/**
 * Helper macro to add a short integer.
 * \param  id  parameter identifier
 * \param  var  variable to bind
 *
 * Variables param and msg must be defined.
 */
#define fcall_param_add_short_helper(id, var) \
    fcall_param_add_short_helper_ (&param, &msg, (id), (var))

/**
 * create a new fcall context.
 * \param station current station context
 * \return the new fcall context, NULL if failed with errno=
 * - EINVAL if sstation == NULL
 */
fcall_ctx_t *fcall_new(station_ctx_t *station);

/**
 * fcall context destruction with memory freeing.
 * \param fcall pointer to fcall context to destroy
 */
void fcall_free(fcall_ctx_t *fcall);

/**
 * initialize a static fcall context, called during station context creation.
 * \param fcall fcall context to initialize
 * \param sci sci which uses the fcall context
 * \return 0 if ok, -1 if failed with errno=
 * - EINVAL if fcall or station is NULL
 */
int fcall_init(fcall_ctx_t *fcall, sci_ctx_t *sci);

/**
 * fcall callback function registering
 * \param fcall pointer to current fcall context
 * \param id function string id
 * \param function pointer to callback function
 * \param data pointer to private function data
 * \return 0 if ok, -1 if fail with errno=
 * - EINVAL if fcall or id is NULL
 * - ENAMETOOLONG if id length is >= FUNCTION_CALL_ID_MAX_SIZE
 * - ENOSPC if max number of registred function is reached
 * - EEXIST if function is already registered
 */
int fcall_register(fcall_ctx_t *fcall, char *id, int (* function)(fcall_ctx_t *fcall, fcall_param_t **param, sci_msg_t **msg, void *data), void *data);

/**
 * fill a blank fcall header with needed parameter number
 * \param fcall current fcall context
 * \param msg pointer to sci message to fill header
 * \param param pointer to parameter structure to fill into msg
 * \param flags flags of message
 * \return 0 if ok, -1 if failed with errno:
 * - EINVAL if param or msg are NULL 
 */
int fcall_fill_hdr(
    fcall_ctx_t *fcall,
    sci_msg_t *msg,
    fcall_param_t *param,
    int flags);

/**
 * send the return parameter list of asynchronous function call
 * \param fcall pointer to the current fcall context
 * \param pointer to returned parameter structure
 * \param msg pointer to returned parameter message buffer
 * \return 0 if ok, -1 if failed with errno:
 *  - EINVAL if fcall, param or msg is NULL
 *  - errno set by sci_send()
 */
int fcall_return(fcall_ctx_t *fcall, fcall_param_t *param, sci_msg_t *msg);

/**
 * fill fcall body with all function parameters
 * sci_msg_push() is called each time a parameter is added
 * \param fcall current fcall context
 * \param msg sci message to fill body
 * \param param current fcall param context
 * \return 0 if ok, -1 if failed with errno:
 * - EINVAL if param or msg are NULL
 * - ENOSPC if body overwhelm msg storage capacity
 */
//int fcall_fill_body(
//    fcall_ctx_t *fcall,
//    sci_msg_t *msg, 
//    fcall_param_t *param);

/**
 * fill fcall full content: header + body inside a message
 * \param fcall current fcall context
 * \param msg sci message to fill
 * \param flags flags of message
 * \return 0 if ok, -1 if failed with errno:
 * - EINVAL if param or msg are NULL
 * - ENOSPC if body = header overwhelm msg storage capacity
 */
//int fcall_fill_msg(
//    fcall_ctx_t *fcall,
//    sci_msg_t *msg, 
//    int flags);

/**
 * fcall message processing fucntion; called by sci_recv()
 * must be registred to sci layer with SCI_MSG_TYPE_FUNCTION_CALL type
 * \param msg pointer to received message with sci pre-processing
 * \param fcall pointer to current fcall context
 * \return 0 if ok, -1 if failed with errno=
 * - EINVAL if fcall or msg is NULL
 * - EPROTOTYPE if fcall type != FUNCTION_CALL_TYPE_REQ
 */ 
int fcall_recv(sci_msg_t *msg, void *fcall);

//void fcall_param_dump(fcall_param_t *param, int fd, char *buffer, int size);
//void fcall_hdr_dump(struct fcall_msg_hdr *hdr, int fd, char *buffer, int size);

/**
 * initialize a static probe context, called during station context creation.
 * \param probe probe context to initialize
 * \param fcall fcall which process the probe function
 * \return 0 if ok, -1 if failed with errno=
 * - EINVAL if probe or fcall is NULL
 */
int probe_init(probe_ctx_t *probe, fcall_ctx_t *fcall);

/**
 * probe var registering
 * \param probe pointer to current probe context
 * \param id variable string id
 * \param length variable length
 * \param addr pointer to variable
 * \return 0 if ok, -1 if fail with errno=
 * - EINVAL if probe or id is NULL
 * - ENAMETOOLONG if id length is >= PROBE_ID_MAX_SIZE
 * - ENOSPC if max number of registred variable is reached
 * - EEXIST if variable is already registered
 */
int probe_register(probe_ctx_t *probe, char *id, int length, void *addr);

/**
 * probe message processing function; called by fcall_recv()
 * must be registred to fcall layer as "probe" function id
 * \param fcall pointer to the current fcall context
 * \param param pointer to param 
 * \param msg pointer to received message with fcall pre-processing
 * \return 0 if ok, -1 if failed with errno=
 * - EINVAL if fcall, param or msg is NULL
 */ 
int probe_recv(fcall_ctx_t *fcall, fcall_param_t **param, sci_msg_t **msg, void *data);

//END_DECLS

#endif /*FCALL_H_*/