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
|
/*
* This file is Copyright (c) 2010 by the GPSD project
* BSD terms apply: see the file COPYING in the distribution root for details.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <ctype.h>
#include <sys/types.h>
#include <fcntl.h>
#ifndef S_SPLINT_S
#include <unistd.h>
#endif /* S_SPLINT_S */
#include "gpsd.h"
static int verbose = 0;
ssize_t gpsd_write(struct gps_device_t *session,
const char *buf,
const size_t len)
/* pass low-level data to devices straight through */
{
return gpsd_serial_write(session, buf, len);
}
void gpsd_report(int debuglevel, int errlevel, const char *fmt, ...)
/* assemble command in printf(3) style, use stderr or syslog */
{
if (errlevel <= debuglevel) {
char buf[BUFSIZ];
va_list ap;
buf[0] = '\0';
va_start(ap, fmt);
(void)vsnprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), fmt,
ap);
va_end(ap);
(void)fputs(buf, stderr);
}
}
struct map
{
char *legend;
char test[MAX_PACKET_LENGTH + 1];
size_t testlen;
int garbage_offset;
int type;
};
/* *INDENT-OFF* */
/*@ -initallelements +charint -usedef @*/
static struct map singletests[] = {
/* NMEA tests */
{
.legend = "NMEA packet with checksum (1)",
.test = "$GPVTG,308.74,T,,M,0.00,N,0.0,K*68\r\n",
.testlen = 36,
.garbage_offset = 0,
NMEA_PACKET,
},
{
.legend = "NMEA packet with checksum (2)",
.test = "$GPGGA,110534.994,4002.1425,N,07531.2585,W,0,00,50.0,172.7,M,-33.8,M,0.0,0000*7A\r\n",
.testlen = 82,
.garbage_offset = 0,
.type = NMEA_PACKET,
},
{
.legend = "NMEA packet with checksum and 4 chars of leading garbage",
.test = "\xff\xbf\x00\xbf$GPVTG,308.74,T,,M,0.00,N,0.0,K*68\r\n",
.testlen = 40,
.garbage_offset = 4,
.type = NMEA_PACKET,
},
{
.legend = "NMEA packet without checksum",
.test = "$PSRF105,1\r\n",
.testlen = 12,
.garbage_offset = 0,
.type = NMEA_PACKET,
},
{
.legend = "NMEA packet with wrong checksum",
.test = "$GPVTG,308.74,T,,M,0.00,N,0.0,K*28\r\n",
.testlen = 36,
.garbage_offset = 0,
.type = BAD_PACKET,
},
/* SiRF tests */
{
.legend = "SiRF WAAS version ID",
.test = {
0xA0, 0xA2, 0x00, 0x15,
0x06, 0x06, 0x31, 0x2E, 0x32, 0x2E, 0x30, 0x44,
0x4B, 0x49, 0x54, 0x31, 0x31, 0x39, 0x20, 0x53,
0x4D, 0x00, 0x00, 0x00, 0x00,
0x03, 0x82, 0xB0, 0xB3},
.testlen = 29,
.garbage_offset = 0,
.type = SIRF_PACKET,
},
{
.legend = "SiRF WAAS version ID with 3 chars of leading garbage",
.test = {
0xff, 0x00, 0xff,
0xA0, 0xA2, 0x00, 0x15,
0x06, 0x06, 0x31, 0x2E, 0x32, 0x2E, 0x30, 0x44,
0x4B, 0x49, 0x54, 0x31, 0x31, 0x39, 0x20, 0x53,
0x4D, 0x00, 0x00, 0x00, 0x00,
0x03, 0x82, 0xB0, 0xB3},
.testlen = 32,
.garbage_offset = 3,
.type = SIRF_PACKET,
},
{
.legend = "SiRF WAAS version ID with wrong checksum",
.test = {
0xA0, 0xA2, 0x00, 0x15,
0x06, 0x06, 0x31, 0x2E, 0x32, 0x2E, 0x30, 0x44,
0x4B, 0x49, 0x54, 0x31, 0x31, 0x39, 0x20, 0x53,
0x4D, 0x00, 0x00, 0x00, 0x00,
0x03, 0x00, 0xB0, 0xB3},
.testlen = 29,
.garbage_offset = 0,
.type = BAD_PACKET,
},
{
.legend = "SiRF WAAS version ID with bad length",
.test = {
0xA0, 0xA2, 0xff, 0x15,
0x06, 0x06, 0x31, 0x2E, 0x32, 0x2E, 0x30, 0x44,
0x4B, 0x49, 0x54, 0x31, 0x31, 0x39, 0x20, 0x53,
0x4D, 0x00, 0x00, 0x00, 0x00,
0x03, 0x82, 0xB0, 0xB3},
.testlen = 29,
.garbage_offset = 0,
.type = BAD_PACKET,
},
/* Zodiac tests */
{
.legend = "Zodiac binary 1000 Geodetic Status Output Message",
.test = {
0xff, 0x81, 0xe8, 0x03, 0x31, 0x00, 0x00, 0x00, 0xe8, 0x79,
0x74, 0x0e, 0x00, 0x00, 0x24, 0x00, 0x24, 0x00, 0x04, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x03, 0x23, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x06, 0x00,
0xcd, 0x07, 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x7b, 0x0d,
0x00, 0x00, 0x12, 0x6b, 0xa7, 0x04, 0x41, 0x75, 0x32, 0xf8,
0x03, 0x1f, 0x00, 0x00, 0xe6, 0xf2, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x11, 0xf6, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x40,
0xd9, 0x12, 0x90, 0xd0, 0x03, 0x00, 0x00, 0xa3, 0xe1, 0x11,
0x10, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa3, 0xe1, 0x11,
0x00, 0x00, 0x00, 0x00, 0xe0, 0x93, 0x04, 0x00, 0x04, 0xaa},
.testlen = 110,
.garbage_offset = 0,
.type = ZODIAC_PACKET,
},
/* EverMore tests */
{
.legend = "EverMore status packet 0x20",
.test = {
0x10, 0x02, 0x0D, 0x20, 0xE1, 0x00, 0x00, 0x00,
0x0A, 0x00, 0x1E, 0x00, 0x32, 0x00, 0x5b, 0x10,
0x03},
.testlen = 17,
.garbage_offset = 0,
.type = EVERMORE_PACKET,
},
{
.legend = "EverMore packet 0x04 with 0x10 0x10 sequence",
.test = {
0x10, 0x02, 0x0f, 0x04, 0x00, 0x00, 0x10, 0x10,
0xa7, 0x13, 0x03, 0x2c, 0x26, 0x24, 0x0a, 0x17,
0x00, 0x68, 0x10, 0x03},
.testlen = 20,
.garbage_offset = 0,
.type = EVERMORE_PACKET,
},
{
.legend = "EverMore packet 0x04 with 0x10 0x10 sequence, some noise before packet data",
.test = {
0x10, 0x03, 0xff, 0x10, 0x02, 0x0f, 0x04, 0x00,
0x00, 0x10, 0x10, 0xa7, 0x13, 0x03, 0x2c, 0x26,
0x24, 0x0a, 0x17, 0x00, 0x68, 0x10, 0x03},
.testlen = 23,
.garbage_offset = 3,
.type = EVERMORE_PACKET,
},
{
.legend = "EverMore packet 0x04, 0x10 and some other data at the beginning",
.test = {
0x10, 0x12, 0x10, 0x03, 0xff, 0x10, 0x02, 0x0f,
0x04, 0x00, 0x00, 0x10, 0x10, 0xa7, 0x13, 0x03,
0x2c, 0x26, 0x24, 0x0a, 0x17, 0x00, 0x68, 0x10,
0x03},
.testlen = 25,
.garbage_offset = 5,
.type = EVERMORE_PACKET,
},
{
.legend = "EverMore packet 0x04, 0x10 three times at the beginning",
.test = {
0x10, 0x10, 0x10,
0x10, 0x02, 0x0f, 0x04, 0x00, 0x00, 0x10, 0x10,
0xa7, 0x13, 0x03, 0x2c, 0x26, 0x24, 0x0a, 0x17,
0x00, 0x68, 0x10, 0x03},
.testlen = 23,
.garbage_offset = 3,
.type = EVERMORE_PACKET,
},
{
/* from page 4-3 of RTCM 10403.1 */
.legend = "RTCM104V3 type 1005 packet",
/*
* Reference Station Id = 2003
* GPS Service supported, but not GLONASS or Galileo
* ARP ECEF-X = 1114104.5999 meters
* ARP ECEF-Y = -4850729.7108 meters
* ARP ECEF-Z = 3975521.4643 meters
*/
.test = {
0xD3, 0x00, 0x13, 0x3E, 0xD7, 0xD3, 0x02, 0x02,
0x98, 0x0E, 0xDE, 0xEF, 0x34, 0xB4, 0xBD, 0x62,
0xAC, 0x09, 0x41, 0x98, 0x6F, 0x33, 0x36, 0x0B,
0x98,
},
.testlen = 25,
.garbage_offset = 0,
.type = RTCM3_PACKET,
},
{
.legend = "RTCM104V3 type 1005 packet with 4th byte garbled",
.test = {
0xD3, 0x00, 0x13, 0x3F, 0xD7, 0xD3, 0x02, 0x02,
0x98, 0x0E, 0xDE, 0xEF, 0x34, 0xB4, 0xBD, 0x62,
0xAC, 0x09, 0x41, 0x98, 0x6F, 0x33, 0x36, 0x0B,
0x98,
},
.testlen = 25,
.garbage_offset = 0,
.type = BAD_PACKET,
},
{
/* from page 3-71 of the RTCM 10403.1 */
.legend = "RTCM104V3 type 1029 packet",
.test = {
0xD3, 0x00, 0x27, 0x40, 0x50, 0x17, 0x00, 0x84,
0x73, 0x6E, 0x15, 0x1E, 0x55, 0x54, 0x46, 0x2D,
0x38, 0x20, 0xD0, 0xBF, 0xD1, 0x80, 0xD0, 0xBE,
0xD0, 0xB2, 0xD0, 0xB5, 0xD1, 0x80, 0xD0, 0xBA,
0xD0, 0xB0, 0x20, 0x77, 0xC3, 0xB6, 0x72, 0x74,
0x65, 0x72, 0xED, 0xA3, 0x3B
},
.testlen = 45,
.garbage_offset = 0,
.type = RTCM3_PACKET,
},
};
/*@ +initallelements -charint +usedef @*/
/* *INDENT-ON* */
/* *INDENT-OFF* */
/*@ -initallelements +charint -usedef @*/
static struct map runontests[] = {
/* NMEA tests */
{
.legend = "Double NMEA packet with checksum",
.test = "$GPVTG,308.74,T,,M,0.00,N,0.0,K*68\r\n$GPGGA,110534.994,4002.1425,N,07531.2585,W,0,00,50.0,172.7,M,-33.8,M,0.0,0000*7A\r\n",
.testlen = 118,
0,
NMEA_PACKET,
},
};
/*@ +initallelements -charint +usedef @*/
/* *INDENT-ON* */
static int packet_test(struct map *mp)
{
struct gps_packet_t packet;
int failure = 0;
packet_init(&packet);
packet.debug = verbose;
/*@i@*/ memcpy(packet.inbufptr = packet.inbuffer, mp->test, mp->testlen);
packet.inbuflen = mp->testlen;
/*@ -compdef -uniondef -usedef -formatcode @*/
packet_parse(&packet);
if (packet.type != mp->type)
printf("%2zi: %s test FAILED (packet type %d wrong).\n",
mp - singletests + 1, mp->legend, packet.type);
else if (memcmp
(mp->test + mp->garbage_offset, packet.outbuffer,
packet.outbuflen)) {
printf("%2zi: %s test FAILED (data garbled).\n", mp - singletests + 1,
mp->legend);
++failure;
} else
printf("%2zi: %s test succeeded.\n", mp - singletests + 1,
mp->legend); /*@ +compdef +uniondef +usedef +formatcode @*/
return failure;
}
static void runon_test(struct map *mp)
{
struct gps_packet_t packet;
int nullfd = open("/dev/null", O_RDONLY);
ssize_t st;
packet_init(&packet);
packet.debug = verbose;
/*@i@*/ memcpy(packet.inbufptr = packet.inbuffer, mp->test, mp->testlen);
packet.inbuflen = mp->testlen;
/*@ -compdef -uniondef -usedef -formatcode @*/
(void)fputs(mp->test, stdout);
do {
st = packet_get(nullfd, &packet);
//printf("packet_parse() returned %zd\n", st);
} while (st > 0);
/*@ +compdef +uniondef +usedef +formatcode @*/
}
static int property_check(void)
{
const struct gps_type_t **dp;
int status;
for (dp = gpsd_drivers; *dp; dp++) {
if (*dp == NULL || (*dp)->packet_type == COMMENT_PACKET)
continue;
#ifdef RECONFIGURE_ENABLE
if (CONTROLLABLE(*dp))
(void)fputs("control\t", stdout);
else
(void)fputs(".\t", stdout);
if ((*dp)->event_hook != NULL)
(void)fputs("hook\t", stdout);
else
(void)fputs(".\t", stdout);
#endif /* RECONFIGURE_ENABLE */
if ((*dp)->trigger != NULL)
(void)fputs("trigger\t", stdout);
else if ((*dp)->probe_detect != NULL)
(void)fputs("probe\t", stdout);
else
(void)fputs(".\t", stdout);
#ifdef CONTROLSEND_ENABLE
if ((*dp)->control_send != NULL)
(void)fputs("send\t", stdout);
else
(void)fputs(".\t", stdout);
#endif /* CONTROLSEND_ENABLE */
if ((*dp)->packet_type > NMEA_PACKET)
(void)fputs("binary\t", stdout);
else
(void)fputs("NMEA\t", stdout);
#ifdef CONTROLSEND_ENABLE
if (STICKY(*dp))
(void)fputs("sticky\t", stdout);
else
(void)fputs(".\t", stdout);
#endif /* CONTROLSEND_ENABLE */
(void)puts((*dp)->type_name);
}
status = EXIT_SUCCESS;
for (dp = gpsd_drivers; *dp; dp++) {
if (*dp == NULL || (*dp)->packet_type == COMMENT_PACKET)
continue;
#ifdef CONTROLSEND_ENABLE
if (CONTROLLABLE(*dp) && (*dp)->control_send == NULL) {
(void)fprintf(stderr, "%s has control methods but no send\n",
(*dp)->type_name);
status = EXIT_FAILURE;
}
if ((*dp)->event_hook != NULL && (*dp)->control_send == NULL) {
(void)fprintf(stderr, "%s has event hook but no send\n",
(*dp)->type_name);
status = EXIT_FAILURE;
}
if ((*dp)->probe_detect != NULL && (*dp)->trigger != NULL) {
(void)fprintf(stderr, "%s both a probe and a trigger string\n",
(*dp)->type_name);
status = EXIT_FAILURE;
}
#endif /* CONTROLSEND_ENABLE */
}
return status;
}
int main(int argc, char *argv[])
{
struct map *mp;
int failcount = 0;
int option, singletest = 0;
verbose = 0;
while ((option = getopt(argc, argv, "ce:t:v:")) != -1) {
switch (option) {
case 'c':
exit(property_check());
case 'e':
mp = singletests + atoi(optarg) - 1;
(void)fwrite(mp->test, mp->testlen, sizeof(char), stdout);
(void)fflush(stdout);
exit(EXIT_SUCCESS);
case 't':
singletest = atoi(optarg);
break;
case 'v':
verbose = atoi(optarg);
break;
}
}
if (singletest)
failcount += packet_test(singletests + singletest - 1);
else {
(void)fputs("=== Packet identification tests ===\n", stdout);
for (mp = singletests;
mp < singletests + sizeof(singletests) / sizeof(singletests[0]);
mp++)
failcount += packet_test(mp);
(void)fputs("=== EOF with buffer nonempty test ===\n", stdout);
runon_test(&runontests[0]);
}
exit(failcount > 0 ? EXIT_FAILURE : EXIT_SUCCESS);
}
|