2 * Linux Interfece for Arexx Data Loggers
4 * (c) 2011-2012 Martin Mares <mj@ucw.cz>
19 #include <libusb-1.0/libusb.h>
22 #define DEFAULT_LOG_DIR "/var/log/arexxd"
24 typedef unsigned char byte;
25 static libusb_context *usb_ctxt;
26 static libusb_device_handle *devh;
28 static int use_syslog;
29 static int debug_mode;
30 static int debug_packets;
31 static int debug_raw_data;
32 static char *log_dir = DEFAULT_LOG_DIR;
34 static void die(char *fmt, ...)
39 vsyslog(LOG_CRIT, fmt, args);
41 vfprintf(stderr, fmt, args);
42 fprintf(stderr, "\n");
48 static void log_error(char *fmt, ...)
53 vsyslog(LOG_ERR, fmt, args);
55 vfprintf(stderr, fmt, args);
56 fprintf(stderr, "\n");
61 static void log_info(char *fmt, ...)
66 vsyslog(LOG_INFO, fmt, args);
68 vfprintf(stderr, fmt, args);
69 fprintf(stderr, "\n");
74 static void log_pkt(char *fmt, ...)
84 /*** RRD interface ***/
87 #define MAX_ARG_SIZE 1024
90 static char *arg_ptr[MAX_ARGS+1];
91 static char arg_buf[MAX_ARG_SIZE];
94 static void arg_new(void)
98 arg_ptr[0] = "rrdtool";
101 static void arg_push(const char *fmt, ...)
103 if (arg_cnt >= MAX_ARGS)
104 die("MAX_ARGS exceeded");
107 int len = 1 + vsnprintf(arg_buf + arg_pos, MAX_ARG_SIZE - arg_pos, fmt, va);
108 if (arg_pos + len > MAX_ARG_SIZE)
109 die("MAX_ARG_SIZE exceeded");
110 arg_ptr[arg_cnt++] = arg_buf + arg_pos;
111 arg_ptr[arg_cnt] = NULL;
115 static void rrd_point(time_t t, const char *name, double val, char *unit)
118 snprintf(rr_name, sizeof(rr_name), "sensor-%s.rrd", name);
121 if (stat(rr_name, &st) < 0 || !st.st_size) {
122 // We have to create the RRD
123 log_info("Creating %s", rr_name);
127 arg_push("%d", (int) time(NULL) - 28*86400);
130 if (!strcmp(unit, "%RH"))
131 arg_push("DS:rh:GAUGE:300:0:100");
132 else if (!strcmp(unit, "ppm"))
133 arg_push("DS:ppm:GAUGE:300:0:1000000");
135 arg_push("DS:temp:GAUGE:300:-200:200");
136 arg_push("RRA:AVERAGE:0.25:1:20160"); // Last 14 days with full resolution
137 arg_push("RRA:AVERAGE:0.25:60:88800"); // Last 10 years with 1h resolution
138 arg_push("RRA:MIN:0.25:60:88800"); // including minima and maxima
139 arg_push("RRA:MAX:0.25:60:88800");
140 rrd_create(arg_cnt, arg_ptr);
141 if (rrd_test_error()) {
142 log_error("rrd_create on %s failed: %s", rr_name, rrd_get_error());
149 arg_push("%d:%f", t, val);
150 rrd_update(arg_cnt, arg_ptr);
151 if (rrd_test_error())
152 log_error("rrd_update on %s failed: %s", rr_name, rrd_get_error());
157 #define TIME_OFFSET 946681200 // Timestamp of 2000-01-01 00:00:00
159 static int data_point_counter; // Since last log message
161 static double correct_point(int id, double val, const char **name)
164 * Manually calculated corrections and renames for my sensors.
165 * Replace with your formulae.
175 *name = "catarium-rh";
185 static void cooked_point(time_t t, int id, double val, char *unit, int q)
188 snprintf(namebuf, sizeof(namebuf), "%d", id);
189 const char *name = namebuf;
191 double val2 = correct_point(id, val, &name);
193 if (debug_raw_data) {
195 localtime_r(&t, &tm);
197 strftime(tbuf, sizeof(tbuf), "%Y-%m-%d %H:%M:%S", &tm);
198 printf("== %s id=%d name=%s val=%.3f val2=%.3f unit=%s q=%d\n", tbuf, id, name, val, val2, unit, q);
201 data_point_counter++;
202 rrd_point(t, name, val2, unit);
205 static void raw_point(int t, int id, int raw, int q)
208 * The binary blob provided by Arexx contains an embedded XML fragment
209 * with descriptions of all known sensor types. If you want to see it,
210 * grep the blob for "<deviceinfo>". The meanings of the parameters are
213 * m1, m2 Device type matches if (raw_sensor_id & m1) == m2
214 * type Unit measured by the sensor (1=Celsius, 2=RH%, 3=CO2 ppm)
215 * dm User-visible sensor ID = raw_sensor_id & dm
216 * i 1 if the raw value is signed
217 * p[] Coefficients of transformation polynomial (x^0 first)
218 * vLo, vUp Upper and lower bound on the final value
219 * scale Scaling function:
220 * 0 = identity (default)
223 * 3 = (x < 0) ? 0 : log10(x)
224 * 4 = (x < 0) ? 0 : log(x)
226 * The raw values are transformed this way:
227 * - sign-extend if signed
228 * - apply the transformation polynomial
229 * - apply the scaling function
230 * - drop if outside the interval [vLo,vUp]
232 * This function applies the necessary transform for sensors we've
233 * seen in the wild. We deliberately ignore the "dm" parameter as we want
234 * to report different channels of a single sensor as multiple sensors.
240 int idhi = id & 0xf000;
242 if (idhi == 0x1000) {
247 } else if (idhi == 0x2000) {
254 } else if (idhi == 0x4000) {
261 z = -2.8e-6*z*z + 0.0405*z - 4;
266 } else if (idhi == 0x6000) {
276 z = (z + 1.9184e-7) * z;
277 z = (z - 1.0998e-3) * z;
285 log_error("Unknown sensor type 0x%04x", id);
289 if (z < lo || z > hi) {
290 log_error("Sensor %d: value %f out of range", id, z);
294 cooked_point(t + TIME_OFFSET, id, z, unit, q);
297 /*** USB interface ***/
299 static int find_device(void)
301 libusb_device **devlist;
302 ssize_t devn = libusb_get_device_list(usb_ctxt, &devlist);
304 log_error("Cannot enumerate USB devices: error %d", (int) devn);
308 for (ssize_t i=0; i<devn; i++) {
309 struct libusb_device_descriptor desc;
310 libusb_device *dev = devlist[i];
311 if (!libusb_get_device_descriptor(dev, &desc)) {
312 if (desc.idVendor == 0x0451 && desc.idProduct == 0x3211) {
313 log_info("Arexx data logger found at usb%d.%d", libusb_get_bus_number(dev), libusb_get_device_address(dev));
315 if (err = libusb_open(dev, &devh)) {
316 log_error("libusb_open() failed: error %d", err);
319 if (err = libusb_claim_interface(devh, 0)) {
320 log_error("libusb_claim_interface() failed: error %d", err);
324 libusb_free_device_list(devlist, 1);
331 libusb_free_device_list(devlist, 1);
335 static void release_device(void)
341 static void dump_packet(byte *pkt)
343 for (int i=0; i<64; i++) {
345 log_pkt("\t%02x:", i);
346 log_pkt(" %02x", pkt[i]);
352 static int send_and_receive(byte *req, byte *reply)
355 time_t t = time(NULL);
357 localtime_r(&t, &tm);
360 strftime(tbuf, sizeof(tbuf), "%Y-%m-%d %H:%M:%S", &tm);
361 log_pkt("## %s\n", tbuf);
364 int err, transferred;
365 if (err = libusb_bulk_transfer(devh, 0x01, req, 64, &transferred, 200)) {
366 if (err == LIBUSB_ERROR_TIMEOUT) {
367 log_pkt(">> xmit timed out\n");
370 log_pkt(">> xmit error %d\n", err);
371 log_error("Transmit error: %d", err);
375 log_pkt(">> xmit %d bytes\n", transferred);
378 if (err = libusb_bulk_transfer(devh, 0x81, reply, 64, &transferred, 200)) {
379 if (err == LIBUSB_ERROR_TIMEOUT) {
380 log_pkt("<< recv timed out\n");
383 log_pkt("<< recv error %d\n", err);
384 log_error("Receive error: %d", err);
388 log_pkt("<< recv %d bytes\n", transferred);
389 while (transferred < 64)
390 reply[transferred++] = 0xff;
396 static unsigned int get_be16(byte *p)
398 return p[1] | (p[0] << 8);
401 static unsigned int get_le16(byte *p)
403 return p[0] | (p[1] << 8);
406 static unsigned int get_le32(byte *p)
408 return get_le16(p) | (get_le16(p+2) << 16);
411 static void put_le16(byte *p, unsigned int x)
417 static void put_le32(byte *p, unsigned int x)
420 put_le16(p+2, x>>16);
423 static int parse_packet(byte *reply)
426 log_error("Unknown packet type %02x", reply[0]);
433 byte *p = reply + pos;
435 if (!len || len == 0xff)
437 if (len < 9 || len > 10) {
438 log_error("Unknown tuple length %02x", len);
441 if (pos + len > 64) {
442 log_error("Tuple truncated");
445 int id = get_le16(p+1);
446 int raw = get_be16(p+3);
447 int t = get_le32(p+5);
448 int q = (len > 9) ? p[9] : -1;
449 if (debug_raw_data) {
450 printf("... %02x: id=%d raw=%d t=%d", len, id, raw, t);
455 raw_point(t, id, raw, q);
463 static void set_clock(void)
465 byte req[64], reply[64];
468 time_t t = time(NULL);
469 put_le32(req+1, t-TIME_OFFSET);
470 send_and_receive(req, reply);
474 * Original software also sends a packet with type 3 and the timestamp,
475 * but it does not make any sense, especially as they ignore the sensor
476 * readings in the answer.
479 send_and_receive(req, reply);
486 static volatile sig_atomic_t want_shutdown;
488 static void sigterm_handler(int sig __attribute__((unused)))
493 static const struct option long_options[] = {
494 { "debug", 0, NULL, 'd' },
495 { "log-dir", 1, NULL, 'l' },
496 { "debug-packets", 0, NULL, 'p' },
497 { "debug-raw", 0, NULL, 'r' },
498 { NULL, 0, NULL, 0 },
501 static void usage(void)
504 Usage: arexxd <options>\n\
507 -d, --debug Debug mode (no chdir, no fork, no syslog)\n\
508 -l, --log-dir=<dir> Directory where all received data should be stored\n\
509 -p, --debug-packets Log all packets sent and received\n\
510 -r, --debug-raw Log conversion from raw values\n\
515 int main(int argc, char **argv)
518 while ((opt = getopt_long(argc, argv, "dl:pr", long_options, NULL)) >= 0)
539 if (err = libusb_init(&usb_ctxt))
540 die("Cannot initialize libusb: error %d", err);
541 // libusb_set_debug(usb_ctxt, 3);
544 if (chdir(log_dir) < 0)
545 die("Cannot change directory to %s: %m", log_dir);
546 if (debug_packets || debug_raw_data) {
548 if (open("debug", O_WRONLY | O_CREAT | O_APPEND, 0666) < 0)
549 die("Cannot open debug log: %m");
552 openlog("arexxd", LOG_NDELAY, LOG_DAEMON);
555 die("fork() failed: %m");
562 struct sigaction sa = { .sa_handler = sigterm_handler };
563 sigaction(SIGTERM, &sa, NULL);
564 sigaction(SIGINT, &sa, NULL);
567 sigemptyset(&term_sigs);
568 sigaddset(&term_sigs, SIGTERM);
569 sigaddset(&term_sigs, SIGINT);
570 sigprocmask(SIG_BLOCK, &term_sigs, NULL);
573 while (!want_shutdown) {
574 if (!find_device()) {
577 log_error("Data logger not connected, waiting until it appears");
582 log_info("Listening");
584 time_t last_sync = 0;
585 time_t last_show = 0;
588 data_point_counter = 0;
589 while (!want_shutdown) {
590 time_t now = time(NULL);
591 if (now > last_sync + 900) {
592 log_info("Synchronizing data logger time");
596 if (want_stats && now > last_show + 300) {
597 log_info("Stats: received %d data points", data_point_counter);
598 data_point_counter = 0;
602 byte req[64], reply[64];
603 memset(req, 0, sizeof(req));
605 err = send_and_receive(req, reply);
609 if (err > 0 && parse_packet(reply))
611 sigprocmask(SIG_UNBLOCK, &term_sigs, NULL);
616 sigprocmask(SIG_BLOCK, &term_sigs, NULL);
619 log_info("Disconnecting data logger");
624 log_info("Terminated");