From a9aa888729f2564c14b668b19c9433d07d2669b5 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Thu, 30 May 2013 16:24:19 +0200 Subject: [PATCH] add code for converting messages --- main.c | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- switch.c | 2 -- 2 files changed, 68 insertions(+), 3 deletions(-) diff --git a/main.c b/main.c index c00b5b9..5f5c4ff 100644 --- a/main.c +++ b/main.c @@ -1,6 +1,7 @@ #include #include #include +#include #include #include @@ -27,6 +28,67 @@ static struct libusb_context *usb; static struct libusb_device **usbdevs; static int n_usbdevs; +static int hex2num(char c) +{ + if (c >= '0' && c <= '9') + return c - '0'; + + c = toupper(c); + if (c >= 'A' && c <= 'F') + return c - 'A' + 10; + + return -1; +} + +static int hex2byte(const char *hex) +{ + int a, b; + + a = hex2num(*hex++); + if (a < 0) + return -1; + + b = hex2num(*hex++); + if (b < 0) + return -1; + + return (a << 4) | b; +} + +static int hexstr2bin(const char *hex, char *buffer, int len) +{ + const char *ipos = hex; + char *opos = buffer; + int i, a; + + for (i = 0; i < len; i++) { + a = hex2byte(ipos); + if (a < 0) + return -1; + + *opos++ = a; + ipos += 2; + } + + return 0; +} + +static bool convert_message(struct blob_attr *attr) +{ + char *data; + int len; + + if (!attr) + return true; + + data = blobmsg_data(attr); + len = strlen(data); + if (len % 2) + return false; + + return !hexstr2bin(data, data, len / 2); +} + static int parse_config(void) { enum { @@ -54,8 +116,13 @@ static int parse_config(void) messages = calloc(n_messages, sizeof(*messages)); n_messages = 0; - blobmsg_for_each_attr(cur, tb[CONF_MESSAGES], rem) + blobmsg_for_each_attr(cur, tb[CONF_MESSAGES], rem) { + if (!convert_message(cur)) { + fprintf(stderr, "Invalid data in message %d\n", n_messages); + return -1; + } messages[n_messages++] = cur; + } blobmsg_for_each_attr(cur, tb[CONF_DEVICES], rem) { dev = calloc(1, sizeof(*dev)); diff --git a/switch.c b/switch.c index 8061322..3f1e3f3 100644 --- a/switch.c +++ b/switch.c @@ -109,5 +109,3 @@ void handle_switch(struct usbdev_data *data) modeswitch_cb[mode].cb(data, tb); } - - -- 2.11.0