PLCHostBoot.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * PLCHostBoot.c -
  11. *
  12. * Contributor(s):
  13. * Charles Maier <cmaier@qca.qualcomm.com>
  14. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  15. *
  16. *--------------------------------------------------------------------*/
  17. #ifndef PLCHOSTBOOT_SOURCE
  18. #define PLCHOSTBOOT_SOURCE
  19. #include <unistd.h>
  20. #include <errno.h>
  21. #include <sys/socket.h>
  22. #include <sys/un.h>
  23. #include "../tools/error.h"
  24. #include "../tools/files.h"
  25. #include "../tools/flags.h"
  26. #include "../plc/plc.h"
  27. #define MESSAGE "Starting PLC Host Server\n"
  28. #define SOCKETNAME "/tmp/socket"
  29. static bool done = false;
  30. void terminate (signo_t signal)
  31. {
  32. done = true;
  33. return;
  34. }
  35. static signed opensocket (char const * socketname)
  36. {
  37. signed fd;
  38. struct sockaddr_un sockaddr_un =
  39. {
  40. #ifdef __OpenBSD__
  41. 0,
  42. #endif
  43. AF_UNIX,
  44. "/tmp/socket"
  45. };
  46. strncpy (sockaddr_un.sun_path, socketname, sizeof (sockaddr_un.sun_path));
  47. #ifdef __OpenBSD__
  48. sockaddr_un.sun_len = SUN_LEN (& sockaddr_un);
  49. #endif
  50. if (unlink (sockaddr_un.sun_path))
  51. {
  52. if (errno != ENOENT)
  53. {
  54. error (1, errno, "%s", sockaddr_un.sun_path);
  55. }
  56. }
  57. if ((fd = socket (AF_UNIX, SOCK_DGRAM, 0)) == -1)
  58. {
  59. error (1, errno, "%s", sockaddr_un.sun_path);
  60. }
  61. if (bind (fd, (struct sockaddr *) (& sockaddr_un), sizeof (sockaddr_un)) == -1)
  62. {
  63. error (1, errno, "%s", sockaddr_un.sun_path);
  64. }
  65. if (chmod (sockaddr_un.sun_path, 0666) == -1)
  66. {
  67. error (1, errno, "%s", sockaddr_un.sun_path);
  68. }
  69. return (fd);
  70. }
  71. /*====================================================================*
  72. *
  73. * signed PLCHostBoot (struct plc * plc, char const * socket, signed timer);
  74. *
  75. * int6k.h
  76. *
  77. * wait indefinitely for VS_HOST_ACTION messages; service the device
  78. * as directed; this function is for demonstration and experimentation
  79. * only; it will stop dead - like a bug! - on error;
  80. *
  81. * Contributor(s):
  82. * Charles Maier <cmaier@qca.qualcomm.com>
  83. *
  84. *--------------------------------------------------------------------*/
  85. signed PLCHostBoot (struct plc * plc, char const * socket, unsigned timer)
  86. {
  87. byte buffer [3000];
  88. struct plctopology * plctopology = (struct plctopology *) (buffer);
  89. struct channel * channel = (struct channel *) (plc->channel);
  90. struct message * message = (struct message *) (plc->message);
  91. #ifndef __GNUC__
  92. #pragma pack (push,1)
  93. #endif
  94. struct __packed vs_host_action_ind
  95. {
  96. struct ethernet_hdr ethernet;
  97. struct qualcomm_hdr intellon;
  98. uint8_t MACTION;
  99. uint8_t MAJOR_VERSION;
  100. uint8_t MINOR_VERSION;
  101. }
  102. * indicate = (struct vs_host_action_ind *) (message);
  103. #ifndef __GNUC__
  104. #pragma pack (pop)
  105. #endif
  106. signed fd = opensocket (socket);
  107. char const * NVM = plc->NVM.name;
  108. char const * PIB = plc->PIB.name;
  109. unsigned action;
  110. signed status;
  111. memset (buffer, 0, sizeof (buffer));
  112. write (fd, MESSAGE, strlen (MESSAGE));
  113. while (! done)
  114. {
  115. status = ReadMME (plc, 0, (VS_HOST_ACTION | MMTYPE_IND));
  116. if (status < 0)
  117. {
  118. break;
  119. }
  120. if (status < 1)
  121. {
  122. PLCTopology (channel, message, plctopology);
  123. PLCTopologyPrint (plctopology);
  124. continue;
  125. }
  126. action = indicate->MACTION;
  127. memcpy (channel->peer, indicate->ethernet.OSA, sizeof (channel->peer));
  128. if (HostActionResponse (plc))
  129. {
  130. return (-1);
  131. }
  132. if (action == 0x00)
  133. {
  134. if (BootDevice1 (plc))
  135. {
  136. return (-1);
  137. }
  138. if (_anyset (plc->flags, PLC_FLASH_DEVICE))
  139. {
  140. FlashDevice1 (plc);
  141. }
  142. continue;
  143. }
  144. if (action == 0x01)
  145. {
  146. close (plc->NVM.file);
  147. if (PLCSelect (plc, ReadFirmware1, ReadFirmware2))
  148. {
  149. return (-1);
  150. }
  151. if ((plc->NVM.file = open (plc->NVM.name = plc->nvm.name, O_BINARY | O_RDONLY)) == -1)
  152. {
  153. error (1, errno, "%s", plc->NVM.name);
  154. }
  155. if (ResetDevice (plc))
  156. {
  157. return (-1);
  158. }
  159. continue;
  160. }
  161. if (action == 0x02)
  162. {
  163. close (plc->PIB.file);
  164. if (PLCSelect (plc, ReadParameters1, ReadParameters2))
  165. {
  166. return (-1);
  167. }
  168. if ((plc->PIB.file = open (plc->PIB.name = plc->pib.name, O_BINARY | O_RDONLY)) == -1)
  169. {
  170. error (1, errno, "%s", plc->PIB.name);
  171. }
  172. if (ResetDevice (plc))
  173. {
  174. return (-1);
  175. }
  176. continue;
  177. }
  178. if (action == 0x03)
  179. {
  180. close (plc->PIB.file);
  181. if (PLCSelect (plc, ReadParameters1, ReadParameters2))
  182. {
  183. return (-1);
  184. }
  185. if ((plc->PIB.file = open (plc->PIB.name = plc->pib.name, O_BINARY | O_RDONLY)) == -1)
  186. {
  187. error (1, errno, "%s", plc->PIB.name);
  188. }
  189. close (plc->NVM.file);
  190. if (PLCSelect (plc, ReadFirmware1, ReadFirmware2))
  191. {
  192. return (-1);
  193. }
  194. if ((plc->NVM.file = open (plc->NVM.name = plc->nvm.name, O_BINARY | O_RDONLY)) == -1)
  195. {
  196. error (1, errno, "%s", plc->NVM.name);
  197. }
  198. if (ResetDevice (plc))
  199. {
  200. return (-1);
  201. }
  202. continue;
  203. }
  204. if (action == 0x04)
  205. {
  206. if (NVMSelect (plc, InitDevice1, InitDevice2))
  207. {
  208. return (-1);
  209. }
  210. continue;
  211. }
  212. if (action == 0x05)
  213. {
  214. close (plc->NVM.file);
  215. if ((plc->NVM.file = open (plc->NVM.name = NVM, O_BINARY | O_RDONLY)) == -1)
  216. {
  217. error (1, errno, "%s", plc->NVM.name);
  218. }
  219. close (plc->PIB.file);
  220. if ((plc->PIB.file = open (plc->PIB.name = PIB, O_BINARY | O_RDONLY)) == -1)
  221. {
  222. error (1, errno, "%s", plc->PIB.name);
  223. }
  224. if (ResetDevice (plc))
  225. {
  226. return (-1);
  227. }
  228. continue;
  229. }
  230. if (action == 0x06)
  231. {
  232. close (plc->PIB.file);
  233. if (PLCSelect (plc, ReadParameters1, ReadParameters2))
  234. {
  235. return (-1);
  236. }
  237. if ((plc->PIB.file = open (plc->PIB.name = plc->pib.name, O_BINARY | O_RDONLY)) == -1)
  238. {
  239. error (1, errno, "%s", plc->PIB.name);
  240. }
  241. continue;
  242. }
  243. if (action == 0x07)
  244. {
  245. error (0, 0, "Host has rebooted.");
  246. continue;
  247. }
  248. error (0, ENOSYS, "Host Action 0x%02X", action);
  249. }
  250. close (fd);
  251. return (0);
  252. }
  253. #endif