Module_Wifi.c 32 KB

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