summaryrefslogtreecommitdiff
path: root/gm_platform/fw/tw_test.c
blob: eb41dbe96248af4fac7a59c961d6fdab569486d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
#include <errno.h>
#include <sys/ioctl.h>
#include <asm/termbits.h>
#include <fcntl.h> 
#include <stdbool.h> 
#include <stdlib.h> 
#include <stdio.h> 
#include <string.h>
#include <unistd.h>
#include <stdint.h>
#include <dirent.h>
#include <sys/types.h>
#include <assert.h>
#include <sys/epoll.h> 
#include <time.h>

#include <sqlite3.h>

#include <zlib.h>

int set_interface_attribs (int fd, int baudrate) {
    struct termios2 tio;
    memset (&tio, 0, sizeof(tio));
    if (ioctl (fd, TCGETS2, &tio) != 0) {
        fprintf(stderr, "Could not request termios for given port\n");
        return -1;
    }

    /* FIXME set baudrate */

    tio.c_cflag = (tio.c_cflag & ~CSIZE) | CS8; /* 8 bit */
    /* disable IGNBRK for mismatched speed tests; otherwise receive break as \000 chars */
    tio.c_iflag &= ~IGNBRK;     /* disable break processing */
    tio.c_lflag = 0;            /* no signaling chars, no echo, no canonical processing */
    tio.c_oflag = 0;            /* no remapping, no delays */

    tio.c_iflag &= ~(IXON | IXOFF | IXANY); /* shut off xon/xoff ctrl */

    tio.c_cflag |= (CLOCAL | CREAD);/* ignore modem controls, enable reading */
    tio.c_cflag &= ~(PARENB | PARODD); /* no parity */
    tio.c_cflag &= ~CSTOPB;
    tio.c_cflag &= ~CRTSCTS;

    tio.c_cflag &= ~(CBAUD | CBAUDEX);
    tio.c_cflag |= BOTHER;
    tio.c_ospeed = baudrate;
    tio.c_cflag &= ~((CBAUD | CBAUDEX) << IBSHIFT);
    tio.c_cflag |= (B0 << IBSHIFT); /* same as output baudrate */

    tio.c_cc[VMIN]  = 0; /* non-blocking mode */
    tio.c_cc[VTIME] = 10; /* 1000ms seconds read timeout */

    if (ioctl (fd, TCSETS2, &tio)) {
        fprintf(stderr, "Could not set serial port attributes: Error %d in tcsetattr (\"%s\")\n", errno, strerror(errno));
        return -1;
    }
    return 0;
}

ssize_t cobs_decode(char *dst, size_t dstlen, char *src, size_t srclen) {
    size_t p = 1;
    size_t c = (unsigned char)src[0];
    if (c == 0)
        return -5; /* invalid framing. An empty frame would be [...] 00 01 00, not [...] 00 00 */

    while (p < srclen && src[p]) {
        char val;
        c--;

        if (c == 0) {
            c = (unsigned char)src[p];
            val = 0;
        } else {
            val = src[p];
        }

        if (p > dstlen)
            return -4; /* Destination buffer too small */
        dst[p-1] = val;
        p++;
    }

    if (p == srclen)
        return -2; /* Invalid framing. The terminating null byte should always be present in the input buffer. */

    if (c != 1)
        return -3; /* Invalid framing. The skip counter does not hit the end of the frame. */

    return p-1;
}

int cobs_encode(char *dst, char *src, size_t srclen) {
    if (srclen > 254)
        return -1;

    size_t p = 0;
    while (p <= srclen) {

        char val;
        if (p != 0 && src[p-1] != 0) {
            val = src[p-1];

        } else {
            size_t q = p;
            while (q < srclen && src[q] != 0)
                q++;
            val = (char)q-p+1;
        }


    *dst++ = val;
        p++;
    }

    *dst++ = 0;

    return 0;
}
 
void print_usage(char *prog) {
    fprintf(stderr, "Usage: %s [-p /dev/serial/some_port] [-b baudrate] dbfile.sqilte3\n", prog);
}

void hexdump(const void* data, size_t size) {
	char ascii[17];
	size_t i, j;
	ascii[16] = '\0';
	for (i = 0; i < size; ++i) {
		printf("%02X ", ((unsigned char*)data)[i]);
		if (((unsigned char*)data)[i] >= ' ' && ((unsigned char*)data)[i] <= '~') {
			ascii[i % 16] = ((unsigned char*)data)[i];
		} else {
			ascii[i % 16] = '.';
		}
		if ((i+1) % 8 == 0 || i+1 == size) {
			printf(" ");
			if ((i+1) % 16 == 0) {
				printf("|  %s \n", ascii);
			} else if (i+1 == size) {
				ascii[(i+1) % 16] = '\0';
				if ((i+1) % 16 <= 8) {
					printf(" ");
				}
				for (j = (i+1) % 16; j < 16; ++j) {
					printf("   ");
				}
				printf("|  %s \n", ascii);
			}
		}
	}
}

