plchostd.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * plchostd.c -
  11. *
  12. *. Qualcomm Atheros HomePlug AV Powerline Toolkit.
  13. *: Published 2010-2012, Qualcomm Atheros. ALL RIGHTS RESERVED.
  14. *; For demonstration and evaluation only. Not for production use.
  15. *
  16. * Contributor(s):
  17. * Charles Maier <cmaier@qca.qualcomm.com>
  18. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. /*====================================================================*
  22. * system header files;
  23. *--------------------------------------------------------------------*/
  24. #include <unistd.h>
  25. #include <stdlib.h>
  26. #include <limits.h>
  27. #include <string.h>
  28. #include <ctype.h>
  29. #include <memory.h>
  30. #include <signal.h>
  31. #include <errno.h>
  32. #include <sys/socket.h>
  33. #include <sys/un.h>
  34. /*====================================================================*
  35. * custom header files;
  36. *--------------------------------------------------------------------*/
  37. #include "../ether/channel.h"
  38. #include "../tools/getoptv.h"
  39. #include "../tools/putoptv.h"
  40. #include "../tools/memory.h"
  41. #include "../tools/number.h"
  42. #include "../tools/types.h"
  43. #include "../tools/flags.h"
  44. #include "../tools/files.h"
  45. #include "../tools/error.h"
  46. #include "../ram/nvram.h"
  47. #include "../ram/sdram.h"
  48. #include "../nvm/nvm.h"
  49. #include "../pib/pib.h"
  50. #include "../plc/plc.h"
  51. /*====================================================================*
  52. * custom source files;
  53. *--------------------------------------------------------------------*/
  54. #ifndef MAKEFILE
  55. #include "../plc/BootDevice1.c"
  56. #include "../plc/BootDevice2.c"
  57. #include "../plc/BootFirmware1.c"
  58. #include "../plc/BootFirmware2.c"
  59. #include "../plc/BootParameters1.c"
  60. #include "../plc/BootParameters2.c"
  61. #include "../plc/chipset.c"
  62. #include "../plc/Confirm.c"
  63. #include "../plc/Devices.c"
  64. #include "../plc/ExecuteApplets.c"
  65. #include "../plc/ExecuteApplets1.c"
  66. #include "../plc/ExecuteApplets2.c"
  67. #include "../plc/Failure.c"
  68. #include "../plc/FlashDevice1.c"
  69. #include "../plc/FlashDevice2.c"
  70. #include "../plc/FlashSoftloader.c"
  71. #include "../plc/FlashFirmware.c"
  72. #include "../plc/FlashParameters.c"
  73. #include "../plc/FlashNVM.c"
  74. #include "../plc/HostActionResponse.c"
  75. #include "../plc/InitDevice1.c"
  76. #include "../plc/InitDevice2.c"
  77. #include "../plc/ModuleSpec.c"
  78. #include "../plc/ModuleSession.c"
  79. #include "../plc/ModuleWrite.c"
  80. #include "../plc/ModuleCommit.c"
  81. #include "../plc/NVMSelect.c"
  82. #include "../plc/Request.c"
  83. #include "../plc/ResetDevice.c"
  84. #include "../plc/ReadMME.c"
  85. #include "../plc/SendMME.c"
  86. #include "../plc/ReadFirmware1.c"
  87. #include "../plc/ReadFirmware2.c"
  88. #include "../plc/ReadParameters1.c"
  89. #include "../plc/ReadParameters2.c"
  90. #include "../plc/LocalDevices.c"
  91. #include "../plc/WaitForReset.c"
  92. #include "../plc/WaitForRestart.c"
  93. #include "../plc/WaitForStart.c"
  94. #include "../plc/WriteMEM.c"
  95. #include "../plc/WriteNVM.c"
  96. #include "../plc/WritePIB.c"
  97. #include "../plc/WriteExecuteApplet2.c"
  98. #include "../plc/WriteExecuteFirmware.c"
  99. #include "../plc/WriteExecuteFirmware1.c"
  100. #include "../plc/WriteExecuteFirmware2.c"
  101. #include "../plc/WriteExecuteParameters.c"
  102. #include "../plc/WriteExecuteParameters1.c"
  103. #include "../plc/WriteExecuteParameters2.c"
  104. #include "../plc/WriteExecutePIB.c"
  105. #include "../plc/Platform.c"
  106. #include "../plc/PLCTopology.c"
  107. #include "../plc/PLCTopologyPrint.c"
  108. #include "../plc/WriteFirmware1.c"
  109. #include "../plc/WriteFirmware2.c"
  110. #include "../plc/StartFirmware1.c"
  111. #include "../plc/StartFirmware2.c"
  112. #include "../plc/PLCSelect.c"
  113. #include "../plc/ModuleRead.c"
  114. #endif
  115. #ifndef MAKEFILE
  116. #include "../tools/getoptv.c"
  117. #include "../tools/putoptv.c"
  118. #include "../tools/version.c"
  119. #include "../tools/uintspec.c"
  120. #include "../tools/checkfilename.c"
  121. #include "../tools/hexdecode.c"
  122. #include "../tools/hexstring.c"
  123. #include "../tools/todigit.c"
  124. #include "../tools/hexdump.c"
  125. #include "../tools/checksum32.c"
  126. #include "../tools/fdchecksum32.c"
  127. #include "../tools/error.c"
  128. #include "../tools/strfbits.c"
  129. #include "../tools/typename.c"
  130. #endif
  131. #ifndef MAKEFILE
  132. #include "../ether/openchannel.c"
  133. #include "../ether/closechannel.c"
  134. #include "../ether/readpacket.c"
  135. #include "../ether/sendpacket.c"
  136. #include "../ether/channel.c"
  137. #endif
  138. #ifndef MAKEFILE
  139. #include "../mme/EthernetHeader.c"
  140. #include "../mme/QualcommHeader.c"
  141. #include "../mme/UnwantedMessage.c"
  142. #include "../mme/MMECode.c"
  143. #ifdef AR7x00
  144. #include "../mme/QualcommHeader1.c"
  145. #endif
  146. #endif
  147. #ifndef MAKEFILE
  148. #include "../key/keys.c"
  149. #endif
  150. #ifndef MAKEFILE
  151. #include "../nvm/nvmfile.c"
  152. #include "../nvm/lightning_nvm_file.c"
  153. #include "../nvm/panther_nvm_file.c"
  154. #endif
  155. #ifndef MAKEFILE
  156. #include "../pib/pibfile.c"
  157. #include "../pib/lightning_pib_file.c"
  158. #include "../pib/panther_pib_file.c"
  159. #include "../pib/lightning_pib_peek.c"
  160. #endif
  161. /*====================================================================*
  162. * program constants;
  163. *--------------------------------------------------------------------*/
  164. #define MESSAGE "Starting PLC Host Server\n"
  165. #define SOCKETNAME "/tmp/socket"
  166. /*====================================================================*
  167. * program variables;
  168. *--------------------------------------------------------------------*/
  169. static bool done = false;
  170. /*====================================================================*
  171. *
  172. * void terminate (signo_t signal);
  173. *
  174. *. Qualcomm Atheros HomePlug AV Powerline Toolkit.
  175. *: Published 2010-2012, Qualcomm Atheros. ALL RIGHTS RESERVED.
  176. *; For demonstration and evaluation only. Not for production use.
  177. *
  178. * Contributor(s):
  179. * Charles Maier <cmaier@qca.qualcomm.com>
  180. *
  181. *--------------------------------------------------------------------*/
  182. static void terminate (signo_t signal)
  183. {
  184. done = true;
  185. return;
  186. }
  187. /*====================================================================*
  188. *
  189. * signed opensocket (char const * socketname);
  190. *
  191. *. Qualcomm Atheros HomePlug AV Powerline Toolkit.
  192. *: Published 2010-2012, Qualcomm Atheros. ALL RIGHTS RESERVED.
  193. *; For demonstration and evaluation only. Not for production use.
  194. *
  195. * Contributor(s):
  196. * Charles Maier <cmaier@qca.qualcomm.com>
  197. *
  198. *--------------------------------------------------------------------*/
  199. static signed opensocket (char const * socketname)
  200. {
  201. signed fd;
  202. struct sockaddr_un sockaddr_un =
  203. {
  204. #if defined (__OpenBSD__) || defined (__APPLE__)
  205. 0,
  206. #endif
  207. AF_UNIX,
  208. "/tmp/socket"
  209. };
  210. strncpy (sockaddr_un.sun_path, socketname, sizeof (sockaddr_un.sun_path));
  211. #if defined (__OpenBSD__) || defined (__APPLE__)
  212. sockaddr_un.sun_len = SUN_LEN (& sockaddr_un);
  213. #endif
  214. if (unlink (sockaddr_un.sun_path))
  215. {
  216. if (errno != ENOENT)
  217. {
  218. error (1, errno, "%s", sockaddr_un.sun_path);
  219. }
  220. }
  221. if ((fd = socket (AF_UNIX, SOCK_DGRAM, 0)) == -1)
  222. {
  223. error (1, errno, "%s", sockaddr_un.sun_path);
  224. }
  225. if (bind (fd, (struct sockaddr *) (& sockaddr_un), sizeof (sockaddr_un)) == -1)
  226. {
  227. error (1, errno, "%s", sockaddr_un.sun_path);
  228. }
  229. if (chmod (sockaddr_un.sun_path, 0666) == -1)
  230. {
  231. error (1, errno, "%s", sockaddr_un.sun_path);
  232. }
  233. return (fd);
  234. }
  235. /*====================================================================*
  236. *
  237. * signed function (struct plc * plc, char const * socket);
  238. *
  239. * wait indefinitely for VS_HOST_ACTION messages; service the device
  240. * as directed; this function is for demonstration and experimentation
  241. * only; it will stop dead - like a bug! - on error;
  242. *
  243. *. Qualcomm Atheros HomePlug AV Powerline Toolkit.
  244. *: Published 2010-2012, Qualcomm Atheros. ALL RIGHTS RESERVED.
  245. *; For demonstration and evaluation only. Not for production use.
  246. *
  247. * Contributor(s):
  248. * Charles Maier <cmaier@qca.qualcomm.com>
  249. *
  250. *--------------------------------------------------------------------*/
  251. signed function (struct plc * plc, char const * socket)
  252. {
  253. struct channel * channel = (struct channel *) (plc->channel);
  254. struct message * message = (struct message *) (plc->message);
  255. #ifndef __GNUC__
  256. #pragma pack (push,1)
  257. #endif
  258. struct __packed vs_host_action_ind
  259. {
  260. struct ethernet_hdr ethernet;
  261. struct qualcomm_hdr qualcomm;
  262. uint8_t MACTION;
  263. uint8_t MAJOR_VERSION;
  264. uint8_t MINOR_VERSION;
  265. }
  266. * indicate = (struct vs_host_action_ind *) (message);
  267. #ifndef __GNUC__
  268. #pragma pack (pop)
  269. #endif
  270. byte buffer [3000];
  271. struct plctopology * plctopology = (struct plctopology *) (buffer);
  272. signed fd = opensocket (socket);
  273. char const * FactoryNVM = plc->NVM.name;
  274. char const * FactoryPIB = plc->PIB.name;
  275. signed action;
  276. signed status;
  277. memset (buffer, 0, sizeof (buffer));
  278. write (fd, MESSAGE, strlen (MESSAGE));
  279. while (! done)
  280. {
  281. status = ReadMME (plc, 0, (VS_HOST_ACTION | MMTYPE_IND));
  282. if (status < 0)
  283. {
  284. break;
  285. }
  286. if (status < 1)
  287. {
  288. PLCTopology (channel, message, plctopology);
  289. PLCTopologyPrint (plctopology);
  290. continue;
  291. }
  292. action = indicate->MACTION;
  293. memcpy (channel->peer, indicate->ethernet.OSA, sizeof (channel->peer));
  294. if (HostActionResponse (plc))
  295. {
  296. return (-1);
  297. }
  298. if (action == 0x00)
  299. {
  300. if (NVMSelect (plc, BootDevice1, BootDevice2))
  301. {
  302. return (-1);
  303. }
  304. if (_anyset (plc->flags, PLC_FLASH_DEVICE))
  305. {
  306. PLCSelect (plc, FlashDevice1, FlashDevice2);
  307. }
  308. continue;
  309. }
  310. if (action == 0x01)
  311. {
  312. close (plc->NVM.file);
  313. if (PLCSelect (plc, ReadFirmware1, ReadFirmware2))
  314. {
  315. return (-1);
  316. }
  317. if ((plc->NVM.file = open (plc->NVM.name = plc->nvm.name, O_BINARY | O_RDONLY)) == -1)
  318. {
  319. error (1, errno, "%s", plc->NVM.name);
  320. }
  321. if (ResetDevice (plc))
  322. {
  323. return (-1);
  324. }
  325. continue;
  326. }
  327. if (action == 0x02)
  328. {
  329. close (plc->PIB.file);
  330. if (PLCSelect (plc, ReadParameters1, ReadParameters2))
  331. {
  332. return (-1);
  333. }
  334. if ((plc->PIB.file = open (plc->PIB.name = plc->pib.name, O_BINARY | O_RDONLY)) == -1)
  335. {
  336. error (1, errno, "%s", plc->PIB.name);
  337. }
  338. if (ResetDevice (plc))
  339. {
  340. return (-1);
  341. }
  342. continue;
  343. }
  344. if (action == 0x03)
  345. {
  346. close (plc->PIB.file);
  347. if (PLCSelect (plc, ReadParameters1, ReadParameters2))
  348. {
  349. return (-1);
  350. }
  351. if ((plc->PIB.file = open (plc->PIB.name = plc->pib.name, O_BINARY | O_RDONLY)) == -1)
  352. {
  353. error (1, errno, "%s", plc->PIB.name);
  354. }
  355. close (plc->NVM.file);
  356. if (ReadFirmware1 (plc))
  357. {
  358. return (-1);
  359. }
  360. if ((plc->NVM.file = open (plc->NVM.name = plc->nvm.name, O_BINARY | O_RDONLY)) == -1)
  361. {
  362. error (1, errno, "%s", plc->NVM.name);
  363. }
  364. if (ResetDevice (plc))
  365. {
  366. return (-1);
  367. }
  368. continue;
  369. }
  370. if (action == 0x04)
  371. {
  372. if (NVMSelect (plc, InitDevice1, InitDevice2))
  373. {
  374. return (-1);
  375. }
  376. continue;
  377. }
  378. if (action == 0x05)
  379. {
  380. close (plc->NVM.file);
  381. if ((plc->NVM.file = open (plc->NVM.name = FactoryNVM, O_BINARY | O_RDONLY)) == -1)
  382. {
  383. error (1, errno, "%s", plc->NVM.name);
  384. }
  385. close (plc->PIB.file);
  386. if ((plc->PIB.file = open (plc->PIB.name = FactoryPIB, O_BINARY | O_RDONLY)) == -1)
  387. {
  388. error (1, errno, "%s", plc->PIB.name);
  389. }
  390. if (ResetDevice (plc))
  391. {
  392. return (-1);
  393. }
  394. continue;
  395. }
  396. if (action == 0x06)
  397. {
  398. close (plc->PIB.file);
  399. if (PLCSelect (plc, ReadParameters1, ReadParameters2))
  400. {
  401. return (-1);
  402. }
  403. if ((plc->PIB.file = open (plc->PIB.name = plc->pib.name, O_BINARY | O_RDONLY)) == -1)
  404. {
  405. error (1, errno, "%s", plc->PIB.name);
  406. }
  407. continue;
  408. }
  409. if (action == 0x07)
  410. {
  411. error (0, 0, "Host has rebooted.");
  412. continue;
  413. }
  414. error (0, ENOSYS, "Host Action 0x%02X", action);
  415. }
  416. close (fd);
  417. return (0);
  418. }
  419. /*====================================================================*
  420. *
  421. * int main (int argc, char const * argv[]);
  422. *
  423. * parse command line, populate plc structure and perform selected
  424. * operations; show help summary when asked; see getoptv and putoptv
  425. * to understand command line parsing and help summary display; see
  426. * plc.h for the definition of struct plc;
  427. *
  428. *. Qualcomm Atheros HomePlug AV Powerline Toolkit.
  429. *: Published 2010-2012, Qualcomm Atheros. ALL RIGHTS RESERVED.
  430. *; For demonstration and evaluation only. Not for production use.
  431. *
  432. *--------------------------------------------------------------------*/
  433. int main (int argc, char const * argv [])
  434. {
  435. extern struct channel channel;
  436. extern void terminate (signo_t);
  437. static char const * optv [] =
  438. {
  439. "dFi:n:N:p:P:qs:t:vw:x",
  440. "-N file -P file [-S file] [-n file] [-p file]",
  441. "Qualcomm Atheros PLC Host Daemon",
  442. "d\texecute in background as daemon",
  443. #if defined (WINPCAP) || defined (LIBPCAP)
  444. "i n\thost interface is (n) [" LITERAL (CHANNEL_ETHNUMBER) "]",
  445. #else
  446. "i s\thost interface is (s) [" LITERAL (CHANNEL_ETHDEVICE) "]",
  447. #endif
  448. "n f\tread firmware from device into file (f)",
  449. "N f\tfirmware file is (f)",
  450. "p f\tread parameters from device into file (f)",
  451. "P f\tparameter file is (f)",
  452. "q\tquiet mode",
  453. "s f\tbroadcast event status on socket (f) [" SOCKETNAME "]",
  454. "S f\tsoftloader file is (f)",
  455. "t n\tread timeout is (n) milliseconds [" LITERAL (CHANNEL_TIMEOUT) "]",
  456. "v\tverbose mode",
  457. "w n\twakeup every (n) seconds [" LITERAL (PLC_LONGTIME) "]",
  458. "x\texit on error",
  459. (char const *) (0)
  460. };
  461. #include "../plc/plc.c"
  462. struct sigaction sa;
  463. char const * socketname = SOCKETNAME;
  464. signed c;
  465. if (getenv (PLCDEVICE))
  466. {
  467. #if defined (WINPCAP) || defined (LIBPCAP)
  468. channel.ifindex = atoi (getenv (PLCDEVICE));
  469. #else
  470. channel.ifname = strdup (getenv (PLCDEVICE));
  471. #endif
  472. }
  473. optind = 1;
  474. plc.timer = PLC_LONGTIME;
  475. while (~ (c = getoptv (argc, argv, optv)))
  476. {
  477. switch (c)
  478. {
  479. case 'd':
  480. _setbits (plc.flags, PLC_DAEMON);
  481. break;
  482. case 'i':
  483. #if defined (WINPCAP) || defined (LIBPCAP)
  484. channel.ifindex = atoi (optarg);
  485. #else
  486. channel.ifname = optarg;
  487. #endif
  488. break;
  489. case 'N':
  490. if (! checkfilename (optarg))
  491. {
  492. error (1, EINVAL, "%s", optarg);
  493. }
  494. if ((plc.NVM.file = open (plc.NVM.name = optarg, O_BINARY | O_RDONLY)) == -1)
  495. {
  496. error (1, errno, "%s", plc.NVM.name);
  497. }
  498. if (nvmfile (& plc.NVM))
  499. {
  500. error (1, errno, "Bad image file: %s", plc.NVM.name);
  501. }
  502. _setbits (plc.flags, PLC_WRITE_MAC);
  503. break;
  504. case 'n':
  505. if (! checkfilename (optarg))
  506. {
  507. error (1, EINVAL, "%s", optarg);
  508. }
  509. if ((plc.nvm.file = open (plc.nvm.name = optarg, O_BINARY | O_CREAT | O_RDWR | O_TRUNC, FILE_FILEMODE)) == -1)
  510. {
  511. error (1, errno, "%s", plc.nvm.name);
  512. }
  513. break;
  514. case 'P':
  515. if (! checkfilename (optarg))
  516. {
  517. error (1, EINVAL, "%s", optarg);
  518. }
  519. if ((plc.PIB.file = open (plc.PIB.name = optarg, O_BINARY | O_RDONLY)) == -1)
  520. {
  521. error (1, errno, "%s", plc.PIB.name);
  522. }
  523. if (pibfile (& plc.PIB))
  524. {
  525. error (1, errno, "Bad parameter file: %s", plc.PIB.name);
  526. }
  527. _setbits (plc.flags, PLC_WRITE_PIB);
  528. break;
  529. case 'p':
  530. if (! checkfilename (optarg))
  531. {
  532. error (1, EINVAL, "%s", optarg);
  533. }
  534. if ((plc.pib.file = open (plc.pib.name = optarg, O_BINARY | O_CREAT | O_RDWR | O_TRUNC, FILE_FILEMODE)) == -1)
  535. {
  536. error (1, errno, "%s", plc.pib.name);
  537. }
  538. break;
  539. case 'q':
  540. _setbits (channel.flags, CHANNEL_SILENCE);
  541. _setbits (plc.flags, PLC_SILENCE);
  542. break;
  543. case 's':
  544. break;
  545. case 'S':
  546. if (! checkfilename (optarg))
  547. {
  548. error (1, EINVAL, "%s", optarg);
  549. }
  550. if ((plc.SFT.file = open (plc.SFT.name = optarg, O_BINARY | O_RDONLY)) == -1)
  551. {
  552. error (1, errno, "%s", plc.SFT.name);
  553. }
  554. if (nvmfile (& plc.SFT))
  555. {
  556. error (1, errno, "Bad image file: %s", plc.SFT.name);
  557. }
  558. _setbits (plc.flags, PLC_FLASH_DEVICE);
  559. break;
  560. case 't':
  561. channel.timeout = (signed) (uintspec (optarg, 0, UINT_MAX));
  562. break;
  563. case 'v':
  564. _setbits (channel.flags, CHANNEL_VERBOSE);
  565. _setbits (plc.flags, PLC_VERBOSE);
  566. break;
  567. case 'w':
  568. plc.timer = (unsigned) (uintspec (optarg, 1, 3600));
  569. break;
  570. case 'x':
  571. _setbits (plc.flags, PLC_BAILOUT);
  572. break;
  573. default:
  574. break;
  575. }
  576. }
  577. argc -= optind;
  578. argv += optind;
  579. if (argc)
  580. {
  581. error (1, ENOTSUP, ERROR_TOOMANY);
  582. }
  583. if (plc.NVM.file == -1)
  584. {
  585. error (1, ECANCELED, "No host NVM file named");
  586. }
  587. if (plc.PIB.file == -1)
  588. {
  589. error (1, ECANCELED, "No host PIB file named");
  590. }
  591. if (plc.nvm.file == -1)
  592. {
  593. error (1, ECANCELED, "No user NVM file named");
  594. }
  595. if (plc.pib.file == -1)
  596. {
  597. error (1, ECANCELED, "No user PIB file named");
  598. }
  599. if (plc.SFT.file == -1)
  600. {
  601. if (_anyset (plc.flags, PLC_FLASH_DEVICE))
  602. {
  603. error (1, ECANCELED, "No Softloader file named");
  604. }
  605. }
  606. #ifndef WIN32
  607. if (_anyset (plc.flags, PLC_DAEMON))
  608. {
  609. pid_t pid = fork ();
  610. if (pid < 0)
  611. {
  612. error (1, errno, "Can't start daemon");
  613. }
  614. if (pid > 0)
  615. {
  616. exit (0);
  617. }
  618. }
  619. memset (& sa, 0, sizeof (struct sigaction));
  620. sa.sa_handler = terminate;
  621. sigaction (SIGTERM, & sa, (struct sigaction *) (0));
  622. sigaction (SIGQUIT, & sa, (struct sigaction *) (0));
  623. sigaction (SIGTSTP, & sa, (struct sigaction *) (0));
  624. sigaction (SIGINT, & sa, (struct sigaction *) (0));
  625. sigaction (SIGHUP, & sa, (struct sigaction *) (0));
  626. #endif
  627. openchannel (& channel);
  628. if (! (plc.message = malloc (sizeof (* plc.message))))
  629. {
  630. error (1, errno, PLC_NOMEMORY);
  631. }
  632. function (& plc, socketname);
  633. free (plc.message);
  634. closechannel (& channel);
  635. exit (0);
  636. }