Module_Wifi.c 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356
  1. /*
  2. * Module_Wifi.c
  3. *
  4. * Created on: 2020-01-14
  5. * Author: Jerry Wang
  6. * Version: D0.01
  7. */
  8. #include <sys/time.h>
  9. #include <sys/timeb.h>
  10. #include <sys/types.h>
  11. #include <sys/stat.h>
  12. #include <sys/types.h>
  13. #include <sys/ioctl.h>
  14. #include <sys/socket.h>
  15. #include <sys/ipc.h>
  16. #include <sys/shm.h>
  17. #include <sys/shm.h>
  18. #include <sys/mman.h>
  19. #include <linux/wireless.h>
  20. #include <arpa/inet.h>
  21. #include <netinet/in.h>
  22. #include <unistd.h>
  23. #include <stdarg.h>
  24. #include <stdio.h> /*標準輸入輸出定義*/
  25. #include <stdlib.h> /*標準函數庫定義*/
  26. #include <unistd.h> /*Unix 標準函數定義*/
  27. #include <fcntl.h> /*檔控制定義*/
  28. #include <termios.h> /*PPSIX 終端控制定義*/
  29. #include <errno.h> /*錯誤號定義*/
  30. #include <errno.h>
  31. #include <string.h>
  32. #include <time.h>
  33. #include <ctype.h>
  34. #include <ifaddrs.h>
  35. #include "define.h"
  36. #define DEBUG_INFO(format, args...) StoreLogMsg("[%s:%d][%s][Info] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  37. #define DEBUG_WARN(format, args...) StoreLogMsg("[%s:%d][%s][Warn] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  38. #define DEBUG_ERROR(format, args...) StoreLogMsg("[%s:%d][%s][Error] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  39. #define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
  40. #define PASS 1
  41. #define FAIL -1
  42. #define true 1
  43. #define false 0
  44. #define IP_TYPE_DHCP 0
  45. #define IP_TYPE_STATIC 1
  46. #define AUTH_TYPE_NONE 0
  47. #define AUTH_TYPE_WEP 1
  48. #define AUTH_TYPE_WPAPSK 2
  49. #define AUTH_TYPE_WPA2PSK 3
  50. #define WIFI_MODE_DISABLE 0
  51. #define WIFI_MODE_STA 1
  52. #define WIFI_MODE_AP 2
  53. #define WIFI_MODE_ADHOC 3
  54. #define STA_STATE_INIT 0
  55. #define STA_STATE_DEVICE_DETECT 1
  56. #define STA_STATE_AP_CONNECTED 2
  57. #define STA_STATE_INTERNET_CHECKING 3
  58. #define AP_STATE_INIT 0
  59. #define AP_STATE_DEVICE_DETECT 1
  60. #define AP_STATE_AP_START 2
  61. #define AP_STATE_SERVER_LISTEN 3
  62. #define LISTEN_PORT_UDP 8857
  63. #define LISTEN_PORT_TCP 8856
  64. #define CONNECTION_LIMIT 1
  65. #define PROTOCOL_ADDR 0
  66. #define UBLOX
  67. //#define MT7601U
  68. struct interface_info
  69. {
  70. int ipType;
  71. int authType;
  72. int rssi;
  73. int cnt_InternetFail;
  74. char *currentInterface;
  75. char currentSSID[256];
  76. char currentPasswd[256];
  77. char currentMAC[24];
  78. char currentIPAddr[24];
  79. char currentNetmask[24];
  80. char currentGateway[24];
  81. char staticIPAddr[24];
  82. }Wifi;
  83. struct Display_Request
  84. {
  85. unsigned char isShowed_IF_info:1;
  86. unsigned char isShowed_IP_info:1;
  87. }dispReq;
  88. struct auth_info
  89. {
  90. int auth_type;
  91. unsigned char ssid[256];
  92. unsigned char passwd[256];
  93. }Wifi_A;
  94. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  95. struct StatusCodeData *ShmStatusCodeData;
  96. int isFindInterface();
  97. int getInterfaceInfo();
  98. int isReachableInternet();
  99. int getLinkQuality();
  100. char* getTimeString(void);
  101. int setWPAconf();
  102. int restartWPA();
  103. void refreshUSB();
  104. void getParameters();
  105. int Wifi_module_sts = STA_STATE_INIT;
  106. int isSetWPA_OK = false;
  107. int cnt_pingDNS_Fail;
  108. int cnt_getAP_Fail;
  109. int cnt_getIP_Fail;
  110. void trim(char *s);
  111. int mystrcmp(char *p1,char *p2);
  112. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt);
  113. void split(char **arr, char *str, const char *del);
  114. int isValidCheckSum(uint8_t *message);
  115. char *Support_InterfaceSTA[2] = {"mlan0", "wlan0"};
  116. char *Support_InterfaceAP[1] = {"uap0"};
  117. char *valid_Internet[2] = {"8.8.8.8", "180.76.76.76"};
  118. int StoreLogMsg(const char *fmt, ...)
  119. {
  120. char Buf[4096+256];
  121. char buffer[4096];
  122. time_t CurrentTime;
  123. struct tm *tm;
  124. va_list args;
  125. va_start(args, fmt);
  126. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  127. va_end(args);
  128. memset(Buf,0,sizeof(Buf));
  129. CurrentTime = time(NULL);
  130. tm=localtime(&CurrentTime);
  131. sprintf(Buf,"echo \"[%04d.%02d.%02d %02d:%02d:%02d] - %s\" >> /Storage/SystemLog/[%04d.%02d]Wifi_SystemLog",
  132. tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,
  133. buffer,
  134. tm->tm_year+1900,tm->tm_mon+1);
  135. #ifdef SystemLogMessage
  136. system(Buf);
  137. #endif
  138. #ifdef ConsloePrintLog
  139. printf("[%04d.%02d.%02d %02d:%02d:%02d] - %s", tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec, buffer);
  140. #endif
  141. return rc;
  142. }
  143. int DiffTimeb(struct timeb ST, struct timeb ET)
  144. {
  145. //return milli-second
  146. unsigned int StartTime,StopTime;
  147. StartTime=(unsigned int)ST.time;
  148. StopTime=(unsigned int)ET.time;
  149. return (StopTime-StartTime)*1000+ET.millitm-ST.millitm;
  150. }
  151. //==========================================
  152. // Init all share memory
  153. //==========================================
  154. int InitShareMemory()
  155. {
  156. int result = PASS;
  157. int MeterSMId;
  158. //creat ShmSysConfigAndInfo
  159. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0)
  160. {
  161. #ifdef SystemLogMessage
  162. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n");
  163. #endif
  164. result = FAIL;
  165. }
  166. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  167. {
  168. #ifdef SystemLogMessage
  169. DEBUG_ERROR("shmat ShmSysConfigAndInfo NG\n");
  170. #endif
  171. result = FAIL;
  172. }
  173. else
  174. {}
  175. //creat ShmStatusCodeData
  176. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0)
  177. {
  178. #ifdef SystemLogMessage
  179. DEBUG_ERROR("shmget ShmStatusCodeData NG\n");
  180. #endif
  181. result = FAIL;
  182. }
  183. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  184. {
  185. #ifdef SystemLogMessage
  186. DEBUG_ERROR("shmat ShmStatusCodeData NG\n");
  187. #endif
  188. result = FAIL;
  189. }
  190. else
  191. {}
  192. return result;
  193. }
  194. //==========================================
  195. // Get parameters from shared memory
  196. //==========================================
  197. void getParameters(void)
  198. {
  199. DEBUG_INFO("============= Configuration ===============\r\n");
  200. strcpy((char*)Wifi_A.ssid, (const char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid);
  201. DEBUG_INFO("Wifi SSID: %s\n", Wifi_A.ssid);
  202. strcpy((char*)Wifi_A.passwd, (const char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword);
  203. DEBUG_INFO("Wifi Password: %s\n", Wifi_A.passwd);
  204. if(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress != NULL)
  205. strcpy((char*)Wifi.staticIPAddr, (const char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress);
  206. DEBUG_INFO("Wifi Static IP: %s\n", Wifi.staticIPAddr);
  207. Wifi.ipType = ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient;
  208. DEBUG_INFO("DHCP client flag: %d\n", Wifi.ipType);
  209. DEBUG_INFO("===========================================\r\n");
  210. }
  211. //==========================================
  212. // Refresh USB interface
  213. //==========================================
  214. void refreshUSB(void)
  215. {
  216. FILE *fp;
  217. char cmd[256];
  218. // Get IP address & net mask
  219. strcpy(cmd, "echo '1-1'> /sys/bus/usb/drivers/usb/unbind");
  220. fp = popen(cmd, "r");
  221. sleep(2);
  222. pclose(fp);
  223. strcpy(cmd, "echo '1-1'> /sys/bus/usb/drivers/usb/bind");
  224. fp = popen(cmd, "r");
  225. sleep(5);
  226. pclose(fp);
  227. }
  228. //==========================================
  229. // Check wifi interface status
  230. //==========================================
  231. int isFindInterface()
  232. {
  233. int result = FAIL;
  234. struct ifaddrs *ifaddr, *ifa;
  235. //refreshUSB();
  236. if(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode == WIFI_MODE_AP)
  237. {
  238. if (getifaddrs(&ifaddr) != FAIL)
  239. {
  240. for (ifa = ifaddr; ifa != NULL; ifa = ifa->ifa_next)
  241. {
  242. if (ifa->ifa_addr == NULL ||
  243. ifa->ifa_addr->sa_family != AF_PACKET) continue;
  244. for(int idx=0;idx<ARRAY_SIZE(Support_InterfaceAP);idx++)
  245. {
  246. if(mystrcmp(ifa->ifa_name, Support_InterfaceAP[idx]) == PASS)
  247. {
  248. Wifi.currentInterface = ifa->ifa_name;
  249. result = PASS;
  250. }
  251. }
  252. }
  253. freeifaddrs(ifaddr);
  254. freeifaddrs(ifa);
  255. }
  256. }
  257. else
  258. {
  259. if (getifaddrs(&ifaddr) != FAIL)
  260. {
  261. for (ifa = ifaddr; ifa != NULL; ifa = ifa->ifa_next)
  262. {
  263. if (ifa->ifa_addr == NULL ||
  264. ifa->ifa_addr->sa_family != AF_PACKET) continue;
  265. for(int idx=0;idx<ARRAY_SIZE(Support_InterfaceSTA);idx++)
  266. {
  267. if(mystrcmp(ifa->ifa_name, Support_InterfaceSTA[idx]) == PASS)
  268. {
  269. Wifi.currentInterface = ifa->ifa_name;
  270. result = PASS;
  271. }
  272. }
  273. }
  274. freeifaddrs(ifaddr);
  275. freeifaddrs(ifa);
  276. }
  277. }
  278. return result;
  279. }
  280. //==========================================
  281. // Get wifi interface info
  282. //==========================================
  283. int getInterfaceInfo()
  284. {
  285. int result = PASS;
  286. FILE *fp;
  287. char cmd[256];
  288. char buf[512];
  289. char tmp[512];
  290. // Get IP address & net mask
  291. strcpy(cmd, "ifconfig ");
  292. strcat(cmd, Wifi.currentInterface);
  293. fp = popen(cmd, "r");
  294. if(fp == NULL)
  295. result = FAIL;
  296. else
  297. {
  298. while(fgets(buf, sizeof(buf), fp) != NULL)
  299. {
  300. if(strstr(buf, "HWaddr") > 0)
  301. {
  302. sscanf(buf, "%*s%*s%*s%*s%s", tmp);
  303. strcpy(Wifi.currentMAC, tmp);
  304. }
  305. if(strstr(buf, "inet addr:") > 0)
  306. {
  307. sscanf(buf, "%*s%s", tmp);
  308. substr(Wifi.currentIPAddr, tmp, strspn(tmp, "addr:"), strlen(buf)-strspn(tmp, "addr:"));
  309. sscanf(buf, "%*s%*s%*s%s", tmp);
  310. substr(Wifi.currentNetmask, tmp, strspn(tmp, "Mask:"), strlen(buf)-strspn(tmp, "Mask:"));
  311. }
  312. }
  313. }
  314. pclose(fp);
  315. // Get gateway
  316. fp = popen("ip route", "r");
  317. if(fp == NULL)
  318. result = FAIL;
  319. else
  320. {
  321. while(fgets(buf, sizeof(buf), fp) != NULL)
  322. {
  323. if(strncmp(buf, "default", strlen("default")) == 0)
  324. break;
  325. }
  326. sscanf(buf, "%*s%*s%s", tmp);
  327. substr(Wifi.currentGateway, tmp, 0, strlen(tmp));
  328. }
  329. pclose(fp);
  330. if(!dispReq.isShowed_IF_info)
  331. {
  332. DEBUG_INFO("MAC: %s\n", Wifi.currentMAC);
  333. dispReq.isShowed_IF_info = true;
  334. }
  335. if(!dispReq.isShowed_IP_info)
  336. {
  337. DEBUG_INFO("IP address: %s\n", Wifi.currentIPAddr);
  338. DEBUG_INFO("Net mask: %s\n", Wifi.currentNetmask);
  339. DEBUG_INFO("Default gateway: %s\n", Wifi.currentGateway);
  340. dispReq.isShowed_IP_info = true;
  341. }
  342. strcpy((char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress, (const char*)Wifi.currentIPAddr);
  343. strcpy((char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress, (const char*)Wifi.currentNetmask);
  344. strcpy((char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress, (const char*)Wifi.currentGateway);
  345. strcpy((char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress, (const char*)Wifi.currentMAC);
  346. return result;
  347. }
  348. //==========================================
  349. // Check if module connect to wifi AP
  350. //==========================================
  351. int isConnectAP()
  352. {
  353. int result = PASS;
  354. FILE *fp;
  355. char cmd[256];
  356. char buf[512];
  357. // Get IP address & net mask
  358. strcpy(cmd, "/root/iwconfig ");
  359. strcat(cmd, Wifi.currentInterface);
  360. fp = popen(cmd, "r");
  361. if(fp == NULL)
  362. result = FAIL;
  363. else
  364. {
  365. while(fgets(buf, sizeof(buf), fp) != NULL)
  366. {
  367. if(strstr(buf, "Not-Associated") > 0)
  368. {
  369. result = FAIL;
  370. DEBUG_INFO("AP check: Not-Associated.\n");
  371. }
  372. }
  373. }
  374. pclose(fp);
  375. return result;
  376. }
  377. //==========================================
  378. // Check internet access status
  379. //==========================================
  380. int isReachableInternet()
  381. {
  382. int result = FAIL;
  383. FILE *fp;
  384. char cmd[256];
  385. char buf[512];
  386. //char tmp[512];
  387. for(int idx=0;idx<ARRAY_SIZE(valid_Internet);idx++)
  388. {
  389. strcpy(cmd, "ping -c 1 -w 3 ");
  390. strcat(cmd, valid_Internet[idx]);
  391. fp = popen(cmd, "r");
  392. if(fp != NULL)
  393. {
  394. while(fgets(buf, sizeof(buf), fp) != NULL)
  395. {
  396. if(strstr(buf, "transmitted") > 0)
  397. {
  398. //sscanf(buf, "%*s%*s%*s%*s%*s%*s%s", tmp);
  399. if(strstr(buf,"100%") != NULL)
  400. {
  401. }
  402. else
  403. {
  404. result = PASS;
  405. }
  406. //DEBUG_INFO("%s",buf);
  407. //DEBUG_INFO("%s\n",tmp);
  408. }
  409. }
  410. }
  411. pclose(fp);
  412. }
  413. return result;
  414. }
  415. //==========================================
  416. // Check module soft AP is start up
  417. //==========================================
  418. int isStartUpAP()
  419. {
  420. int result = FAIL;
  421. FILE *fp;
  422. char cmd[256];
  423. char buf[512];
  424. // Get IP address & net mask
  425. strcpy(cmd, "/root/uaputl sys_cfg_bss_status");
  426. fp = popen(cmd, "r");
  427. if(fp != NULL)
  428. {
  429. while(fgets(buf, sizeof(buf), fp) != NULL)
  430. {
  431. if(strstr(buf, "BSS status = started") > 0)
  432. {
  433. result = PASS;
  434. DEBUG_INFO("AP already start up.\n");
  435. }
  436. }
  437. }
  438. pclose(fp);
  439. return result;
  440. }
  441. //==========================================
  442. // Get wifi connection quality
  443. //==========================================
  444. int getLinkQuality()
  445. {
  446. int result = FAIL;
  447. FILE *fp;
  448. char cmd[256];
  449. char buf[512];
  450. char tmp[512];
  451. strcpy(cmd, "/root/iwconfig ");
  452. strcat(cmd, Wifi.currentInterface);
  453. fp = popen(cmd, "r");
  454. if(fp == NULL)
  455. result = FAIL;
  456. else
  457. {
  458. while(fgets(buf, sizeof(buf), fp) != NULL)
  459. {
  460. if(strstr(buf, "Signal level") > 0)
  461. {
  462. sscanf(buf, "%*s%*s%*s%s", tmp);
  463. substr(tmp, tmp, strspn(tmp, "Signal level="), strlen(buf)-strspn(tmp, "Signal level="));
  464. Wifi.rssi = atoi(tmp);
  465. result = PASS;
  466. }
  467. }
  468. }
  469. pclose(fp);
  470. return result;
  471. }
  472. //==========================================
  473. // WPA parameter set
  474. //==========================================
  475. int setWPAconf()
  476. {
  477. int result = FAIL;
  478. char cmdBuf[512];
  479. FILE *pFile;
  480. char buffer[500]="ctrl_interface=/var/run/wpa_supplicant\nupdate_config=1\n";
  481. // Stop dhcp client or server
  482. sprintf(cmdBuf, "pgrep -f \"udhcpc -i %s\" | xargs kill", Wifi.currentInterface);
  483. system(cmdBuf);
  484. sprintf(cmdBuf, "pgrep -f \"udhcpd\" | xargs kill");
  485. system(cmdBuf);
  486. // Clear wifi configuration file
  487. system("cat /dev/null > /etc/wpa.conf");
  488. system("cat /dev/null > /etc/hostapd.conf");
  489. switch(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode)
  490. {
  491. case WIFI_MODE_STA:
  492. // Fill out configuration value depend on share memory setting
  493. if(strlen((const char*)Wifi_A.passwd)>0)
  494. {
  495. if(strlen((const char*)Wifi_A.passwd)>=8)
  496. {
  497. strcat(buffer, "network={\n ssid=\"");
  498. strcat(buffer, (char*)Wifi_A.ssid);
  499. strcat(buffer, "\"\n key_mgmt=WPA-EAP WPA-PSK \n");
  500. strcat(buffer, " psk=\"");
  501. strcat(buffer, (char*)Wifi_A.passwd);
  502. strcat(buffer, "\"\n}\n\n");
  503. }
  504. if(strlen((const char*)Wifi_A.passwd)==5 || strlen((const char*)Wifi_A.passwd)==13)
  505. {
  506. strcat(buffer, "network={\n ssid=\"");
  507. strcat(buffer, (char*)Wifi_A.ssid);
  508. strcat(buffer, "\"\n key_mgmt=NONE\n");
  509. strcat(buffer, " wep_key0=\"");
  510. strcat(buffer, (char*)Wifi_A.passwd);
  511. strcat(buffer, "\"\n auth_alg=OPEN SHARED\n");
  512. strcat(buffer, "\n}\n\n");
  513. }
  514. strcat(buffer, "network={\n ssid=\"");
  515. strcat(buffer, (char*)Wifi_A.ssid);
  516. strcat(buffer, "\"\n key_mgmt=NONE");
  517. strcat(buffer, "\n}");
  518. }
  519. else
  520. {
  521. strcat(buffer, "network={\n ssid=\"");
  522. strcat(buffer, (char*)Wifi_A.ssid);
  523. strcat(buffer, "\"\n key_mgmt=NONE");
  524. strcat(buffer, "\n}");
  525. }
  526. // Configuration value write to /etc/wpa.conf
  527. pFile = fopen("/etc/wpa.conf","w");
  528. fwrite(buffer,strlen(buffer), 1, pFile);
  529. fclose(pFile);
  530. // Restart wpa_supplicant
  531. sprintf(cmdBuf, "pgrep -f \"wpa_supplicant\" | xargs kill");
  532. system(cmdBuf);
  533. sprintf(cmdBuf, "/root/wpa_supplicant -i %s -c /etc/wpa.conf -B", Wifi.currentInterface);
  534. system(cmdBuf);
  535. // Stop wifi AP
  536. sprintf(cmdBuf, "pgrep -f \"hostapd\" | xargs kill");
  537. system(cmdBuf);
  538. sleep(5);
  539. // Wifi IP set by DHCP client or static
  540. if(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient==0)
  541. {
  542. sprintf(cmdBuf, "/sbin/udhcpc -i %s -s /root/dhcp_script/wifi.script > /dev/null &", Wifi.currentInterface);
  543. system(cmdBuf);
  544. }
  545. else
  546. {
  547. strcpy(cmdBuf, "ifconfig ");
  548. strcat(cmdBuf, Wifi.currentInterface);
  549. strcat(cmdBuf, " ");
  550. strcat(cmdBuf, Wifi.staticIPAddr);
  551. system(cmdBuf);
  552. DEBUG_INFO("Setting %s static IP to %s ...\n", Wifi.currentInterface, Wifi.staticIPAddr);
  553. }
  554. break;
  555. case WIFI_MODE_AP:
  556. sprintf(cmdBuf, "pgrep -f \"hostapd\" | xargs kill");
  557. system(cmdBuf);
  558. sprintf(cmdBuf, "echo interface=uap0 >> /etc/hostapd.conf");
  559. system(cmdBuf);
  560. sprintf(cmdBuf, "echo driver=nl80211 >> /etc/hostapd.conf");
  561. system(cmdBuf);
  562. sprintf(cmdBuf, "echo ssid=%s >> /etc/hostapd.conf", Wifi_A.ssid);
  563. system(cmdBuf);
  564. sprintf(cmdBuf, "echo channel=6 >> /etc/hostapd.conf");
  565. system(cmdBuf);
  566. sprintf(cmdBuf, "echo wpa=2 >> /etc/hostapd.conf");
  567. system(cmdBuf);
  568. sprintf(cmdBuf, "echo wpa_passphrase=%s >> /etc/hostapd.conf", Wifi_A.passwd);
  569. system(cmdBuf);
  570. sprintf(cmdBuf, "echo wpa_key_mgmt=WPA-PSK >> /etc/hostapd.conf");
  571. system(cmdBuf);
  572. sprintf(cmdBuf, "hostapd /etc/hostapd.conf -B");
  573. system(cmdBuf);
  574. sleep(5);
  575. // Set wifi AP ip address
  576. sprintf(cmdBuf, "ifconfig %s 192.168.10.10", Wifi.currentInterface);
  577. system(cmdBuf);
  578. DEBUG_INFO("Setting %s static IP to 192.168.10.10...\n", Wifi.currentInterface);
  579. // Start DHCP server
  580. if(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpServer==0)
  581. {
  582. sprintf(cmdBuf, "/usr/sbin/udhcpd /etc/udhcpd.conf > /dev/null &");
  583. system(cmdBuf);
  584. }
  585. break;
  586. case WIFI_MODE_ADHOC:
  587. break;
  588. case WIFI_MODE_DISABLE:
  589. default:
  590. break;
  591. }
  592. result = PASS;
  593. return result;
  594. }
  595. //==========================================
  596. // UDP socket server routine
  597. //==========================================
  598. int udpSocketServerStart()
  599. {
  600. int sockFd;
  601. struct sockaddr_in servaddr;
  602. struct sockaddr_in peeraddr;
  603. socklen_t peerlen = sizeof(peeraddr);
  604. uint8_t inputBuffer[2048] = {};
  605. uint8_t outBuffer[2048] = {};
  606. int16_t read_size;
  607. int16_t tx_size;
  608. memset(&servaddr, 0, sizeof(servaddr));
  609. servaddr.sin_family = AF_INET;
  610. servaddr.sin_port = htons(LISTEN_PORT_UDP);
  611. servaddr.sin_addr.s_addr = htonl(INADDR_ANY);
  612. if ((sockFd = socket(PF_INET, SOCK_DGRAM, 0)) < 0)
  613. return FAIL;
  614. if (bind(sockFd, (struct sockaddr *)&servaddr, sizeof(servaddr)) < 0)
  615. return FAIL;
  616. for(;;)
  617. {
  618. if((read_size = recvfrom(sockFd, inputBuffer, sizeof(inputBuffer), 0, (struct sockaddr *)&peeraddr, &peerlen)) > 0)
  619. {
  620. DEBUG_INFO("Revieve from: %s:%d\r\n", inet_ntoa(peeraddr.sin_addr), htons(peeraddr.sin_port));
  621. DEBUG_INFO("Data: %s\r\n", inputBuffer);
  622. /*
  623. * TODO:
  624. * - UDP broadcast protocol process here
  625. */
  626. memcpy(outBuffer, inputBuffer, read_size);
  627. tx_size = read_size;
  628. sendto(sockFd, outBuffer, tx_size, 0, (struct sockaddr *)&peeraddr, peerlen);
  629. }
  630. }
  631. return FAIL;
  632. }
  633. //==========================================
  634. // TCP socket server routine
  635. //==========================================
  636. int tcpSocketServerStart()
  637. {
  638. int sockFd = 0;
  639. int clientSockFd = 0;
  640. uint8_t inputBuffer[2048] = {};
  641. uint8_t outBuffer[2048] = {};
  642. uint8_t chksum;
  643. int16_t read_size;
  644. int16_t tx_size;
  645. struct sockaddr_in serverInfo, clientInfo;
  646. socklen_t addrlen = sizeof(clientInfo);
  647. sockFd = socket(AF_INET , SOCK_STREAM , 0);
  648. if(sockFd == -1)
  649. {
  650. DEBUG_ERROR("InitSocketServer NG\n");
  651. sleep(5);
  652. return FAIL;
  653. }
  654. bzero(&serverInfo,sizeof(serverInfo));
  655. serverInfo.sin_family = PF_INET;
  656. serverInfo.sin_addr.s_addr = htonl(INADDR_ANY);
  657. serverInfo.sin_port = htons(LISTEN_PORT_TCP);
  658. bind(sockFd, (struct sockaddr *)&serverInfo, sizeof(serverInfo));
  659. listen(sockFd, CONNECTION_LIMIT);
  660. // Main loop
  661. for(;;)
  662. {
  663. clientSockFd = accept(sockFd, (struct sockaddr*) &clientInfo, &addrlen);
  664. DEBUG_INFO("Client connect in.\r\n");
  665. while((read_size = recv(clientSockFd, inputBuffer, sizeof(inputBuffer), 0)) > 0)
  666. {
  667. if(isValidCheckSum(inputBuffer))
  668. {
  669. chksum = 0;
  670. memset(outBuffer, 0x00, sizeof(outBuffer));
  671. /*
  672. * TODO:
  673. * - TCP broadcast protocol process here
  674. */
  675. switch(inputBuffer[3])
  676. {
  677. case 0:
  678. tx_size = 9;
  679. outBuffer[0] = 0xaa;
  680. outBuffer[1] = PROTOCOL_ADDR;
  681. outBuffer[2] = inputBuffer[1];
  682. outBuffer[3] = 0x00;
  683. outBuffer[4] = 0x01;
  684. outBuffer[5] = 0x00;
  685. outBuffer[6] = 0x01;
  686. outBuffer[7] = 0x01;
  687. break;
  688. default:
  689. tx_size = 9;
  690. outBuffer[0] = 0xaa;
  691. outBuffer[1] = PROTOCOL_ADDR;
  692. outBuffer[2] = inputBuffer[1];
  693. outBuffer[3] = inputBuffer[3];
  694. outBuffer[4] = 0x01;
  695. outBuffer[5] = 0x00;
  696. outBuffer[6] = 0x00;
  697. outBuffer[7] = 0x00;
  698. break;
  699. }
  700. }
  701. else
  702. {
  703. tx_size = 9;
  704. outBuffer[0] = 0xaa;
  705. outBuffer[1] = PROTOCOL_ADDR;
  706. outBuffer[2] = inputBuffer[1];
  707. outBuffer[3] = inputBuffer[3];
  708. outBuffer[4] = 0x01;
  709. outBuffer[5] = 0x00;
  710. outBuffer[6] = 0x00;
  711. outBuffer[7] = chksum;
  712. }
  713. send(clientSockFd, outBuffer, tx_size, 0);
  714. }
  715. if(read_size == 0)
  716. {
  717. DEBUG_INFO("Client disconnected.\r\n");
  718. fflush(stdout);
  719. }
  720. else if(read_size == -1)
  721. {
  722. DEBUG_ERROR("Socket recv failed.\r\n");
  723. }
  724. sleep(1);
  725. }
  726. return FAIL;
  727. }
  728. //==========================================
  729. // Common routine
  730. //==========================================
  731. char* getTimeString(void)
  732. {
  733. char *result=malloc(21);
  734. time_t timep;
  735. struct tm *p;
  736. time(&timep);
  737. p=gmtime(&timep);
  738. sprintf(result, "[%04d-%02d-%02d %02d:%02d:%02d]", (1900+p->tm_year), (1+p->tm_mon), p->tm_mday, p->tm_hour, p->tm_hour, p->tm_sec);
  739. return result;
  740. }
  741. void trim(char *s)
  742. {
  743. int i=0, j, k, l=0;
  744. while((s[i]==' ')||(s[i]=='\t')||(s[i]=='\n'))
  745. i++;
  746. j = strlen(s)-1;
  747. while((s[j]==' ')||(s[j]=='\t')||(s[j]=='\n'))
  748. j--;
  749. if(i==0 && j==strlen(s)-1) { }
  750. else if(i==0) s[j+1] = '\0';
  751. else {
  752. for(k=i; k<=j; k++) s[l++] = s[k];
  753. s[l] = '\0';
  754. }
  755. }
  756. int mystrcmp(char *p1,char *p2)
  757. {
  758. while(*p1==*p2)
  759. {
  760. if(*p1=='\0' || *p2=='\0')
  761. break;
  762. p1++;
  763. p2++;
  764. }
  765. if(*p1=='\0' && *p2=='\0')
  766. return(PASS);
  767. else
  768. return(FAIL);
  769. }
  770. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt)
  771. {
  772. strncpy(dest, src + start, cnt);
  773. dest[cnt] = 0;
  774. }
  775. void split(char **arr, char *str, const char *del)
  776. {
  777. char *s = strtok(str, del);
  778. while(s != NULL)
  779. {
  780. *arr++ = s;
  781. s = strtok(NULL, del);
  782. }
  783. }
  784. int isValidCheckSum(uint8_t *message)
  785. {
  786. uint8_t chksum=0;
  787. for(int idx = 0;idx<((message[4] | message[5]<<8)>1024?1024:(message[4] | message[5]<<8));idx++)
  788. {
  789. chksum ^= message[6+idx];
  790. }
  791. return ((chksum == message[6+((message[4] | message[5]<<8)>1024?1024:(message[4] | message[5]<<8))]) ? PASS : FAIL);
  792. }
  793. int checkIP(void)
  794. {
  795. // DHCP or static setting
  796. int isGetIP = FAIL;
  797. FILE *fp;
  798. char buf[512];
  799. char tmp[512];
  800. char cmd[512];
  801. if(Wifi.ipType == IP_TYPE_DHCP) {
  802. // Get IP address & net mask
  803. strcpy(cmd, "ifconfig ");
  804. strcat(cmd, Wifi.currentInterface);
  805. fp = popen(cmd, "r");
  806. if(fp == NULL)
  807. isGetIP = FAIL;
  808. else
  809. {
  810. while(fgets(buf, sizeof(buf), fp) != NULL)
  811. {
  812. if(strstr(buf, "addr:") > 0)
  813. {
  814. if(strstr(buf, "192.168.1.10") > 0)
  815. {
  816. DEBUG_INFO("IP cannot be same as default value of Ethernet...\n");
  817. }
  818. else
  819. {
  820. isGetIP = PASS;
  821. cnt_getIP_Fail = 0;
  822. }
  823. sscanf(buf, "%*s%s", tmp);
  824. substr(Wifi.currentIPAddr, tmp, strspn(tmp, "addr:"), strlen(buf)-strspn(tmp, "addr:"));
  825. sscanf(buf, "%*s%*s%*s%s", tmp);
  826. substr(Wifi.currentNetmask, tmp, strspn(tmp, "Mask:"), strlen(buf)-strspn(tmp, "Mask:"));
  827. }else {
  828. }
  829. }
  830. }
  831. if(isGetIP == FAIL && cnt_getIP_Fail<3) {
  832. sprintf(cmd, "pgrep -f \"udhcpc -i %s\" | xargs kill", Wifi.currentInterface);
  833. system(cmd);
  834. if(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient==0)
  835. {
  836. sprintf(cmd, "/sbin/udhcpc -i %s -s /root/dhcp_script/wifi.script > /dev/null &", Wifi.currentInterface);
  837. system(cmd);
  838. }
  839. DEBUG_INFO("Sending DHCP request...\n");
  840. cnt_getIP_Fail++;
  841. sleep(5);
  842. }
  843. pclose(fp);
  844. }else {
  845. strcpy(cmd, "ifconfig ");
  846. strcat(cmd, Wifi.currentInterface);
  847. strcat(cmd, " ");
  848. strcat(cmd, Wifi.staticIPAddr);
  849. fp = popen(cmd, "r");
  850. DEBUG_INFO("Setting static IP to %s ...\n", Wifi.staticIPAddr);
  851. pclose(fp);
  852. isGetIP = PASS;
  853. }
  854. cnt_getIP_Fail = 0;
  855. return isGetIP;
  856. }
  857. int restartWPA(void)
  858. {
  859. int result = FAIL;
  860. FILE *fp;
  861. char buf[512];
  862. char cmd[50];
  863. // Get IP address & net mask
  864. strcpy(cmd, "wpa_cli -i ");
  865. strcat(cmd, Wifi.currentInterface);
  866. strcat(cmd, " reconfigure");
  867. fp = popen(cmd, "r");
  868. DEBUG_INFO("WPA reconfigure %s ...\n", Wifi.currentInterface);
  869. if(fp == NULL)
  870. result = FAIL;
  871. else
  872. {
  873. while(fgets(buf, sizeof(buf), fp) != NULL)
  874. {
  875. if(strstr(buf, "OK") > 0)
  876. {
  877. DEBUG_INFO("reconfigure OK.\n");
  878. result = PASS;
  879. }else {
  880. DEBUG_INFO("reconfigure failed.\n");
  881. result = FAIL;
  882. }
  883. }
  884. }
  885. pclose(fp);
  886. if(result == PASS) {
  887. strcpy(cmd, "wpa_cli -i ");
  888. strcat(cmd, Wifi.currentInterface);
  889. strcat(cmd, " reconfigure");
  890. fp = popen(cmd, "r");
  891. DEBUG_INFO("WPA reconnect %s ...\n", Wifi.currentInterface);
  892. if(fp == NULL)
  893. result = FAIL;
  894. else{
  895. while(fgets(buf, sizeof(buf), fp) != NULL)
  896. {
  897. if(strstr(buf, "OK") > 0){
  898. DEBUG_INFO("reconnect OK.\n");
  899. result = PASS;
  900. }else {
  901. DEBUG_INFO("reconnect failed.\n");
  902. result = FAIL;
  903. }
  904. }
  905. }
  906. pclose(fp);
  907. }
  908. return result;
  909. }
  910. void proc_sta()
  911. {
  912. switch(Wifi_module_sts)
  913. {
  914. case STA_STATE_INIT:
  915. dispReq.isShowed_IF_info = false;
  916. // get info from shared memory
  917. getParameters();
  918. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi=1;
  919. ShmStatusCodeData->InfoCode.InfoEvents.bits.ApDisconnectViaWiFi=1;
  920. isSetWPA_OK = false;
  921. // check interface
  922. if((strlen((const char*)Wifi_A.ssid)>0) && (isFindInterface() == PASS))
  923. {
  924. DEBUG_INFO("Wifi interface: %s\n", Wifi.currentInterface);
  925. Wifi_module_sts = STA_STATE_DEVICE_DETECT;
  926. ShmStatusCodeData->FaultCode.FaultEvents.bits.WiFiModuleBroken=0;
  927. DEBUG_INFO("=================[State 1]===================\n");
  928. }
  929. else
  930. {
  931. ShmStatusCodeData->FaultCode.FaultEvents.bits.WiFiModuleBroken=1;
  932. DEBUG_ERROR("Wifi support interface valid result: Fail\n");
  933. sleep(30);
  934. }
  935. break;
  936. case STA_STATE_DEVICE_DETECT:
  937. dispReq.isShowed_IP_info = false;
  938. if(!isSetWPA_OK && (setWPAconf() == PASS))
  939. {
  940. isSetWPA_OK = true;
  941. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.WiFiModuleCommFail=0;
  942. sleep(5);
  943. }
  944. else if((isSetWPA_OK == true) && (isConnectAP() == PASS))
  945. {
  946. Wifi_module_sts = STA_STATE_AP_CONNECTED;
  947. ShmStatusCodeData->InfoCode.InfoEvents.bits.ApDisconnectViaWiFi=0;
  948. DEBUG_INFO("=================[State 2]===================\n");
  949. }
  950. else
  951. {
  952. cnt_getAP_Fail++;
  953. DEBUG_INFO("Fail to connect to the AP %d times...\n",cnt_getAP_Fail);
  954. if(cnt_getAP_Fail>=3)
  955. {
  956. Wifi_module_sts = STA_STATE_INIT;
  957. cnt_getAP_Fail = 0;
  958. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.WiFiModuleCommFail=1;
  959. DEBUG_INFO("=================[State 0]===================\n");
  960. }
  961. else
  962. {
  963. sleep(10);
  964. }
  965. }
  966. break;
  967. case STA_STATE_AP_CONNECTED:
  968. getInterfaceInfo();
  969. getLinkQuality();
  970. DEBUG_INFO("Wifi quality: %d dBm\n", Wifi.rssi);
  971. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi = Wifi.rssi;
  972. if(isReachableInternet() == PASS)
  973. {
  974. DEBUG_INFO("Wifi internet valid result: Pass\n");
  975. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi=0;
  976. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiNetworkConn=1;
  977. cnt_pingDNS_Fail = 0;
  978. sleep(30);
  979. }
  980. else
  981. {
  982. cnt_pingDNS_Fail++;
  983. DEBUG_INFO("Wifi internet valid result: Fail %d time\n", cnt_pingDNS_Fail);
  984. sleep(5);
  985. }
  986. if(cnt_pingDNS_Fail >= 3)
  987. {
  988. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi=1;
  989. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiNetworkConn=0;
  990. cnt_pingDNS_Fail = 0;
  991. DEBUG_INFO("Ping DNS failed...");
  992. memset(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress, 0, sizeof ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress);
  993. memset(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress, 0, sizeof ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress);
  994. memset(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress, 0, sizeof ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress);
  995. if(isFindInterface() == PASS)
  996. {
  997. DEBUG_INFO("Wifi interface: %s\n", Wifi.currentInterface);
  998. isSetWPA_OK = false;
  999. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi = 0;
  1000. Wifi_module_sts = STA_STATE_DEVICE_DETECT;
  1001. DEBUG_INFO("=================[State 1]===================\n");
  1002. }
  1003. else
  1004. {
  1005. DEBUG_INFO("Wifi support interface valid result: Fail\n");
  1006. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi = 0;
  1007. Wifi_module_sts = STA_STATE_INIT;
  1008. DEBUG_INFO("=================[State 0]===================\n");
  1009. }
  1010. }
  1011. break;
  1012. default:
  1013. Wifi_module_sts = STA_STATE_INIT;
  1014. break;
  1015. }
  1016. }
  1017. void proc_ap()
  1018. {
  1019. switch(Wifi_module_sts)
  1020. {
  1021. case AP_STATE_INIT:
  1022. // get info from shared memory
  1023. getParameters();
  1024. isSetWPA_OK = false;
  1025. ShmStatusCodeData->InfoCode.InfoEvents.bits.ApDisconnectViaWiFi=1;
  1026. // check interface
  1027. if((strlen((const char*)Wifi_A.ssid)>0) && (isFindInterface() == PASS))
  1028. {
  1029. DEBUG_INFO("Wifi interface: %s\n", Wifi.currentInterface);
  1030. Wifi_module_sts = AP_STATE_DEVICE_DETECT;
  1031. ShmStatusCodeData->FaultCode.FaultEvents.bits.WiFiModuleBroken=0;
  1032. DEBUG_INFO("=================[State 1]===================\n");
  1033. }
  1034. else
  1035. {
  1036. ShmStatusCodeData->FaultCode.FaultEvents.bits.WiFiModuleBroken=1;
  1037. DEBUG_ERROR("Wifi support interface valid result: Fail\n");
  1038. sleep(30);
  1039. }
  1040. break;
  1041. case AP_STATE_DEVICE_DETECT:
  1042. if(!isSetWPA_OK && (setWPAconf() == PASS))
  1043. {
  1044. isSetWPA_OK = true;
  1045. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.WiFiModuleCommFail=0;
  1046. sleep(5);
  1047. }
  1048. else if(isSetWPA_OK && (isStartUpAP() == PASS))
  1049. {
  1050. Wifi_module_sts = AP_STATE_AP_START;
  1051. ShmStatusCodeData->InfoCode.InfoEvents.bits.ApDisconnectViaWiFi=0;
  1052. DEBUG_INFO("=================[State 2]===================\n");
  1053. }
  1054. else
  1055. {
  1056. cnt_getAP_Fail++;
  1057. DEBUG_INFO("Fail to start up AP %d times...\n",cnt_getAP_Fail);
  1058. if(cnt_getAP_Fail>=3)
  1059. {
  1060. Wifi_module_sts = AP_STATE_INIT;
  1061. cnt_getAP_Fail = 0;
  1062. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.WiFiModuleCommFail=1;
  1063. DEBUG_INFO("=================[State 0]===================\n");
  1064. }
  1065. else
  1066. {
  1067. sleep(10);
  1068. }
  1069. }
  1070. break;
  1071. case AP_STATE_AP_START:
  1072. getInterfaceInfo();
  1073. if(isStartUpAP() == PASS)
  1074. {
  1075. DEBUG_INFO("Wifi AP start up valid result: Pass\n");
  1076. ShmStatusCodeData->InfoCode.InfoEvents.bits.ApDisconnectViaWiFi=0;
  1077. cnt_pingDNS_Fail = 0;
  1078. sleep(30);
  1079. }
  1080. else
  1081. {
  1082. cnt_pingDNS_Fail++;
  1083. DEBUG_INFO("Wifi AP start up valid result: Fail %d time\n", cnt_pingDNS_Fail);
  1084. sleep(5);
  1085. }
  1086. if(cnt_pingDNS_Fail >= 3)
  1087. {
  1088. ShmStatusCodeData->InfoCode.InfoEvents.bits.ApDisconnectViaWiFi=1;
  1089. cnt_pingDNS_Fail = 0;
  1090. DEBUG_INFO("Wifi AP start up status failed...");
  1091. memset(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress, 0, sizeof ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress);
  1092. memset(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress, 0, sizeof ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress);
  1093. memset(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress, 0, sizeof ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress);
  1094. if(isFindInterface() == PASS)
  1095. {
  1096. DEBUG_INFO("Wifi interface: %s\n", Wifi.currentInterface);
  1097. isSetWPA_OK = false;
  1098. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi = 0;
  1099. Wifi_module_sts = STA_STATE_DEVICE_DETECT;
  1100. DEBUG_INFO("=================[State 1]===================\n");
  1101. }
  1102. else
  1103. {
  1104. DEBUG_INFO("Wifi support interface valid result: Fail\n");
  1105. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi = 0;
  1106. Wifi_module_sts = STA_STATE_INIT;
  1107. DEBUG_INFO("=================[State 0]===================\n");
  1108. }
  1109. }
  1110. break;
  1111. default:
  1112. Wifi_module_sts = AP_STATE_INIT;
  1113. break;
  1114. }
  1115. }
  1116. //==========================================
  1117. // Main loop
  1118. //==========================================
  1119. int main(void)
  1120. {
  1121. pid_t pid;
  1122. if(InitShareMemory() == FAIL)
  1123. {
  1124. #ifdef SystemLogMessage
  1125. DEBUG_ERROR("InitShareMemory NG\n");
  1126. #endif
  1127. if(ShmStatusCodeData!=NULL)
  1128. {
  1129. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory=1;
  1130. }
  1131. sleep(5);
  1132. return 0;
  1133. }
  1134. // UDP socket server start
  1135. pid = fork();
  1136. if(pid == 0)
  1137. {
  1138. if(udpSocketServerStart() == FAIL)
  1139. {
  1140. DEBUG_ERROR("UDP socket server down.\r\n");
  1141. return 0;
  1142. }
  1143. }
  1144. // TCP socket server start
  1145. pid = fork();
  1146. if(pid == 0)
  1147. {
  1148. if(tcpSocketServerStart() == FAIL)
  1149. {
  1150. DEBUG_ERROR("TCP socket server down.\r\n");
  1151. return 0;
  1152. }
  1153. }
  1154. //=============================================
  1155. // Install WIFI module driver
  1156. //=============================================
  1157. #ifdef UBLOX
  1158. system("insmod /lib/modules/mlan.ko");
  1159. system("insmod /lib/modules/usb8801.ko");
  1160. sleep(5);
  1161. system("ifconfig mlan0 up");
  1162. system("ifconfig uap0 up");
  1163. #endif
  1164. #ifdef MT7601U
  1165. system("insmod /lib/modules/mt7601u.ko");
  1166. sleep(5);
  1167. system("ifconfig wlan0 up");
  1168. #endif
  1169. DEBUG_INFO("=================[State 0]===================\n");
  1170. for(;;)
  1171. {
  1172. switch(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode)
  1173. {
  1174. case WIFI_MODE_STA:
  1175. proc_sta();
  1176. break;
  1177. case WIFI_MODE_AP:
  1178. proc_ap();
  1179. break;
  1180. case WIFI_MODE_ADHOC:
  1181. break;
  1182. case WIFI_MODE_DISABLE:
  1183. default:
  1184. break;
  1185. }
  1186. }
  1187. return 0;
  1188. }