You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libtcap/src/tcap.c

286 lines
5.6 KiB

#include "libtcap.h"
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <string.h>
#include "asn_SET_OF.h"
#include "asn_SEQUENCE_OF.h"
#include "constr_CHOICE.h"
#include "TCMessage.h"
#include "Invoke.h"
#include "InitialDPArg.h"
#include "ConnectArg.h"
#include "FurnishChargingInformationArg.h"
#include "INTEGER.h"
#include "ComponentPortion.h"
#include "Component.h"
#define ARRAY_SIZE(x) (sizeof(x) / sizeof(*(x)))
#define INVOKE_OPCODE_INITIALDP 0
#define INVOKE_OPCODE_CONNECT 20
#define INVOKE_OPCODE_FURNISHCHARGINGINFORMATION 34
static asn_TYPE_descriptor_t *opcode_type_map[] = {
[INVOKE_OPCODE_INITIALDP] = &asn_DEF_InitialDPArg,
[INVOKE_OPCODE_CONNECT] = &asn_DEF_ConnectArg,
[INVOKE_OPCODE_FURNISHCHARGINGINFORMATION] = &asn_DEF_FurnishChargingInformationArg,
};
TCMessage_t *tcap_decode(const char *buf, size_t len) {
TCMessage_t *ret = NULL;
asn_dec_rval_t rv;
rv = ber_decode(0, &asn_DEF_TCMessage, (void **) &ret, buf, len);
if (rv.code == RC_OK)
return ret;
asn_DEF_TCMessage.free_struct(&asn_DEF_TCMessage, ret, 0);
return NULL;
}
void *inap_decode(Invoke_t *invoke, asn_TYPE_descriptor_t **type) {
long opcode;
int rv;
void *arg = 0;
if (!invoke || !invoke->parameter || !type)
goto nothing;
if (invoke->opCode.present != OPERATION_PR_localValue)
goto nothing;
if (asn_INTEGER2long(&invoke->opCode.choice.localValue, &opcode))
goto nothing;
if (opcode >= ARRAY_SIZE(opcode_type_map))
goto nothing;
*type = opcode_type_map[opcode];
rv = ANY_to_type(invoke->parameter, *type, &arg);
if (!rv)
return arg;
if (arg)
(*type)->free_struct(*type, arg, 0);
nothing:
*type = NULL;
return NULL;
}
static inline int next_token_1(const char **token, int *token_len, const char **c) {
*c = strchr(*token, '.');
if (!*c)
*token_len = strlen(*token);
else
*token_len = *c - *token;
if (*token_len <= 0)
return -1;
return 0;
}
static inline int next_token_2(const char **token, const char **c) {
if (!*c)
return -1;
*token = *c + 1;
return 0;
}
int cb(const void *buf, size_t s, void *app_key) {
struct output_buffer *out = app_key;
if (out->buf_size - out->used < s)
return -1;
memcpy(out->buf + out->used, buf, s);
out->used += s;
return 0;
}
static int asn1_extract(const char *spec, struct output_buffer *out, asn_TYPE_descriptor_t *type,
void *element)
{
const char *token, *c;
int token_len, i, num;
asn_TYPE_member_t *member;
asn_anonymous_set_ *list;
asn_CHOICE_specifics_t *choice_spec;
if (!element)
goto error;
token = spec;
while (1) {
if (next_token_1(&token, &token_len, &c))
goto error;
if (type->elements_count <= 0)
goto error; /* ? */
/* check if we have a number */
for (i = 0; i < token_len; i++) {
if (token[i] < '0' || token[i] > '9')
goto word;
}
/* we should have an array here */
num = atoi(token);
if (num < 0)
goto error;
/* single element with empty name == array ??? */
if (type->elements_count > 1
|| type->elements[0].name[0] != '\0')
goto error;
list = _A_SET_FROM_VOID(element);
if (num >= list->count)
goto error;
element = list->array[num];
type = type->elements[0].type;
goto found_element;
word:
/* has to be a CHOICE, SET or SEQUENCE */
for (i = 0; i < type->elements_count; i++) {
member = &type->elements[i];
if (!strncmp(token, member->name, token_len))
goto found_member;
}
goto error;
found_member:
/* if this is a CHOICE, we need to confirm the member. we use the
* print function pointer to determine. i is the struct index */
if (type->print_struct == CHOICE_print) {
choice_spec = type->specifics;
if (choice_spec->pres_size != sizeof(int))
goto error;
num = *((int *) element + choice_spec->pres_offset);
if (num != i + 1)
goto error;
}
type = member->type;
element = element + member->memb_offset;
if (member->flags & ATF_POINTER)
element = *((void **) element);
found_element:
if (next_token_2(&token, &c))
break;
}
/* found our target value, check for primitive types */
if (type->elements_count)
goto out;
type->print_struct(type, element, 0, cb, out);
out:
return 0;
error:
return -1;
}
int tcap_extract(const char *buf, size_t len, const char *spec, struct output_buffer *out) {
return asn1_extract(spec, out, &asn_DEF_TCMessage, tcap_decode(buf, len));
}
int inap_extract(const char *buf, size_t len, const char *spec, struct output_buffer *out) {
TCMessage_t *tcm;
ComponentPortion_t *cp;
Component_t *cmp;
Invoke_t *inv;
const char *token, *c;
int token_len, i;
void *parameter;
asn_TYPE_descriptor_t *type;
tcm = tcap_decode(buf, len);
if (!tcm)
goto error;
switch (tcm->present) {
case TCMessage_PR_unidirectional:
cp = &tcm->choice.unidirectional.components;
break;
case TCMessage_PR_begin:
cp = tcm->choice.begin.components;
break;
case TCMessage_PR_end:
cp = tcm->choice.end.components;
break;
case TCMessage_PR_continue:
cp = tcm->choice.Continue.components;
break;
default:
goto error;
}
if (!cp)
goto error;
token = spec;
/* first token is the type we're looking for */
if (next_token_1(&token, &token_len, &c))
goto error;
for (i = 0; i < cp->list.count; i++) {
cmp = cp->list.array[i];
if (cmp->present != Component_PR_invoke)
continue;
inv = &cmp->choice.invoke;
parameter = inap_decode(inv, &type);
if (!parameter)
continue;
if (!strncmp(type->name, token, token_len))
goto found_parameter;
}
goto error;
found_parameter:
if (next_token_2(&token, &c))
goto out;
return asn1_extract(token, out, type, parameter);
out:
return 0;
error:
return -1;
}