int main(int argc, char *argv[]) {
    
    int opt;
    int baudrate = 250000;
    char *endptr = NULL;
    char *port = NULL;
    char *dbfile = NULL;
    while ((opt = getopt(argc, argv, "p:b:")) != -1) {
        switch (opt) {
            case 'p':
                port = optarg;
                break;
            case 'b':
                baudrate = strtol(optarg, &endptr, 10);
                if (errno == ERANGE || endptr == NULL || *endptr != '\0') {
                    fprintf(stderr, "Invalid baudrate \"%s\"\n", optarg);
                    print_usage(argv[0]);
                }
                break;
            default:
                print_usage(argv[0]);
                exit(EXIT_FAILURE);
        }
    }

    if (port == NULL) {
        DIR *le_dir = opendir("/dev/serial/by-id");
        if (le_dir == NULL) {
            fprintf(stderr, "No serial port given and could not find any in /dev/serial\n");
            exit(EXIT_FAILURE);

        }

        struct dirent *de;
        while ((de = readdir(le_dir))) {
            if (de == NULL) {
                fprintf(stderr, "No serial port given and could not find any in /dev/serial\n");
                exit(EXIT_FAILURE);
            }

            if (!strncmp(de->d_name, ".", sizeof(de->d_name)) ||
                !strncmp(de->d_name, "..", sizeof(de->d_name)))
                continue;

            if (port != NULL) {
                fprintf(stderr, "No serial port given and found multiple candidates in /dev/serial\n");
                exit(EXIT_FAILURE);
            }

            const char *prefix = "/dev/serial/by-id/";
            port = malloc(strlen(prefix) + sizeof(de->d_name) + 1);
            if (port == NULL) {
                fprintf(stderr, "Could not allocate memory\n");
                exit(EXIT_FAILURE);
            }
            strcpy(port, prefix);
            strncat(port, de->d_name, sizeof(de->d_name));
        }
        fprintf(stderr, "No port given, defaulting to %s\n", port);
        closedir(le_dir);
    }

    if (optind != argc - 1) {
        fprintf(stderr, "Too few arguments\n");
        print_usage(argv[0]);
        exit(EXIT_FAILURE);
    }

    dbfile = argv[optind];
    printf("Using database file %s\n", dbfile);
    fflush(stdout);

    int fd = open(port, O_RDWR|O_NOCTTY|O_SYNC);
    if (fd < 0) {
        fprintf(stderr, "Cannot open serial port: %s\n", strerror(errno));
        exit(EXIT_FAILURE);
    }

    if (set_interface_attribs (fd, baudrate))
        exit(EXIT_FAILURE);

    sqlite3 *db;
    if (sqlite3_open(dbfile, &db) != SQLITE_OK) {
        fprintf(stderr, "Cannot open database: %s\n", sqlite3_errmsg(db));
        sqlite3_close(db);
        exit(EXIT_FAILURE);
    }

    char *errmsg;
    if (sqlite3_exec(db,
                "CREATE TABLE IF NOT EXISTS measurements (rx_time INTEGER, tx_seq INTEGER, rx_seq INTEGER, data BLOB);",
                NULL, NULL, &errmsg) != SQLITE_OK) {
        fprintf(stderr, "Error initializing databse: %s\n", errmsg);
        sqlite3_close(db);
        exit(EXIT_FAILURE);
    }

    const char *insert_sql = "INSERT INTO measurements VALUES (?, ?, ?, ?)";
    sqlite3_stmt *insert_stmt;
    if (sqlite3_prepare_v2(db, insert_sql, strlen(insert_sql), &insert_stmt, NULL) != SQLITE_OK) {
        fprintf(stderr, "Error compiling SQL: %s\n", sqlite3_errmsg(db));
        sqlite3_close(db);
        exit(EXIT_FAILURE);
    }

    char buf [1024];
    int in_sync = 0, wpos = 0;
    struct __attribute__((__packed__)) {
        uint32_t crc;
        uint8_t pid;
        uint8_t _pad;
        uint16_t seq;
        uint16_t data[32];
    } packet;
    struct __attribute__((__packed__)) {
        uint8_t type;
        uint8_t pid;
    } wpacket;
    char wbuf[4];

    int epollfd = epoll_create1(0);
    if (epollfd < 0)
        goto epoll_err;

    #define MAX_EVENTS 10
    struct epoll_event ev, events[MAX_EVENTS];
    ev.events = EPOLLIN;
    ev.data.fd = fd;
    if (epoll_ctl(epollfd, EPOLL_CTL_ADD, fd, &ev) < 0)
        goto epoll_err;

    wpacket.type = 1;
    wpacket.pid = 0;
    cobs_encode(wbuf, (char *)&wpacket, sizeof(wpacket));
    write(fd, wbuf, sizeof(wbuf));

    /* FIXME begin debug code */
    for (int i=0; i<32; i++) {
        wpacket.type = 2;
        wpacket.pid = packet.pid;
        cobs_encode(wbuf, (char *)&wpacket, sizeof(wpacket));
        write(fd, wbuf, sizeof(wbuf));
        usleep(20);
    }
    /* FIXME end debug code */

    int current_seq = -1;
    uint64_t local_seq = 0;
    while (23) {
        int nfds = epoll_wait(epollfd, events, MAX_EVENTS, -1);
        if (nfds == -1)
            goto epoll_err;

        if (nfds == 0)
            continue;

        ssize_t n = read(fd, buf+wpos, sizeof(buf)-wpos);
        printf("--- read wpos=%d n=%ld\n", wpos, n);
        hexdump(buf+wpos, n);
        if (n<0) {
            if (errno == EAGAIN || errno == EINTR)
                continue;

            fprintf(stderr, "Error reading from port: %s\n", strerror(errno));
            goto loop_err;
        }
        //printf("--- debug: read n=%d bytes at wpos=%d\n", n, wpos);
        //fflush(stdout);
        wpos += n;

        while (23) {
            void *first_nul = memchr(buf, 0, wpos) ;
            ssize_t first_nul_offx = first_nul - (void*)buf;
            ssize_t remaining = wpos - first_nul_offx;

            if (!in_sync) {
                if (first_nul) {
                    memmove(buf, first_nul+1, remaining-1);
                    wpos = remaining-1;
                    in_sync = 1;
                    continue;

                } else {
                    wpos = 0;
                    break;
                }
            }

            if (!first_nul)
                break;

            printf("--- debug: first_nul=%p (idx=%ld) wpos=%d remaining=%ld\n", first_nul, first_nul_offx, wpos, remaining);
            hexdump(buf, 80);

            int rc = cobs_decode((char *)&packet, sizeof(packet), buf, wpos);
            if (rc < 0) {
                printf("Framing error: rc=%d\n", rc);
                goto it_err;
            }
            
            /* Use zlib to calculate CRC32. The STM32 code calculates the CRC byte-wise, so we emulate this here. */
            uint32_t our_crc = 0;
            if (rc > 0) {
                uint8_t buf[4] = {0};
                for (int i=4; i<rc; i++) {
                    buf[3] = ((uint8_t *)&packet)[i];
                    our_crc = crc32(our_crc, buf, sizeof(buf));
                }
            }

            bool error = false;
            /* Check CRC */
            if (our_crc != packet.crc) {
                printf("CRC mismatch: seq=%d packet=%08x computed=%08x\n", packet.pid, packet.crc, our_crc);
                error = true;
            }

            /* Check device sequence number */
            int last_seq = current_seq;
            int predicted_seq = (last_seq+1) % 0xffff;
            if (!error)
                current_seq = packet.seq;
            if (last_seq >= 0 && packet.seq != predicted_seq) {
                printf("SEQ mismatch: packet=%d computed=%d\n", packet.seq, predicted_seq);
                error = true;
            }

            if (error)
                goto it_err;

            /* Write to database */
            struct timespec ts;
            if (clock_gettime(CLOCK_REALTIME, &ts)) {
                fprintf(stderr, "Error getting current wall-clock time: %s\n", strerror(errno));
                goto loop_err;
            }
            uint64_t timestamp = ts.tv_sec*1000 + ts.tv_nsec/1000000;

            if (sqlite3_bind_int(insert_stmt, 1, timestamp) != SQLITE_OK)
                goto write_err;
            
            if (sqlite3_bind_int(insert_stmt, 2, packet.seq) != SQLITE_OK)
                goto write_err;

            if (sqlite3_bind_int(insert_stmt, 3, local_seq) != SQLITE_OK)
                goto write_err;

            if (sqlite3_bind_blob(insert_stmt, 4, packet.data, sizeof(packet.data), SQLITE_STATIC) != SQLITE_OK)
                goto write_err;

            while ((rc = sqlite3_step(insert_stmt)) == SQLITE_BUSY)
                ;
            if (rc != SQLITE_DONE)
                goto write_err;

            if (sqlite3_reset(insert_stmt) != SQLITE_OK)
                goto write_err;

            if (sqlite3_clear_bindings(insert_stmt) != SQLITE_OK)
                goto write_err;

            local_seq++;

            printf("OK: seq=%d crc=%08x\n", current_seq, packet.crc);

            /* send ACK reply */
            wpacket.type = 2;
            wpacket.pid = packet.pid;
            cobs_encode(wbuf, (char *)&wpacket, sizeof(wpacket));
            write(fd, wbuf, sizeof(wbuf));

it_err:
            /* Fixup buffer for next iteration */
            if (remaining-1 > 0) {
                printf(" ---memmove(buf=%p, first_nul+1=%p, remaining-1=%ld);-->\n", buf, first_nul+1, remaining-1);
                memmove(buf, first_nul+1, remaining-1);
            }
            //hexdump(buf, 80);
            fflush(stdout);
            printf("--- continuing wpos=%d->%d\n", wpos, (int)(remaining-1));
            wpos = remaining-1;
        }
    }

    return 0;

write_err:
    fprintf(stderr, "Error writing to database: %s\n", sqlite3_errmsg(db));
    sqlite3_close(db);
    return EXIT_FAILURE;

epoll_err:
    fprintf(stderr, "epoll error: %s\n", strerror(errno));

loop_err:
    sqlite3_close(db);
    return EXIT_FAILURE;
}