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 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479
|
/*
* This is the main sequence of the gpsd daemon. The IO dispatcher, main
* select loop, and user command handling lives here.
*
* This file is Copyright (c) 2010 by the GPSD project
* BSD terms apply: see the file COPYING in the distribution root for details.
*/
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/time.h> /* for select() */
#include <sys/select.h>
#include <stdio.h>
#include <time.h>
#include <string.h>
#include <stdlib.h>
#include <stdbool.h>
#include <stdarg.h>
#include <ctype.h>
#include <setjmp.h>
#include <assert.h>
#include <pwd.h>
#include <grp.h>
#include <math.h>
#include <syslog.h>
#include <errno.h>
#include <fcntl.h>
#include <signal.h>
#include <pthread.h>
#ifndef S_SPLINT_S
#include <netdb.h>
#ifndef AF_UNSPEC
#include <sys/socket.h>
#endif /* AF_UNSPEC */
#ifndef INADDR_ANY
#include <netinet/in.h>
#endif /* INADDR_ANY */
#include <sys/un.h>
#include <arpa/inet.h> /* for htons() and friends */
#endif /* S_SPLINT_S */
#ifndef S_SPLINT_S
#include <unistd.h>
#endif /* S_SPLINT_S */
#include "gpsd_config.h"
#include "gpsd.h"
#include "sockaddr.h"
#include "gps_json.h"
#include "revision.h"
#if defined(SYSTEMD_ENABLE)
#include "sd_socket.h"
#endif
/*
* The name of a tty device from which to pick up whatever the local
* owning group for tty devices is. Used when we drop privileges.
*/
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
#define PROTO_TTY "/dev/tty00" /* correct for *BSD */
#else
#define PROTO_TTY "/dev/ttyS0" /* correct for Linux */
#endif
/*
* Timeout policy. We can't rely on clients closing connections
* correctly, so we need timeouts to tell us when it's OK to
* reclaim client fds. COMMAND_TIMEOUT fends off programs
* that open connections and just sit there, not issuing a WATCH or
* doing anything else that triggers a device assignment. Clients
* in watcher or raw mode that don't read their data will get dropped
* when throttled_write() fills up the outbound buffers and the
* NOREAD_TIMEOUT expires.
*
* RELEASE_TIMEOUT sets the amount of time we hold a device
* open after the last subscriber closes it; this is nonzero so a
* client that does open/query/close will have time to come back and
* do another single-shot query, if it wants to, before the device is
* actually closed. The reason this matters is because some Bluetooth
* GPSes not only shut down the GPS receiver on close to save battery
* power, they actually shut down the Bluetooth RF stage as well and
* only re-wake it periodically to see if an attempt to raise the
* device is in progress. The result is that if you close the device
* when it's powered up, a re-open can fail with EIO and needs to be
* tried repeatedly. Better to avoid this...
*
* DEVICE_REAWAKE says how long to wait before repolling after a zero-length
* read. It's there so we avoid spinning forever on an EOF condition.
*
* DEVICE_RECONNECT sets interval on retries when (re)connecting to
* a device.
*/
#define COMMAND_TIMEOUT 60*15
#define NOREAD_TIMEOUT 60*3
#define RELEASE_TIMEOUT 60
#define DEVICE_REAWAKE 0.01
#define DEVICE_RECONNECT 2
#define QLEN 5
/*
* If ntpshm is enabled, we renice the process to this priority level.
* For precise timekeeping increase priority.
*/
#define NICEVAL -10
#if defined(FIXED_PORT_SPEED) || !defined(SOCKET_EXPORT_ENABLE)
/*
* Force nowait in two circumstances:
*
* (1) If we're running with FIXED_PORT_SPEED we're some sort
* of embedded configuration where we don't want to wait for connect
*
* (2) Socket export has been disabled. In this case we have no
* way to know when client apps are watching the export channels,
* so we need to be running all the time.
*/
#define FORCE_NOWAIT
#endif /* defined(FIXED_PORT_SPEED) || !defined(SOCKET_EXPORT_ENABLE) */
/* IP version used by the program */
/* AF_UNSPEC: all
* AF_INET: IPv4 only
* AF_INET6: IPv6 only
*/
#ifdef IPV6_ENABLE
static const int af = AF_UNSPEC;
#else
static const int af = AF_INET;
#endif
#define AFCOUNT 2
static fd_set all_fds;
static int maxfd;
#ifndef FORCE_GLOBAL_ENABLE
static bool listen_global = false;
#endif /* FORCE_GLOBAL_ENABLE */
#ifndef FORCE_NOWAIT
#define NOWAIT nowait
static bool nowait = false;
#else /* FORCE_NOWAIT */
#define NOWAIT true
#endif /* FORCE_NOWAIT */
static jmp_buf restartbuf;
static struct gps_context_t context;
#if defined(SYSTEMD_ENABLE)
static int sd_socket_count = 0;
#endif
/* work around the unfinished ipv6 implementation on hurd */
#ifdef __GNU__
#ifndef IPV6_TCLASS
#define IPV6_TCLASS 61
#endif
#endif
static volatile sig_atomic_t signalled;
static void onsig(int sig)
{
/* just set a variable, and deal with it in the main loop */
signalled = (sig_atomic_t) sig;
}
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(const int debuglevel, const int errlevel,
const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
gpsd_labeled_report(debuglevel, errlevel, "gpsd:", fmt, ap);
va_end(ap);
}
static void typelist(void)
/* list installed drivers and enabled features */
{
const struct gps_type_t **dp;
for (dp = gpsd_drivers; *dp; dp++) {
if ((*dp)->packet_type == COMMENT_PACKET)
continue;
#ifdef RECONFIGURE_ENABLE
if ((*dp)->mode_switcher != NULL)
(void)fputs("n\t", stdout);
else
(void)fputc('\t', stdout);
if ((*dp)->speed_switcher != NULL)
(void)fputs("b\t", stdout);
else
(void)fputc('\t', stdout);
if ((*dp)->rate_switcher != NULL)
(void)fputs("c\t", stdout);
else
(void)fputc('\t', stdout);
if ((*dp)->packet_type > NMEA_PACKET)
(void)fputs("*\t", stdout);
else
(void)fputc('\t', stdout);
#endif /* RECONFIGURE_ENABLE */
(void)puts((*dp)->type_name);
}
(void)printf("# n: mode switch, b: speed switch, "
"c: rate switch, *: non-NMEA packet type.\n");
#if defined(SOCKET_EXPORT_ENABLE)
(void)printf("# Socket export enabled.\n");
#endif
#if defined(SHM_EXPORT_ENABLE)
(void)printf("# Shared memory export enabled.\n");
#endif
#if defined(DBUS_EXPORT_ENABLE)
(void)printf("# DBUS export enabled\n");
#endif
#if defined(TIMEHINT_ENABLE)
(void)printf("# Time service features enabled.\n");
#endif
#if defined(PPS_ENABLE)
(void)printf("# PPS enabled.\n");
#endif
exit(EXIT_SUCCESS);
}
static void usage(void)
{
(void)printf("usage: gpsd [-b] [-n] [-N] [-D n] [-F sockfile] [-G] [-P pidfile] [-S port] [-h] device...\n\
Options include: \n\
-b = bluetooth-safe: open data sources read-only\n\
-n = don't wait for client connects to poll GPS\n\
-N = don't go into background\n\
-F sockfile = specify control socket location\n"
#ifndef FORCE_GLOBAL_ENABLE
" -G = make gpsd listen on INADDR_ANY\n"
#endif /* FORCE_GLOBAL_ENABLE */
" -P pidfile = set file to record process ID \n\
-D integer (default 0) = set debug level \n\
-S integer (default %s) = set port for daemon \n\
-h = help message \n\
-V = emit version and exit.\n\
A device may be a local serial device for GPS input, or a URL in one \n\
of the following forms:\n\
tcp://host[:port]\n\
udp://host[:port]\n\
{dgpsip|ntrip}://[user:passwd@]host[:port][/stream]\n\
gpsd://host[:port][/device][?protocol]\n\
in which case it specifies an input source for device, DGPS or ntrip data.\n\
\n\
The following driver types are compiled into this gpsd instance:\n",
DEFAULT_GPSD_PORT);
typelist();
}
#ifdef CONTROL_SOCKET_ENABLE
static socket_t filesock(char *filename)
{
struct sockaddr_un addr;
socket_t sock;
/*@ -mayaliasunique -usedef @*/
if (BAD_SOCKET(sock = socket(AF_UNIX, SOCK_STREAM, 0))) {
gpsd_report(context.debug, LOG_ERROR, "Can't create device-control socket\n");
return -1;
}
(void)strlcpy(addr.sun_path, filename, sizeof(addr.sun_path));
addr.sun_family = (sa_family_t)AF_UNIX;
if (bind(sock, (struct sockaddr *)&addr, (int)sizeof(addr)) < 0) {
gpsd_report(context.debug, LOG_ERROR, "can't bind to local socket %s\n", filename);
(void)close(sock);
return -1;
}
if (listen(sock, QLEN) == -1) {
gpsd_report(context.debug, LOG_ERROR, "can't listen on local socket %s\n", filename);
(void)close(sock);
return -1;
}
/*@ +mayaliasunique +usedef @*/
/* coverity[leaked_handle] This is an intentional allocation */
return sock;
}
#endif /* CONTROL_SOCKET_ENABLE */
/*
* This hackery is intended to support SBCs that are resource-limited
* and only need to support one or a few devices each. It avoids the
* space overhead of allocating thousands of unused device structures.
* This array fills from the bottom, so as an extreme case you could
* reduce LIMITED_MAX_DEVICES to 1.
*/
#ifdef LIMITED_MAX_DEVICES
#define MAXDEVICES LIMITED_MAX_DEVICES
#else
/* we used to make this FD_SETSIZE, but that cost 14MB of wasted core! */
#define MAXDEVICES 4
#endif
#define sub_index(s) (int)((s) - subscribers)
#define allocated_device(devp) ((devp)->gpsdata.dev.path[0] != '\0')
#define free_device(devp) (devp)->gpsdata.dev.path[0] = '\0'
#define initialized_device(devp) ((devp)->context != NULL)
static struct gps_device_t devices[MAXDEVICES];
static void adjust_max_fd(int fd, bool on)
/* track the largest fd currently in use */
{
if (on) {
if (fd > maxfd)
maxfd = fd;
}
#if !defined(LIMITED_MAX_DEVICES) && !defined(LIMITED_MAX_CLIENT_FD)
/*
* I suspect there could be some weird interactions here if
* either of these were set lower than FD_SETSIZE. We'll avoid
* potential bugs by not scavenging in this case at all -- should
* be OK, as the use case for limiting is SBCs where the limits
* will be very low (typically 1) and the maximum size of fd
* set to scan through correspondingly small.
*/
else {
if (fd == maxfd) {
int tfd;
for (maxfd = tfd = 0; tfd < FD_SETSIZE; tfd++)
if (FD_ISSET(tfd, &all_fds))
maxfd = tfd;
}
}
#endif /* !defined(LIMITED_MAX_DEVICES) && !defined(LIMITED_MAX_CLIENT_FD) */
}
#ifdef SOCKET_EXPORT_ENABLE
#ifndef IPTOS_LOWDELAY
#define IPTOS_LOWDELAY 0x10
#endif
static socket_t passivesock_af(int af, char *service, char *tcp_or_udp, int qlen)
/* bind a passive command socket for the daemon */
{
volatile socket_t s;
/*
* af = address family,
* service = IANA protocol name or number.
* tcp_or_udp = TCP or UDP
* qlen = maximum wait-queue length for connections
*/
struct servent *pse;
struct protoent *ppe; /* splint has a bug here */
sockaddr_t sat;
int sin_len = 0;
int type, proto, one = 1;
in_port_t port;
char *af_str = "";
const int dscp = IPTOS_LOWDELAY; /* Prioritize packet */
INVALIDATE_SOCKET(s);
if ((pse = getservbyname(service, tcp_or_udp)))
port = ntohs((in_port_t) pse->s_port);
// cppcheck-suppress unreadVariable
else if ((port = (in_port_t) atoi(service)) == 0) {
gpsd_report(context.debug, LOG_ERROR,
"can't get \"%s\" service entry.\n", service);
return -1;
}
ppe = getprotobyname(tcp_or_udp);
if (strcmp(tcp_or_udp, "udp") == 0) {
type = SOCK_DGRAM;
/*@i@*/ proto = (ppe) ? ppe->p_proto : IPPROTO_UDP;
} else {
type = SOCK_STREAM;
/*@i@*/ proto = (ppe) ? ppe->p_proto : IPPROTO_TCP;
}
/*@ -mustfreefresh +matchanyintegral @*/
switch (af) {
case AF_INET:
sin_len = sizeof(sat.sa_in);
memset((char *)&sat.sa_in, 0, sin_len);
sat.sa_in.sin_family = (sa_family_t) AF_INET;
#ifndef S_SPLINT_S
#ifndef FORCE_GLOBAL_ENABLE
if (!listen_global)
sat.sa_in.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
else
#endif /* FORCE_GLOBAL_ENABLE */
sat.sa_in.sin_addr.s_addr = htonl(INADDR_ANY);
sat.sa_in.sin_port = htons(port);
#endif /* S_SPLINT_S */
af_str = "IPv4";
/* see PF_INET6 case below */
s = socket(PF_INET, type, proto);
if (s > -1 ) {
/*@-unrecog@*/
/* Set packet priority */
if (setsockopt(s, IPPROTO_IP, IP_TOS, &dscp, sizeof(dscp)) == -1)
gpsd_report(context.debug, LOG_WARN,
"Warning: SETSOCKOPT TOS failed\n");
}
/*@+unrecog@*/
break;
#ifdef IPV6_ENABLE
case AF_INET6:
#ifndef S_SPLINT_S
sin_len = sizeof(sat.sa_in6);
memset((char *)&sat.sa_in6, 0, sin_len);
sat.sa_in6.sin6_family = (sa_family_t) AF_INET6;
#ifndef FORCE_GLOBAL_ENABLE
if (!listen_global)
sat.sa_in6.sin6_addr = in6addr_loopback;
else
#endif /* FORCE_GLOBAL_ENABLE */
sat.sa_in6.sin6_addr = in6addr_any;
sat.sa_in6.sin6_port = htons(port);
/*
* Traditionally BSD uses "communication domains", named by
* constants starting with PF_ as the first argument for
* select. In practice PF_INET has the same value as AF_INET
* (on BSD and Linux, and probably everywhere else). POSIX
* leaves much of this unspecified, but requires that AF_INET
* be recognized. We follow tradition here.
*/
af_str = "IPv6";
s = socket(PF_INET6, type, proto);
/*
* On some network stacks, including Linux's, an IPv6 socket
* defaults to listening on IPv4 as well. Unless we disable
* this, trying to listen on in6addr_any will fail with the
* address-in-use error condition.
*/
if (s > -1) {
int on = 1;
if (setsockopt(s, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof(on)) == -1) {
gpsd_report(context.debug, LOG_ERROR,
"Error: SETSOCKOPT IPV6_V6ONLY\n");
(void)close(s);
return -1;
}
/* Set packet priority */
if (setsockopt(s, IPPROTO_IPV6, IPV6_TCLASS, &dscp, sizeof(dscp)) == -1)
gpsd_report(context.debug, LOG_WARN,
"Warning: SETSOCKOPT TOS failed\n");
}
#endif /* S_SPLINT_S */
break;
#endif /* IPV6_ENABLE */
default:
gpsd_report(context.debug, LOG_ERROR,
"unhandled address family %d\n", af);
return -1;
}
gpsd_report(context.debug, LOG_IO,
"opening %s socket\n", af_str);
if (BAD_SOCKET(s)) {
gpsd_report(context.debug, LOG_ERROR,
"can't create %s socket\n", af_str);
return -1;
}
if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (char *)&one,
(int)sizeof(one)) == -1) {
gpsd_report(context.debug, LOG_ERROR,
"Error: SETSOCKOPT SO_REUSEADDR\n");
(void)close(s);
return -1;
}
if (bind(s, &sat.sa, sin_len) < 0) {
gpsd_report(context.debug, LOG_ERROR,
"can't bind to %s port %s, %s\n", af_str,
service, strerror(errno));
if (errno == EADDRINUSE) {
gpsd_report(context.debug, LOG_ERROR,
"maybe gpsd is already running!\n");
}
(void)close(s);
return -1;
}
if (type == SOCK_STREAM && listen(s, qlen) == -1) {
gpsd_report(context.debug, LOG_ERROR, "can't listen on port %s\n", service);
(void)close(s);
return -1;
}
gpsd_report(context.debug, LOG_SPIN, "passivesock_af() -> %d\n", s);
return s;
/*@ +mustfreefresh -matchanyintegral @*/
}
/* *INDENT-OFF* */
static int passivesocks(char *service, char *tcp_or_udp,
int qlen, /*@out@*/socket_t socks[])
{
int numsocks = AFCOUNT;
int i;
for (i = 0; i < AFCOUNT; i++)
INVALIDATE_SOCKET(socks[i]);
#if defined(SYSTEMD_ENABLE)
if (sd_socket_count > 0) {
for (i = 0; i < AFCOUNT && i < sd_socket_count - 1; i++) {
socks[i] = SD_SOCKET_FDS_START + i + 1;
}
return sd_socket_count - 1;
}
#endif
if (AF_UNSPEC == af || (AF_INET == af))
socks[0] = passivesock_af(AF_INET, service, tcp_or_udp, qlen);
if (AF_UNSPEC == af || (AF_INET6 == af))
socks[1] = passivesock_af(AF_INET6, service, tcp_or_udp, qlen);
for (i = 0; i < AFCOUNT; i++)
if (socks[i] < 0)
numsocks--;
/* Return the number of succesfully opened sockets
* The failed ones are identified by negative values */
return numsocks;
}
/* *INDENT-ON* */
struct subscriber_t
{
int fd; /* client file descriptor. -1 if unused */
timestamp_t active; /* when subscriber last polled for data */
struct policy_t policy; /* configurable bits */
pthread_mutex_t mutex; /* serialize access to fd */
};
#ifdef LIMITED_MAX_CLIENTS
#define MAXSUBSCRIBERS LIMITED_MAX_CLIENTS
#else
/* subscriber structure is small enough that there's no need to limit this */
#define MAXSUBSCRIBERS FD_SETSIZE
#endif
#define subscribed(sub, devp) (sub->policy.watcher && (sub->policy.devpath[0]=='\0' || strcmp(sub->policy.devpath, devp->gpsdata.dev.path)==0))
static struct subscriber_t subscribers[MAXSUBSCRIBERS]; /* indexed by client file descriptor */
#define UNALLOCATED_FD -1
static void lock_subscriber(struct subscriber_t *sub)
{
(void)pthread_mutex_lock(&sub->mutex);
}
static void unlock_subscriber(struct subscriber_t *sub)
{
(void)pthread_mutex_unlock(&sub->mutex);
}
static /*@null@*//*@observer@ */ struct subscriber_t *allocate_client(void)
/* return the address of a subscriber structure allocated for a new session */
{
int si;
#if UNALLOCATED_FD == 0
#error client allocation code will fail horribly
#endif
for (si = 0; si < NITEMS(subscribers); si++) {
if (subscribers[si].fd == UNALLOCATED_FD) {
subscribers[si].fd = 0; /* mark subscriber as allocated */
return &subscribers[si];
}
}
return NULL;
}
static void detach_client(struct subscriber_t *sub)
/* detach a client and terminate the session */
{
char *c_ip;
lock_subscriber(sub);
if (sub->fd == UNALLOCATED_FD) {
unlock_subscriber(sub);
return;
}
c_ip = netlib_sock2ip(sub->fd);
(void)shutdown(sub->fd, SHUT_RDWR);
gpsd_report(context.debug, LOG_SPIN,
"close(%d) in detach_client()\n",
sub->fd);
(void)close(sub->fd);
gpsd_report(context.debug, LOG_INF,
"detaching %s (sub %d, fd %d) in detach_client\n",
c_ip, sub_index(sub), sub->fd);
FD_CLR(sub->fd, &all_fds);
adjust_max_fd(sub->fd, false);
sub->active = (timestamp_t)0;
sub->policy.watcher = false;
sub->policy.json = false;
sub->policy.nmea = false;
sub->policy.raw = 0;
sub->policy.scaled = false;
sub->policy.timing = false;
sub->policy.split24 = false;
sub->policy.devpath[0] = '\0';
sub->fd = UNALLOCATED_FD;
unlock_subscriber(sub);
/*@+mustfreeonly@*/
}
static ssize_t throttled_write(struct subscriber_t *sub, char *buf,
size_t len)
/* write to client -- throttle if it's gone or we're close to buffer overrun */
{
ssize_t status;
if (context.debug >= LOG_CLIENT) {
if (isprint(buf[0]))
gpsd_report(context.debug, LOG_CLIENT,
"=> client(%d): %s\n", sub_index(sub), buf);
else {
char *cp, buf2[MAX_PACKET_LENGTH * 3];
buf2[0] = '\0';
for (cp = buf; cp < buf + len; cp++)
(void)snprintf(buf2 + strlen(buf2),
sizeof(buf2) - strlen(buf2),
"%02x", (unsigned int)(*cp & 0xff));
gpsd_report(context.debug, LOG_CLIENT,
"=> client(%d): =%s\n", sub_index(sub), buf2);
}
}
#if defined(PPS_ENABLE)
gpsd_acquire_reporting_lock();
#endif /* PPS_ENABLE */
status = send(sub->fd, buf, len, 0);
#if defined(PPS_ENABLE)
gpsd_release_reporting_lock();
#endif /* PPS_ENABLE */
if (status == (ssize_t) len)
return status;
else if (status > -1) {
gpsd_report(context.debug, LOG_INF,
"short write disconnecting client(%d)\n",
sub_index(sub));
detach_client(sub);
return 0;
} else if (errno == EAGAIN || errno == EINTR)
return 0; /* no data written, and errno says to retry */
else if (errno == EBADF)
gpsd_report(context.debug, LOG_WARN, "client(%d) has vanished.\n", sub_index(sub));
else if (errno == EWOULDBLOCK
&& timestamp() - sub->active > NOREAD_TIMEOUT)
gpsd_report(context.debug, LOG_INF,
"client(%d) timed out.\n", sub_index(sub));
else
gpsd_report(context.debug, LOG_INF,
"client(%d) write: %s\n",
sub_index(sub), strerror(errno));
detach_client(sub);
return status;
}
static void notify_watchers(struct gps_device_t *device,
bool onjson, bool onpps,
const char *sentence, ...)
/* notify all JSON-watching clients of a given device about an event */
{
va_list ap;
char buf[BUFSIZ];
struct subscriber_t *sub;
va_start(ap, sentence);
(void)vsnprintf(buf, sizeof(buf), sentence, ap);
va_end(ap);
for (sub = subscribers; sub < subscribers + MAXSUBSCRIBERS; sub++)
if (sub->active != 0 && subscribed(sub, device)) {
if ((onjson && sub->policy.json) || (onpps && sub->policy.pps))
(void)throttled_write(sub, buf, strlen(buf));
}
}
#endif /* SOCKET_EXPORT_ENABLE */
static void deactivate_device(struct gps_device_t *device)
/* deactivate device, but leave it in the pool (do not free it) */
{
#ifdef SOCKET_EXPORT_ENABLE
notify_watchers(device, true, false,
"{\"class\":\"DEVICE\",\"path\":\"%s\",\"activated\":0}\r\n",
device->gpsdata.dev.path);
#endif /* SOCKET_EXPORT_ENABLE */
if (!BAD_SOCKET(device->gpsdata.gps_fd)) {
FD_CLR(device->gpsdata.gps_fd, &all_fds);
adjust_max_fd(device->gpsdata.gps_fd, false);
#if defined(PPS_ENABLE) && defined(TIOCMIWAIT)
#endif /* defined(PPS_ENABLE) && defined(TIOCMIWAIT) */
#ifdef NTPSHM_ENABLE
ntpshm_link_deactivate(device);
#endif /* NTPSHM_ENABLE */
gpsd_deactivate(device);
}
}
#if defined(SOCKET_EXPORT_ENABLE) || defined(CONTROL_SOCKET_ENABLE)
/* *INDENT-OFF* */
/*@null@*//*@observer@*/ static struct gps_device_t *find_device(/*@null@*/const char
*device_name)
/* find the device block for an existing device name */
{
struct gps_device_t *devp;
for (devp = devices; devp < devices + MAXDEVICES; devp++)
{
if (allocated_device(devp) && NULL != device_name &&
strcmp(devp->gpsdata.dev.path, device_name) == 0)
return devp;
}
return NULL;
}
/* *INDENT-ON* */
#endif /* defined(SOCKET_EXPORT_ENABLE) || defined(CONTROL_SOCKET_ENABLE) */
static bool open_device( /*@null@*/struct gps_device_t *device)
{
if (NULL == device || gpsd_activate(device, O_OPTIMIZE) < 0) {
return false;
}
#ifdef NTPSHM_ENABLE
/*
* Now is the right time to grab the shared memory segment(s)
* to communicate the navigation message derived and (possibly)
* 1PPS derived time data to ntpd/chrony.
*/
ntpshm_link_activate(device);
gpsd_report(context.debug, LOG_INF,
"NTPD ntpshm_link_activate: %d\n",
(int)device->shmIndex >= 0);
#endif /* NTPSHM_ENABLE */
gpsd_report(context.debug, LOG_INF,
"device %s activated\n", device->gpsdata.dev.path);
FD_SET(device->gpsdata.gps_fd, &all_fds);
adjust_max_fd(device->gpsdata.gps_fd, true);
return true;
}
bool gpsd_add_device(const char *device_name, bool flag_nowait)
/* add a device to the pool; open it right away if in nowait mode */
{
struct gps_device_t *devp;
bool ret = false;
/* we can't handle paths longer than GPS_PATH_MAX, so don't try */
if (strlen(device_name) >= GPS_PATH_MAX) {
gpsd_report(context.debug, LOG_ERROR,
"ignoring device %s: path length exceeds maximum %d\n",
device_name, GPS_PATH_MAX);
return false;
}
/* stash devicename away for probing when the first client connects */
for (devp = devices; devp < devices + MAXDEVICES; devp++)
if (!allocated_device(devp)) {
gpsd_init(devp, &context, device_name);
#ifdef NTPSHM_ENABLE
ntpshm_session_init(devp);
#endif /* NTPSHM_ENABLE */
gpsd_report(context.debug, LOG_INF,
"stashing device %s at slot %d\n",
device_name, (int)(devp - devices));
if (!flag_nowait) {
devp->gpsdata.gps_fd = UNALLOCATED_FD;
ret = true;
} else {
ret = open_device(devp);
}
#ifdef SOCKET_EXPORT_ENABLE
notify_watchers(devp, true, false,
"{\"class\":\"DEVICE\",\"path\":\"%s\",\"activated\":%lf}\r\n",
devp->gpsdata.dev.path, timestamp());
#endif /* SOCKET_EXPORT_ENABLE */
break;
}
return ret;
}
#ifdef CONTROL_SOCKET_ENABLE
/*@ observer @*/ static char *snarfline(char *p, /*@out@*/ char **out)
/* copy the rest of the command line, before CR-LF */
{
char *q;
static char stash[BUFSIZ];
/*@ -temptrans -mayaliasunique @*/
for (q = p; isprint(*p) && !isspace(*p) && /*@i@*/ (p - q < BUFSIZ - 1);
p++)
continue;
(void)memcpy(stash, q, (size_t) (p - q));
stash[p - q] = '\0';
*out = stash;
return p;
/*@ +temptrans +mayaliasunique @*/
}
static void handle_control(int sfd, char *buf)
/* handle privileged commands coming through the control socket */
{
char *stash;
struct gps_device_t *devp;
/*
* The only other place in the code that knows about the format
* of the + and - commands is the gpsd_control() function in
* gpsdctl.c. Be careful about keeping them in sync, or
* hotplugging will have mysterious failures.
*/
/*@ -sefparams @*/
if (buf[0] == '-') {
/* remove device named after - */
(void)snarfline(buf + 1, &stash);
gpsd_report(context.debug, LOG_INF,
"<= control(%d): removing %s\n", sfd, stash);
if ((devp = find_device(stash))) {
deactivate_device(devp);
free_device(devp);
ignore_return(write(sfd, "OK\n", 3));
} else
ignore_return(write(sfd, "ERROR\n", 6));
} else if (buf[0] == '+') {
/* add device named after + */
(void)snarfline(buf + 1, &stash);
if (find_device(stash)) {
gpsd_report(context.debug, LOG_INF,
"<= control(%d): %s already active \n", sfd,
stash);
ignore_return(write(sfd, "ERROR\n", 6));
} else {
gpsd_report(context.debug, LOG_INF,
"<= control(%d): adding %s\n", sfd, stash);
if (gpsd_add_device(stash, NOWAIT))
ignore_return(write(sfd, "OK\n", 3));
else
ignore_return(write(sfd, "ERROR\n", 6));
}
} else if (buf[0] == '!') {
/* split line after ! into device=string, send string to device */
char *eq;
(void)snarfline(buf + 1, &stash);
eq = strchr(stash, '=');
if (eq == NULL) {
gpsd_report(context.debug, LOG_WARN,
"<= control(%d): ill-formed command \n",
sfd);
ignore_return(write(sfd, "ERROR\n", 6));
} else {
*eq++ = '\0';
if ((devp = find_device(stash))) {
if (devp->context->readonly || (devp->sourcetype <= source_blockdev)) {
gpsd_report(context.debug, LOG_WARN,
"<= control(%d): attempted to write to a read-only device\n",
sfd);
ignore_return(write(sfd, "ERROR\n", 6));
} else {
gpsd_report(context.debug, LOG_INF,
"<= control(%d): writing to %s \n", sfd,
stash);
if (write(devp->gpsdata.gps_fd, eq, strlen(eq)) <= 0) {
gpsd_report(context.debug, LOG_WARN, "<= control(%d): write to device failed\n",
sfd);
ignore_return(write(sfd, "ERROR\n", 6));
} else {
ignore_return(write(sfd, "OK\n", 3));
}
}
} else {
gpsd_report(context.debug, LOG_INF,
"<= control(%d): %s not active \n", sfd,
stash);
ignore_return(write(sfd, "ERROR\n", 6));
}
}
} else if (buf[0] == '&') {
/* split line after & into dev=hexdata, send unpacked hexdata to dev */
char *eq;
(void)snarfline(buf + 1, &stash);
eq = strchr(stash, '=');
if (eq == NULL) {
gpsd_report(context.debug, LOG_WARN,
"<= control(%d): ill-formed command\n",
sfd);
ignore_return(write(sfd, "ERROR\n", 6));
} else {
size_t len;
*eq++ = '\0';
len = strlen(eq) + 5;
if ((devp = find_device(stash)) != NULL) {
if (devp->context->readonly || (devp->sourcetype <= source_blockdev)) {
gpsd_report(context.debug, LOG_WARN,
"<= control(%d): attempted to write to a read-only device\n",
sfd);
ignore_return(write(sfd, "ERROR\n", 6));
} else {
int st;
/* NOTE: this destroys the original buffer contents */
st = gpsd_hexpack(eq, eq, len);
if (st <= 0) {
gpsd_report(context.debug, LOG_INF,
"<= control(%d): invalid hex string (error %d).\n",
sfd, st);
ignore_return(write(sfd, "ERROR\n", 6));
} else {
gpsd_report(context.debug, LOG_INF,
"<= control(%d): writing %d bytes fromhex(%s) to %s\n",
sfd, st, eq, stash);
if (write(devp->gpsdata.gps_fd, eq, (size_t) st) <= 0) {
gpsd_report(context.debug, LOG_WARN,
"<= control(%d): write to device failed\n",
sfd);
ignore_return(write(sfd, "ERROR\n", 6));
} else {
ignore_return(write(sfd, "OK\n", 3));
}
}
}
} else {
gpsd_report(context.debug, LOG_INF,
"<= control(%d): %s not active\n", sfd,
stash);
ignore_return(write(sfd, "ERROR\n", 6));
}
}
} else if (strstr(buf, "?devices")==buf) {
/* write back devices list followed by OK */
for (devp = devices; devp < devices + MAXDEVICES; devp++) {
char *path = devp->gpsdata.dev.path;
ignore_return(write(sfd, path, strlen(path)));
ignore_return(write(sfd, "\n", 1));
}
ignore_return(write(sfd, "OK\n", 3));
} else {
/* unknown command */
ignore_return(write(sfd, "ERROR\n", 6));
}
/*@ +sefparams @*/
}
#endif /* CONTROL_SOCKET_ENABLE */
#ifdef SOCKET_EXPORT_ENABLE
static bool awaken(struct gps_device_t *device)
/* awaken a device and notify all watchers*/
{
/* open that device */
if (!initialized_device(device)) {
if (!open_device(device)) {
gpsd_report(context.debug, LOG_WARN,
"%s: open failed\n",
device->gpsdata.dev.path);
free_device(device);
return false;
}
}
if (!BAD_SOCKET(device->gpsdata.gps_fd)) {
gpsd_report(context.debug, LOG_PROG,
"device %d (fd=%d, path %s) already active.\n",
(int)(device - devices),
device->gpsdata.gps_fd, device->gpsdata.dev.path);
return true;
} else {
if (gpsd_activate(device, O_OPTIMIZE) < 0) {
gpsd_report(context.debug, LOG_ERROR,
"%s: device activation failed.\n",
device->gpsdata.dev.path);
return false;
} else {
gpsd_report(context.debug, LOG_RAW,
"flagging descriptor %d in assign_channel()\n",
device->gpsdata.gps_fd);
FD_SET(device->gpsdata.gps_fd, &all_fds);
adjust_max_fd(device->gpsdata.gps_fd, true);
return true;
}
}
}
#ifdef RECONFIGURE_ENABLE
static bool privileged_user(struct gps_device_t *device)
/* is this channel privileged to change a device's behavior? */
{
/* grant user privilege if he's the only one listening to the device */
struct subscriber_t *sub;
int subcount = 0;
for (sub = subscribers; sub < subscribers + MAXSUBSCRIBERS; sub++) {
if (subscribed(sub, device))
subcount++;
}
/*
* Yes, zero subscribers is possible. For example, gpsctl talking
* to the daemon connects but doesn't necessarily issue a ?WATCH
* before shipping a request, which means it isn't marked as a
* subscribers,
*/
return subcount <= 1;
}
static void set_serial(struct gps_device_t *device,
speed_t speed, char *modestring)
/* set serial parameters for a device from a speed and modestring */
{
unsigned int stopbits = device->gpsdata.dev.stopbits;
char parity = device->gpsdata.dev.parity;
int wordsize = 8;
if (strchr("78", *modestring) != NULL) {
while (isspace(*modestring))
modestring++;
wordsize = (int)(*modestring++ - '0');
if (strchr("NOE", *modestring) != NULL) {
parity = *modestring++;
while (isspace(*modestring))
modestring++;
if (strchr("12", *modestring) != NULL)
stopbits = (unsigned int)(*modestring - '0');
}
}
gpsd_report(context.debug, LOG_PROG,
"set_serial(%s,%u,%s) %c%d\n",
device->gpsdata.dev.path,
(unsigned int)speed, modestring, parity, stopbits);
/* no support for other word sizes yet */
/* *INDENT-OFF* */
if (wordsize == (int)(9 - stopbits)
&& device->device_type->speed_switcher != NULL) {
if (device->device_type->speed_switcher(device, speed, parity, (int)stopbits)) {
/*
* Deep black magic is required here. We have to
* allow the control string time to register at the
* GPS before we do the baud rate switch, which
* effectively trashes the UART's buffer.
*
* This definitely fails below 40 milliseconds on a
* BU-303b. 50ms is also verified by Chris Kuethe on
* Pharos iGPS360 + GSW 2.3.1ES + prolific
* Rayming TN-200 + GSW 2.3.1 + ftdi
* Rayming TN-200 + GSW 2.3.2 + ftdi
* so it looks pretty solid.
*
* The minimum delay time is probably constant
* across any given type of UART.
*/
(void)tcdrain(device->gpsdata.gps_fd);
(void)usleep(50000);
gpsd_set_speed(device, speed, parity, stopbits);
}
}
/* *INDENT-ON* */
}
#endif /* RECONFIGURE_ENABLE */
#ifdef SOCKET_EXPORT_ENABLE
static void json_devicelist_dump(char *reply, size_t replylen)
{
struct gps_device_t *devp;
(void)strlcpy(reply, "{\"class\":\"DEVICES\",\"devices\":[", replylen);
for (devp = devices; devp < devices + MAXDEVICES; devp++)
if (allocated_device(devp)
&& strlen(reply) + strlen(devp->gpsdata.dev.path) + 3 <
replylen - 1) {
char *cp;
json_device_dump(devp,
reply + strlen(reply), replylen - strlen(reply));
cp = reply + strlen(reply);
*--cp = '\0';
*--cp = '\0';
(void)strlcat(reply, ",", replylen);
}
if (reply[strlen(reply) - 1] == ',')
reply[strlen(reply) - 1] = '\0';
(void)strlcat(reply, "]}\r\n", replylen);
}
#endif /* SOCKET_EXPORT_ENABLE */
static void rstrip(char *str)
/* strip trailing \r\n\t\SP from a string */
{
char *strend;
strend = str + strlen(str) - 1;
while (isspace(*strend)) {
*strend = '\0';
--strend;
}
}
static void handle_request(struct subscriber_t *sub,
const char *buf, const char **after,
char *reply, size_t replylen)
{
struct gps_device_t *devp;
const char *end = NULL;
/*
* There's a splint limitation that parameters can be declared
* @out@ or @null@ but not, apparently, both. This collides with
* the (admittedly tricky) way we use endptr. The workaround is to
* declare it @null@ and use -compdef around the JSON reader calls.
*/
/*@-compdef@*/
/*
* See above...
*/
/*@-nullderef -nullpass@*/
if (buf[0] == '?')
++buf;
if (strncmp(buf, "DEVICES;", 8) == 0) {
buf += 8;
json_devicelist_dump(reply, replylen);
} else if (strncmp(buf, "WATCH", 5) == 0
&& (buf[5] == ';' || buf[5] == '=')) {
const char *start = buf;
buf += 5;
if (*buf == ';') {
++buf;
} else {
int status = json_watch_read(buf + 1, &sub->policy, &end);
#ifndef TIMING_ENABLE
sub->policy.timing = false;
#endif /* TIMING_ENABLE */
if (end == NULL)
buf += strlen(buf);
else {
if (*end == ';')
++end;
buf = end;
}
if (status != 0) {
(void)snprintf(reply, replylen,
"{\"class\":\"ERROR\",\"message\":\"Invalid WATCH: %s\"}\r\n",
json_error_string(status));
gpsd_report(context.debug, LOG_ERROR, "response: %s\n", reply);
} else if (sub->policy.watcher) {
if (sub->policy.devpath[0] == '\0') {
/* awaken all devices */
for (devp = devices; devp < devices + MAXDEVICES; devp++)
if (allocated_device(devp)) {
(void)awaken(devp);
if (devp->sourcetype == source_gpsd) {
(void)gpsd_write(devp, "?", 1);
(void)gpsd_write(devp, start, (size_t)(end-start));
}
}
} else {
devp = find_device(sub->policy.devpath);
if (devp == NULL) {
(void)snprintf(reply, replylen,
"{\"class\":\"ERROR\",\"message\":\"No such device as %s\"}\r\n",
sub->policy.devpath);
gpsd_report(context.debug, LOG_ERROR,
"response: %s\n", reply);
goto bailout;
} else if (awaken(devp)) {
if (devp->sourcetype == source_gpsd) {
(void)gpsd_write(devp, "?", 1);
(void)gpsd_write(devp, start, (size_t)(end-start));
}
} else {
(void)snprintf(reply, replylen,
"{\"class\":\"ERROR\",\"message\":\"Can't assign %s\"}\r\n",
sub->policy.devpath);
gpsd_report(context.debug, LOG_ERROR,
"response: %s\n", reply);
goto bailout;
}
}
}
}
/* display a device list and the user's policy */
json_devicelist_dump(reply + strlen(reply), replylen - strlen(reply));
json_watch_dump(&sub->policy,
reply + strlen(reply), replylen - strlen(reply));
} else if (strncmp(buf, "DEVICE", 6) == 0
&& (buf[6] == ';' || buf[6] == '=')) {
struct devconfig_t devconf;
buf += 6;
devconf.path[0] = '\0'; /* initially, no device selection */
if (*buf == ';') {
++buf;
} else {
#ifdef RECONFIGURE_ENABLE
struct gps_device_t *device;
/* first, select a device to operate on */
int status = json_device_read(buf + 1, &devconf, &end);
if (end == NULL)
buf += strlen(buf);
else {
if (*end == ';')
++end;
buf = end;
}
device = NULL;
/*@-branchstate@*/
if (status != 0) {
(void)snprintf(reply, replylen,
"{\"class\":\"ERROR\",\"message\":\"Invalid DEVICE: \"%s\"}\r\n",
json_error_string(status));
gpsd_report(context.debug, LOG_ERROR, "response: %s\n", reply);
goto bailout;
} else {
if (devconf.path[0] != '\0') {
/* user specified a path, try to assign it */
device = find_device(devconf.path);
/* do not optimize away, we need 'device' later on! */
if (device == NULL || !awaken(device)) {
(void)snprintf(reply, replylen,
"{\"class\":\"ERROR\",\"message\":\"Can't open %s.\"}\r\n",
devconf.path);
gpsd_report(context.debug, LOG_ERROR,
"response: %s\n", reply);
goto bailout;
}
} else {
/* no path specified */
int devcount = 0;
for (devp = devices; devp < devices + MAXDEVICES; devp++)
if (allocated_device(devp)) {
device = devp;
devcount++;
}
if (devcount == 0) {
(void)strlcat(reply,
"{\"class\":\"ERROR\",\"message\":\"Can't perform DEVICE configuration, no devices attached.\"}\r\n",
replylen);
gpsd_report(context.debug, LOG_ERROR,
"response: %s\n", reply);
goto bailout;
} else if (devcount > 1) {
(void)snprintf(reply + strlen(reply),
replylen - strlen(reply),
"{\"class\":\"ERROR\",\"message\":\"No path specified in DEVICE, but multiple devices are attached.\"}\r\n");
gpsd_report(context.debug, LOG_ERROR,
"response: %s\n", reply);
goto bailout;
}
/* we should have exactly one device now */
}
if (!privileged_user(device))
(void)snprintf(reply + strlen(reply),
replylen - strlen(reply),
"{\"class\":\"ERROR\",\"message\":\"Multiple subscribers, cannot change control bits on %s.\"}\r\n",
device->gpsdata.dev.path);
else if (device->device_type == NULL)
(void)snprintf(reply + strlen(reply),
replylen - strlen(reply),
"{\"class\":\"ERROR\",\"message\":\"Type of %s is unknown.\"}\r\n",
device->gpsdata.dev.path);
else {
const struct gps_type_t *dt = device->device_type;
bool no_serial_change =
(devconf.baudrate == DEVDEFAULT_BPS)
&& (devconf.parity == DEVDEFAULT_PARITY)
&& (devconf.stopbits == DEVDEFAULT_STOPBITS);
/* interpret defaults */
if (devconf.baudrate == DEVDEFAULT_BPS)
devconf.baudrate =
(uint) gpsd_get_speed(device);
if (devconf.parity == DEVDEFAULT_PARITY)
devconf.stopbits = device->gpsdata.dev.stopbits;
if (devconf.stopbits == DEVDEFAULT_STOPBITS)
devconf.stopbits = device->gpsdata.dev.stopbits;
if (isnan(devconf.cycle))
devconf.cycle = device->gpsdata.dev.cycle;
/* now that channel is selected, apply changes */
if (devconf.driver_mode != device->gpsdata.dev.driver_mode
&& devconf.driver_mode != DEVDEFAULT_NATIVE
&& dt->mode_switcher != NULL)
dt->mode_switcher(device, devconf.driver_mode);
if (!no_serial_change) {
char serialmode[3];
serialmode[0] = devconf.parity;
serialmode[1] = '0' + devconf.stopbits;
serialmode[2] = '\0';
set_serial(device,
(speed_t) devconf.baudrate, serialmode);
}
if (devconf.cycle != device->gpsdata.dev.cycle
&& devconf.cycle >= dt->min_cycle
&& dt->rate_switcher != NULL)
if (dt->rate_switcher(device, devconf.cycle))
device->gpsdata.dev.cycle = devconf.cycle;
}
}
/*@+branchstate@*/
#else /* RECONFIGURE_ENABLE */
(void)snprintf(reply + strlen(reply), replylen - strlen(reply),
"{\"class\":\"ERROR\",\"message\":\"Device configuration support not compiled.\"}\r\n");
#endif /* RECONFIGURE_ENABLE */
}
/* dump a response for each selected channel */
for (devp = devices; devp < devices + MAXDEVICES; devp++)
if (!allocated_device(devp))
continue;
else if (devconf.path[0] != '\0' && devp != NULL
&& strcmp(devp->gpsdata.dev.path, devconf.path) != 0)
continue;
else {
json_device_dump(devp,
reply + strlen(reply),
replylen - strlen(reply));
}
} else if (strncmp(buf, "POLL;", 5) == 0) {
char tbuf[JSON_DATE_MAX+1];
int active = 0;
buf += 5;
for (devp = devices; devp < devices + MAXDEVICES; devp++)
if (allocated_device(devp) && subscribed(sub, devp))
if ((devp->observed & GPS_TYPEMASK) != 0)
active++;
(void)snprintf(reply, replylen,
"{\"class\":\"POLL\",\"time\":\"%s\",\"active\":%d,\"tpv\":[",
unix_to_iso8601(timestamp(), tbuf, sizeof(tbuf)), active);
for (devp = devices; devp < devices + MAXDEVICES; devp++) {
if (allocated_device(devp) && subscribed(sub, devp)) {
if ((devp->observed & GPS_TYPEMASK) != 0) {
json_tpv_dump(devp, &sub->policy,
reply + strlen(reply),
replylen - strlen(reply));
rstrip(reply);
(void)strlcat(reply, ",", replylen);
}
}
}
if (reply[strlen(reply) - 1] == ',')
reply[strlen(reply) - 1] = '\0'; /* trim trailing comma */
(void)strlcat(reply, "],\"gst\":[", replylen);
for (devp = devices; devp < devices + MAXDEVICES; devp++) {
if (allocated_device(devp) && subscribed(sub, devp)) {
if ((devp->observed & GPS_TYPEMASK) != 0) {
json_noise_dump(&devp->gpsdata,
reply + strlen(reply),
replylen - strlen(reply));
rstrip(reply);
(void)strlcat(reply, ",", replylen);
}
}
}
if (reply[strlen(reply) - 1] == ',')
reply[strlen(reply) - 1] = '\0'; /* trim trailing comma */
(void)strlcat(reply, "],\"sky\":[", replylen);
for (devp = devices; devp < devices + MAXDEVICES; devp++) {
if (allocated_device(devp) && subscribed(sub, devp)) {
if ((devp->observed & GPS_TYPEMASK) != 0) {
json_sky_dump(&devp->gpsdata,
reply + strlen(reply),
replylen - strlen(reply));
rstrip(reply);
(void)strlcat(reply, ",", replylen);
}
}
}
if (reply[strlen(reply) - 1] == ',')
reply[strlen(reply) - 1] = '\0'; /* trim trailing comma */
(void)strlcat(reply, "]}\r\n", replylen);
} else if (strncmp(buf, "VERSION;", 8) == 0) {
buf += 8;
json_version_dump(reply, replylen);
} else {
const char *errend;
errend = buf + strlen(buf) - 1;
while (isspace(*errend) && errend > buf)
--errend;
(void)snprintf(reply, replylen,
"{\"class\":\"ERROR\",\"message\":\"Unrecognized request '%.*s'\"}\r\n",
(int)(errend - buf), buf);
gpsd_report(context.debug, LOG_ERROR, "ERROR response: %s\n", reply);
buf += strlen(buf);
}
bailout:
*after = buf;
/*@+nullderef +nullpass@*/
/*@+compdef@*/
}
static void raw_report(struct subscriber_t *sub, struct gps_device_t *device)
/* report a raw packet to a subscriber */
{
/* *INDENT-OFF* */
/*
* NMEA and other textual sentences are simply
* copied to all clients that are in raw or nmea
* mode.
*/
if (TEXTUAL_PACKET_TYPE(device->packet.type)
&& (sub->policy.raw > 0 || sub->policy.nmea)) {
(void)throttled_write(sub,
(char *)device->packet.outbuffer,
device->packet.outbuflen);
return;
}
/*
* Also, simply copy if user has specified
* super-raw mode.
*/
if (sub->policy.raw > 1) {
(void)throttled_write(sub,
(char *)device->packet.outbuffer,
device->packet.outbuflen);
return;
}
#ifdef BINARY_ENABLE
/*
* Maybe the user wants a binary packet hexdumped.
*/
if (sub->policy.raw == 1) {
const char *hd =
gpsd_hexdump(device->msgbuf, sizeof(device->msgbuf),
(char *)device->packet.outbuffer,
device->packet.outbuflen);
(void)strlcat((char *)hd, "\r\n", sizeof(device->msgbuf));
(void)throttled_write(sub, (char *)hd, strlen(hd));
}
#endif /* BINARY_ENABLE */
}
static void pseudonmea_report(struct subscriber_t *sub,
gps_mask_t changed,
struct gps_device_t *device)
/* report pseudo-NMEA in appropriate circumstances */
{
if (GPS_PACKET_TYPE(device->packet.type)
&& !TEXTUAL_PACKET_TYPE(device->packet.type)) {
char buf[MAX_PACKET_LENGTH * 3 + 2];
if ((changed & REPORT_IS) != 0) {
nmea_tpv_dump(device, buf, sizeof(buf));
gpsd_report(context.debug, LOG_IO,
"<= GPS (binary tpv) %s: %s\n",
device->gpsdata.dev.path, buf);
(void)throttled_write(sub, buf, strlen(buf));
}
if ((changed & SATELLITE_SET) != 0) {
nmea_sky_dump(device, buf, sizeof(buf));
gpsd_report(context.debug, LOG_IO,
"<= GPS (binary sky) %s: %s\n",
device->gpsdata.dev.path, buf);
(void)throttled_write(sub, buf, strlen(buf));
}
if ((changed & SUBFRAME_SET) != 0) {
nmea_subframe_dump(device, buf, sizeof(buf));
gpsd_report(context.debug, LOG_IO,
"<= GPS (binary subframe) %s: %s\n",
device->gpsdata.dev.path, buf);
(void)throttled_write(sub, buf, strlen(buf));
}
#ifdef AIVDM_ENABLE
if ((changed & AIS_SET) != 0) {
nmea_ais_dump(device, buf, sizeof(buf));
gpsd_report(context.debug, LOG_IO,
"<= AIS (binary ais) %s: %s\n",
device->gpsdata.dev.path, buf);
(void)throttled_write(sub, buf, strlen(buf));
}
#endif /* AIVDM_ENABLE */
}
}
#endif /* SOCKET_EXPORT_ENABLE */
static void all_reports(struct gps_device_t *device, gps_mask_t changed)
/* report on the corrent packet from a specified device */
{
#ifdef SOCKET_EXPORT_ENABLE
struct subscriber_t *sub;
/* add any just-identified device to watcher lists */
if ((changed & DRIVER_IS) != 0) {
bool listeners = false;
for (sub = subscribers;
sub < subscribers + MAXSUBSCRIBERS; sub++)
if (sub->active != 0
&& sub->policy.watcher
&& subscribed(sub, device))
listeners = true;
if (listeners) {
(void)awaken(device);
}
}
/* handle laggy response to a firmware version query */
if ((changed & (DEVICEID_SET | DRIVER_IS)) != 0) {
assert(device->device_type != NULL);
{
char id2[GPS_JSON_RESPONSE_MAX];
json_device_dump(device, id2, sizeof(id2));
notify_watchers(device, true, false, id2);
}
}
#endif /* SOCKET_EXPORT_ENABLE */
/*
* If the device provided an RTCM packet, repeat it to all devices.
*/
if ((changed & RTCM2_SET) != 0 || (changed & RTCM3_SET) != 0) {
if (device->packet.outbuflen > RTCM_MAX) {
gpsd_report(context.debug, LOG_ERROR,
"overlong RTCM packet (%zd bytes)\n",
device->packet.outbuflen);
} else {
struct gps_device_t *dp;
for (dp = devices; dp < devices+MAXDEVICES; dp++) {
if (allocated_device(dp)) {
/* *INDENT-OFF* */
if (dp->device_type->rtcm_writer != NULL) {
if (dp->device_type->rtcm_writer(dp,
(const char *)device->packet.outbuffer,
device->packet.outbuflen) == 0)
gpsd_report(context.debug, LOG_ERROR,
"Write to RTCM sink failed\n");
else {
gpsd_report(context.debug, LOG_IO,
"<= DGPS: %zd bytes of RTCM relayed.\n",
device->packet.outbuflen);
}
}
/* *INDENT-ON* */
}
}
}
}
#ifdef NTPSHM_ENABLE
/*
* Time is eligible for shipping to NTPD if the driver has
* asserted PPSTIME_IS at any point in the current cycle.
*/
if ((changed & CLEAR_IS)!=0)
device->ship_to_ntpd = false;
if ((changed & PPSTIME_IS)!=0)
device->ship_to_ntpd = true;
/*
* Only update the NTP time if we've seen the leap-seconds data.
* Else we may be providing GPS time.
*/
if ((changed & TIME_SET) == 0) {
//gpsd_report(context.debug, LOG_PROG, "NTP: No time this packet\n");
} else if (isnan(device->newdata.time)) {
//gpsd_report(context.debug, LOG_PROG, "NTP: bad new time\n");
} else if (device->newdata.time == device->last_fixtime.real) {
//gpsd_report(context.debug, LOG_PROG, "NTP: Not a new time\n");
} else if (!device->ship_to_ntpd) {
//gpsd_report(context.debug, LOG_PROG, "NTP: No precision time report\n");
} else {
/*@-compdef@*/
struct timedrift_t td;
ntpshm_latch(device, &td);
(void)ntpshm_put(device, device->shmIndex, &td);
/*@+compdef@*/
}
#endif /* NTPSHM_ENABLE */
/*
* If no reliable end of cycle, must report every time
* a sentence changes position or mode. Likely to
* cause display jitter.
*/
if (!device->cycle_end_reliable && (changed & (LATLON_SET | MODE_SET))!=0)
changed |= REPORT_IS;
/* a few things are not per-subscriber reports */
if ((changed & REPORT_IS) != 0) {
#ifdef NETFEED_ENABLE
if (device->gpsdata.fix.mode == MODE_3D) {
struct gps_device_t *dgnss;
/*
* Pass the fix to every potential caster, here.
* netgnss_report() individual caster types get to
* make filtering decisiona.
*/
for (dgnss = devices; dgnss < devices + MAXDEVICES; dgnss++)
if (dgnss != device)
netgnss_report(&context, device, dgnss);
}
#endif /* NETFEED_ENABLE */
#if defined(DBUS_EXPORT_ENABLE) && !defined(S_SPLINT_S)
if (device->gpsdata.fix.mode > MODE_NO_FIX)
send_dbus_fix(device);
#endif /* defined(DBUS_EXPORT_ENABLE) && !defined(S_SPLINT_S) */
}
#ifdef SHM_EXPORT_ENABLE
if ((changed & (REPORT_IS|GST_SET|SATELLITE_SET|SUBFRAME_SET|
ATTITUDE_SET|RTCM2_SET|RTCM3_SET|AIS_SET)) != 0)
shm_update(&context, &device->gpsdata);
#endif /* SHM_EXPORT_ENABLE */
#ifdef SOCKET_EXPORT_ENABLE
/* update all subscribers associated with this device */
for (sub = subscribers; sub < subscribers + MAXSUBSCRIBERS; sub++) {
/*@-nullderef@*/
if (sub == NULL || sub->active == 0 || !subscribed(sub, device))
continue;
#ifdef PASSTHROUGH_ENABLE
/* this is for passing through JSON packets */
if ((changed & PASSTHROUGH_IS) != 0) {
(void)strlcat((char *)device->packet.outbuffer,
"\r\n",
sizeof(device->packet.outbuffer));
(void)throttled_write(sub,
(char *)device->packet.outbuffer,
device->packet.outbuflen+2);
continue;
}
#endif /* PASSTHROUGH_ENABLE */
/* report raw packets to users subscribed to those */
raw_report(sub, device);
/* some listeners may be in watcher mode */
if (sub->policy.watcher) {
if (changed & DATA_IS) {
/* guard keeps mask dumper from eating CPU */
if (context.debug >= LOG_PROG)
gpsd_report(context.debug, LOG_PROG,
"Changed mask: %s with %sreliable cycle detection\n",
gps_maskdump(changed),
device->cycle_end_reliable ? "" : "un");
if ((changed & REPORT_IS) != 0)
gpsd_report(context.debug, LOG_PROG,
"time to report a fix\n");
if (sub->policy.nmea)
pseudonmea_report(sub, changed, device);
if (sub->policy.json)
{
char buf[GPS_JSON_RESPONSE_MAX * 4];
if ((changed & AIS_SET) != 0)
if (device->gpsdata.ais.type == 24
&& device->gpsdata.ais.type24.part != both
&& !sub->policy.split24)
continue;
json_data_report(changed,
device, &sub->policy,
buf, sizeof(buf));
if (buf[0] != '\0')
(void)throttled_write(sub, buf, strlen(buf));
}
}
}
/*@+nullderef@*/
} /* subscribers */
#endif /* SOCKET_EXPORT_ENABLE */
}
#ifdef SOCKET_EXPORT_ENABLE
static int handle_gpsd_request(struct subscriber_t *sub, const char *buf)
/* execute GPSD requests from a buffer */
{
char reply[GPS_JSON_RESPONSE_MAX + 1];
reply[0] = '\0';
if (buf[0] == '?') {
const char *end;
for (end = buf; *buf != '\0'; buf = end)
if (isspace(*buf))
end = buf + 1;
else
handle_request(sub, buf, &end,
reply + strlen(reply),
sizeof(reply) - strlen(reply));
}
return (int)throttled_write(sub, reply, strlen(reply));
}
#endif /* SOCKET_EXPORT_ENABLE */
#ifdef PPS_ENABLE
static void ship_pps_drift_message(struct gps_device_t *session,
struct timedrift_t *td)
/* on PPS interrupt, ship a drift message to all clients */
{
#ifdef SOCKET_EXPORT_ENABLE
/*@-type@*//* splint is confused about struct timespec */
notify_watchers(session, true, true,
"{\"class\":\"PPS\",\"device\":\"%s\",\"real_sec\":%ld, \"real_nsec\":%ld,\"clock_sec\":%ld,\"clock_nsec\":%ld}\r\n",
session->gpsdata.dev.path,
td->real.tv_sec, td->real.tv_nsec,
td->clock.tv_sec, td->clock.tv_nsec);
/*@+type@*/
return;
#endif /* SOCKET_EXPORT_ENABLE */
}
#endif /* PPS_ENABLE */
#ifdef __UNUSED_AUTOCONNECT__
#define DGPS_THRESHOLD 1600000 /* max. useful dist. from DGPS server (m) */
#define SERVER_SAMPLE 12 /* # of servers within threshold to check */
struct dgps_server_t
{
double lat, lon;
char server[257];
double dist;
};
static int srvcmp(const void *s, const void *t)
{
return (int)(((const struct dgps_server_t *)s)->dist - ((const struct dgps_server_t *)t)->dist); /* fixes: warning: cast discards qualifiers from pointer target type */
}
static void netgnss_autoconnect(struct gps_context_t *context,
double lat, double lon, const char *serverlist)
/* tell the library to talk to the nearest DGPSIP server */
{
struct dgps_server_t keep[SERVER_SAMPLE], hold, *sp, *tp;
char buf[BUFSIZ];
FILE *sfp = fopen(serverlist, "r");
if (sfp == NULL) {
gpsd_report(context.debug, LOG_ERROR, "no DGPS server list found.\n");
return;
}
for (sp = keep; sp < keep + SERVER_SAMPLE; sp++) {
sp->dist = DGPS_THRESHOLD;
sp->server[0] = '\0';
}
/*@ -usedef @*/
while (fgets(buf, (int)sizeof(buf), sfp)) {
char *cp = strchr(buf, '#');
if (cp != NULL)
*cp = '\0';
if (sscanf(buf, "%32lf %32lf %256s", &hold.lat, &hold.lon, hold.server) ==
3) {
hold.dist = earth_distance(lat, lon, hold.lat, hold.lon);
tp = NULL;
/*
* The idea here is to look for a server in the sample array
* that is (a) closer than the one we're checking, and (b)
* furtherest away of all those that are closer. Replace it.
* In this way we end up with the closest possible set.
*/
for (sp = keep; sp < keep + SERVER_SAMPLE; sp++)
if (hold.dist < sp->dist
&& (tp == NULL || hold.dist > tp->dist))
tp = sp;
if (tp != NULL)
memcpy(tp, &hold, sizeof(struct dgps_server_t));
}
}
(void)fclose(sfp);
if (keep[0].server[0] == '\0') {
gpsd_report(context.debug, LOG_ERROR,
"no DGPS servers within %dm.\n",
(int)(DGPS_THRESHOLD / 1000));
return;
}
/*@ +usedef @*/
/* sort them and try the closest first */
qsort((void *)keep, SERVER_SAMPLE, sizeof(struct dgps_server_t), srvcmp);
for (sp = keep; sp < keep + SERVER_SAMPLE; sp++) {
if (sp->server[0] != '\0') {
gpsd_report(context.debug, LOG_INF,
"%s is %dkm away.\n", sp->server,
(int)(sp->dist / 1000));
if (dgpsip_open(context, sp->server) >= 0)
break;
}
}
}
#endif /* __UNUSED_AUTOCONNECT__ */
static void gpsd_terminate(struct gps_context_t *context)
/* finish cleanly, reverting device configuration */
{
int dfd;
for (dfd = 0; dfd < MAXDEVICES; dfd++) {
if (allocated_device(&devices[dfd])) {
(void)gpsd_wrap(&devices[dfd]);
}
}
#ifdef PPS_ENABLE
context->pps_hook = NULL; /* tell any PPS-watcher thread to die */
#endif /* PPS_ENABLE */
}
/*@ -mustfreefresh @*/
int main(int argc, char *argv[])
{
/* some of these statics suppress -W warnings due to longjmp() */
#ifdef SOCKET_EXPORT_ENABLE
static char *gpsd_service = NULL; /* this static pacifies splint */
struct subscriber_t *sub;
#endif /* SOCKET_EXPORT_ENABLE */
#ifdef CONTROL_SOCKET_ENABLE
static socket_t csock;
fd_set control_fds, rfds;
socket_t cfd;
static char *control_socket = NULL;
#endif /* CONTROL_SOCKET_ENABLE */
#if defined(SOCKET_EXPORT_ENABLE) || defined(CONTROL_SOCKET_ENABLE)
sockaddr_t fsin;
#endif /* defined(SOCKET_EXPORT_ENABLE) || defined(CONTROL_SOCKET_ENABLE) */
static char *pid_file = NULL;
struct gps_device_t *device;
int i, option;
int msocks[2] = {-1, -1};
bool go_background = true;
volatile bool in_restart;
context.debug = 0;
gps_context_init(&context);
#ifdef CONTROL_SOCKET_ENABLE
INVALIDATE_SOCKET(csock);
#endif /* CONTROL_SOCKET_ENABLE */
#ifdef PPS_ENABLE
context.pps_hook = ship_pps_drift_message;
#endif /* PPS_ENABLE */
while ((option = getopt(argc, argv, "F:D:S:bGhlNnP:V")) != -1) {
switch (option) {
case 'D':
context.debug = (int)strtol(optarg, 0, 0);
#ifdef CLIENTDEBUG_ENABLE
gps_enable_debug(context.debug, stderr);
#endif /* CLIENTDEBUG_ENABLE */
break;
#ifdef CONTROL_SOCKET_ENABLE
case 'F':
control_socket = optarg;
break;
#endif /* CONTROL_SOCKET_ENABLE */
case 'N':
go_background = false;
break;
case 'b':
context.readonly = true;
break;
#ifndef FORCE_GLOBAL_ENABLE
case 'G':
listen_global = true;
break;
#endif /* FORCE_GLOBAL_ENABLE */
case 'l': /* list known device types and exit */
typelist();
break;
case 'S':
#ifdef SOCKET_EXPORT_ENABLE
gpsd_service = optarg;
#endif /* SOCKET_EXPORT_ENABLE */
break;
case 'n':
#ifndef FORCE_NOWAIT
nowait = true;
#endif /* FORCE_NOWAIT */
break;
case 'P':
pid_file = optarg;
break;
case 'V':
(void)printf("gpsd: %s (revision %s)\n", VERSION, REVISION);
exit(EXIT_SUCCESS);
case 'h':
case '?':
default:
usage();
exit(EXIT_SUCCESS);
}
}
#ifdef SYSTEMD_ENABLE
sd_socket_count = sd_get_socket_count();
if (sd_socket_count > 0 && control_socket != NULL) {
gpsd_report(context.debug, LOG_WARN,
"control socket passed on command line ignored\n");
control_socket = NULL;
}
#endif
#if defined(CONTROL_SOCKET_ENABLE) || defined(SYSTEMD_ENABLE)
if (
#ifdef CONTROL_SOCKET_ENABLE
control_socket == NULL
#endif
#if defined(CONTROL_SOCKET_ENABLE) && defined(SYSTEMD_ENABLE)
&&
#endif
#ifdef SYSTEMD_ENABLE
sd_socket_count <= 0
#endif
&& optind >= argc) {
gpsd_report(context.debug, LOG_ERROR,
"can't run with neither control socket nor devices\n");
exit(EXIT_FAILURE);
}
/*
* Control socket has to be created before we go background in order to
* avoid a race condition in which hotplug scripts can try opening
* the socket before it's created.
*/
#ifdef SYSTEMD_ENABLE
if (sd_socket_count > 0) {
csock = SD_SOCKET_FDS_START;
FD_SET(csock, &all_fds);
adjust_max_fd(csock, true);
}
#endif
#ifdef CONTROL_SOCKET_ENABLE
if (control_socket) {
(void)unlink(control_socket);
if (BAD_SOCKET(csock = filesock(control_socket))) {
gpsd_report(context.debug, LOG_ERROR,
"control socket create failed, netlib error %d\n",
csock);
exit(EXIT_FAILURE);
} else
gpsd_report(context.debug, LOG_SPIN,
"control socket %s is fd %d\n",
control_socket, csock);
FD_SET(csock, &all_fds);
adjust_max_fd(csock, true);
gpsd_report(context.debug, LOG_PROG,
"control socket opened at %s\n",
control_socket);
}
#endif /* CONTROL_SOCKET_ENABLE */
#else
if (optind >= argc) {
gpsd_report(context.debug, LOG_ERROR,
"can't run with no devices specified\n");
exit(EXIT_FAILURE);
}
#endif /* defined(CONTROL_SOCKET_ENABLE) || defined(SYSTEMD_ENABLE) */
/* might be time to daemonize */
/*@-unrecog@*/
if (go_background) {
/* not SuS/POSIX portable, but we have our own fallback version */
if (daemon(0, 0) != 0)
gpsd_report(context.debug, LOG_ERROR,
"demonization failed: %s\n",strerror(errno));
}
/*@+unrecog@*/
if (pid_file) {
FILE *fp;
if ((fp = fopen(pid_file, "w")) != NULL) {
(void)fprintf(fp, "%u\n", (unsigned int)getpid());
(void)fclose(fp);
} else {
gpsd_report(context.debug, LOG_ERROR,
"Cannot create PID file: %s.\n", pid_file);
}
}
openlog("gpsd", LOG_PID, LOG_USER);
gpsd_report(context.debug, LOG_INF, "launching (Version %s)\n", VERSION);
#ifdef SOCKET_EXPORT_ENABLE
/*@ -observertrans @*/
if (!gpsd_service)
gpsd_service =
getservbyname("gpsd", "tcp") ? "gpsd" : DEFAULT_GPSD_PORT;
/*@ +observertrans @*/
if (passivesocks(gpsd_service, "tcp", QLEN, msocks) < 1) {
gpsd_report(context.debug, LOG_ERR,
"command sockets creation failed, netlib errors %d, %d\n",
msocks[0], msocks[1]);
exit(EXIT_FAILURE);
}
gpsd_report(context.debug, LOG_INF, "listening on port %s\n", gpsd_service);
#endif /* SOCKET_EXPORT_ENABLE */
#ifdef NTPSHM_ENABLE
if (getuid() == 0) {
errno = 0;
// nice() can ONLY succeed when run as root!
// do not even bother as non-root
if (nice(NICEVAL) == -1 && errno != 0)
gpsd_report(context.debug, LOG_INF, "NTPD Priority setting failed.\n");
}
/*
* By initializing before we drop privileges, we guarantee that even
* hotplugged devices added *after* we drop privileges will be able
* to use segments 0 and 1.
*/
(void)ntpshm_context_init(&context);
#endif /* NTPSHM_ENABLE */
#if defined(DBUS_EXPORT_ENABLE) && !defined(S_SPLINT_S)
/* we need to connect to dbus as root */
if (initialize_dbus_connection()) {
/* the connection could not be started */
gpsd_report(context.debug, LOG_ERROR,
"unable to connect to the DBUS system bus\n");
} else
gpsd_report(context.debug, LOG_PROG,
"successfully connected to the DBUS system bus\n");
#endif /* defined(DBUS_EXPORT_ENABLE) && !defined(S_SPLINT_S) */
#ifdef SHM_EXPORT_ENABLE
/* create the shared segment as root so readers can't mess with it */
if (!shm_acquire(&context)) {
gpsd_report(context.debug, LOG_ERROR,
"shared-segment creation failed,\n");
} else
gpsd_report(context.debug, LOG_PROG,
"shared-segment creation succeeded,\n");
#endif /* SHM_EXPORT_ENABLE */
/*
* We open devices specified on the command line *before* dropping
* privileges in case one of them is a serial device with PPS support
* and we need to set the line discipline, which requires root.
*/
in_restart = false;
for (i = optind; i < argc; i++) {
if (!gpsd_add_device(argv[i], NOWAIT)) {
gpsd_report(context.debug, LOG_ERROR,
"initial GPS device %s open failed\n",
argv[i]);
}
}
/* drop privileges */
if (0 == getuid()) {
struct passwd *pw;
struct stat stb;
/* make default devices accessible even after we drop privileges */
for (i = optind; i < argc; i++)
/* coverity[toctou] */
if (stat(argv[i], &stb) == 0)
(void)chmod(argv[i], stb.st_mode | S_IRGRP | S_IWGRP);
/*
* Drop privileges. Up to now we've been running as root.
* Instead, set the user ID to 'nobody' (or whatever the gpsd
* user set by thre build is) and the group ID to the owning
* group of a prototypical TTY device. This limits the scope
* of any compromises in the code. It requires that all GPS
* devices have their group read/write permissions set.
*/
/*@-nullpass@*/
if (setgroups(0, NULL) != 0)
gpsd_report(context.debug, LOG_ERROR,
"setgroups() failed, errno %s\n",
strerror(errno));
/*@+nullpass@*/
/*@-type@*/
#ifdef GPSD_GROUP
{
struct group *grp = getgrnam(GPSD_GROUP);
if (grp)
if (setgid(grp->gr_gid) != 0)
gpsd_report(context.debug, LOG_ERROR,
"setgid() failed, errno %s\n",
strerror(errno));
}
#else
if ((optind < argc && stat(argv[optind], &stb) == 0)
|| stat(PROTO_TTY, &stb) == 0) {
gpsd_report(context.debug, LOG_PROG,
"changing to group %d\n", stb.st_gid);
if (setgid(stb.st_gid) != 0)
gpsd_report(context.debug, LOG_ERROR,
"setgid() failed, errno %s\n",
strerror(errno));
}
#endif
pw = getpwnam(GPSD_USER);
if (pw)
if (setuid(pw->pw_uid) != 0)
gpsd_report(context.debug, LOG_ERROR,
"setuid() failed, errno %s\n",
strerror(errno));
/*@+type@*/
}
gpsd_report(context.debug, LOG_INF,
"running with effective group ID %d\n", getegid());
gpsd_report(context.debug, LOG_INF,
"running with effective user ID %d\n", geteuid());
#ifdef SOCKET_EXPORT_ENABLE
for (i = 0; i < NITEMS(subscribers); i++) {
subscribers[i].fd = UNALLOCATED_FD;
#ifndef S_SPLINT_S
(void)pthread_mutex_init(&subscribers[i].mutex, NULL);
#endif /* S_SPLINT_S */
}
#endif /* SOCKET_EXPORT_ENABLE*/
/*@-compdef -compdestroy@*/
{
struct sigaction sa;
sa.sa_flags = 0;
#ifdef __COVERITY__
/*
* Obsolete and unused. We're only doing this to pacify Coverity
* which otherwise throws an UNINIT event here. Don't swap with the
* handler initialization, they're unioned on some architectures.
*/
sa.sa_restorer = NULL;
#endif /* __COVERITY__ */
sa.sa_handler = onsig;
(void)sigfillset(&sa.sa_mask);
(void)sigaction(SIGHUP, &sa, NULL);
(void)sigaction(SIGINT, &sa, NULL);
(void)sigaction(SIGTERM, &sa, NULL);
(void)sigaction(SIGQUIT, &sa, NULL);
(void)signal(SIGPIPE, SIG_IGN);
}
/*@+compdef +compdestroy@*/
/* daemon got termination or interrupt signal */
if (setjmp(restartbuf) > 0) {
gpsd_terminate(&context);
in_restart = true;
gpsd_report(context.debug, LOG_WARN, "gpsd restarted by SIGHUP\n");
}
signalled = 0;
for (i = 0; i < AFCOUNT; i++)
if (msocks[i] >= 0) {
FD_SET(msocks[i], &all_fds);
adjust_max_fd(msocks[i], true);
}
#ifdef CONTROL_SOCKET_ENABLE
FD_ZERO(&control_fds);
#endif /* CONTROL_SOCKET_ENABLE */
/* initialize the GPS context's time fields */
gpsd_time_init(&context, time(NULL));
/*
* If we got here via SIGINT, reopen any command-line devices. PPS
* through these won't work, as we've dropped privileges and can
* no longer change line disciplines.
*/
if (in_restart)
for (i = optind; i < argc; i++) {
if (!gpsd_add_device(argv[i], NOWAIT)) {
gpsd_report(context.debug, LOG_ERROR,
"GPS device %s open failed\n",
argv[i]);
}
}
while (0 == signalled) {
#ifdef EFDS
fd_set efds;
#endif /* EFDS */
switch(gpsd_await_data(&rfds, maxfd, &all_fds, context.debug))
{
case AWAIT_GOT_INPUT:
break;
case AWAIT_NOT_READY:
#ifdef EFDS
for (device = devices; device < devices + MAXDEVICES; device++)
if (FD_ISSET(device->gpsdata.gps_fd, &efds)) {
deactivate_device(device);
free_device(device);
}
#endif /* EFDS*/
continue;
case AWAIT_FAILED:
exit(EXIT_FAILURE);
}
#ifdef SOCKET_EXPORT_ENABLE
/* always be open to new client connections */
for (i = 0; i < AFCOUNT; i++) {
if (msocks[i] >= 0 && FD_ISSET(msocks[i], &rfds)) {
socklen_t alen = (socklen_t) sizeof(fsin);
/*@+matchanyintegral@*/
socket_t ssock =
accept(msocks[i], (struct sockaddr *)&fsin, &alen);
/*@+matchanyintegral@*/
if (BAD_SOCKET(ssock))
gpsd_report(context.debug, LOG_ERROR,
"accept: %s\n", strerror(errno));
else {
struct subscriber_t *client = NULL;
int opts = fcntl(ssock, F_GETFL);
static struct linger linger = { 1, RELEASE_TIMEOUT };
char *c_ip;
if (opts >= 0)
(void)fcntl(ssock, F_SETFL, opts | O_NONBLOCK);
c_ip = netlib_sock2ip(ssock);
client = allocate_client();
if (client == NULL) {
gpsd_report(context.debug, LOG_ERROR,
"Client %s connect on fd %d -"
"no subscriber slots available\n", c_ip,
ssock);
(void)close(ssock);
} else
if (setsockopt
(ssock, SOL_SOCKET, SO_LINGER, (char *)&linger,
(int)sizeof(struct linger)) == -1) {
gpsd_report(context.debug, LOG_ERROR,
"Error: SETSOCKOPT SO_LINGER\n");
(void)close(ssock);
} else {
char announce[GPS_JSON_RESPONSE_MAX];
FD_SET(ssock, &all_fds);
adjust_max_fd(ssock, true);
client->fd = ssock;
client->active = timestamp();
gpsd_report(context.debug, LOG_SPIN,
"client %s (%d) connect on fd %d\n", c_ip,
sub_index(client), ssock);
json_version_dump(announce, sizeof(announce));
(void)throttled_write(client, announce,
strlen(announce));
}
}
FD_CLR(msocks[i], &rfds);
}
}
#endif /* SOCKET_EXPORT_ENABLE */
#ifdef CONTROL_SOCKET_ENABLE
/* also be open to new control-socket connections */
if (csock > -1 && FD_ISSET(csock, &rfds)) {
socklen_t alen = (socklen_t) sizeof(fsin);
/*@+matchanyintegral@*/
socket_t ssock = accept(csock, (struct sockaddr *)&fsin, &alen);
/*@-matchanyintegral@*/
if (BAD_SOCKET(ssock))
gpsd_report(context.debug, LOG_ERROR,
"accept: %s\n", strerror(errno));
else {
gpsd_report(context.debug, LOG_INF,
"control socket connect on fd %d\n",
ssock);
FD_SET(ssock, &all_fds);
FD_SET(ssock, &control_fds);
adjust_max_fd(ssock, true);
}
FD_CLR(csock, &rfds);
}
/* read any commands that came in over the control socket */
for (cfd = 0; cfd < FD_SETSIZE; cfd++)
if (FD_ISSET(cfd, &control_fds)) {
char buf[BUFSIZ];
ssize_t rd;
while ((rd = read(cfd, buf, sizeof(buf) - 1)) > 0) {
buf[rd] = '\0';
gpsd_report(context.debug, LOG_CLIENT,
"<= control(%d): %s\n", cfd, buf);
/* coverity[tainted_data] Safe, never handed to exec */
handle_control(cfd, buf);
}
gpsd_report(context.debug, LOG_SPIN,
"close(%d) of control socket\n", cfd);
(void)close(cfd);
FD_CLR(cfd, &all_fds);
FD_CLR(cfd, &control_fds);
adjust_max_fd(cfd, false);
}
#endif /* CONTROL_SOCKET_ENABLE */
/* poll all active devices */
for (device = devices; device < devices + MAXDEVICES; device++)
if (allocated_device(device) && device->gpsdata.gps_fd > 0)
switch (gpsd_multipoll(FD_ISSET(device->gpsdata.gps_fd, &rfds),
device, all_reports, DEVICE_REAWAKE))
{
case DEVICE_READY:
FD_SET(device->gpsdata.gps_fd, &all_fds);
adjust_max_fd(device->gpsdata.gps_fd, true);
break;
case DEVICE_UNREADY:
FD_CLR(device->gpsdata.gps_fd, &all_fds);
adjust_max_fd(device->gpsdata.gps_fd, false);
break;
case DEVICE_ERROR:
case DEVICE_EOF:
deactivate_device(device);
break;
default:
break;
}
#ifdef __UNUSED_AUTOCONNECT__
if (context.fixcnt > 0 && !context.autconnect) {
for (device = devices; device < devices + MAXDEVICES; device++) {
if (device->gpsdata.fix.mode > MODE_NO_FIX) {
netgnss_autoconnect(&context,
device->gpsdata.fix.latitude,
device->gpsdata.fix.longitude);
context.autconnect = True;
break;
}
}
}
#endif /* __UNUSED_AUTOCONNECT__ */
#ifdef SOCKET_EXPORT_ENABLE
/* accept and execute commands for all clients */
for (sub = subscribers; sub < subscribers + MAXSUBSCRIBERS; sub++) {
if (sub->active == 0)
continue;
lock_subscriber(sub);
if (FD_ISSET(sub->fd, &rfds)) {
char buf[BUFSIZ];
int buflen;
unlock_subscriber(sub);
gpsd_report(context.debug, LOG_PROG,
"checking client(%d)\n",
sub_index(sub));
if ((buflen =
(int)recv(sub->fd, buf, sizeof(buf) - 1, 0)) <= 0) {
detach_client(sub);
} else {
if (buf[buflen - 1] != '\n')
buf[buflen++] = '\n';
buf[buflen] = '\0';
gpsd_report(context.debug, LOG_CLIENT,
"<= client(%d): %s\n", sub_index(sub), buf);
/*
* When a command comes in, update subscriber.active to
* timestamp() so we don't close the connection
* after COMMAND_TIMEOUT seconds. This makes
* COMMAND_TIMEOUT useful.
*/
sub->active = timestamp();
if (handle_gpsd_request(sub, buf) < 0)
detach_client(sub);
}
} else {
unlock_subscriber(sub);
if (!sub->policy.watcher
&& timestamp() - sub->active > COMMAND_TIMEOUT) {
gpsd_report(context.debug, LOG_WARN,
"client(%d) timed out on command wait.\n",
sub_index(sub));
detach_client(sub);
}
}
}
/*
* Mark devices with an identified packet type but no
* remaining subscribers to be closed in RELEASE_TIME seconds.
* See the explanation of RELEASE_TIME for the reasoning.
*
* Re-poll devices that are disconnected, but have potential
* subscribers in the same cycle.
*/
for (device = devices; device < devices + MAXDEVICES; device++) {
bool device_needed = NOWAIT;
if (!allocated_device(device))
continue;
if (!device_needed)
for (sub=subscribers; sub<subscribers+MAXSUBSCRIBERS; sub++) {
if (sub->active == 0)
continue;
device_needed = subscribed(sub, device);
if (device_needed)
break;
}
if (!device_needed && device->gpsdata.gps_fd > -1 &&
device->packet.type != BAD_PACKET) {
if (device->releasetime == 0) {
device->releasetime = timestamp();
gpsd_report(context.debug, LOG_PROG,
"device %d (fd %d) released\n",
(int)(device - devices),
device->gpsdata.gps_fd);
} else if (timestamp() - device->releasetime >
RELEASE_TIMEOUT) {
gpsd_report(context.debug, LOG_PROG,
"device %d closed\n",
(int)(device - devices));
gpsd_report(context.debug, LOG_RAW,
"unflagging descriptor %d\n",
device->gpsdata.gps_fd);
deactivate_device(device);
}
}
if (device_needed && BAD_SOCKET(device->gpsdata.gps_fd) &&
(device->opentime == 0 ||
timestamp() - device->opentime > DEVICE_RECONNECT)) {
device->opentime = timestamp();
gpsd_report(context.debug, LOG_INF,
"reconnection attempt on device %d\n",
(int)(device - devices));
(void)awaken(device);
}
}
#endif /* SOCKET_EXPORT_ENABLE */
}
/* if we make it here, we got a signal... deal with it */
/* restart on SIGHUP, clean up and exit otherwise */
if (SIGHUP == (int)signalled)
longjmp(restartbuf, 1);
gpsd_report(context.debug, LOG_WARN,
"received terminating signal %d.\n", signalled);
gpsd_terminate(&context);
gpsd_report(context.debug, LOG_WARN, "exiting.\n");
#ifdef SOCKET_EXPORT_ENABLE
/*
* A linger option was set on each client socket when it was
* created. Now, shut them down gracefully, letting I/O drain.
* This is an attempt to avoid the sporadic race errors at the ends
* of our regression tests.
*/
for (sub = subscribers; sub < subscribers + MAXSUBSCRIBERS; sub++) {
if (sub->active != 0)
detach_client(sub);
}
#endif /* SOCKET_EXPORT_ENABLE */
#ifdef SHM_EXPORT_ENABLE
shm_release(&context);
#endif /* SHM_EXPORT_ENABLE */
#ifdef CONTROL_SOCKET_ENABLE
if (control_socket)
(void)unlink(control_socket);
#endif /* CONTROL_SOCKET_ENABLE */
if (pid_file)
(void)unlink(pid_file);
return 0;
}
/*@ +mustfreefresh @*/
|