]>
cvs.zerfleddert.de Git - hmcfgusb/blob - hmland.c
1 /* HM-CFG-LAN emulation for HM-CFG-USB
3 * Copyright (c) 2013 Michael Gernoth <michael@gernoth.net>
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to
7 * deal in the Software without restriction, including without limitation the
8 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9 * sell copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
33 #include <sys/types.h>
34 #include <sys/socket.h>
37 #include <netinet/in.h>
38 #include <arpa/inet.h>
39 #include <libusb-1.0/libusb.h>
44 #define PID_FILE "/var/run/hmland.pid"
48 static int impersonate_hmlanif
= 0;
50 static int verbose
= 0;
52 #define FLAG_LENGTH_BYTE (1<<0)
53 #define FLAG_FORMAT_HEX (1<<1)
54 #define FLAG_COMMA_BEFORE (1<<2)
55 #define FLAG_COMMA_AFTER (1<<3)
56 #define FLAG_NL (1<<4)
57 #define FLAG_IGNORE_COMMAS (1<<5)
59 #define CHECK_SPACE(x) if ((*outpos + x) > outend) { fprintf(stderr, "Not enough space!\n"); return 0; }
60 #define CHECK_AVAIL(x) if ((*inpos + x) > inend) { fprintf(stderr, "Not enough input available!\n"); return 0; }
62 static int format_part_out(uint8_t **inpos
, int inlen
, uint8_t **outpos
, int outlen
, int len
, int flags
)
64 const uint8_t nibble
[16] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
65 'A', 'B', 'C', 'D', 'E', 'F'};
66 uint8_t *buf_out
= *outpos
;
67 uint8_t *outend
= *outpos
+ outlen
;
68 uint8_t *inend
= *inpos
+ inlen
;
71 if (flags
& FLAG_COMMA_BEFORE
) {
77 if (flags
& FLAG_LENGTH_BYTE
) {
83 if (flags
& FLAG_FORMAT_HEX
) {
86 for (i
= 0; i
< len
; i
++) {
87 **outpos
= nibble
[((**inpos
) & 0xf0) >> 4];
89 **outpos
= nibble
[((**inpos
) & 0xf)];
90 *inpos
+= 1; *outpos
+= 1;
95 memcpy(*outpos
, *inpos
, len
);
100 if (flags
& FLAG_COMMA_AFTER
) {
106 if (flags
& FLAG_NL
) {
114 return *outpos
- buf_out
;
117 static uint8_t ascii_to_nibble(uint8_t a
)
121 if ((a
>= '0') && (a
<= '9')) {
123 } else if ((a
>= 'A') && (a
<= 'F')) {
125 } else if ((a
>= 'a') && (a
<= 'f')) {
132 static int parse_part_in(uint8_t **inpos
, int inlen
, uint8_t **outpos
, int outlen
, int flags
)
134 uint8_t *buf_out
= *outpos
;
135 uint8_t *outend
= *outpos
+ outlen
;
136 uint8_t *inend
= *inpos
+ inlen
;
138 if (flags
& FLAG_LENGTH_BYTE
) {
146 if (!(flags
& FLAG_IGNORE_COMMAS
))
155 **outpos
= (len
/ 2);
159 while(*inpos
< inend
) {
160 if (**inpos
== ',') {
162 if (!(flags
& FLAG_IGNORE_COMMAS
))
171 **outpos
= ascii_to_nibble(**inpos
) << 4;
173 **outpos
|= ascii_to_nibble(**inpos
);
174 *inpos
+= 1; *outpos
+= 1;
177 return *outpos
- buf_out
;
180 static int hmlan_format_out(uint8_t *buf
, int buf_len
, void *data
)
185 int fd
= *((int*)data
);
191 memset(out
, 0, sizeof(out
));
195 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 1, 0);
198 if (impersonate_hmlanif
) {
203 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 0, FLAG_LENGTH_BYTE
);
204 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 2, FLAG_FORMAT_HEX
| FLAG_COMMA_BEFORE
);
205 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 0, FLAG_COMMA_BEFORE
| FLAG_LENGTH_BYTE
);
206 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 3, FLAG_FORMAT_HEX
| FLAG_COMMA_BEFORE
);
207 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 3, FLAG_FORMAT_HEX
| FLAG_COMMA_BEFORE
);
208 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 4, FLAG_FORMAT_HEX
| FLAG_COMMA_BEFORE
);
209 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 2, FLAG_FORMAT_HEX
| FLAG_COMMA_BEFORE
| FLAG_NL
);
213 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 3, FLAG_FORMAT_HEX
);
214 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 2, FLAG_FORMAT_HEX
| FLAG_COMMA_BEFORE
);
215 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 4, FLAG_FORMAT_HEX
| FLAG_COMMA_BEFORE
);
216 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 1, FLAG_FORMAT_HEX
| FLAG_COMMA_BEFORE
);
217 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 2, FLAG_FORMAT_HEX
| FLAG_COMMA_BEFORE
);
218 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 0, FLAG_FORMAT_HEX
| FLAG_COMMA_BEFORE
| FLAG_LENGTH_BYTE
| FLAG_NL
);
222 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 4, FLAG_FORMAT_HEX
);
223 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 2, FLAG_FORMAT_HEX
| FLAG_COMMA_BEFORE
);
224 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 4, FLAG_FORMAT_HEX
| FLAG_COMMA_BEFORE
);
225 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 1, FLAG_FORMAT_HEX
| FLAG_COMMA_BEFORE
);
226 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 2, FLAG_FORMAT_HEX
| FLAG_COMMA_BEFORE
);
227 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 0, FLAG_FORMAT_HEX
| FLAG_COMMA_BEFORE
| FLAG_LENGTH_BYTE
| FLAG_NL
);
231 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 1, FLAG_FORMAT_HEX
);
232 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 1, FLAG_FORMAT_HEX
| FLAG_COMMA_BEFORE
);
233 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 1, FLAG_FORMAT_HEX
| FLAG_COMMA_BEFORE
);
234 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 1, FLAG_FORMAT_HEX
| FLAG_COMMA_BEFORE
| FLAG_NL
);
238 format_part_out(&inpos
, (buf_len
-(inpos
-buf
)), &outpos
, (sizeof(out
)-(outpos
-out
)), buf_len
-1, FLAG_FORMAT_HEX
| FLAG_NL
);
239 hexdump(buf
, buf_len
, "Unknown> ");
246 for (i
= 0; i
< outpos
-out
-2; i
++)
247 printf("%c", out
[i
]);
251 w
= write(fd
, out
, outpos
-out
);
260 static int hmlan_parse_in(int fd
, void *data
)
262 struct hmcfgusb_dev
*dev
= data
;
264 uint8_t out
[0x40]; //FIXME!!!
271 memset(buf
, 0, sizeof(buf
));
273 r
= read(fd
, buf
, sizeof(buf
)-1);
275 uint8_t *inend
= buf
+ r
;
279 while (inpos
< inend
) {
280 uint8_t *instart
= inpos
;
282 if ((*inpos
== '\r') || (*inpos
== '\n')) {
289 last
= inend
- inpos
;
291 for (i
= 0; i
< last
; i
++) {
292 if ((inpos
[i
] == '\r') || (inpos
[i
] == '\n')) {
303 for (i
= 0; i
< last
; i
++)
304 printf("%c", instart
[i
]);
308 memset(out
, 0, sizeof(out
));
309 *outpos
++ = *inpos
++;
313 parse_part_in(&inpos
, (last
-(inpos
-instart
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 0);
314 parse_part_in(&inpos
, (last
-(inpos
-instart
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 0);
315 parse_part_in(&inpos
, (last
-(inpos
-instart
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 0);
316 parse_part_in(&inpos
, (last
-(inpos
-instart
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 0);
317 parse_part_in(&inpos
, (last
-(inpos
-instart
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 0);
318 parse_part_in(&inpos
, (last
-(inpos
-instart
)), &outpos
, (sizeof(out
)-(outpos
-out
)), FLAG_LENGTH_BYTE
);
321 parse_part_in(&inpos
, (last
-(inpos
-instart
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 0);
322 parse_part_in(&inpos
, (last
-(inpos
-instart
)), &outpos
, (sizeof(out
)-(outpos
-out
)), 0);
323 parse_part_in(&inpos
, (last
-(inpos
-instart
)), &outpos
, (sizeof(out
)-(outpos
-out
)), FLAG_LENGTH_BYTE
);
326 parse_part_in(&inpos
, (last
-(inpos
-instart
)), &outpos
, (sizeof(out
)-(outpos
-out
)), FLAG_IGNORE_COMMAS
);
330 hmcfgusb_send(dev
, out
, sizeof(out
), 1);
342 static int comm(int fd_in
, int fd_out
, int master_socket
, int flags
)
344 struct hmcfgusb_dev
*dev
;
345 uint8_t out
[0x40]; //FIXME!!!
348 hmcfgusb_set_debug(debug
);
350 dev
= hmcfgusb_init(hmlan_format_out
, &fd_out
);
352 fprintf(stderr
, "Can't initialize HM-CFG-USB!\n");
356 if (!hmcfgusb_add_pfd(dev
, fd_in
, POLLIN
)) {
357 fprintf(stderr
, "Can't add client to pollfd!\n");
362 if (master_socket
>= 0) {
363 if (!hmcfgusb_add_pfd(dev
, master_socket
, POLLIN
)) {
364 fprintf(stderr
, "Can't add master_socket to pollfd!\n");
370 memset(out
, 0, sizeof(out
));
372 hmcfgusb_send_null_frame(dev
);
373 hmcfgusb_send(dev
, out
, sizeof(out
), 1);
378 fd
= hmcfgusb_poll(dev
, 1); /* Wakeup device/bus at least once a second */
380 if (fd
== master_socket
) {
383 client
= accept(master_socket
, NULL
, 0);
385 shutdown(client
, SHUT_RDWR
);
389 if (hmlan_parse_in(fd
, dev
) <= 0) {
393 } else if (fd
== -1) {
395 perror("hmcfgusb_poll");
398 /* periodically wakeup the device */
399 hmcfgusb_send_null_frame(dev
);
408 void sigterm_handler(int sig
)
410 if (unlink(PID_FILE
) == -1)
411 perror("Can't remove PID file");
416 #define FLAG_DAEMON (1 << 0)
417 #define FLAG_PID_FILE (1 << 1)
419 static int socket_server(char *iface
, int port
, int flags
)
421 struct sigaction sact
;
422 struct sockaddr_in sin
;
427 if (flags
& FLAG_DAEMON
) {
428 FILE *pidfile
= NULL
;
430 if (flags
& FLAG_PID_FILE
) {
433 fd
= open(PID_FILE
, O_CREAT
| O_EXCL
| O_WRONLY
, 0644);
435 if (errno
== EEXIST
) {
437 pidfile
= fopen(PID_FILE
, "r");
439 perror("PID file " PID_FILE
" already exists, already running?");
443 if (fscanf(pidfile
, "%u", &old_pid
) != 1) {
445 fprintf(stderr
, "Can't read old PID from " PID_FILE
", already running?\n");
451 fprintf(stderr
, "Already running with PID %u according to " PID_FILE
"!\n", old_pid
);
454 perror("Can't create PID file " PID_FILE
);
458 pidfile
= fdopen(fd
, "w");
460 perror("Can't reopen PID file fd");
464 memset(&sact
, 0, sizeof(sact
));
465 sact
.sa_handler
= sigterm_handler
;
467 if (sigaction(SIGTERM
, &sact
, NULL
) == -1) {
468 perror("sigaction(SIGTERM)");
476 fprintf(pidfile
, "%u\n", pid
);
480 printf("Daemon with PID %u started!\n", pid
);
482 } else if (pid
< 0) {
491 memset(&sact
, 0, sizeof(sact
));
492 sact
.sa_handler
= SIG_IGN
;
494 if (sigaction(SIGPIPE
, &sact
, NULL
) == -1) {
495 perror("sigaction(SIGPIPE)");
499 impersonate_hmlanif
= 1;
501 sock
= socket(PF_INET
, SOCK_STREAM
, IPPROTO_TCP
);
503 perror("Can't open socket");
508 if (setsockopt(sock
, SOL_SOCKET
, SO_REUSEADDR
, &n
, sizeof(n
)) == -1) {
509 perror("Can't set socket options");
513 memset(&sin
, 0, sizeof(sin
));
514 sin
.sin_family
= AF_INET
;
515 sin
.sin_port
= htons(port
);
517 sin
.sin_addr
.s_addr
= htonl(INADDR_ANY
);
519 if (inet_pton(AF_INET
, iface
, &(sin
.sin_addr
.s_addr
)) != 1) {
525 if (bind(sock
, (struct sockaddr
*)&sin
, sizeof(sin
)) == -1) {
526 perror("Can't bind socket");
530 if (listen(sock
, 1) == -1) {
531 perror("Can't listen on socket");
536 struct sockaddr_in csin
;
539 in_addr_t client_addr
;
541 memset(&csin
, 0, sizeof(csin
));
542 csinlen
= sizeof(csin
);
543 client
= accept(sock
, (struct sockaddr
*)&csin
, &csinlen
);
545 perror("Couldn't accept client");
549 /* FIXME: getnameinfo... */
550 client_addr
= ntohl(csin
.sin_addr
.s_addr
);
553 printf("Client %d.%d.%d.%d connected!\n",
554 (client_addr
& 0xff000000) >> 24,
555 (client_addr
& 0x00ff0000) >> 16,
556 (client_addr
& 0x0000ff00) >> 8,
557 (client_addr
& 0x000000ff));
560 comm(client
, client
, sock
, flags
);
562 shutdown(client
, SHUT_RDWR
);
566 printf("Connection to %d.%d.%d.%d closed!\n",
567 (client_addr
& 0xff000000) >> 24,
568 (client_addr
& 0x00ff0000) >> 16,
569 (client_addr
& 0x0000ff00) >> 8,
570 (client_addr
& 0x000000ff));
578 static int interactive_server(int flags
)
580 if (!comm(STDIN_FILENO
, STDOUT_FILENO
, -1, flags
))
586 void hmlan_syntax(char *prog
)
588 fprintf(stderr
, "Syntax: %s options\n\n", prog
);
589 fprintf(stderr
, "Possible options:\n");
590 fprintf(stderr
, "\t-D\tdebug mode\n");
591 fprintf(stderr
, "\t-d\tdaemon mode\n");
592 fprintf(stderr
, "\t-h\tthis help\n");
593 fprintf(stderr
, "\t-i\tinteractive mode (connect HM-CFG-USB to terminal)\n");
594 fprintf(stderr
, "\t-l ip\tlisten on given IP address only (for example 127.0.0.1)\n");
595 fprintf(stderr
, "\t-P\tcreate PID file " PID_FILE
" in daemon mode\n");
596 fprintf(stderr
, "\t-p n\tlisten on port n (default 1000)\n");
597 fprintf(stderr
, "\t-v\tverbose mode\n");
601 int main(int argc
, char **argv
)
610 while((opt
= getopt(argc
, argv
, "DdhiPp:Rl:v")) != -1) {
617 flags
|= FLAG_DAEMON
;
623 flags
|= FLAG_PID_FILE
;
626 port
= strtoul(optarg
, &ep
, 10);
628 fprintf(stderr
, "Can't parse port!\n");
633 fprintf(stderr
, "-R is no longer needed (1s wakeup is default)\n");
645 hmlan_syntax(argv
[0]);
652 return interactive_server(flags
);
654 return socket_server(iface
, port
, flags
);