summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-05-30 16:24:19 +0200
committerFelix Fietkau <nbd@openwrt.org>2013-05-30 19:05:33 +0200
commita9aa888729f2564c14b668b19c9433d07d2669b5 (patch)
tree1f0f59974e079bbc1019e942422160ee6638795a
parent7fdfb969d521f5198345b675081aa220743de909 (diff)
add code for converting messages
-rw-r--r--main.c69
-rw-r--r--switch.c2
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 <stdio.h>
#include <getopt.h>
#include <stdbool.h>
+#include <ctype.h>
#include <libubox/blobmsg_json.h>
#include <libubox/avl.h>
@@ -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);
}
-
-