Module_Wifi.c 111 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780
  1. /*
  2. * Module_Wifi.c
  3. *
  4. * Created on: 2020-01-14
  5. * Update on: 2020-08-18
  6. * Author: Jerry Wang, Eason Yang, Folus Wen
  7. * Version: V0.09
  8. */
  9. #include <sys/time.h>
  10. #include <sys/timeb.h>
  11. #include <sys/types.h>
  12. #include <sys/stat.h>
  13. #include <sys/types.h>
  14. #include <sys/ioctl.h>
  15. #include <sys/socket.h>
  16. #include <sys/ipc.h>
  17. #include <sys/shm.h>
  18. #include <sys/shm.h>
  19. #include <sys/mman.h>
  20. #include <linux/wireless.h>
  21. #include <arpa/inet.h>
  22. #include <netinet/in.h>
  23. #include <unistd.h>
  24. #include <stdarg.h>
  25. #include <stdio.h> /*標準輸入輸出定義*/
  26. #include <stdlib.h> /*標準函數庫定義*/
  27. #include <unistd.h> /*Unix 標準函數定義*/
  28. #include <fcntl.h> /*檔控制定義*/
  29. #include <termios.h> /*PPSIX 終端控制定義*/
  30. #include <errno.h> /*錯誤號定義*/
  31. #include <errno.h>
  32. #include <string.h>
  33. #include <time.h>
  34. #include <ctype.h>
  35. #include <ifaddrs.h>
  36. #include <sqlite3.h>
  37. #include "define.h"
  38. #define DEBUG_INFO(format, args...) StoreLogMsg("[%s:%d][%s][Info] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  39. #define DEBUG_WARN(format, args...) StoreLogMsg("[%s:%d][%s][Warn] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  40. #define DEBUG_ERROR(format, args...) StoreLogMsg("[%s:%d][%s][Error] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  41. #define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
  42. #define PASS 1
  43. #define FAIL -1
  44. #define ON 1
  45. #define OFF 0
  46. #define YES 1
  47. #define NO 0
  48. #define true 1
  49. #define false 0
  50. #define IP_TYPE_DHCP 0
  51. #define IP_TYPE_STATIC 1
  52. #define AUTH_TYPE_NONE 0
  53. #define AUTH_TYPE_WEP 1
  54. #define AUTH_TYPE_WPAPSK 2
  55. #define AUTH_TYPE_WPA2PSK 3
  56. #define WIFI_MODE_DISABLE 0
  57. #define WIFI_MODE_STA 1
  58. #define WIFI_MODE_AP 2
  59. #define WIFI_MODE_ADHOC 3
  60. #define STA_STATE_INIT 0
  61. #define STA_STATE_DEVICE_DETECT 1
  62. #define STA_STATE_AP_CONNECTED 2
  63. #define STA_STATE_INTERNET_CHECKING 3
  64. #define AP_STATE_INIT 0
  65. #define AP_STATE_DEVICE_DETECT 1
  66. #define AP_STATE_AP_START 2
  67. #define AP_STATE_SERVER_LISTEN 3
  68. #define LISTEN_PORT_UDP 54088
  69. #define LISTEN_PORT_TCP 54089
  70. #define CONNECTION_LIMIT 3
  71. #define MtdBlockSize 0x600000
  72. #define REGISTER 0x01
  73. #define CLEAR_REGISTER 0x02
  74. #define UBLOX
  75. //#define MT7601U
  76. #define DEBUG
  77. #define DB_FILE "/Storage/ChargeLog/puk_pin_list.db"
  78. enum WIFI_COMMAND
  79. {
  80. WIFI_CMD_LOGIN_SIGNIN = 0x01,
  81. WIFI_CMD_LOGIN_AUTH_PUK = 0x02,
  82. WIFI_CMD_LOGIN_GET_USER_ID = 0x03,
  83. WIFI_CMD_PROTOCOL_VERSION = 0x04,
  84. WIFI_CMD_GET_MODEL_NAME = 0x0d,
  85. WIFI_CMD_GET_SERIAL_NUMBER = 0x0e,
  86. WIFI_CMD_GET_SYSTEM_TIME = 0x0f,
  87. WIFI_CMD_GET_WHITE_CARD = 0x12,
  88. WIFI_CMD_GET_SYS_ALARM_CODE = 0x15,
  89. WIFI_CMD_GET_SYS_ID = 0x16,
  90. WIFI_CMD_GET_RATING_CURRENT = 0x17,
  91. WIFI_CMD_GET_VER_RFS = 0x1e,
  92. WIFI_CMD_GET_VER_PRIMARY_CSU = 0x1f,
  93. WIFI_CMD_GET_VER_LCM = 0x20,
  94. WIFI_CMD_GET_PSU_COUNT = 0x21,
  95. WIFI_CMD_GET_VER_PSU = 0x22,
  96. WIFI_CMD_GET_VER_AUX_POWER = 0x23,
  97. WIFI_CMD_GET_VER_FAN = 0x24,
  98. WIFI_CMD_GET_VER_RELAY = 0x25,
  99. WIFI_CMD_GET_VER_TELECOMM = 0x26,
  100. WIFI_CMD_GET_EVSE_CONFIG = 0x30,
  101. WIFI_CMD_GET_GUN_STS = 0x32,
  102. WIFI_CMD_GET_GUN_USER = 0x33,
  103. WIFI_CMD_GET_SCHEDULE = 0x36,
  104. WIFI_CMD_GET_NETWORK_STS = 0x41,
  105. WIFI_CMD_GET_ETH_DHCP = 0x42,
  106. WIFI_CMD_GET_ETH_MAC = 0x44,
  107. WIFI_CMD_GET_ETH_IP = 0x45,
  108. WIFI_CMD_GET_ETH_SUBMASK = 0x47,
  109. WIFI_CMD_GET_ETH_GATEWAY = 0x49,
  110. WIFI_CMD_GET_WIFI_MODE = 0x54,
  111. WIFI_CMD_GET_WIFI_SSID = 0x56,
  112. WIFI_CMD_GET_WIFI_PASSWD = 0x58,
  113. WIFI_CMD_GET_WIFI_RSSI = 0x5a,
  114. WIFI_CMD_GET_WIFI_DHCP = 0x5b,
  115. WIFI_CMD_GET_WIFI_MAC = 0x5d,
  116. WIFI_CMD_GET_WIFI_IP = 0x5e,
  117. WIFI_CMD_GET_WIFI_NETMASK = 0x60,
  118. WIFI_CMD_GET_WIFI_GATEWAY = 0x62,
  119. WIFI_CMD_GET_TELE_APN = 0x6b,
  120. WIFI_CMD_GET_TELE_RSSI = 0x6d,
  121. WIFI_CMD_GET_TELE_CHAP_ID = 0x6e,
  122. WIFI_CMD_GET_TELE_CHAP_PASSWD = 0x70,
  123. WIFI_CMD_GET_TELE_IMEI = 0x72,
  124. WIFI_CMD_GET_TELE_IMSI = 0x73,
  125. WIFI_CMD_GET_TELE_SIM_STS = 0x74,
  126. WIFI_CMD_GET_TELE_MODE = 0x75,
  127. WIFI_CMD_GET_TELE_IP = 0x76,
  128. WIFI_CMD_SET_SYSTEM_TIME = 0x10,
  129. WIFI_CMD_SET_WHITE_CARD = 0x13,
  130. WIFI_CMD_SET_FACTORY_RESET = 0x14,
  131. WIFI_CMD_SET_EVSE_CONFIG = 0x31,
  132. WIFI_CMD_SET_CHARGING_START = 0x34,
  133. WIFI_CMD_SET_CHARGING_STOP = 0x35,
  134. WIFI_CMD_SET_SCHEDULE = 0x37,
  135. WIFI_CMD_SET_ETH_CONFIG = 0x43,
  136. WIFI_CMD_SET_ETH_IP = 0x46,
  137. WIFI_CMD_SET_ETH_SUBMASK = 0x48,
  138. WIFI_CMD_SET_ETH_GATEWAY = 0x4a,
  139. WIFI_CMD_SET_WIFI_MODE = 0x55,
  140. WIFI_CMD_SET_WIFI_SSID = 0x57,
  141. WIFI_CMD_SET_WIFI_PASSWD = 0x59,
  142. WIFI_CMD_SET_WIFI_DHCP = 0x5c,
  143. WIFI_CMD_SET_WIFI_IP = 0x5f,
  144. WIFI_CMD_SET_WIFI_NETMASK = 0x61,
  145. WIFI_CMD_SET_WIFI_GATEWAY = 0x63,
  146. WIFI_CMD_SET_TELE_APN = 0x6c,
  147. WIFI_CMD_SET_TELE_CHAP_ID = 0x6f,
  148. WIFI_CMD_SET_TELE_CHAP_PASSWD = 0x71,
  149. WIFI_CMD_SET_TELE_IP = 0x77,
  150. WIFI_CMD_SET_CONFIRM = 0x81,
  151. WIFI_CMD_SET_DISCARD = 0x82,
  152. WIFI_CMD_UNKNOW = 0xfe
  153. };
  154. enum LOGIN_ROLE
  155. {
  156. ROLE_UNKNOWN = 0x00,
  157. ROLE_MANAGER = 0x01,
  158. ROLE_USER = 0x02
  159. };
  160. struct SYS_FLAG
  161. {
  162. uint8_t isPkill;
  163. }Sys_Flag;
  164. struct interface_info
  165. {
  166. int ipType;
  167. int authType;
  168. int rssi;
  169. int cnt_InternetFail;
  170. char *currentInterface;
  171. char currentSSID[256];
  172. char currentPasswd[256];
  173. char currentMAC[24];
  174. char currentIPAddr[24];
  175. char currentNetmask[24];
  176. char currentGateway[24];
  177. char staticIPAddr[24];
  178. }Wifi;
  179. struct Display_Request
  180. {
  181. unsigned char isShowed_IF_info:1;
  182. unsigned char isShowed_IP_info:1;
  183. }dispReq;
  184. struct auth_info
  185. {
  186. int auth_type;
  187. unsigned char ssid[256];
  188. unsigned char passwd[256];
  189. }Wifi_A;
  190. struct WIFI_LOGIN_INFO
  191. {
  192. uint8_t puk[8];
  193. uint8_t loginRole;
  194. uint8_t loginId[32];
  195. }wifi_login_info;
  196. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  197. struct StatusCodeData *ShmStatusCodeData;
  198. struct OCPP16Data *ShmOCPP16Data;
  199. struct PsuData *ShmPsuData;
  200. struct SysConfigData SysConfigTemporarily;
  201. int isFindInterface();
  202. int getInterfaceInfo();
  203. int isReachableInternet();
  204. int getLinkQuality();
  205. char* getTimeString(void);
  206. int setWPAconf();
  207. int restartWPA();
  208. void refreshUSB();
  209. void getParameters();
  210. int Wifi_module_sts = STA_STATE_INIT;
  211. int isSetWPA_OK = false;
  212. int cnt_pingDNS_Fail;
  213. int cnt_getAP_Fail;
  214. int cnt_getIP_Fail;
  215. sqlite3 *localDb;
  216. void trim(char *s);
  217. int mystrcmp(char *p1,char *p2);
  218. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt);
  219. void split(char **arr, char *str, const char *del);
  220. int isValidCheckSum(uint8_t *message);
  221. char *Support_InterfaceSTA[2] = {"mlan0", "wlan0"};
  222. char *Support_InterfaceAP[1] = {"uap0"};
  223. char *valid_Internet[2] = {"8.8.8.8", "180.76.76.76"};
  224. int protocol_Version [] = {0,6,0};
  225. int StoreLogMsg(const char *fmt, ...)
  226. {
  227. char Buf[4096+256];
  228. char buffer[4096];
  229. time_t CurrentTime;
  230. struct tm *tm;
  231. va_list args;
  232. va_start(args, fmt);
  233. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  234. va_end(args);
  235. memset(Buf,0,sizeof(Buf));
  236. CurrentTime = time(NULL);
  237. tm=localtime(&CurrentTime);
  238. sprintf(Buf,"echo -n \"[%04d.%02d.%02d %02d:%02d:%02d] - %s\" >> /Storage/SystemLog/[%04d.%02d]Wifi_SystemLog",
  239. tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,
  240. buffer,
  241. tm->tm_year+1900,tm->tm_mon+1);
  242. #ifdef SystemLogMessage
  243. system(Buf);
  244. #endif
  245. #ifdef ConsloePrintLog
  246. 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);
  247. #endif
  248. return rc;
  249. }
  250. int DiffTimeb(struct timeb ST, struct timeb ET)
  251. {
  252. //return milli-second
  253. unsigned int StartTime,StopTime;
  254. StartTime=(unsigned int)ST.time;
  255. StopTime=(unsigned int)ET.time;
  256. return (StopTime-StartTime)*1000+ET.millitm-ST.millitm;
  257. }
  258. //==========================================
  259. // Print out log function
  260. //==========================================
  261. void displayMessage(uint8_t *data, uint16_t len, uint8_t isRX)
  262. {
  263. uint8_t output[8192];
  264. sprintf((char*)output, "%s", (isRX?"RX: ":"TX: "));
  265. for(uint16_t idx = 0;idx<len;idx++)
  266. {
  267. sprintf((char*)output, "%s%02x ", output, data[idx]);
  268. }
  269. #ifdef DEBUG
  270. DEBUG_INFO("%s\n", output);
  271. #endif
  272. }
  273. //==========================================
  274. // Init all share memory
  275. //==========================================
  276. int InitShareMemory()
  277. {
  278. int result = PASS;
  279. int MeterSMId;
  280. //creat ShmSysConfigAndInfo
  281. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0)
  282. {
  283. #ifdef SystemLogMessage
  284. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n");
  285. #endif
  286. result = FAIL;
  287. }
  288. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  289. {
  290. #ifdef SystemLogMessage
  291. DEBUG_ERROR("shmat ShmSysConfigAndInfo NG\n");
  292. #endif
  293. result = FAIL;
  294. }
  295. else
  296. {}
  297. //creat ShmStatusCodeData
  298. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0)
  299. {
  300. #ifdef SystemLogMessage
  301. DEBUG_ERROR("shmget ShmStatusCodeData NG\n");
  302. #endif
  303. result = FAIL;
  304. }
  305. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  306. {
  307. #ifdef SystemLogMessage
  308. DEBUG_ERROR("shmat ShmStatusCodeData NG\n");
  309. #endif
  310. result = FAIL;
  311. }
  312. else
  313. {}
  314. //creat ShmOCPP16Data
  315. if ((MeterSMId = shmget(ShmOcppModuleKey, sizeof(struct OCPP16Data), 0777)) < 0)
  316. {
  317. #ifdef SystemLogMessage
  318. DEBUG_ERROR("shmget ShmOCPP16Data NG");
  319. #endif
  320. result = FAIL;
  321. }
  322. else if ((ShmOCPP16Data = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  323. {
  324. #ifdef SystemLogMessage
  325. DEBUG_ERROR("shmat ShmOCPP16Data NG");
  326. #endif
  327. result = FAIL;
  328. }
  329. else
  330. {}
  331. //creat ShmPsuData
  332. if ((MeterSMId = shmget(ShmPsuKey, sizeof(struct PsuData), 0777)) < 0)
  333. {
  334. #ifdef SystemLogMessage
  335. DEBUG_ERROR("shmget ShmPsuData NG \n");
  336. #endif
  337. result = FAIL;
  338. }
  339. else if ((ShmPsuData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  340. {
  341. #ifdef SystemLogMessage
  342. DEBUG_ERROR("shmat ShmPsuData NG \n");
  343. #endif
  344. result = FAIL;
  345. }
  346. memset(ShmPsuData,0,sizeof(struct PsuData));
  347. return result;
  348. }
  349. //==========================================
  350. // Get parameters from shared memory
  351. //==========================================
  352. void getParameters(void)
  353. {
  354. DEBUG_INFO("============= Configuration ===============\r\n");
  355. strcpy((char*)Wifi_A.ssid, (const char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid);
  356. DEBUG_INFO("Wifi SSID: %s\n", Wifi_A.ssid);
  357. strcpy((char*)Wifi_A.passwd, (const char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword);
  358. DEBUG_INFO("Wifi Password: %s\n", Wifi_A.passwd);
  359. if(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress != NULL)
  360. strcpy((char*)Wifi.staticIPAddr, (const char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress);
  361. DEBUG_INFO("Wifi Static IP: %s\n", Wifi.staticIPAddr);
  362. Wifi.ipType = ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient;
  363. DEBUG_INFO("DHCP client flag: %d\n", Wifi.ipType);
  364. DEBUG_INFO("===========================================\r\n");
  365. }
  366. //==========================================
  367. // Refresh USB interface
  368. //==========================================
  369. void refreshUSB(void)
  370. {
  371. FILE *fp;
  372. char cmd[256];
  373. // Get IP address & net mask
  374. strcpy(cmd, "echo '1-1'> /sys/bus/usb/drivers/usb/unbind");
  375. fp = popen(cmd, "r");
  376. sleep(2);
  377. pclose(fp);
  378. strcpy(cmd, "echo '1-1'> /sys/bus/usb/drivers/usb/bind");
  379. fp = popen(cmd, "r");
  380. sleep(5);
  381. pclose(fp);
  382. }
  383. //==========================================
  384. // Check wifi interface status
  385. //==========================================
  386. int isFindInterface()
  387. {
  388. int result = FAIL;
  389. struct ifaddrs *ifaddr, *ifa;
  390. //refreshUSB();
  391. if(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode == WIFI_MODE_AP)
  392. {
  393. if (getifaddrs(&ifaddr) != FAIL)
  394. {
  395. for (ifa = ifaddr; ifa != NULL; ifa = ifa->ifa_next)
  396. {
  397. if (ifa->ifa_addr == NULL ||
  398. ifa->ifa_addr->sa_family != AF_PACKET) continue;
  399. for(int idx=0;idx<ARRAY_SIZE(Support_InterfaceAP);idx++)
  400. {
  401. if(mystrcmp(ifa->ifa_name, Support_InterfaceAP[idx]) == PASS)
  402. {
  403. Wifi.currentInterface = ifa->ifa_name;
  404. result = PASS;
  405. }
  406. }
  407. }
  408. freeifaddrs(ifaddr);
  409. freeifaddrs(ifa);
  410. }
  411. }
  412. else
  413. {
  414. if (getifaddrs(&ifaddr) != FAIL)
  415. {
  416. for (ifa = ifaddr; ifa != NULL; ifa = ifa->ifa_next)
  417. {
  418. if (ifa->ifa_addr == NULL ||
  419. ifa->ifa_addr->sa_family != AF_PACKET) continue;
  420. for(int idx=0;idx<ARRAY_SIZE(Support_InterfaceSTA);idx++)
  421. {
  422. if(mystrcmp(ifa->ifa_name, Support_InterfaceSTA[idx]) == PASS)
  423. {
  424. Wifi.currentInterface = ifa->ifa_name;
  425. result = PASS;
  426. }
  427. }
  428. }
  429. freeifaddrs(ifaddr);
  430. freeifaddrs(ifa);
  431. }
  432. }
  433. return result;
  434. }
  435. //==========================================
  436. // Get wifi interface info
  437. //==========================================
  438. int getInterfaceInfo()
  439. {
  440. int result = PASS;
  441. FILE *fp;
  442. char cmd[256];
  443. char buf[512];
  444. char tmp[512];
  445. // Get IP address & net mask
  446. strcpy(cmd, "ifconfig ");
  447. strcat(cmd, Wifi.currentInterface);
  448. fp = popen(cmd, "r");
  449. if(fp == NULL)
  450. result = FAIL;
  451. else
  452. {
  453. while(fgets(buf, sizeof(buf), fp) != NULL)
  454. {
  455. if(strstr(buf, "HWaddr") > 0)
  456. {
  457. sscanf(buf, "%*s%*s%*s%*s%s", tmp);
  458. strcpy(Wifi.currentMAC, tmp);
  459. }
  460. if(strstr(buf, "inet addr:") > 0)
  461. {
  462. sscanf(buf, "%*s%s", tmp);
  463. substr(Wifi.currentIPAddr, tmp, strspn(tmp, "addr:"), strlen(buf)-strspn(tmp, "addr:"));
  464. sscanf(buf, "%*s%*s%*s%s", tmp);
  465. substr(Wifi.currentNetmask, tmp, strspn(tmp, "Mask:"), strlen(buf)-strspn(tmp, "Mask:"));
  466. }
  467. }
  468. }
  469. pclose(fp);
  470. // Get gateway
  471. fp = popen("ip route", "r");
  472. if(fp == NULL)
  473. result = FAIL;
  474. else
  475. {
  476. while(fgets(buf, sizeof(buf), fp) != NULL)
  477. {
  478. if(strncmp(buf, "default", strlen("default")) == 0)
  479. break;
  480. }
  481. sscanf(buf, "%*s%*s%s", tmp);
  482. substr(Wifi.currentGateway, tmp, 0, strlen(tmp));
  483. }
  484. pclose(fp);
  485. if(!dispReq.isShowed_IF_info)
  486. {
  487. DEBUG_INFO("MAC: %s\n", Wifi.currentMAC);
  488. dispReq.isShowed_IF_info = true;
  489. }
  490. if(!dispReq.isShowed_IP_info)
  491. {
  492. DEBUG_INFO("IP address: %s\n", Wifi.currentIPAddr);
  493. DEBUG_INFO("Net mask: %s\n", Wifi.currentNetmask);
  494. DEBUG_INFO("Default gateway: %s\n", Wifi.currentGateway);
  495. dispReq.isShowed_IP_info = true;
  496. }
  497. strcpy((char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress, (const char*)Wifi.currentIPAddr);
  498. strcpy((char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress, (const char*)Wifi.currentNetmask);
  499. strcpy((char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress, (const char*)Wifi.currentGateway);
  500. strcpy((char*)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress, (const char*)Wifi.currentMAC);
  501. return result;
  502. }
  503. //==========================================
  504. // Check if module connect to wifi AP
  505. //==========================================
  506. int isConnectAP()
  507. {
  508. int result = PASS;
  509. FILE *fp;
  510. char cmd[256];
  511. char buf[512];
  512. // Get IP address & net mask
  513. strcpy(cmd, "iwconfig ");
  514. strcat(cmd, Wifi.currentInterface);
  515. fp = popen(cmd, "r");
  516. if(fp == NULL)
  517. result = FAIL;
  518. else
  519. {
  520. while(fgets(buf, sizeof(buf), fp) != NULL)
  521. {
  522. if(strstr(buf, "Not-Associated") > 0)
  523. {
  524. result = FAIL;
  525. DEBUG_INFO("AP check: Not-Associated.\n");
  526. }
  527. }
  528. }
  529. pclose(fp);
  530. return result;
  531. }
  532. //==========================================
  533. // Check internet access status
  534. //==========================================
  535. int isReachableInternet()
  536. {
  537. int result = FAIL;
  538. FILE *fp;
  539. char cmd[256];
  540. char buf[512];
  541. //char tmp[512];
  542. for(int idx=0;idx<ARRAY_SIZE(valid_Internet);idx++)
  543. {
  544. sprintf(cmd, "ping -c 1 -w 3 -I %s %s", Wifi.currentInterface, valid_Internet[idx]);
  545. fp = popen(cmd, "r");
  546. if(fp != NULL)
  547. {
  548. while(fgets(buf, sizeof(buf), fp) != NULL)
  549. {
  550. if(strstr(buf, "transmitted") > 0)
  551. {
  552. //sscanf(buf, "%*s%*s%*s%*s%*s%*s%s", tmp);
  553. if(strstr(buf,"100%") != NULL)
  554. {
  555. }
  556. else
  557. {
  558. result = PASS;
  559. }
  560. //DEBUG_INFO("%s",buf);
  561. //DEBUG_INFO("%s\n",tmp);
  562. }
  563. }
  564. }
  565. pclose(fp);
  566. }
  567. return result;
  568. }
  569. //==========================================
  570. // Check module soft AP is start up
  571. //==========================================
  572. int isStartUpAP()
  573. {
  574. int result = FAIL;
  575. FILE *fp;
  576. char cmd[256];
  577. char buf[512];
  578. // Get IP address & net mask
  579. strcpy(cmd, "/root/uaputl sys_cfg_bss_status");
  580. fp = popen(cmd, "r");
  581. if(fp != NULL)
  582. {
  583. while(fgets(buf, sizeof(buf), fp) != NULL)
  584. {
  585. if(strstr(buf, "BSS status = started") > 0)
  586. {
  587. result = PASS;
  588. DEBUG_INFO("AP already start up.\n");
  589. }
  590. }
  591. }
  592. pclose(fp);
  593. return result;
  594. }
  595. //==========================================
  596. // Get wifi connection quality
  597. //==========================================
  598. int getLinkQuality()
  599. {
  600. int result = FAIL;
  601. FILE *fp;
  602. char cmd[256];
  603. char buf[512];
  604. char tmp[512];
  605. strcpy(cmd, "iwconfig ");
  606. strcat(cmd, Wifi.currentInterface);
  607. fp = popen(cmd, "r");
  608. if(fp == NULL)
  609. result = FAIL;
  610. else
  611. {
  612. while(fgets(buf, sizeof(buf), fp) != NULL)
  613. {
  614. if(strstr(buf, "Signal level") > 0)
  615. {
  616. sscanf(buf, "%*s%*s%*s%s", tmp);
  617. substr(tmp, tmp, strspn(tmp, "Signal level="), strlen(buf)-strspn(tmp, "Signal level="));
  618. Wifi.rssi = atoi(tmp);
  619. result = PASS;
  620. }
  621. }
  622. }
  623. pclose(fp);
  624. return result;
  625. }
  626. //==========================================
  627. // WPA parameter set
  628. //==========================================
  629. int setWPAconf()
  630. {
  631. int result = FAIL;
  632. char cmdBuf[512];
  633. FILE *pFile;
  634. char buffer[500]="ctrl_interface=/var/run/wpa_supplicant\nupdate_config=1\n";
  635. // Stop dhcp client or server
  636. sprintf(cmdBuf, "pgrep -f \"udhcpc -i %s\" | xargs kill", Wifi.currentInterface);
  637. system(cmdBuf);
  638. sprintf(cmdBuf, "pgrep -f \"udhcpd\" | xargs kill");
  639. system(cmdBuf);
  640. // Clear wifi configuration file
  641. system("cat /dev/null > /etc/wpa.conf");
  642. system("cat /dev/null > /etc/hostapd.conf");
  643. switch(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode)
  644. {
  645. case WIFI_MODE_STA:
  646. // Fill out configuration value depend on share memory setting
  647. if(strlen((const char*)Wifi_A.passwd)>0)
  648. {
  649. if(strlen((const char*)Wifi_A.passwd)>=8)
  650. {
  651. strcat(buffer, "network={\n ssid=\"");
  652. strcat(buffer, (char*)Wifi_A.ssid);
  653. strcat(buffer, "\"\n key_mgmt=WPA-EAP WPA-PSK \n");
  654. strcat(buffer, " psk=\"");
  655. strcat(buffer, (char*)Wifi_A.passwd);
  656. strcat(buffer, "\"\n}\n\n");
  657. }
  658. if(strlen((const char*)Wifi_A.passwd)==5 || strlen((const char*)Wifi_A.passwd)==13)
  659. {
  660. strcat(buffer, "network={\n ssid=\"");
  661. strcat(buffer, (char*)Wifi_A.ssid);
  662. strcat(buffer, "\"\n key_mgmt=NONE\n");
  663. strcat(buffer, " wep_key0=\"");
  664. strcat(buffer, (char*)Wifi_A.passwd);
  665. strcat(buffer, "\"\n auth_alg=OPEN SHARED\n");
  666. strcat(buffer, "\n}\n\n");
  667. }
  668. strcat(buffer, "network={\n ssid=\"");
  669. strcat(buffer, (char*)Wifi_A.ssid);
  670. strcat(buffer, "\"\n key_mgmt=NONE");
  671. strcat(buffer, "\n}");
  672. }
  673. else
  674. {
  675. strcat(buffer, "network={\n ssid=\"");
  676. strcat(buffer, (char*)Wifi_A.ssid);
  677. strcat(buffer, "\"\n key_mgmt=NONE");
  678. strcat(buffer, "\n}");
  679. }
  680. // Configuration value write to /etc/wpa.conf
  681. pFile = fopen("/etc/wpa.conf","w");
  682. fwrite(buffer,strlen(buffer), 1, pFile);
  683. fclose(pFile);
  684. // Restart wpa_supplicant
  685. sprintf(cmdBuf, "pgrep -f \"wpa_supplicant\" | xargs kill");
  686. system(cmdBuf);
  687. #ifdef UBLOX
  688. sprintf(cmdBuf, "mlanutl mlan0 hostcmd /root/u-blox_tools/ed_mac_ctrl_V1_8801.conf ed_mac_ctrl");
  689. system(cmdBuf);
  690. sprintf(cmdBuf, "mlanutl mlan0 regrdwr 2 0x70");
  691. system(cmdBuf);
  692. sprintf(cmdBuf, "mlanutl mlan0 deepsleep 0");
  693. system(cmdBuf);
  694. sprintf(cmdBuf, "mlanutl mlan0 psmode 0");
  695. system(cmdBuf);
  696. #endif
  697. sprintf(cmdBuf, "/root/wpa_supplicant -i %s -c /etc/wpa.conf -B", Wifi.currentInterface);
  698. system(cmdBuf);
  699. // Stop wifi AP
  700. sprintf(cmdBuf, "pgrep -f \"hostapd\" | xargs kill");
  701. system(cmdBuf);
  702. sleep(5);
  703. // Wifi IP set by DHCP client or static
  704. if(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient==0)
  705. {
  706. sprintf(cmdBuf, "/sbin/udhcpc -i %s -x hostname:CSU3_%s -s /root/dhcp_script/wifi.script > /dev/null &", Wifi.currentInterface, ShmSysConfigAndInfo->SysConfig.SystemId);
  707. system(cmdBuf);
  708. }
  709. else
  710. {
  711. memset(cmdBuf, 0, ARRAY_SIZE(cmdBuf));
  712. sprintf(cmdBuf,"/sbin/ifconfig %s %s netmask %s",
  713. Wifi.currentInterface,
  714. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress,
  715. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress);
  716. system(cmdBuf);
  717. memset(cmdBuf, 0, ARRAY_SIZE(cmdBuf));
  718. sprintf(cmdBuf,"route add default gw %s %s ",
  719. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress,
  720. Wifi.currentInterface);
  721. system(cmdBuf);
  722. DEBUG_INFO("Setting %s static IP to %s submask to %s gateway to %s...\n",
  723. Wifi.currentInterface,
  724. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress,
  725. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress,
  726. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress);
  727. }
  728. break;
  729. case WIFI_MODE_AP:
  730. // Stop dhcp client or server
  731. sprintf(cmdBuf, "pgrep -f \"udhcpc -i %s\" | xargs kill", Wifi.currentInterface);
  732. system(cmdBuf);
  733. sprintf(cmdBuf, "pgrep -f \"udhcpd\" | xargs kill");
  734. system(cmdBuf);
  735. // Restart wpa_supplicant
  736. sprintf(cmdBuf, "pgrep -f \"wpa_supplicant\" | xargs kill");
  737. system(cmdBuf);
  738. sprintf(cmdBuf, "pgrep -f \"hostapd\" | xargs kill");
  739. system(cmdBuf);
  740. sprintf(cmdBuf, "echo interface=uap0 >> /etc/hostapd.conf");
  741. system(cmdBuf);
  742. sprintf(cmdBuf, "echo driver=nl80211 >> /etc/hostapd.conf");
  743. system(cmdBuf);
  744. sprintf(cmdBuf, "echo ssid=%s%s >> /etc/hostapd.conf", ShmSysConfigAndInfo->SysConfig.ModelName, ShmSysConfigAndInfo->SysConfig.SerialNumber);
  745. system(cmdBuf);
  746. sprintf(cmdBuf, "echo channel=6 >> /etc/hostapd.conf");
  747. system(cmdBuf);
  748. sprintf(cmdBuf, "echo wpa=2 >> /etc/hostapd.conf");
  749. system(cmdBuf);
  750. sprintf(cmdBuf, "echo wpa_passphrase=%s%s >> /etc/hostapd.conf", ShmSysConfigAndInfo->SysConfig.SerialNumber, ShmSysConfigAndInfo->SysConfig.ModelName);
  751. system(cmdBuf);
  752. sprintf(cmdBuf, "echo wpa_key_mgmt=WPA-PSK >> /etc/hostapd.conf");
  753. system(cmdBuf);
  754. sprintf(cmdBuf, "hostapd /etc/hostapd.conf -B");
  755. system(cmdBuf);
  756. sleep(5);
  757. // Set wifi AP ip address
  758. sprintf(cmdBuf, "ifconfig %s 192.168.10.10", Wifi.currentInterface);
  759. system(cmdBuf);
  760. DEBUG_INFO("Setting %s static IP to 192.168.10.10...\n", Wifi.currentInterface);
  761. // Start DHCP server
  762. if(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpServer==0)
  763. {
  764. sprintf(cmdBuf, "/usr/sbin/udhcpd /etc/udhcpd.conf > /dev/null &");
  765. system(cmdBuf);
  766. }
  767. break;
  768. case WIFI_MODE_ADHOC:
  769. break;
  770. case WIFI_MODE_DISABLE:
  771. default:
  772. break;
  773. }
  774. result = PASS;
  775. return result;
  776. }
  777. //==========================================
  778. // UDP socket server routine
  779. //==========================================
  780. int split2int(char *dest, char *src, const char *flag, int base)
  781. {
  782. uint8_t result = 0;
  783. char *s = strtok(src, flag);
  784. while(s != NULL)
  785. {
  786. *dest++ = (base==10?atoi(s):strtol(s, NULL, 16));
  787. s = strtok(NULL, flag);
  788. result++;
  789. }
  790. return result;
  791. }
  792. uint8_t parseIP(uint8_t *ip)
  793. {
  794. uint8_t result = FAIL;
  795. const int8_t flag_dot[1] = {'.'};
  796. int8_t buf[16];
  797. memcpy(buf, ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress, ARRAY_SIZE(buf));
  798. DEBUG_INFO("GET IP WifiIpAddress : %s...\r\n",ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress);
  799. if(split2int((char*)ip , (char*)buf, (char*)flag_dot, 10)==4)
  800. result = PASS;
  801. return result;
  802. }
  803. uint8_t parseMAC(uint8_t *mac)
  804. {
  805. uint8_t result = FAIL;
  806. const int8_t flag_colon[1] = {':'};
  807. int8_t buf[18];
  808. memcpy(buf, ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress, ARRAY_SIZE(buf));
  809. if(split2int((char*)mac , (char*)buf, (char*)flag_colon, 16)==6)
  810. result = PASS;
  811. return result;
  812. }
  813. int udpSocketServerStart(void)
  814. {
  815. int sockFd;
  816. struct sockaddr_in servaddr;
  817. struct sockaddr_in peeraddr;
  818. socklen_t peerlen = sizeof(peeraddr);
  819. uint8_t inputBuffer[2048] = {};
  820. uint8_t outBuffer[2048] = {};
  821. int16_t read_size;
  822. int16_t tx_size;
  823. uint8_t broadcastCmd[6] = {0xff, 0xff, 0x00, 0x02, 0x00, 0x02};
  824. uint8_t validResult;
  825. uint8_t chksum;
  826. uint8_t ip[4];
  827. uint8_t mac[6];
  828. memset(&servaddr, 0, sizeof(servaddr));
  829. servaddr.sin_family = AF_INET;
  830. servaddr.sin_port = htons(LISTEN_PORT_UDP);
  831. servaddr.sin_addr.s_addr = htonl(INADDR_ANY);
  832. if ((sockFd = socket(PF_INET, SOCK_DGRAM, 0)) < 0)
  833. return FAIL;
  834. if (bind(sockFd, (struct sockaddr *)&servaddr, sizeof(servaddr)) < 0)
  835. return FAIL;
  836. for(;;)
  837. {
  838. if((read_size = recvfrom(sockFd, inputBuffer, sizeof(inputBuffer), 0, (struct sockaddr *)&peeraddr, &peerlen)) > 0)
  839. {
  840. DEBUG_INFO("Revieve from: %s:%d\r\n", inet_ntoa(peeraddr.sin_addr), htons(peeraddr.sin_port));
  841. DEBUG_INFO("read_size: %d\r\n",read_size);
  842. displayMessage(inputBuffer, read_size, YES);
  843. if(read_size>=6)
  844. {
  845. validResult = PASS;
  846. for(uint8_t idx=0;idx<6;idx++)
  847. {
  848. if(inputBuffer[idx] != broadcastCmd[idx])
  849. {
  850. validResult = FAIL;
  851. break;
  852. }
  853. }
  854. if(validResult)
  855. {
  856. memset(outBuffer, 0x00, ARRAY_SIZE(outBuffer));
  857. tx_size = 41;
  858. outBuffer[0] = 0xff;
  859. outBuffer[1] = 0xff;
  860. outBuffer[2] = (0x25 << 0x08) & 0xff;
  861. outBuffer[3] = 0x25 & 0xff;
  862. outBuffer[4] = 0x00;
  863. if(parseIP(ip)==PASS)
  864. {
  865. outBuffer[5] = ip[0];
  866. outBuffer[6] = ip[1];
  867. outBuffer[7] = ip[2];
  868. outBuffer[8] = ip[3];
  869. }
  870. else
  871. {
  872. outBuffer[5] = 0x00;
  873. outBuffer[6] = 0x00;
  874. outBuffer[7] = 0x00;
  875. outBuffer[8] = 0x00;
  876. }
  877. if(parseMAC(mac)==PASS)
  878. {
  879. outBuffer[9] = mac[0];
  880. outBuffer[10] = mac[1];
  881. outBuffer[11] = mac[2];
  882. outBuffer[12] = mac[3];
  883. outBuffer[13] = mac[4];
  884. outBuffer[14] = mac[5];
  885. }
  886. else
  887. {
  888. outBuffer[9] = 0x00;
  889. outBuffer[10] = 0x00;
  890. outBuffer[11] = 0x00;
  891. outBuffer[12] = 0x00;
  892. outBuffer[13] = 0x00;
  893. outBuffer[14] = 0x00;
  894. }
  895. memcpy(&outBuffer[15], ShmSysConfigAndInfo->SysConfig.ModelName, 0x0e);
  896. memcpy(&outBuffer[29], ShmSysConfigAndInfo->SysConfig.SerialNumber, 0x0b);
  897. chksum = 0x00;
  898. for(uint8_t idx=0;idx<36;idx++)
  899. {
  900. chksum ^= outBuffer[idx];
  901. }
  902. outBuffer[40] = chksum;
  903. displayMessage(outBuffer, tx_size, NO);
  904. sendto(sockFd, outBuffer, tx_size, 0, (struct sockaddr *)&peeraddr, peerlen);
  905. }
  906. }
  907. }
  908. }
  909. return FAIL;
  910. }
  911. //===============================================
  912. // SQLite3 related routine
  913. //===============================================
  914. int DB_Open(sqlite3 *db)
  915. {
  916. int result = PASS;
  917. char* errMsg = NULL;
  918. char* createSql="CREATE TABLE IF NOT EXISTS list("
  919. "idx integer primary key AUTOINCREMENT, "
  920. "list_type text, "
  921. "code text, "
  922. "user_id text, "
  923. "isReg text"
  924. ");";
  925. //sqlite3_config(SQLITE_CONFIG_URI, 1);
  926. if(sqlite3_open(DB_FILE, &db))
  927. {
  928. result = FAIL;
  929. DEBUG_INFO( "Can't open database: %s\r\n", sqlite3_errmsg(db));
  930. sqlite3_close(db);
  931. }
  932. else
  933. {
  934. DEBUG_INFO( "Local puk/pin list database open successfully.\r\n");
  935. if (sqlite3_exec(db, createSql, 0, 0, &errMsg) != SQLITE_OK)
  936. {
  937. result = FAIL;
  938. DEBUG_INFO( "Create puk/pin list table error message: %s\n", errMsg);
  939. }
  940. else
  941. {
  942. DEBUG_INFO( "Opened puk/pin list table successfully\n");
  943. }
  944. sqlite3_close(db);
  945. }
  946. return result;
  947. }
  948. uint8_t isPukReg(sqlite3 *db)
  949. {
  950. uint8_t result = false;
  951. char* errMsg = NULL;
  952. char sqlStr[1024];
  953. char **rs;
  954. int rows, cols;
  955. sprintf(sqlStr, "select * from list where list_type='puk';");
  956. DEBUG_INFO("sqlStr= %s\r\n", sqlStr);
  957. if(sqlite3_open(DB_FILE, &db))
  958. {
  959. result = FAIL;
  960. DEBUG_INFO( "Can't open database: %s\r\n", sqlite3_errmsg(db));
  961. sqlite3_close(db);
  962. }
  963. else
  964. {
  965. DEBUG_INFO( "Local puk/pin list database open successfully.\r\n");
  966. sqlite3_get_table(db, sqlStr, &rs, &rows, &cols, &errMsg);
  967. if(rows>0)
  968. result = true;
  969. sqlite3_free_table(rs);
  970. sqlite3_close(db);
  971. }
  972. return result;
  973. }
  974. uint8_t PukReg(sqlite3 *db)
  975. {
  976. uint8_t result = false;
  977. char* errMsg = NULL;
  978. char sqlStr[1024];
  979. sprintf(sqlStr, "insert into list(list_type, code, user_id, isReg) "
  980. "values('puk', '%s', '%s', '1');",
  981. wifi_login_info.puk,
  982. wifi_login_info.loginId);
  983. DEBUG_INFO("sqlStr= %s\r\n", sqlStr);
  984. if(sqlite3_open(DB_FILE, &db))
  985. {
  986. result = FAIL;
  987. DEBUG_INFO( "Can't open database: %s\r\n", sqlite3_errmsg(db));
  988. sqlite3_close(db);
  989. }
  990. else
  991. {
  992. DEBUG_INFO( "Local puk/pin list database open successfully.\r\n");
  993. if (sqlite3_exec(db, sqlStr, 0, 0, &errMsg) != SQLITE_OK)
  994. {
  995. result = FAIL;
  996. DEBUG_INFO( "Insert puk/pin list error message: %s\n", errMsg);
  997. }
  998. else
  999. {
  1000. DEBUG_INFO( "Insert puk/pin list successfully\n");
  1001. }
  1002. sqlite3_close(db);
  1003. }
  1004. return result;
  1005. }
  1006. uint8_t isPinGen(sqlite3 *db)
  1007. {
  1008. uint8_t result = false;
  1009. char* errMsg = NULL;
  1010. char sqlStr[1024];
  1011. char **rs;
  1012. int rows, cols;
  1013. sprintf(sqlStr, "select * from list where list_type='pin';");
  1014. DEBUG_INFO("sqlStr= %s\r\n", sqlStr);
  1015. if(sqlite3_open(DB_FILE, &db))
  1016. {
  1017. result = FAIL;
  1018. DEBUG_INFO( "Can't open database: %s\r\n", sqlite3_errmsg(db));
  1019. sqlite3_close(db);
  1020. }
  1021. else
  1022. {
  1023. DEBUG_INFO( "Local puk/pin list database open successfully.\r\n");
  1024. sqlite3_get_table(db, sqlStr, &rs, &rows, &cols, &errMsg);
  1025. if(rows>0)
  1026. result = true;
  1027. sqlite3_free_table(rs);
  1028. sqlite3_close(db);
  1029. }
  1030. return result;
  1031. }
  1032. uint8_t PinGen(sqlite3 *db)
  1033. {
  1034. uint8_t result = false;
  1035. char* errMsg = NULL;
  1036. char sqlStr[1024];
  1037. srand(time(NULL));
  1038. if(sqlite3_open(DB_FILE, &db))
  1039. {
  1040. result = FAIL;
  1041. DEBUG_INFO( "Can't open database: %s\r\n", sqlite3_errmsg(db));
  1042. sqlite3_close(db);
  1043. }
  1044. else
  1045. {
  1046. DEBUG_INFO( "Local puk/pin list database open successfully.\r\n");
  1047. sprintf(sqlStr, "delete from list where list_type='pin';");
  1048. DEBUG_INFO("sqlStr= %s\r\n", sqlStr);
  1049. if (sqlite3_exec(db, sqlStr, 0, 0, &errMsg) != SQLITE_OK)
  1050. {
  1051. result = FAIL;
  1052. DEBUG_INFO( "Delete puk/pin list error message: %s\n", errMsg);
  1053. }
  1054. else
  1055. {
  1056. for(int idxList=0;idxList<20;idxList++)
  1057. {
  1058. sprintf(sqlStr, "insert into list(list_type, code, user_id, isReg) "
  1059. "values('pin', '%06X', '', '0');", (rand() % 0xffffff));
  1060. DEBUG_INFO("sqlStr= %s\r\n", sqlStr);
  1061. if (sqlite3_exec(db, sqlStr, 0, 0, &errMsg) != SQLITE_OK)
  1062. {
  1063. result = FAIL;
  1064. DEBUG_INFO( "Insert puk/pin list error message: %s\n", errMsg);
  1065. }
  1066. else
  1067. {
  1068. DEBUG_INFO( "Insert puk/pin list successfully\n");
  1069. }
  1070. }
  1071. }
  1072. sqlite3_close(db);
  1073. }
  1074. return result;
  1075. }
  1076. uint8_t isValidPin(sqlite3 *db, uint8_t *pinCode)
  1077. {
  1078. uint8_t result = false;
  1079. char* errMsg = NULL;
  1080. char sqlStr[1024];
  1081. char **rs;
  1082. int rows, cols;
  1083. sprintf(sqlStr, "select * from list where list_type='pin' and code='%s';", pinCode);
  1084. DEBUG_INFO("sqlStr= %s\r\n", sqlStr);
  1085. if(sqlite3_open(DB_FILE, &db))
  1086. {
  1087. result = FAIL;
  1088. DEBUG_INFO( "Can't open database: %s\r\n", sqlite3_errmsg(db));
  1089. sqlite3_close(db);
  1090. }
  1091. else
  1092. {
  1093. DEBUG_INFO( "Local puk/pin list database open successfully.\r\n");
  1094. sqlite3_get_table(db, sqlStr, &rs, &rows, &cols, &errMsg);
  1095. if(rows>0)
  1096. result = true;
  1097. sqlite3_free_table(rs);
  1098. sqlite3_close(db);
  1099. }
  1100. return result;
  1101. }
  1102. uint8_t loginValid(sqlite3 *db)
  1103. {
  1104. uint8_t result = ROLE_UNKNOWN;
  1105. char* errMsg = NULL;
  1106. char sqlStr[1024];
  1107. char **rs;
  1108. int rows, cols;
  1109. sprintf(sqlStr, "select * from list where user_id='%s';", wifi_login_info.loginId);
  1110. DEBUG_INFO("sqlStr= %s\r\n", sqlStr);
  1111. DEBUG_INFO("Login id: %s\r\n", wifi_login_info.loginId);
  1112. if(sqlite3_open(DB_FILE, &db))
  1113. {
  1114. result = FAIL;
  1115. DEBUG_INFO( "Can't open database: %s\r\n", sqlite3_errmsg(db));
  1116. sqlite3_close(db);
  1117. }
  1118. else
  1119. {
  1120. DEBUG_INFO( "Local puk/pin list database open successfully.\r\n");
  1121. sqlite3_get_table(db, sqlStr, &rs, &rows, &cols, &errMsg);
  1122. for(int idxRow=0;idxRow<rows;idxRow++)
  1123. {
  1124. if(strcmp(rs[(idxRow*cols)+1], "puk") == 0)
  1125. {
  1126. result = ROLE_MANAGER;
  1127. DEBUG_INFO("Login role: Manager\r\n");
  1128. }
  1129. else if(strcmp(rs[(idxRow*cols)+1], "pin") == 0)
  1130. {
  1131. result = ROLE_USER;
  1132. DEBUG_INFO("Login role: User\r\n");
  1133. }
  1134. }
  1135. sqlite3_free_table(rs);
  1136. sqlite3_close(db);
  1137. }
  1138. return result;
  1139. }
  1140. //==========================================
  1141. // TCP socket server routine
  1142. //==========================================
  1143. uint32_t stm32crc(uint32_t *ptr, uint32_t len)
  1144. {
  1145. uint32_t xbit, data;
  1146. uint32_t crc32 = 0xFFFFFFFF;
  1147. const uint32_t polynomial = 0x04c11db7;
  1148. for(uint8_t i = 0; i < len; i ++)
  1149. {
  1150. xbit = 1 << 31;
  1151. data = ptr[i];
  1152. for (uint32_t bits = 0; bits < 32; bits++)
  1153. {
  1154. if (crc32 & 0x80000000)
  1155. {
  1156. crc32 <<= 1;
  1157. crc32 ^= polynomial;
  1158. }
  1159. else
  1160. crc32 <<= 1;
  1161. if (data & xbit)
  1162. crc32 ^= polynomial;
  1163. xbit >>= 1;
  1164. }
  1165. }
  1166. return crc32;
  1167. }
  1168. int isValidCheckSum(uint8_t *message)
  1169. {
  1170. uint8_t chksum=0;
  1171. for(int idx=0;idx<(((message[2]<<8) | message[3])>1024?1024:(((message[2]<<8) | message[3])-1));idx++)
  1172. {
  1173. chksum ^= message[4+idx];
  1174. }
  1175. return ((chksum == message[3+(((message[2]<<8) | message[3])>1024?1024:((message[2]<<8) | message[3]))]) ? PASS : FAIL);
  1176. }
  1177. int chksumCal(uint8_t *message)
  1178. {
  1179. uint8_t chksum=0;
  1180. for(int idx = 0;idx<(((message[2]<<8) | message[3])>1024?1024:(((message[2]<<8) | message[3])-1));idx++)
  1181. {
  1182. chksum ^= message[4+idx];
  1183. }
  1184. return chksum & 0xff;
  1185. }
  1186. int StoreUsrConfigData(struct SysConfigData *UsrData)
  1187. {
  1188. int result = PASS;
  1189. int fd,wrd;
  1190. unsigned int i,Chk;
  1191. unsigned char *ptr, *BufTmp;
  1192. Chk=0;
  1193. ptr=(unsigned char *)UsrData;
  1194. if((BufTmp=malloc(MtdBlockSize))!=NULL)
  1195. {
  1196. memset(BufTmp,0,MtdBlockSize);
  1197. memcpy(BufTmp,ptr,sizeof(struct SysConfigData));
  1198. for(i=0;i<MtdBlockSize-4;i++)
  1199. Chk+=*(BufTmp+i);
  1200. memcpy( BufTmp+MtdBlockSize-4,&Chk,4);
  1201. fd = open("/dev/mtdblock10", O_RDWR);
  1202. if (fd>0)
  1203. {
  1204. wrd=write(fd, BufTmp, MtdBlockSize);
  1205. close(fd);
  1206. if(wrd>=MtdBlockSize)
  1207. {
  1208. fd = open("/dev/mtdblock11", O_RDWR);
  1209. if (fd>0)
  1210. {
  1211. wrd=write(fd, BufTmp, MtdBlockSize);
  1212. close(fd);
  1213. if(wrd<MtdBlockSize)
  1214. {
  1215. DEBUG_ERROR("write /dev/mtdblock11(backup) NG\r\n");
  1216. result = FAIL;
  1217. }
  1218. }
  1219. else
  1220. {
  1221. DEBUG_ERROR("open /dev/mtdblock11(backup) NG\r\n");
  1222. result = FAIL;
  1223. }
  1224. }
  1225. else
  1226. {
  1227. DEBUG_ERROR("write /dev/mtdblock10 NG\r\n");
  1228. result = FAIL;
  1229. }
  1230. }
  1231. else
  1232. {
  1233. DEBUG_ERROR("open /dev/mtdblock10 NG\r\n");
  1234. result = FAIL;
  1235. }
  1236. }
  1237. else
  1238. {
  1239. DEBUG_ERROR("alloc BlockSize NG\r\n");
  1240. result = FAIL;
  1241. }
  1242. if(BufTmp!=NULL)
  1243. free(BufTmp);
  1244. return result;
  1245. }
  1246. void getConnectorInfo(uint8_t gun_index, uint8_t *outBuffer)
  1247. {
  1248. uint8_t idxAC = 0;
  1249. uint8_t idxCCS = 0;
  1250. uint8_t idxCHAdeMO = 0;
  1251. uint8_t idxGBT = 0;
  1252. uint8_t AC_GUN_IDX = 0;
  1253. if(ShmSysConfigAndInfo->SysConfig.ModelName[0] == 'A')
  1254. {
  1255. if(gun_index == 2)
  1256. {
  1257. AC_GUN_IDX = 0;
  1258. }
  1259. else if(gun_index == 1)
  1260. {
  1261. AC_GUN_IDX = 1;
  1262. }
  1263. else if(gun_index == 0)
  1264. {
  1265. AC_GUN_IDX = 2;
  1266. }
  1267. for(uint8_t idx=0;idx<AC_GUN_IDX;idx++)
  1268. {
  1269. switch(ShmSysConfigAndInfo->SysConfig.ModelName[9-idx])
  1270. {
  1271. case '1' ... '6':
  1272. idxAC++;
  1273. break;
  1274. }
  1275. }
  1276. switch(ShmSysConfigAndInfo->SysConfig.ModelName[9-AC_GUN_IDX])
  1277. {
  1278. case '1' ... '6':
  1279. // AC
  1280. outBuffer[6] = ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].SystemStatus;
  1281. outBuffer[7] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].PresentChargingVoltage*10)>>8)&0xff;
  1282. outBuffer[8] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].PresentChargingVoltage*10)>>0)&0xff;
  1283. outBuffer[9] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].PresentChargingCurrent*10)>>8)&0xff;
  1284. outBuffer[10] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].PresentChargingCurrent*10)>>0)&0xff;
  1285. outBuffer[11] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].PresentChargingPower*10)>>8)&0xff;
  1286. outBuffer[12] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].PresentChargingPower*10)>>0)&0xff;
  1287. outBuffer[13] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].PresentChargedEnergy*10)>>8)&0xff;
  1288. outBuffer[14] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].PresentChargedEnergy*10)>>0)&0xff;
  1289. outBuffer[15] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].PresentChargedDuration)>>8)&0xff;
  1290. outBuffer[16] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].PresentChargedDuration)>>0)&0xff;
  1291. outBuffer[17] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].RemainChargingDuration)>>8)&0xff;
  1292. outBuffer[18] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].RemainChargingDuration)>>0)&0xff;
  1293. outBuffer[19] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].EvBatterySoc)>>0)&0xff;
  1294. break;
  1295. default:
  1296. break;
  1297. }
  1298. }
  1299. else if(ShmSysConfigAndInfo->SysConfig.ModelName[0] == 'D')
  1300. {
  1301. for(uint8_t idx=0;idx<gun_index;idx++)
  1302. {
  1303. switch(ShmSysConfigAndInfo->SysConfig.ModelName[7+idx])
  1304. {
  1305. case '1' ... '6':
  1306. idxAC++;
  1307. break;
  1308. case 'J':
  1309. idxCHAdeMO++;
  1310. break;
  1311. case 'U':
  1312. case 'E':
  1313. idxCCS++;
  1314. break;
  1315. case 'G':
  1316. idxGBT++;
  1317. break;
  1318. }
  1319. }
  1320. switch(ShmSysConfigAndInfo->SysConfig.ModelName[7+gun_index])
  1321. {
  1322. case '1' ... '6':
  1323. // AC
  1324. outBuffer[6] = ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].SystemStatus;
  1325. outBuffer[7] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].PresentChargingVoltage*10)>>8)&0xff;
  1326. outBuffer[8] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].PresentChargingVoltage*10)>>0)&0xff;
  1327. outBuffer[9] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].PresentChargingCurrent*10)>>8)&0xff;
  1328. outBuffer[10] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].PresentChargingCurrent*10)>>0)&0xff;
  1329. outBuffer[11] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].PresentChargingPower*10)>>8)&0xff;
  1330. outBuffer[12] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].PresentChargingPower*10)>>0)&0xff;
  1331. outBuffer[13] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].PresentChargedEnergy*10)>>8)&0xff;
  1332. outBuffer[14] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].PresentChargedEnergy*10)>>0)&0xff;
  1333. outBuffer[15] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].PresentChargedDuration)>>8)&0xff;
  1334. outBuffer[16] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].PresentChargedDuration)>>0)&0xff;
  1335. outBuffer[17] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].RemainChargingDuration)>>8)&0xff;
  1336. outBuffer[18] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].RemainChargingDuration)>>0)&0xff;
  1337. outBuffer[19] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].EvBatterySoc)>>0)&0xff;
  1338. break;
  1339. case 'J':
  1340. // CHAdeMO
  1341. outBuffer[6] = ShmSysConfigAndInfo->SysInfo.ChademoChargingData[idxCHAdeMO].SystemStatus;
  1342. outBuffer[7] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[idxCHAdeMO].PresentChargingVoltage*10)>>8)&0xff;
  1343. outBuffer[8] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[idxCHAdeMO].PresentChargingVoltage*10)>>0)&0xff;
  1344. outBuffer[9] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[idxCHAdeMO].PresentChargingCurrent*10)>>8)&0xff;
  1345. outBuffer[10] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[idxCHAdeMO].PresentChargingCurrent*10)>>0)&0xff;
  1346. outBuffer[11] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[idxCHAdeMO].PresentChargingPower*10)>>8)&0xff;
  1347. outBuffer[12] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[idxCHAdeMO].PresentChargingPower*10)>>0)&0xff;
  1348. outBuffer[13] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[idxCHAdeMO].PresentChargedEnergy*10)>>8)&0xff;
  1349. outBuffer[14] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[idxCHAdeMO].PresentChargedEnergy*10)>>0)&0xff;
  1350. outBuffer[15] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[idxCHAdeMO].PresentChargedDuration)>>8)&0xff;
  1351. outBuffer[16] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[idxCHAdeMO].PresentChargedDuration)>>0)&0xff;
  1352. outBuffer[17] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[idxCHAdeMO].RemainChargingDuration)>>8)&0xff;
  1353. outBuffer[18] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[idxCHAdeMO].RemainChargingDuration)>>0)&0xff;
  1354. outBuffer[19] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[idxCHAdeMO].EvBatterySoc)>>0)&0xff;
  1355. break;
  1356. case 'U':
  1357. case 'E':
  1358. // CCS
  1359. outBuffer[6] = ShmSysConfigAndInfo->SysInfo.CcsChargingData[idxCCS].SystemStatus;
  1360. outBuffer[7] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.CcsChargingData[idxCCS].PresentChargingVoltage*10)>>8)&0xff;
  1361. outBuffer[8] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.CcsChargingData[idxCCS].PresentChargingVoltage*10)>>0)&0xff;
  1362. outBuffer[9] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.CcsChargingData[idxCCS].PresentChargingCurrent*10)>>8)&0xff;
  1363. outBuffer[10] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.CcsChargingData[idxCCS].PresentChargingCurrent*10)>>0)&0xff;
  1364. outBuffer[11] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.CcsChargingData[idxCCS].PresentChargingPower*10)>>8)&0xff;
  1365. outBuffer[12] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.CcsChargingData[idxCCS].PresentChargingPower*10)>>0)&0xff;
  1366. outBuffer[13] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.CcsChargingData[idxCCS].PresentChargedEnergy*10)>>8)&0xff;
  1367. outBuffer[14] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.CcsChargingData[idxCCS].PresentChargedEnergy*10)>>0)&0xff;
  1368. outBuffer[15] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.CcsChargingData[idxCCS].PresentChargedDuration)>>8)&0xff;
  1369. outBuffer[16] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.CcsChargingData[idxCCS].PresentChargedDuration)>>0)&0xff;
  1370. outBuffer[17] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.CcsChargingData[idxCCS].RemainChargingDuration)>>8)&0xff;
  1371. outBuffer[18] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.CcsChargingData[idxCCS].RemainChargingDuration)>>0)&0xff;
  1372. outBuffer[19] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.CcsChargingData[idxCCS].EvBatterySoc)>>0)&0xff;
  1373. break;
  1374. case 'G':
  1375. // GBT
  1376. outBuffer[6] = ShmSysConfigAndInfo->SysInfo.GbChargingData[idxGBT].SystemStatus;
  1377. outBuffer[7] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.GbChargingData[idxGBT].PresentChargingVoltage*10)>>8)&0xff;
  1378. outBuffer[8] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.GbChargingData[idxGBT].PresentChargingVoltage*10)>>0)&0xff;
  1379. outBuffer[9] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.GbChargingData[idxGBT].PresentChargingCurrent*10)>>8)&0xff;
  1380. outBuffer[10] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.GbChargingData[idxGBT].PresentChargingCurrent*10)>>0)&0xff;
  1381. outBuffer[11] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.GbChargingData[idxGBT].PresentChargingPower*10)>>8)&0xff;
  1382. outBuffer[12] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.GbChargingData[idxGBT].PresentChargingPower*10)>>0)&0xff;
  1383. outBuffer[13] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.GbChargingData[idxGBT].PresentChargedEnergy*10)>>8)&0xff;
  1384. outBuffer[14] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.GbChargingData[idxGBT].PresentChargedEnergy*10)>>0)&0xff;
  1385. outBuffer[15] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.GbChargingData[idxGBT].PresentChargedDuration)>>8)&0xff;
  1386. outBuffer[16] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.GbChargingData[idxGBT].PresentChargedDuration)>>0)&0xff;
  1387. outBuffer[17] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.GbChargingData[idxGBT].RemainChargingDuration)>>8)&0xff;
  1388. outBuffer[18] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.GbChargingData[idxGBT].RemainChargingDuration)>>0)&0xff;
  1389. outBuffer[19] = ((uint16_t)(ShmSysConfigAndInfo->SysInfo.GbChargingData[idxGBT].EvBatterySoc)>>0)&0xff;
  1390. break;
  1391. default:
  1392. break;
  1393. }
  1394. }
  1395. }
  1396. void getConnectorSchedule(uint8_t gun_index, uint8_t *outBuffer)
  1397. {
  1398. uint8_t idxAC = 0;
  1399. uint8_t idxCCS = 0;
  1400. uint8_t idxCHAdeMO = 0;
  1401. uint8_t idxGBT = 0;
  1402. uint8_t AC_GUN_IDX = 0;
  1403. if(ShmSysConfigAndInfo->SysConfig.ModelName[0] == 'A')
  1404. {
  1405. if(gun_index == 2)
  1406. {
  1407. AC_GUN_IDX = 0;
  1408. }
  1409. else if(gun_index == 1)
  1410. {
  1411. AC_GUN_IDX = 1;
  1412. }
  1413. else if(gun_index == 0)
  1414. {
  1415. AC_GUN_IDX = 2;
  1416. }
  1417. for(uint8_t idx=0;idx<AC_GUN_IDX;idx++)
  1418. {
  1419. switch(ShmSysConfigAndInfo->SysConfig.ModelName[9-idx])
  1420. {
  1421. case '1' ... '6':
  1422. idxAC++;
  1423. break;
  1424. }
  1425. }
  1426. }
  1427. else if(ShmSysConfigAndInfo->SysConfig.ModelName[0] == 'D')
  1428. {
  1429. for(uint8_t idx=0;idx<gun_index;idx++)
  1430. {
  1431. switch(ShmSysConfigAndInfo->SysConfig.ModelName[7+idx])
  1432. {
  1433. case '1' ... '6':
  1434. idxAC++;
  1435. break;
  1436. case 'J':
  1437. idxCHAdeMO++;
  1438. break;
  1439. case 'U':
  1440. case 'E':
  1441. idxCCS++;
  1442. break;
  1443. case 'G':
  1444. idxGBT++;
  1445. break;
  1446. }
  1447. }
  1448. }
  1449. /*
  1450. * TODO:
  1451. * 1. Connector schedule get
  1452. */
  1453. }
  1454. uint8_t startConnectorCharging(uint8_t gun_index)
  1455. {
  1456. uint8_t idxAC = 0;
  1457. uint8_t idxCCS = 0;
  1458. uint8_t idxCHAdeMO = 0;
  1459. uint8_t idxGBT = 0;
  1460. uint8_t result = OFF;
  1461. uint8_t AC_GUN_IDX = 0;
  1462. if(ShmSysConfigAndInfo->SysConfig.ModelName[0] == 'A')
  1463. {
  1464. if(gun_index == 2)
  1465. {
  1466. AC_GUN_IDX = 0;
  1467. }
  1468. else if(gun_index == 1)
  1469. {
  1470. AC_GUN_IDX = 1;
  1471. }
  1472. else if(gun_index == 0)
  1473. {
  1474. AC_GUN_IDX = 2;
  1475. }
  1476. for(uint8_t idx=0;idx<AC_GUN_IDX;idx++)
  1477. {
  1478. switch(ShmSysConfigAndInfo->SysConfig.ModelName[9-idx])
  1479. {
  1480. case '1' ... '6':
  1481. idxAC++;
  1482. break;
  1483. }
  1484. }
  1485. switch(ShmSysConfigAndInfo->SysConfig.ModelName[9-AC_GUN_IDX])
  1486. {
  1487. case '1' ... '6':
  1488. // AC
  1489. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].SystemStatus == SYS_MODE_IDLE)
  1490. {
  1491. ShmOCPP16Data->CsMsg.bits[idxAC].RemoteStartTransactionReq = ON;
  1492. result = ON;
  1493. }
  1494. break;
  1495. default:
  1496. break;
  1497. }
  1498. return result;
  1499. }
  1500. else if(ShmSysConfigAndInfo->SysConfig.ModelName[0] == 'D')
  1501. {
  1502. for(uint8_t idx=0;idx<gun_index;idx++)
  1503. {
  1504. switch(ShmSysConfigAndInfo->SysConfig.ModelName[7+idx])
  1505. {
  1506. case '1' ... '6':
  1507. idxAC++;
  1508. break;
  1509. case 'J':
  1510. idxCHAdeMO++;
  1511. break;
  1512. case 'U':
  1513. case 'E':
  1514. idxCCS++;
  1515. break;
  1516. case 'G':
  1517. idxGBT++;
  1518. break;
  1519. }
  1520. }
  1521. switch(ShmSysConfigAndInfo->SysConfig.ModelName[7+gun_index])
  1522. {
  1523. case '1' ... '6':
  1524. // AC
  1525. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].SystemStatus == SYS_MODE_IDLE)
  1526. {
  1527. ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStartTransactionReq = ON;
  1528. DEBUG_INFO("AC : %d...\r\n", ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStartTransactionReq);
  1529. result = ON;
  1530. }
  1531. break;
  1532. case 'J':
  1533. // CHAdeMO
  1534. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[idxCHAdeMO].SystemStatus == SYS_MODE_IDLE)
  1535. {
  1536. ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStartTransactionReq = ON;
  1537. DEBUG_INFO("CHAdeMO : %d...\r\n", ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStartTransactionReq);
  1538. result = ON;
  1539. }
  1540. break;
  1541. case 'U':
  1542. case 'E':
  1543. // CCS
  1544. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[idxCCS].SystemStatus == SYS_MODE_IDLE)
  1545. {
  1546. ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStartTransactionReq = ON;
  1547. DEBUG_INFO("CCS : %d...\r\n", ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStartTransactionReq);
  1548. result = ON;
  1549. }
  1550. break;
  1551. case 'G':
  1552. // GBT
  1553. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[idxGBT].SystemStatus == SYS_MODE_IDLE)
  1554. {
  1555. ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStartTransactionReq = ON;
  1556. DEBUG_INFO("GBT : %d...\r\n", ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStartTransactionReq);
  1557. result = ON;
  1558. }
  1559. break;
  1560. default:
  1561. break;
  1562. }
  1563. }
  1564. return result;
  1565. }
  1566. uint8_t stopConnectorCharging(uint8_t gun_index)
  1567. {
  1568. uint8_t idxAC = 0;
  1569. uint8_t idxCCS = 0;
  1570. uint8_t idxCHAdeMO = 0;
  1571. uint8_t idxGBT = 0;
  1572. uint8_t result = OFF;
  1573. uint8_t AC_GUN_IDX = 0;
  1574. if(ShmSysConfigAndInfo->SysConfig.ModelName[0] == 'A')
  1575. {
  1576. if(gun_index == 2)
  1577. {
  1578. AC_GUN_IDX = 0;
  1579. }
  1580. else if(gun_index == 1)
  1581. {
  1582. AC_GUN_IDX = 1;
  1583. }
  1584. else if(gun_index == 0)
  1585. {
  1586. AC_GUN_IDX = 2;
  1587. }
  1588. for(uint8_t idx=0;idx<AC_GUN_IDX;idx++)
  1589. {
  1590. switch(ShmSysConfigAndInfo->SysConfig.ModelName[9-idx])
  1591. {
  1592. case '1' ... '6':
  1593. idxAC++;
  1594. break;
  1595. }
  1596. }
  1597. switch(ShmSysConfigAndInfo->SysConfig.ModelName[9-AC_GUN_IDX])
  1598. {
  1599. case '1' ... '6':
  1600. // AC
  1601. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].SystemStatus != SYS_MODE_IDLE)
  1602. {
  1603. ShmOCPP16Data->CsMsg.bits[idxAC].RemoteStopTransactionReq = ON;
  1604. result = ON;
  1605. }
  1606. break;
  1607. default:
  1608. break;
  1609. }
  1610. return result;
  1611. }
  1612. else if(ShmSysConfigAndInfo->SysConfig.ModelName[0] == 'D')
  1613. {
  1614. for(uint8_t idx=0;idx<gun_index;idx++)
  1615. {
  1616. switch(ShmSysConfigAndInfo->SysConfig.ModelName[7+idx])
  1617. {
  1618. case '1' ... '6':
  1619. idxAC++;
  1620. break;
  1621. case 'J':
  1622. idxCHAdeMO++;
  1623. break;
  1624. case 'U':
  1625. case 'E':
  1626. idxCCS++;
  1627. break;
  1628. case 'G':
  1629. idxGBT++;
  1630. break;
  1631. }
  1632. }
  1633. switch(ShmSysConfigAndInfo->SysConfig.ModelName[7+gun_index])
  1634. {
  1635. case '1' ... '6':
  1636. // AC
  1637. if(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].SystemStatus != SYS_MODE_IDLE)
  1638. {
  1639. ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStopTransactionReq = ON;
  1640. result = ON;
  1641. }
  1642. break;
  1643. case 'J':
  1644. // CHAdeMO
  1645. if(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[idxCHAdeMO].SystemStatus != SYS_MODE_IDLE)
  1646. {
  1647. ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStopTransactionReq = ON;
  1648. result = ON;
  1649. }
  1650. break;
  1651. case 'U':
  1652. case 'E':
  1653. // CCS
  1654. if(ShmSysConfigAndInfo->SysInfo.CcsChargingData[idxCCS].SystemStatus != SYS_MODE_IDLE)
  1655. {
  1656. ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStopTransactionReq = ON;
  1657. result = ON;
  1658. }
  1659. break;
  1660. case 'G':
  1661. // GBT
  1662. if(ShmSysConfigAndInfo->SysInfo.GbChargingData[idxGBT].SystemStatus != SYS_MODE_IDLE)
  1663. {
  1664. ShmOCPP16Data->CsMsg.bits[gun_index].RemoteStopTransactionReq = ON;
  1665. result = ON;
  1666. }
  1667. break;
  1668. default:
  1669. break;
  1670. }
  1671. }
  1672. return result;
  1673. }
  1674. void setConnectorSchedule(uint8_t gun_index, uint8_t *inputBuffer)
  1675. {
  1676. uint8_t idxAC = 0;
  1677. uint8_t idxCCS = 0;
  1678. uint8_t idxCHAdeMO = 0;
  1679. uint8_t idxGBT = 0;
  1680. uint8_t AC_GUN_IDX = 0;
  1681. if(ShmSysConfigAndInfo->SysConfig.ModelName[0] == 'A')
  1682. {
  1683. if(gun_index == 2)
  1684. {
  1685. AC_GUN_IDX = 0;
  1686. }
  1687. else if(gun_index == 1)
  1688. {
  1689. AC_GUN_IDX = 1;
  1690. }
  1691. else if(gun_index == 0)
  1692. {
  1693. AC_GUN_IDX = 2;
  1694. }
  1695. for(uint8_t idx=0;idx<AC_GUN_IDX;idx++)
  1696. {
  1697. switch(ShmSysConfigAndInfo->SysConfig.ModelName[9-idx])
  1698. {
  1699. case '1' ... '6':
  1700. idxAC++;
  1701. break;
  1702. }
  1703. }
  1704. }
  1705. else if(ShmSysConfigAndInfo->SysConfig.ModelName[0] == 'D')
  1706. {
  1707. for(uint8_t idx=0;idx<gun_index;idx++)
  1708. {
  1709. switch(ShmSysConfigAndInfo->SysConfig.ModelName[7+idx])
  1710. {
  1711. case '1' ... '6':
  1712. idxAC++;
  1713. break;
  1714. case 'J':
  1715. idxCHAdeMO++;
  1716. break;
  1717. case 'U':
  1718. case 'E':
  1719. idxCCS++;
  1720. break;
  1721. case 'G':
  1722. idxGBT++;
  1723. break;
  1724. }
  1725. }
  1726. }
  1727. /*
  1728. * TODO:
  1729. * 1. Connector schedule configuration
  1730. */
  1731. }
  1732. void getConnectorUser(uint8_t gun_index, uint8_t *outBuffer)
  1733. {
  1734. uint8_t idxAC = 0;
  1735. uint8_t idxCCS = 0;
  1736. uint8_t idxCHAdeMO = 0;
  1737. uint8_t idxGBT = 0;
  1738. uint8_t AC_GUN_IDX = 0;
  1739. if(ShmSysConfigAndInfo->SysConfig.ModelName[0] == 'A')
  1740. {
  1741. if(gun_index == 2)
  1742. {
  1743. AC_GUN_IDX = 0;
  1744. }
  1745. else if(gun_index == 1)
  1746. {
  1747. AC_GUN_IDX = 1;
  1748. }
  1749. else if(gun_index == 0)
  1750. {
  1751. AC_GUN_IDX = 2;
  1752. }
  1753. for(uint8_t idx=0;idx<AC_GUN_IDX;idx++)
  1754. {
  1755. switch(ShmSysConfigAndInfo->SysConfig.ModelName[9-idx])
  1756. {
  1757. case '1' ... '6':
  1758. idxAC++;
  1759. break;
  1760. }
  1761. }
  1762. switch(ShmSysConfigAndInfo->SysConfig.ModelName[9-AC_GUN_IDX])
  1763. {
  1764. case '1' ... '6':
  1765. // AC
  1766. outBuffer[6] = ((ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].SystemStatus == SYS_MODE_IDLE)?0x01:0x00);
  1767. memcpy(&outBuffer[7], ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].StartUserId, ARRAY_SIZE(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].StartUserId));
  1768. break;
  1769. default:
  1770. break;
  1771. }
  1772. }
  1773. else if(ShmSysConfigAndInfo->SysConfig.ModelName[0] == 'D')
  1774. {
  1775. for(uint8_t idx=0;idx<gun_index;idx++)
  1776. {
  1777. switch(ShmSysConfigAndInfo->SysConfig.ModelName[7+idx])
  1778. {
  1779. case '1' ... '6':
  1780. idxAC++;
  1781. break;
  1782. case 'J':
  1783. idxCHAdeMO++;
  1784. break;
  1785. case 'U':
  1786. case 'E':
  1787. idxCCS++;
  1788. break;
  1789. case 'G':
  1790. idxGBT++;
  1791. break;
  1792. }
  1793. }
  1794. switch(ShmSysConfigAndInfo->SysConfig.ModelName[7+gun_index])
  1795. {
  1796. case '1' ... '6':
  1797. // AC
  1798. outBuffer[6] = ((ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].SystemStatus == SYS_MODE_IDLE)?0x01:0x00);
  1799. memcpy(&outBuffer[7], ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].StartUserId, ARRAY_SIZE(ShmSysConfigAndInfo->SysInfo.AcChargingData[idxAC].StartUserId));
  1800. break;
  1801. case 'J':
  1802. // CHAdeMO
  1803. outBuffer[6] = ((ShmSysConfigAndInfo->SysInfo.ChademoChargingData[idxCHAdeMO].SystemStatus == SYS_MODE_IDLE)?0x01:0x00);
  1804. memcpy(&outBuffer[7], ShmSysConfigAndInfo->SysInfo.ChademoChargingData[idxCHAdeMO].StartUserId, ARRAY_SIZE(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[idxCHAdeMO].StartUserId));
  1805. break;
  1806. case 'U':
  1807. case 'E':
  1808. // CCS
  1809. outBuffer[6] = ((ShmSysConfigAndInfo->SysInfo.CcsChargingData[idxCCS].SystemStatus == SYS_MODE_IDLE)?0x01:0x00);
  1810. memcpy(&outBuffer[7], ShmSysConfigAndInfo->SysInfo.CcsChargingData[idxCCS].StartUserId, ARRAY_SIZE(ShmSysConfigAndInfo->SysInfo.CcsChargingData[idxCCS].StartUserId));
  1811. break;
  1812. case 'G':
  1813. // GBT
  1814. outBuffer[6] = ((ShmSysConfigAndInfo->SysInfo.GbChargingData[idxGBT].SystemStatus == SYS_MODE_IDLE)?0x01:0x00);
  1815. memcpy(&outBuffer[7], ShmSysConfigAndInfo->SysInfo.GbChargingData[idxGBT].StartUserId, ARRAY_SIZE(ShmSysConfigAndInfo->SysInfo.GbChargingData[idxGBT].StartUserId));
  1816. break;
  1817. default:
  1818. break;
  1819. }
  1820. }
  1821. }
  1822. int tcpSocketServerStart(void)
  1823. {
  1824. int sockFd = 0;
  1825. int clientSockFd = 0;
  1826. uint8_t inputBuffer[2048] = {};
  1827. uint8_t outBuffer[2048] = {};
  1828. int16_t read_size;
  1829. int16_t tx_size;
  1830. uint32_t randomChk;
  1831. struct sockaddr_in serverInfo, clientInfo;
  1832. socklen_t addrlen = sizeof(clientInfo);
  1833. uint8_t cmdBuf[512];
  1834. time_t rawtime;
  1835. struct tm ts;
  1836. sockFd = socket(AF_INET , SOCK_STREAM , 0);
  1837. if(sockFd == -1)
  1838. {
  1839. DEBUG_ERROR("InitSocketServer NG\n");
  1840. sleep(5);
  1841. return FAIL;
  1842. }
  1843. bzero(&serverInfo,sizeof(serverInfo));
  1844. serverInfo.sin_family = PF_INET;
  1845. serverInfo.sin_addr.s_addr = htonl(INADDR_ANY);
  1846. serverInfo.sin_port = htons(LISTEN_PORT_TCP);
  1847. bind(sockFd, (struct sockaddr *)&serverInfo, sizeof(serverInfo));
  1848. listen(sockFd, CONNECTION_LIMIT);
  1849. // Main loop
  1850. for(;;)
  1851. {
  1852. clientSockFd = accept(sockFd, (struct sockaddr*) &clientInfo, &addrlen);
  1853. DEBUG_INFO("Client connect in.\r\n");
  1854. DEBUG_INFO("clientSockFd : %d...\r\n", clientSockFd);
  1855. // Copy ShmSysConfigAndInfo to SysConfigTemporarily
  1856. memcpy(&SysConfigTemporarily, &ShmSysConfigAndInfo->SysConfig, sizeof(struct SysConfigData));
  1857. while((read_size = recv(clientSockFd, inputBuffer, sizeof(inputBuffer), 0)) > 0)
  1858. {
  1859. displayMessage(inputBuffer, read_size, YES);
  1860. if(isValidCheckSum(inputBuffer) && (randomChk != ((inputBuffer[4]<<24) | (inputBuffer[5]<<16) | (inputBuffer[6]<<8) | (inputBuffer[7]<<0))))
  1861. {
  1862. randomChk = ((inputBuffer[4]<<24) | (inputBuffer[5]<<16) | (inputBuffer[6]<<8) | (inputBuffer[7]<<0));
  1863. memset(outBuffer, 0x00, sizeof(outBuffer));
  1864. switch(inputBuffer[8])
  1865. {
  1866. case WIFI_CMD_LOGIN_SIGNIN:
  1867. memset(&wifi_login_info.loginId[0], 0x00, ARRAY_SIZE(wifi_login_info.loginId));
  1868. memcpy((char*)&wifi_login_info.loginId[0], (char*)&inputBuffer[9], (((inputBuffer[2] << 8)| inputBuffer[3])-6));
  1869. wifi_login_info.loginRole = loginValid(localDb);
  1870. DEBUG_INFO("Login user id: %s\r\n", wifi_login_info.loginId);
  1871. DEBUG_INFO("User id: %d\r\n", wifi_login_info.loginRole);
  1872. tx_size = 7;
  1873. outBuffer[0] = 0xff;
  1874. outBuffer[1] = 0xff;
  1875. outBuffer[2] = 0x00;
  1876. outBuffer[3] = 0x03;
  1877. outBuffer[4] = WIFI_CMD_LOGIN_SIGNIN;
  1878. switch(wifi_login_info.loginRole)
  1879. {
  1880. case ROLE_MANAGER:
  1881. case ROLE_USER:
  1882. // Login success
  1883. outBuffer[5] = 0x02;
  1884. break;
  1885. case ROLE_UNKNOWN:
  1886. default:
  1887. if(!isPukReg(localDb))
  1888. {
  1889. // Login fail, PUK never be registered
  1890. outBuffer[5] = 0x01;
  1891. }
  1892. else
  1893. {
  1894. // Login fail
  1895. outBuffer[5] = 0x00;
  1896. }
  1897. break;
  1898. }
  1899. outBuffer[6] = chksumCal(outBuffer);
  1900. break;
  1901. case WIFI_CMD_LOGIN_AUTH_PUK:
  1902. if(!isPukReg(localDb))
  1903. {
  1904. // PUK never be registered
  1905. if((wifi_login_info.puk[0] == inputBuffer[9]) &&
  1906. (wifi_login_info.puk[1] == inputBuffer[10]) &&
  1907. (wifi_login_info.puk[2] == inputBuffer[11]) &&
  1908. (wifi_login_info.puk[3] == inputBuffer[12]) &&
  1909. (wifi_login_info.puk[4] == inputBuffer[13]) &&
  1910. (wifi_login_info.puk[5] == inputBuffer[14]) &&
  1911. (wifi_login_info.puk[6] == inputBuffer[15]) &&
  1912. (wifi_login_info.puk[7] == inputBuffer[16]))
  1913. {
  1914. // PUK valid success
  1915. if(PukReg(localDb))
  1916. {
  1917. // PUK registered success
  1918. tx_size = 7 + strlen((char*)wifi_login_info.loginId);
  1919. outBuffer[0] = 0xff;
  1920. outBuffer[1] = 0xff;
  1921. outBuffer[2] = ((0x03 + strlen((char*)wifi_login_info.loginId))>>8)&0xff;
  1922. outBuffer[3] = (0x03 + strlen((char*)wifi_login_info.loginId)) & 0xff;
  1923. outBuffer[4] = WIFI_CMD_LOGIN_AUTH_PUK;
  1924. outBuffer[5] = 0x01;
  1925. memcpy(&outBuffer[6], wifi_login_info.loginId, strlen((char*)wifi_login_info.loginId));
  1926. outBuffer[6+strlen((char*)wifi_login_info.loginId)] = chksumCal(outBuffer);
  1927. }
  1928. else
  1929. {
  1930. // PUK registered fail
  1931. tx_size = 7;
  1932. outBuffer[0] = 0xff;
  1933. outBuffer[1] = 0xff;
  1934. outBuffer[2] = 0x00;
  1935. outBuffer[3] = 0x03;
  1936. outBuffer[4] = WIFI_CMD_LOGIN_AUTH_PUK;
  1937. outBuffer[5] = 0x00;
  1938. outBuffer[6] = chksumCal(outBuffer);
  1939. }
  1940. }
  1941. else
  1942. {
  1943. // PUK valid fail
  1944. tx_size = 7;
  1945. outBuffer[0] = 0xff;
  1946. outBuffer[1] = 0xff;
  1947. outBuffer[2] = 0x00;
  1948. outBuffer[3] = 0x03;
  1949. outBuffer[4] = WIFI_CMD_LOGIN_AUTH_PUK;
  1950. outBuffer[5] = 0x00;
  1951. outBuffer[6] = chksumCal(outBuffer);
  1952. }
  1953. }
  1954. else
  1955. {
  1956. // PUK already be registered
  1957. tx_size = 7;
  1958. outBuffer[0] = 0xff;
  1959. outBuffer[1] = 0xff;
  1960. outBuffer[2] = 0x00;
  1961. outBuffer[3] = 0x03;
  1962. outBuffer[4] = WIFI_CMD_LOGIN_AUTH_PUK;
  1963. outBuffer[5] = 0x02;
  1964. outBuffer[6] = chksumCal(outBuffer);
  1965. }
  1966. break;
  1967. case WIFI_CMD_LOGIN_GET_USER_ID:
  1968. if(wifi_login_info.loginRole != ROLE_UNKNOWN)
  1969. {
  1970. // Login role is Manager or User
  1971. tx_size = 7 + strlen((char*)wifi_login_info.loginId);
  1972. outBuffer[0] = 0xff;
  1973. outBuffer[1] = 0xff;
  1974. outBuffer[2] = ((0x03 + strlen((char*)wifi_login_info.loginId))>>8)&0xff;
  1975. outBuffer[3] = (0x03 + strlen((char*)wifi_login_info.loginId)) & 0xff;
  1976. outBuffer[4] = WIFI_CMD_LOGIN_GET_USER_ID;
  1977. outBuffer[5] = 0x01;
  1978. memcpy(&outBuffer[6], wifi_login_info.loginId, strlen((char*)wifi_login_info.loginId));
  1979. outBuffer[6+strlen((char*)wifi_login_info.loginId)] = chksumCal(outBuffer);
  1980. }
  1981. else
  1982. {
  1983. // Login role is Unknown
  1984. tx_size = 7;
  1985. outBuffer[0] = 0xff;
  1986. outBuffer[1] = 0xff;
  1987. outBuffer[2] = 0x00;
  1988. outBuffer[3] = 0x03;
  1989. outBuffer[4] = WIFI_CMD_LOGIN_GET_USER_ID;
  1990. outBuffer[5] = 0x00;
  1991. outBuffer[6] = chksumCal(outBuffer);
  1992. }
  1993. break;
  1994. case WIFI_CMD_PROTOCOL_VERSION:
  1995. tx_size = 12;
  1996. outBuffer[0] = 0xff;
  1997. outBuffer[1] = 0xff;
  1998. outBuffer[2] = 0x00;
  1999. outBuffer[3] = 0x08;
  2000. outBuffer[4] = WIFI_CMD_PROTOCOL_VERSION;
  2001. outBuffer[5] = (protocol_Version[0] >> 0x00) & 0xff;
  2002. outBuffer[6] = (protocol_Version[0] >> 0x08) & 0xff;
  2003. outBuffer[7] = (protocol_Version[1] >> 0x00) & 0xff;
  2004. outBuffer[8] = (protocol_Version[1] >> 0x08) & 0xff;
  2005. outBuffer[9] = (protocol_Version[2] >> 0x00) & 0xff;
  2006. outBuffer[10] = (protocol_Version[2] >> 0x08) & 0xff;
  2007. outBuffer[11] = chksumCal(outBuffer);
  2008. break;
  2009. case WIFI_CMD_GET_MODEL_NAME:
  2010. tx_size = 70;
  2011. outBuffer[0] = 0xff;
  2012. outBuffer[1] = 0xff;
  2013. outBuffer[2] = 0x00;
  2014. outBuffer[3] = 0x42;
  2015. outBuffer[4] = WIFI_CMD_GET_MODEL_NAME;
  2016. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysConfig.ModelName, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.ModelName));
  2017. outBuffer[69] = chksumCal(outBuffer);
  2018. break;
  2019. case WIFI_CMD_GET_SERIAL_NUMBER:
  2020. tx_size = 70;
  2021. outBuffer[0] = 0xff;
  2022. outBuffer[1] = 0xff;
  2023. outBuffer[2] = 0x00;
  2024. outBuffer[3] = 0x42;
  2025. outBuffer[4] = WIFI_CMD_GET_SERIAL_NUMBER;
  2026. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysConfig.SerialNumber, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.SerialNumber));
  2027. outBuffer[69] = chksumCal(outBuffer);
  2028. break;
  2029. case WIFI_CMD_GET_SYSTEM_TIME:
  2030. tx_size = 10;
  2031. outBuffer[0] = 0xff;
  2032. outBuffer[1] = 0xff;
  2033. outBuffer[2] = 0x00;
  2034. outBuffer[3] = 0x06;
  2035. outBuffer[4] = WIFI_CMD_GET_SYSTEM_TIME;
  2036. outBuffer[5] = (time(NULL)>>24)&0xff;
  2037. outBuffer[6] = (time(NULL)>>16)&0xff;
  2038. outBuffer[7] = (time(NULL)>>8)&0xff;
  2039. outBuffer[8] = (time(NULL)>>0)&0xff;
  2040. outBuffer[9] = chksumCal(outBuffer);
  2041. break;
  2042. case WIFI_CMD_GET_WHITE_CARD:
  2043. tx_size = 40;
  2044. outBuffer[0] = 0xff;
  2045. outBuffer[1] = 0xff;
  2046. outBuffer[2] = 0x00;
  2047. outBuffer[3] = 0x24;
  2048. outBuffer[4] = WIFI_CMD_GET_WHITE_CARD;
  2049. outBuffer[5] = inputBuffer[9];
  2050. outBuffer[6] = ((strlen((char*)ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[inputBuffer[9]])>0)?0x00:0x01);
  2051. memcpy(&outBuffer[7], ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[inputBuffer[9]], ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[inputBuffer[9]]));
  2052. outBuffer[39] = chksumCal(outBuffer);
  2053. break;
  2054. case WIFI_CMD_GET_SYS_ALARM_CODE:
  2055. tx_size = 70;
  2056. outBuffer[0] = 0xff;
  2057. outBuffer[1] = 0xff;
  2058. outBuffer[2] = 0x00;
  2059. outBuffer[3] = 0x42;
  2060. outBuffer[4] = WIFI_CMD_GET_SYS_ALARM_CODE;
  2061. memcpy(&outBuffer[5], ShmStatusCodeData->FaultCode.FaultEvents.FaultVal, ARRAY_SIZE(ShmStatusCodeData->FaultCode.FaultEvents.FaultVal));
  2062. memcpy(&outBuffer[13], ShmStatusCodeData->AlarmCode.AlarmEvents.AlarmVal, ARRAY_SIZE(ShmStatusCodeData->AlarmCode.AlarmEvents.AlarmVal));
  2063. memcpy(&outBuffer[29], ShmStatusCodeData->InfoCode.InfoEvents.InfoVal, ARRAY_SIZE(ShmStatusCodeData->InfoCode.InfoEvents.InfoVal));
  2064. outBuffer[69] = chksumCal(outBuffer);
  2065. break;
  2066. case WIFI_CMD_GET_SYS_ID:
  2067. tx_size = 70;
  2068. outBuffer[0] = 0xff;
  2069. outBuffer[1] = 0xff;
  2070. outBuffer[2] = 0x00;
  2071. outBuffer[3] = 0x42;
  2072. outBuffer[4] = WIFI_CMD_GET_SYS_ID;
  2073. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysConfig.SystemId, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.SystemId));
  2074. outBuffer[69] = chksumCal(outBuffer);
  2075. break;
  2076. case WIFI_CMD_GET_RATING_CURRENT:
  2077. tx_size = 10;
  2078. outBuffer[0] = 0xff;
  2079. outBuffer[1] = 0xff;
  2080. outBuffer[2] = 0x00;
  2081. outBuffer[3] = 0x06;
  2082. outBuffer[4] = WIFI_CMD_GET_RATING_CURRENT;
  2083. outBuffer[5] = (ShmSysConfigAndInfo->SysConfig.RatingCurrent>>0x08) & 0xff;
  2084. outBuffer[6] = (ShmSysConfigAndInfo->SysConfig.RatingCurrent>>0x00) & 0xff;
  2085. outBuffer[7] = (ShmSysConfigAndInfo->SysConfig.AcRatingCurrent>>0x08) & 0xff;
  2086. outBuffer[8] = (ShmSysConfigAndInfo->SysConfig.AcRatingCurrent>>0x00) & 0xff;
  2087. outBuffer[9] = chksumCal(outBuffer);
  2088. break;
  2089. case WIFI_CMD_GET_VER_RFS:
  2090. tx_size = 38;
  2091. outBuffer[0] = 0xff;
  2092. outBuffer[1] = 0xff;
  2093. outBuffer[2] = 0x00;
  2094. outBuffer[3] = 0x22;
  2095. outBuffer[4] = WIFI_CMD_GET_VER_RFS;
  2096. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev, ARRAY_SIZE(ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev));
  2097. outBuffer[37] = chksumCal(outBuffer);
  2098. break;
  2099. case WIFI_CMD_GET_VER_PRIMARY_CSU:
  2100. tx_size = 38;
  2101. outBuffer[0] = 0xff;
  2102. outBuffer[1] = 0xff;
  2103. outBuffer[2] = 0x00;
  2104. outBuffer[3] = 0x22;
  2105. outBuffer[4] = WIFI_CMD_GET_VER_PRIMARY_CSU;
  2106. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev, ARRAY_SIZE(ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev));
  2107. outBuffer[37] = chksumCal(outBuffer);
  2108. break;
  2109. case WIFI_CMD_GET_VER_LCM:
  2110. tx_size = 38;
  2111. outBuffer[0] = 0xff;
  2112. outBuffer[1] = 0xff;
  2113. outBuffer[2] = 0x00;
  2114. outBuffer[3] = 0x22;
  2115. outBuffer[4] = WIFI_CMD_GET_VER_LCM;
  2116. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysInfo.LcmHwRev, ARRAY_SIZE(ShmSysConfigAndInfo->SysInfo.LcmHwRev));
  2117. outBuffer[37] = chksumCal(outBuffer);
  2118. break;
  2119. case WIFI_CMD_GET_PSU_COUNT:
  2120. tx_size = 7;
  2121. outBuffer[0] = 0xff;
  2122. outBuffer[1] = 0xff;
  2123. outBuffer[2] = 0x00;
  2124. outBuffer[3] = 0x03;
  2125. outBuffer[4] = WIFI_CMD_GET_PSU_COUNT;
  2126. outBuffer[5] = ShmPsuData->SystemPresentPsuQuantity;
  2127. outBuffer[6] = chksumCal(outBuffer);
  2128. break;
  2129. case WIFI_CMD_GET_VER_PSU:
  2130. tx_size = 39;
  2131. outBuffer[0] = 0xff;
  2132. outBuffer[1] = 0xff;
  2133. outBuffer[2] = 0x00;
  2134. outBuffer[3] = 0x23;
  2135. outBuffer[4] = WIFI_CMD_GET_VER_PSU;
  2136. outBuffer[5] = inputBuffer[9];
  2137. memcpy(&outBuffer[6], ShmPsuData->PsuVersion[inputBuffer[9]].FwPrimaryVersion, ARRAY_SIZE(ShmPsuData->PsuVersion[inputBuffer[9]].FwPrimaryVersion));
  2138. memcpy(&outBuffer[22], ShmPsuData->PsuVersion[inputBuffer[9]].FwSecondVersion, ARRAY_SIZE(ShmPsuData->PsuVersion[inputBuffer[9]].FwSecondVersion));
  2139. outBuffer[38] = chksumCal(outBuffer);
  2140. break;
  2141. case WIFI_CMD_GET_VER_AUX_POWER:
  2142. tx_size = 38;
  2143. outBuffer[0] = 0xff;
  2144. outBuffer[1] = 0xff;
  2145. outBuffer[2] = 0x00;
  2146. outBuffer[3] = 0x22;
  2147. outBuffer[4] = WIFI_CMD_GET_VER_AUX_POWER;
  2148. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysInfo.AuxPwrFwRev, ARRAY_SIZE(ShmSysConfigAndInfo->SysInfo.AuxPwrFwRev));
  2149. outBuffer[37] = chksumCal(outBuffer);
  2150. break;
  2151. case WIFI_CMD_GET_VER_FAN:
  2152. tx_size = 38;
  2153. outBuffer[0] = 0xff;
  2154. outBuffer[1] = 0xff;
  2155. outBuffer[2] = 0x00;
  2156. outBuffer[3] = 0x22;
  2157. outBuffer[4] = WIFI_CMD_GET_VER_FAN;
  2158. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysInfo.FanModuleFwRev, ARRAY_SIZE(ShmSysConfigAndInfo->SysInfo.FanModuleFwRev));
  2159. outBuffer[37] = chksumCal(outBuffer);
  2160. break;
  2161. case WIFI_CMD_GET_VER_RELAY:
  2162. tx_size = 38;
  2163. outBuffer[0] = 0xff;
  2164. outBuffer[1] = 0xff;
  2165. outBuffer[2] = 0x00;
  2166. outBuffer[3] = 0x22;
  2167. outBuffer[4] = WIFI_CMD_GET_VER_RELAY;
  2168. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysInfo.RelayModuleFwRev, ARRAY_SIZE(ShmSysConfigAndInfo->SysInfo.RelayModuleFwRev));
  2169. outBuffer[37] = chksumCal(outBuffer);
  2170. break;
  2171. case WIFI_CMD_GET_VER_TELECOMM:
  2172. tx_size = 38;
  2173. outBuffer[0] = 0xff;
  2174. outBuffer[1] = 0xff;
  2175. outBuffer[2] = 0x00;
  2176. outBuffer[3] = 0x22;
  2177. outBuffer[4] = WIFI_CMD_GET_VER_TELECOMM;
  2178. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSoftwareVer, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSoftwareVer));
  2179. outBuffer[37] = chksumCal(outBuffer);
  2180. break;
  2181. case WIFI_CMD_GET_EVSE_CONFIG:
  2182. tx_size = 16;
  2183. outBuffer[0] = 0xff;
  2184. outBuffer[1] = 0xff;
  2185. outBuffer[2] = 0x00;
  2186. outBuffer[3] = 0x0C;
  2187. outBuffer[4] = WIFI_CMD_GET_EVSE_CONFIG;
  2188. outBuffer[5] = (ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy>>0x08) & 0xff;
  2189. outBuffer[6] = (ShmSysConfigAndInfo->SysConfig.MaxChargingEnergy>>0x00) & 0xff;
  2190. outBuffer[7] = (ShmSysConfigAndInfo->SysConfig.MaxChargingPower>>0x08) & 0xff;
  2191. outBuffer[8] = (ShmSysConfigAndInfo->SysConfig.MaxChargingPower>>0x00) & 0xff;
  2192. outBuffer[9] = (ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent>>0x08) & 0xff;
  2193. outBuffer[10] = (ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent>>0x00) & 0xff;
  2194. outBuffer[11] = (ShmSysConfigAndInfo->SysConfig.MaxChargingDuration>>0x08) & 0xff;
  2195. outBuffer[12] = (ShmSysConfigAndInfo->SysConfig.MaxChargingDuration>>0x00) & 0xff;
  2196. outBuffer[13] = (ShmSysConfigAndInfo->SysConfig.AcMaxChargingCurrent>>0x08) & 0xff;
  2197. outBuffer[14] = (ShmSysConfigAndInfo->SysConfig.AcMaxChargingCurrent>>0x00) & 0xff;
  2198. outBuffer[15] = chksumCal(outBuffer);
  2199. break;
  2200. case WIFI_CMD_GET_GUN_STS:
  2201. tx_size = 21;
  2202. outBuffer[0] = 0xff;
  2203. outBuffer[1] = 0xff;
  2204. outBuffer[2] = 0x00;
  2205. outBuffer[3] = 0x11;
  2206. outBuffer[4] = WIFI_CMD_GET_GUN_STS;
  2207. outBuffer[5] = inputBuffer[9];
  2208. getConnectorInfo(inputBuffer[9], outBuffer);
  2209. outBuffer[20] = chksumCal(outBuffer);
  2210. break;
  2211. case WIFI_CMD_GET_GUN_USER:
  2212. tx_size = 40;
  2213. outBuffer[0] = 0xff;
  2214. outBuffer[1] = 0xff;
  2215. outBuffer[2] = 0x00;
  2216. outBuffer[3] = 0x24;
  2217. outBuffer[4] = WIFI_CMD_GET_GUN_USER;
  2218. outBuffer[5] = inputBuffer[9];
  2219. getConnectorUser(inputBuffer[9], outBuffer);
  2220. outBuffer[39] = chksumCal(outBuffer);
  2221. break;
  2222. case WIFI_CMD_GET_SCHEDULE:
  2223. tx_size = 10;
  2224. outBuffer[0] = 0xff;
  2225. outBuffer[1] = 0xff;
  2226. outBuffer[2] = 0x00;
  2227. outBuffer[3] = 0x06;
  2228. outBuffer[4] = WIFI_CMD_GET_SCHEDULE;
  2229. outBuffer[5] = inputBuffer[9];
  2230. getConnectorSchedule(inputBuffer[9], outBuffer);
  2231. outBuffer[9] = chksumCal(outBuffer);
  2232. break;
  2233. case WIFI_CMD_GET_NETWORK_STS:
  2234. tx_size = 7;
  2235. outBuffer[0] = 0xff;
  2236. outBuffer[1] = 0xff;
  2237. outBuffer[2] = 0x00;
  2238. outBuffer[3] = 0x03;
  2239. outBuffer[4] = WIFI_CMD_GET_NETWORK_STS;
  2240. outBuffer[5] = ShmSysConfigAndInfo->SysInfo.InternetConn;
  2241. outBuffer[6] = chksumCal(outBuffer);
  2242. break;
  2243. case WIFI_CMD_GET_ETH_DHCP:
  2244. tx_size = 7;
  2245. outBuffer[0] = 0xff;
  2246. outBuffer[1] = 0xff;
  2247. outBuffer[2] = 0x00;
  2248. outBuffer[3] = 0x03;
  2249. outBuffer[4] = WIFI_CMD_GET_ETH_DHCP;
  2250. outBuffer[5] = ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthDhcpClient^1;
  2251. outBuffer[6] = chksumCal(outBuffer);
  2252. break;
  2253. case WIFI_CMD_GET_ETH_MAC:
  2254. tx_size = 24;
  2255. outBuffer[0] = 0xff;
  2256. outBuffer[1] = 0xff;
  2257. outBuffer[2] = 0x00;
  2258. outBuffer[3] = 0x14;
  2259. outBuffer[4] = WIFI_CMD_GET_ETH_MAC;
  2260. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthMacAddress, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthMacAddress));
  2261. outBuffer[23] = chksumCal(outBuffer);
  2262. break;
  2263. case WIFI_CMD_GET_ETH_IP:
  2264. tx_size = 22;
  2265. outBuffer[0] = 0xff;
  2266. outBuffer[1] = 0xff;
  2267. outBuffer[2] = 0x00;
  2268. outBuffer[3] = 0x12;
  2269. outBuffer[4] = WIFI_CMD_GET_ETH_IP;
  2270. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress));
  2271. outBuffer[21] = chksumCal(outBuffer);
  2272. break;
  2273. case WIFI_CMD_GET_ETH_SUBMASK:
  2274. tx_size = 22;
  2275. outBuffer[0] = 0xff;
  2276. outBuffer[1] = 0xff;
  2277. outBuffer[2] = 0x00;
  2278. outBuffer[3] = 0x12;
  2279. outBuffer[4] = WIFI_CMD_GET_ETH_SUBMASK;
  2280. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthSubmaskAddress, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthSubmaskAddress));
  2281. outBuffer[21] = chksumCal(outBuffer);
  2282. break;
  2283. case WIFI_CMD_GET_ETH_GATEWAY:
  2284. tx_size = 22;
  2285. outBuffer[0] = 0xff;
  2286. outBuffer[1] = 0xff;
  2287. outBuffer[2] = 0x00;
  2288. outBuffer[3] = 0x12;
  2289. outBuffer[4] = WIFI_CMD_GET_ETH_GATEWAY;
  2290. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthGatewayAddress, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthGatewayAddress));
  2291. outBuffer[21] = chksumCal(outBuffer);
  2292. break;
  2293. case WIFI_CMD_GET_WIFI_MODE:
  2294. tx_size = 7;
  2295. outBuffer[0] = 0xff;
  2296. outBuffer[1] = 0xff;
  2297. outBuffer[2] = 0x00;
  2298. outBuffer[3] = 0x03;
  2299. outBuffer[4] = WIFI_CMD_GET_WIFI_MODE;
  2300. outBuffer[5] = ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode;
  2301. outBuffer[6] = chksumCal(outBuffer);
  2302. break;
  2303. case WIFI_CMD_GET_WIFI_SSID:
  2304. tx_size = 261;
  2305. outBuffer[0] = 0xff;
  2306. outBuffer[1] = 0xff;
  2307. outBuffer[2] = 0x01;
  2308. outBuffer[3] = 0x01;
  2309. outBuffer[4] = WIFI_CMD_GET_WIFI_SSID;
  2310. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid));
  2311. outBuffer[260] = chksumCal(outBuffer);
  2312. break;
  2313. case WIFI_CMD_GET_WIFI_PASSWD:
  2314. tx_size = 261;
  2315. outBuffer[0] = 0xff;
  2316. outBuffer[1] = 0xff;
  2317. outBuffer[2] = 0x01;
  2318. outBuffer[3] = 0x01;
  2319. outBuffer[4] = WIFI_CMD_GET_WIFI_PASSWD;
  2320. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword));
  2321. outBuffer[260] = chksumCal(outBuffer);
  2322. break;
  2323. case WIFI_CMD_GET_WIFI_RSSI:
  2324. tx_size = 7;
  2325. outBuffer[0] = 0xff;
  2326. outBuffer[1] = 0xff;
  2327. outBuffer[2] = 0x00;
  2328. outBuffer[3] = 0x03;
  2329. outBuffer[4] = WIFI_CMD_GET_WIFI_RSSI;
  2330. outBuffer[5] = ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi+100;
  2331. outBuffer[6] = chksumCal(outBuffer);
  2332. break;
  2333. case WIFI_CMD_GET_WIFI_DHCP:
  2334. tx_size = 7;
  2335. outBuffer[0] = 0xff;
  2336. outBuffer[1] = 0xff;
  2337. outBuffer[2] = 0x00;
  2338. outBuffer[3] = 0x03;
  2339. outBuffer[4] = WIFI_CMD_GET_WIFI_DHCP;
  2340. outBuffer[5] = ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient^1;
  2341. outBuffer[6] = chksumCal(outBuffer);
  2342. break;
  2343. case WIFI_CMD_GET_WIFI_MAC:
  2344. tx_size = 24;
  2345. outBuffer[0] = 0xff;
  2346. outBuffer[1] = 0xff;
  2347. outBuffer[2] = 0x00;
  2348. outBuffer[3] = 0x14;
  2349. outBuffer[4] = WIFI_CMD_GET_WIFI_MAC;
  2350. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress));
  2351. outBuffer[23] = chksumCal(outBuffer);
  2352. break;
  2353. case WIFI_CMD_GET_WIFI_IP:
  2354. tx_size = 22;
  2355. outBuffer[0] = 0xff;
  2356. outBuffer[1] = 0xff;
  2357. outBuffer[2] = 0x00;
  2358. outBuffer[3] = 0x12;
  2359. outBuffer[4] = WIFI_CMD_GET_WIFI_IP;
  2360. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress));
  2361. outBuffer[21] = chksumCal(outBuffer);
  2362. break;
  2363. case WIFI_CMD_GET_WIFI_NETMASK:
  2364. tx_size = 22;
  2365. outBuffer[0] = 0xff;
  2366. outBuffer[1] = 0xff;
  2367. outBuffer[2] = 0x00;
  2368. outBuffer[3] = 0x12;
  2369. outBuffer[4] = WIFI_CMD_GET_WIFI_NETMASK;
  2370. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress));
  2371. outBuffer[21] = chksumCal(outBuffer);
  2372. break;
  2373. case WIFI_CMD_GET_WIFI_GATEWAY:
  2374. tx_size = 22;
  2375. outBuffer[0] = 0xff;
  2376. outBuffer[1] = 0xff;
  2377. outBuffer[2] = 0x00;
  2378. outBuffer[3] = 0x12;
  2379. outBuffer[4] = WIFI_CMD_GET_WIFI_GATEWAY;
  2380. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress));
  2381. outBuffer[21] = chksumCal(outBuffer);
  2382. break;
  2383. case WIFI_CMD_GET_TELE_APN:
  2384. tx_size = 262;
  2385. outBuffer[0] = 0xff;
  2386. outBuffer[1] = 0xff;
  2387. outBuffer[2] = 0x01;
  2388. outBuffer[3] = 0x02;
  2389. outBuffer[4] = WIFI_CMD_GET_TELE_APN;
  2390. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn));
  2391. outBuffer[261] = chksumCal(outBuffer);
  2392. break;
  2393. case WIFI_CMD_GET_TELE_RSSI:
  2394. tx_size = 7;
  2395. outBuffer[0] = 0xff;
  2396. outBuffer[1] = 0xff;
  2397. outBuffer[2] = 0x00;
  2398. outBuffer[3] = 0x03;
  2399. outBuffer[4] = WIFI_CMD_GET_TELE_RSSI;
  2400. outBuffer[5] = ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomRssi+100;
  2401. outBuffer[6] = chksumCal(outBuffer);
  2402. break;
  2403. case WIFI_CMD_GET_TELE_CHAP_ID:
  2404. tx_size = 262;
  2405. outBuffer[0] = 0xff;
  2406. outBuffer[1] = 0xff;
  2407. outBuffer[2] = 0x01;
  2408. outBuffer[3] = 0x02;
  2409. outBuffer[4] = WIFI_CMD_GET_TELE_CHAP_ID;
  2410. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId));
  2411. outBuffer[261] = chksumCal(outBuffer);
  2412. break;
  2413. case WIFI_CMD_GET_TELE_CHAP_PASSWD:
  2414. tx_size = 262;
  2415. outBuffer[0] = 0xff;
  2416. outBuffer[1] = 0xff;
  2417. outBuffer[2] = 0x01;
  2418. outBuffer[3] = 0x02;
  2419. outBuffer[4] = WIFI_CMD_GET_TELE_CHAP_PASSWD;
  2420. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd));
  2421. outBuffer[261] = chksumCal(outBuffer);
  2422. break;
  2423. case WIFI_CMD_GET_TELE_IMEI:
  2424. tx_size = 22;
  2425. outBuffer[0] = 0xff;
  2426. outBuffer[1] = 0xff;
  2427. outBuffer[2] = 0x00;
  2428. outBuffer[3] = 0x12;
  2429. outBuffer[4] = WIFI_CMD_GET_TELE_IMEI;
  2430. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemImei, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemImei));
  2431. outBuffer[21] = chksumCal(outBuffer);
  2432. break;
  2433. case WIFI_CMD_GET_TELE_IMSI:
  2434. tx_size = 22;
  2435. outBuffer[0] = 0xff;
  2436. outBuffer[1] = 0xff;
  2437. outBuffer[2] = 0x00;
  2438. outBuffer[3] = 0x12;
  2439. outBuffer[4] = WIFI_CMD_GET_TELE_IMSI;
  2440. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimImsi, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimImsi));
  2441. outBuffer[21] = chksumCal(outBuffer);
  2442. break;
  2443. case WIFI_CMD_GET_TELE_SIM_STS:
  2444. tx_size = 7;
  2445. outBuffer[0] = 0xff;
  2446. outBuffer[1] = 0xff;
  2447. outBuffer[2] = 0x00;
  2448. outBuffer[3] = 0x03;
  2449. outBuffer[4] = WIFI_CMD_GET_TELE_SIM_STS;
  2450. outBuffer[5] = ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimStatus;
  2451. outBuffer[6] = chksumCal(outBuffer);
  2452. break;
  2453. case WIFI_CMD_GET_TELE_MODE:
  2454. tx_size = 7;
  2455. outBuffer[0] = 0xff;
  2456. outBuffer[1] = 0xff;
  2457. outBuffer[2] = 0x00;
  2458. outBuffer[3] = 0x03;
  2459. outBuffer[4] = WIFI_CMD_GET_TELE_MODE;
  2460. outBuffer[5] = ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemMode;
  2461. outBuffer[6] = chksumCal(outBuffer);
  2462. break;
  2463. case WIFI_CMD_GET_TELE_IP:
  2464. tx_size = 22;
  2465. outBuffer[0] = 0xff;
  2466. outBuffer[1] = 0xff;
  2467. outBuffer[2] = 0x00;
  2468. outBuffer[3] = 0x12;
  2469. outBuffer[4] = WIFI_CMD_GET_TELE_IP;
  2470. memcpy(&outBuffer[5], ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress));
  2471. outBuffer[21] = chksumCal(outBuffer);
  2472. break;
  2473. case WIFI_CMD_SET_SYSTEM_TIME:
  2474. rawtime = (inputBuffer[9]<<0) | (inputBuffer[10]<<8) | (inputBuffer[11]<<16) |(inputBuffer[12]<<24);
  2475. ts = *localtime(&rawtime);
  2476. sprintf((char*)cmdBuf, "date -u -s \"%04d-%02d-%02d %02d:%02d:%02d\"", (ts.tm_year+1900),
  2477. (ts.tm_mon+1),
  2478. ts.tm_mday,
  2479. ts.tm_hour,
  2480. ts.tm_min,
  2481. ts.tm_sec);
  2482. system((char*)cmdBuf);
  2483. system("hwclock -w -u");
  2484. system("hwclock -s");
  2485. tx_size = 7;
  2486. outBuffer[0] = 0xff;
  2487. outBuffer[1] = 0xff;
  2488. outBuffer[2] = 0x00;
  2489. outBuffer[3] = 0x03;
  2490. outBuffer[4] = WIFI_CMD_SET_SYSTEM_TIME;
  2491. outBuffer[5] = 0x01;
  2492. outBuffer[6] = chksumCal(outBuffer);
  2493. break;
  2494. case WIFI_CMD_SET_WHITE_CARD:
  2495. if((0<=inputBuffer[9]) && (inputBuffer[9]<10))
  2496. {
  2497. if(inputBuffer[10] == REGISTER)
  2498. {
  2499. // Register white card
  2500. memcpy(SysConfigTemporarily.LocalWhiteCard[inputBuffer[9]], &inputBuffer[11],(((inputBuffer[2] << 8) | inputBuffer[3])-8));
  2501. }
  2502. else if (inputBuffer[10] == CLEAR_REGISTER)
  2503. {
  2504. // Clear register white card
  2505. memset(SysConfigTemporarily.LocalWhiteCard[inputBuffer[9]], 0x00, ARRAY_SIZE(SysConfigTemporarily.LocalWhiteCard[inputBuffer[9]]));
  2506. }
  2507. outBuffer[6] = 0x01;
  2508. }
  2509. else
  2510. {
  2511. outBuffer[6] = 0x00;
  2512. }
  2513. tx_size = 8;
  2514. outBuffer[0] = 0xff;
  2515. outBuffer[1] = 0xff;
  2516. outBuffer[2] = 0x00;
  2517. outBuffer[3] = 0x04;
  2518. outBuffer[4] = WIFI_CMD_SET_WHITE_CARD;
  2519. outBuffer[5] = inputBuffer[9];
  2520. outBuffer[7] = chksumCal(outBuffer);
  2521. break;
  2522. case WIFI_CMD_SET_FACTORY_RESET:
  2523. ShmSysConfigAndInfo->SysInfo.FactoryConfiguration = ON;
  2524. tx_size = 7;
  2525. outBuffer[0] = 0xff;
  2526. outBuffer[1] = 0xff;
  2527. outBuffer[2] = 0x00;
  2528. outBuffer[3] = 0x03;
  2529. outBuffer[4] = WIFI_CMD_SET_FACTORY_RESET;
  2530. outBuffer[5] = 0x01;
  2531. outBuffer[6] = chksumCal(outBuffer);
  2532. break;
  2533. case WIFI_CMD_SET_EVSE_CONFIG:
  2534. if((inputBuffer[9]>>4)&0x01)
  2535. {
  2536. SysConfigTemporarily.AcMaxChargingCurrent = (inputBuffer[18]) | (inputBuffer[19]<<8);
  2537. }
  2538. if((inputBuffer[9]>>3)&0x01)
  2539. {
  2540. SysConfigTemporarily.MaxChargingEnergy = (inputBuffer[10]) | (inputBuffer[11]<<8);
  2541. }
  2542. if((inputBuffer[9]>>2)&0x01)
  2543. {
  2544. SysConfigTemporarily.MaxChargingPower = (inputBuffer[12]) | (inputBuffer[13]<<8);
  2545. }
  2546. if((inputBuffer[9]>>1)&0x01)
  2547. {
  2548. SysConfigTemporarily.MaxChargingCurrent = (inputBuffer[14]) | (inputBuffer[15]<<8);
  2549. }
  2550. if(inputBuffer[9]&0x01)
  2551. {
  2552. SysConfigTemporarily.MaxChargingDuration = (inputBuffer[16]) | (inputBuffer[17]<<8);
  2553. }
  2554. tx_size = 7;
  2555. outBuffer[0] = 0xff;
  2556. outBuffer[1] = 0xff;
  2557. outBuffer[2] = 0x00;
  2558. outBuffer[3] = 0x03;
  2559. outBuffer[4] = WIFI_CMD_SET_EVSE_CONFIG;
  2560. outBuffer[5] = 0x01;
  2561. outBuffer[6] = chksumCal(outBuffer);
  2562. break;
  2563. case WIFI_CMD_SET_CHARGING_START:
  2564. tx_size = 7;
  2565. outBuffer[0] = 0xff;
  2566. outBuffer[1] = 0xff;
  2567. outBuffer[2] = 0x00;
  2568. outBuffer[3] = 0x03;
  2569. outBuffer[4] = WIFI_CMD_SET_CHARGING_START;
  2570. outBuffer[5] = (startConnectorCharging(inputBuffer[9])?0x01:0x00);
  2571. outBuffer[6] = chksumCal(outBuffer);
  2572. break;
  2573. case WIFI_CMD_SET_CHARGING_STOP:
  2574. tx_size = 7;
  2575. outBuffer[0] = 0xff;
  2576. outBuffer[1] = 0xff;
  2577. outBuffer[2] = 0x00;
  2578. outBuffer[3] = 0x03;
  2579. outBuffer[4] = WIFI_CMD_SET_CHARGING_STOP;
  2580. outBuffer[5] = (stopConnectorCharging(inputBuffer[9])?0x01:0x00);
  2581. outBuffer[6] = chksumCal(outBuffer);
  2582. break;
  2583. case WIFI_CMD_SET_SCHEDULE:
  2584. setConnectorSchedule(inputBuffer[9], inputBuffer);
  2585. tx_size = 7;
  2586. outBuffer[0] = 0xff;
  2587. outBuffer[1] = 0xff;
  2588. outBuffer[2] = 0x00;
  2589. outBuffer[3] = 0x03;
  2590. outBuffer[4] = WIFI_CMD_SET_SCHEDULE;
  2591. outBuffer[5] = 0x01;
  2592. outBuffer[6] = chksumCal(outBuffer);
  2593. break;
  2594. case WIFI_CMD_SET_ETH_CONFIG:
  2595. SysConfigTemporarily.Eth0Interface.EthDhcpClient = inputBuffer[9]^1;
  2596. tx_size = 7;
  2597. outBuffer[0] = 0xff;
  2598. outBuffer[1] = 0xff;
  2599. outBuffer[2] = 0x00;
  2600. outBuffer[3] = 0x03;
  2601. outBuffer[4] = WIFI_CMD_SET_ETH_CONFIG;
  2602. outBuffer[5] = 0x01;
  2603. outBuffer[6] = chksumCal(outBuffer);
  2604. break;
  2605. case WIFI_CMD_SET_ETH_IP:
  2606. memset(SysConfigTemporarily.Eth0Interface.EthIpAddress, 0x00, ARRAY_SIZE(SysConfigTemporarily.Eth0Interface.EthIpAddress));
  2607. memcpy(SysConfigTemporarily.Eth0Interface.EthIpAddress, &inputBuffer[9], (((inputBuffer[2] << 8) | inputBuffer[3])-6));
  2608. tx_size = 7;
  2609. outBuffer[0] = 0xff;
  2610. outBuffer[1] = 0xff;
  2611. outBuffer[2] = 0x00;
  2612. outBuffer[3] = 0x03;
  2613. outBuffer[4] = WIFI_CMD_SET_ETH_IP;
  2614. outBuffer[5] = 0x01;
  2615. outBuffer[6] = chksumCal(outBuffer);
  2616. break;
  2617. case WIFI_CMD_SET_ETH_SUBMASK:
  2618. memset(SysConfigTemporarily.Eth0Interface.EthSubmaskAddress, 0x00, ARRAY_SIZE(SysConfigTemporarily.Eth0Interface.EthSubmaskAddress));
  2619. memcpy(SysConfigTemporarily.Eth0Interface.EthSubmaskAddress, &inputBuffer[9], (((inputBuffer[2] << 8) | inputBuffer[3])-6));
  2620. tx_size = 7;
  2621. outBuffer[0] = 0xff;
  2622. outBuffer[1] = 0xff;
  2623. outBuffer[2] = 0x00;
  2624. outBuffer[3] = 0x03;
  2625. outBuffer[4] = WIFI_CMD_SET_ETH_SUBMASK;
  2626. outBuffer[5] = 0x01;
  2627. outBuffer[6] = chksumCal(outBuffer);
  2628. break;
  2629. case WIFI_CMD_SET_ETH_GATEWAY:
  2630. memset(SysConfigTemporarily.Eth0Interface.EthGatewayAddress, 0x00, ARRAY_SIZE(SysConfigTemporarily.Eth0Interface.EthGatewayAddress));
  2631. memcpy(SysConfigTemporarily.Eth0Interface.EthGatewayAddress, &inputBuffer[9], (((inputBuffer[2] << 8) | inputBuffer[3])-6));
  2632. tx_size = 7;
  2633. outBuffer[0] = 0xff;
  2634. outBuffer[1] = 0xff;
  2635. outBuffer[2] = 0x00;
  2636. outBuffer[3] = 0x03;
  2637. outBuffer[4] = WIFI_CMD_SET_ETH_GATEWAY;
  2638. outBuffer[5] = 0x01;
  2639. outBuffer[6] = chksumCal(outBuffer);
  2640. break;
  2641. case WIFI_CMD_SET_WIFI_MODE:
  2642. SysConfigTemporarily.AthInterface.WifiMode = inputBuffer[9];
  2643. tx_size = 7;
  2644. outBuffer[0] = 0xff;
  2645. outBuffer[1] = 0xff;
  2646. outBuffer[2] = 0x00;
  2647. outBuffer[3] = 0x03;
  2648. outBuffer[4] = WIFI_CMD_SET_WIFI_MODE;
  2649. outBuffer[5] = 0x01;
  2650. outBuffer[6] = chksumCal(outBuffer);
  2651. break;
  2652. case WIFI_CMD_SET_WIFI_SSID:
  2653. memset(SysConfigTemporarily.AthInterface.WifiSsid, 0x00, ARRAY_SIZE(SysConfigTemporarily.AthInterface.WifiSsid));
  2654. memcpy(SysConfigTemporarily.AthInterface.WifiSsid, &inputBuffer[9], (((inputBuffer[2] << 8) | inputBuffer[3])-6));
  2655. tx_size = 7;
  2656. outBuffer[0] = 0xff;
  2657. outBuffer[1] = 0xff;
  2658. outBuffer[2] = 0x00;
  2659. outBuffer[3] = 0x03;
  2660. outBuffer[4] = WIFI_CMD_SET_WIFI_SSID;
  2661. outBuffer[5] = 0x01;
  2662. outBuffer[6] = chksumCal(outBuffer);
  2663. break;
  2664. case WIFI_CMD_SET_WIFI_PASSWD:
  2665. memset(SysConfigTemporarily.AthInterface.WifiPassword, 0x00, ARRAY_SIZE(SysConfigTemporarily.AthInterface.WifiPassword));
  2666. memcpy(SysConfigTemporarily.AthInterface.WifiPassword, &inputBuffer[9], (((inputBuffer[2] << 8) | inputBuffer[3])-6));
  2667. tx_size = 7;
  2668. outBuffer[0] = 0xff;
  2669. outBuffer[1] = 0xff;
  2670. outBuffer[2] = 0x00;
  2671. outBuffer[3] = 0x03;
  2672. outBuffer[4] = WIFI_CMD_SET_WIFI_PASSWD;
  2673. outBuffer[5] = 0x01;
  2674. outBuffer[6] = chksumCal(outBuffer);
  2675. break;
  2676. case WIFI_CMD_SET_WIFI_DHCP:
  2677. SysConfigTemporarily.AthInterface.WifiDhcpClient = inputBuffer[9]^1;
  2678. tx_size = 7;
  2679. outBuffer[0] = 0xff;
  2680. outBuffer[1] = 0xff;
  2681. outBuffer[2] = 0x00;
  2682. outBuffer[3] = 0x03;
  2683. outBuffer[4] = WIFI_CMD_SET_WIFI_DHCP;
  2684. outBuffer[5] = 0x01;
  2685. outBuffer[6] = chksumCal(outBuffer);
  2686. break;
  2687. case WIFI_CMD_SET_WIFI_IP:
  2688. memset(SysConfigTemporarily.AthInterface.WifiIpAddress, 0x00, ARRAY_SIZE(SysConfigTemporarily.AthInterface.WifiIpAddress));
  2689. memcpy(SysConfigTemporarily.AthInterface.WifiIpAddress, &inputBuffer[9], (((inputBuffer[2] << 8) | inputBuffer[3])-6));
  2690. tx_size = 7;
  2691. outBuffer[0] = 0xff;
  2692. outBuffer[1] = 0xff;
  2693. outBuffer[2] = 0x00;
  2694. outBuffer[3] = 0x03;
  2695. outBuffer[4] = WIFI_CMD_SET_WIFI_IP;
  2696. outBuffer[5] = 0x01;
  2697. outBuffer[6] = chksumCal(outBuffer);
  2698. break;
  2699. case WIFI_CMD_SET_WIFI_NETMASK:
  2700. memset(SysConfigTemporarily.AthInterface.WifiSubmaskAddress, 0x00, ARRAY_SIZE(SysConfigTemporarily.AthInterface.WifiSubmaskAddress));
  2701. memcpy(SysConfigTemporarily.AthInterface.WifiSubmaskAddress, &inputBuffer[9], (((inputBuffer[2] << 8) | inputBuffer[3])-6));
  2702. tx_size = 7;
  2703. outBuffer[0] = 0xff;
  2704. outBuffer[1] = 0xff;
  2705. outBuffer[2] = 0x00;
  2706. outBuffer[3] = 0x03;
  2707. outBuffer[4] = WIFI_CMD_SET_WIFI_NETMASK;
  2708. outBuffer[5] = 0x01;
  2709. outBuffer[6] = chksumCal(outBuffer);
  2710. break;
  2711. case WIFI_CMD_SET_WIFI_GATEWAY:
  2712. memset(SysConfigTemporarily.AthInterface.WifiGatewayAddress, 0x00, ARRAY_SIZE(SysConfigTemporarily.AthInterface.WifiGatewayAddress));
  2713. memcpy(SysConfigTemporarily.AthInterface.WifiGatewayAddress, &inputBuffer[9], (((inputBuffer[2] << 8) | inputBuffer[3])-6));
  2714. tx_size = 7;
  2715. outBuffer[0] = 0xff;
  2716. outBuffer[1] = 0xff;
  2717. outBuffer[2] = 0x00;
  2718. outBuffer[3] = 0x03;
  2719. outBuffer[4] = WIFI_CMD_SET_WIFI_GATEWAY;
  2720. outBuffer[5] = 0x01;
  2721. outBuffer[6] = chksumCal(outBuffer);
  2722. break;
  2723. case WIFI_CMD_SET_TELE_APN:
  2724. memset(SysConfigTemporarily.TelecomInterface.TelcomApn, 0x00, ARRAY_SIZE(SysConfigTemporarily.TelecomInterface.TelcomApn));
  2725. memcpy(SysConfigTemporarily.TelecomInterface.TelcomApn, &inputBuffer[9], (((inputBuffer[2] << 8) | inputBuffer[3])-6));
  2726. tx_size = 7;
  2727. outBuffer[0] = 0xff;
  2728. outBuffer[1] = 0xff;
  2729. outBuffer[2] = 0x00;
  2730. outBuffer[3] = 0x03;
  2731. outBuffer[4] = WIFI_CMD_SET_TELE_APN;
  2732. outBuffer[5] = 0x01;
  2733. outBuffer[6] = chksumCal(outBuffer);
  2734. break;
  2735. case WIFI_CMD_SET_TELE_CHAP_ID:
  2736. memset(SysConfigTemporarily.TelecomInterface.TelcomChapPapId, 0x00, ARRAY_SIZE(SysConfigTemporarily.TelecomInterface.TelcomChapPapId));
  2737. memcpy(SysConfigTemporarily.TelecomInterface.TelcomChapPapId, &inputBuffer[9], (((inputBuffer[2] << 8) | inputBuffer[3])-6));
  2738. tx_size = 7;
  2739. outBuffer[0] = 0xff;
  2740. outBuffer[1] = 0xff;
  2741. outBuffer[2] = 0x00;
  2742. outBuffer[3] = 0x03;
  2743. outBuffer[4] = WIFI_CMD_SET_TELE_CHAP_ID;
  2744. outBuffer[5] = 0x01;
  2745. outBuffer[6] = chksumCal(outBuffer);
  2746. break;
  2747. case WIFI_CMD_SET_TELE_CHAP_PASSWD:
  2748. memset(SysConfigTemporarily.TelecomInterface.TelcomChapPapPwd, 0x00, ARRAY_SIZE(SysConfigTemporarily.TelecomInterface.TelcomChapPapPwd));
  2749. memcpy(SysConfigTemporarily.TelecomInterface.TelcomChapPapPwd, &inputBuffer[9], (((inputBuffer[2] << 8) | inputBuffer[3])-6));
  2750. tx_size = 7;
  2751. outBuffer[0] = 0xff;
  2752. outBuffer[1] = 0xff;
  2753. outBuffer[2] = 0x00;
  2754. outBuffer[3] = 0x03;
  2755. outBuffer[4] = WIFI_CMD_SET_TELE_CHAP_PASSWD;
  2756. outBuffer[5] = 0x01;
  2757. outBuffer[6] = chksumCal(outBuffer);
  2758. break;
  2759. case WIFI_CMD_SET_TELE_IP:
  2760. memset(SysConfigTemporarily.TelecomInterface.TelcomIpAddress, 0x00, ARRAY_SIZE(SysConfigTemporarily.TelecomInterface.TelcomIpAddress));
  2761. memcpy(SysConfigTemporarily.TelecomInterface.TelcomIpAddress, &inputBuffer[9], (((inputBuffer[2] << 8) | inputBuffer[3])-6));
  2762. tx_size = 7;
  2763. outBuffer[0] = 0xff;
  2764. outBuffer[1] = 0xff;
  2765. outBuffer[2] = 0x00;
  2766. outBuffer[3] = 0x03;
  2767. outBuffer[4] = WIFI_CMD_SET_TELE_IP;
  2768. outBuffer[5] = 0x01;
  2769. outBuffer[6] = chksumCal(outBuffer);
  2770. break;
  2771. case WIFI_CMD_SET_CONFIRM:
  2772. // Copy SysConfigTemporarily to ShmSysConfigAndInfo->SysConfig
  2773. memcpy(&ShmSysConfigAndInfo->SysConfig,&SysConfigTemporarily, sizeof(struct SysConfigData));
  2774. tx_size = 7;
  2775. outBuffer[0] = 0xff;
  2776. outBuffer[1] = 0xff;
  2777. outBuffer[2] = 0x00;
  2778. outBuffer[3] = 0x03;
  2779. outBuffer[4] = WIFI_CMD_SET_CONFIRM;
  2780. outBuffer[5] = (StoreUsrConfigData(&ShmSysConfigAndInfo->SysConfig)!=0x01?0x00:0x01);
  2781. outBuffer[6] = chksumCal(outBuffer);
  2782. Sys_Flag.isPkill = ON;
  2783. break;
  2784. case WIFI_CMD_SET_DISCARD:
  2785. // Copy ShmSysConfigAndInfo to SysConfigTemporarily
  2786. memcpy(&SysConfigTemporarily, &ShmSysConfigAndInfo->SysConfig, sizeof(struct SysConfigData));
  2787. tx_size = 7;
  2788. outBuffer[0] = 0xff;
  2789. outBuffer[1] = 0xff;
  2790. outBuffer[2] = 0x00;
  2791. outBuffer[3] = 0x03;
  2792. outBuffer[4] = WIFI_CMD_SET_DISCARD;
  2793. outBuffer[5] = 0x01;
  2794. outBuffer[6] = chksumCal(outBuffer);
  2795. break;
  2796. default:
  2797. tx_size = 6;
  2798. outBuffer[0] = 0xff;
  2799. outBuffer[1] = 0xff;
  2800. outBuffer[2] = 0x00;
  2801. outBuffer[3] = 0x02;
  2802. outBuffer[4] = WIFI_CMD_UNKNOW;
  2803. outBuffer[5] = chksumCal(outBuffer);
  2804. break;
  2805. }
  2806. }
  2807. else
  2808. {
  2809. tx_size = 6;
  2810. outBuffer[0] = 0xff;
  2811. outBuffer[1] = 0xff;
  2812. outBuffer[2] = 0x00;
  2813. outBuffer[3] = 0x02;
  2814. outBuffer[4] = inputBuffer[8];
  2815. outBuffer[5] = chksumCal(outBuffer);
  2816. }
  2817. displayMessage(outBuffer, tx_size, NO);
  2818. send(clientSockFd, outBuffer, tx_size, 0);
  2819. }
  2820. if(read_size == 0)
  2821. {
  2822. DEBUG_INFO("Client disconnected.\r\n");
  2823. wifi_login_info.loginRole = ROLE_UNKNOWN;
  2824. memset(&wifi_login_info.loginId[0], 0x00, ARRAY_SIZE(wifi_login_info.loginId));
  2825. close(clientSockFd);
  2826. if(Sys_Flag.isPkill == ON)
  2827. {
  2828. Sys_Flag.isPkill = OFF;
  2829. shutdown(sockFd, SHUT_RDWR);
  2830. close(sockFd);
  2831. DEBUG_INFO("pKill Module_Wifi after set confirm...\r\n");
  2832. system("pkill Module_Wifi");
  2833. }
  2834. // Copy ShmSysConfigAndInfo to SysConfigTemporarily
  2835. memcpy(&SysConfigTemporarily, &ShmSysConfigAndInfo->SysConfig, sizeof(struct SysConfigData));
  2836. fflush(stdout);
  2837. }
  2838. else if(read_size == -1)
  2839. {
  2840. DEBUG_ERROR("Socket recv failed.\r\n");
  2841. }
  2842. sleep(1);
  2843. }
  2844. return FAIL;
  2845. }
  2846. //==========================================
  2847. // Common routine
  2848. //==========================================
  2849. char* getTimeString(void)
  2850. {
  2851. char *result=malloc(21);
  2852. time_t timep;
  2853. struct tm *p;
  2854. time(&timep);
  2855. p=gmtime(&timep);
  2856. 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);
  2857. return result;
  2858. }
  2859. void trim(char *s)
  2860. {
  2861. int i=0, j, k, l=0;
  2862. while((s[i]==' ')||(s[i]=='\t')||(s[i]=='\n'))
  2863. i++;
  2864. j = strlen(s)-1;
  2865. while((s[j]==' ')||(s[j]=='\t')||(s[j]=='\n'))
  2866. j--;
  2867. if(i==0 && j==strlen(s)-1) { }
  2868. else if(i==0) s[j+1] = '\0';
  2869. else {
  2870. for(k=i; k<=j; k++) s[l++] = s[k];
  2871. s[l] = '\0';
  2872. }
  2873. }
  2874. int mystrcmp(char *p1,char *p2)
  2875. {
  2876. while(*p1==*p2)
  2877. {
  2878. if(*p1=='\0' || *p2=='\0')
  2879. break;
  2880. p1++;
  2881. p2++;
  2882. }
  2883. if(*p1=='\0' && *p2=='\0')
  2884. return(PASS);
  2885. else
  2886. return(FAIL);
  2887. }
  2888. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt)
  2889. {
  2890. strncpy(dest, src + start, cnt);
  2891. dest[cnt] = 0;
  2892. }
  2893. void split(char **arr, char *str, const char *del)
  2894. {
  2895. char *s = strtok(str, del);
  2896. while(s != NULL)
  2897. {
  2898. *arr++ = s;
  2899. s = strtok(NULL, del);
  2900. }
  2901. }
  2902. int checkIP(void)
  2903. {
  2904. // DHCP or static setting
  2905. int isGetIP = FAIL;
  2906. FILE *fp;
  2907. char buf[512];
  2908. char tmp[512];
  2909. char cmd[512];
  2910. if(Wifi.ipType == IP_TYPE_DHCP) {
  2911. // Get IP address & net mask
  2912. strcpy(cmd, "ifconfig ");
  2913. strcat(cmd, Wifi.currentInterface);
  2914. fp = popen(cmd, "r");
  2915. if(fp == NULL)
  2916. isGetIP = FAIL;
  2917. else
  2918. {
  2919. while(fgets(buf, sizeof(buf), fp) != NULL)
  2920. {
  2921. if(strstr(buf, "addr:") > 0)
  2922. {
  2923. if(strstr(buf, "192.168.1.10") > 0)
  2924. {
  2925. DEBUG_INFO("IP cannot be same as default value of Ethernet...\n");
  2926. }
  2927. else
  2928. {
  2929. isGetIP = PASS;
  2930. cnt_getIP_Fail = 0;
  2931. }
  2932. sscanf(buf, "%*s%s", tmp);
  2933. substr(Wifi.currentIPAddr, tmp, strspn(tmp, "addr:"), strlen(buf)-strspn(tmp, "addr:"));
  2934. sscanf(buf, "%*s%*s%*s%s", tmp);
  2935. substr(Wifi.currentNetmask, tmp, strspn(tmp, "Mask:"), strlen(buf)-strspn(tmp, "Mask:"));
  2936. }else {
  2937. }
  2938. }
  2939. }
  2940. if(isGetIP == FAIL && cnt_getIP_Fail<3) {
  2941. sprintf(cmd, "pgrep -f \"udhcpc -i %s\" | xargs kill", Wifi.currentInterface);
  2942. system(cmd);
  2943. if(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient==0)
  2944. {
  2945. sprintf(cmd, "/sbin/udhcpc -i %s -s /root/dhcp_script/wifi.script > /dev/null &", Wifi.currentInterface);
  2946. system(cmd);
  2947. }
  2948. DEBUG_INFO("Sending DHCP request...\n");
  2949. cnt_getIP_Fail++;
  2950. sleep(5);
  2951. }
  2952. pclose(fp);
  2953. }else {
  2954. strcpy(cmd, "ifconfig ");
  2955. strcat(cmd, Wifi.currentInterface);
  2956. strcat(cmd, " ");
  2957. strcat(cmd, Wifi.staticIPAddr);
  2958. fp = popen(cmd, "r");
  2959. DEBUG_INFO("Setting static IP to %s ...\n", Wifi.staticIPAddr);
  2960. pclose(fp);
  2961. isGetIP = PASS;
  2962. }
  2963. cnt_getIP_Fail = 0;
  2964. return isGetIP;
  2965. }
  2966. int restartWPA(void)
  2967. {
  2968. int result = FAIL;
  2969. FILE *fp;
  2970. char buf[512];
  2971. char cmd[50];
  2972. // Get IP address & net mask
  2973. strcpy(cmd, "wpa_cli -i ");
  2974. strcat(cmd, Wifi.currentInterface);
  2975. strcat(cmd, " reconfigure");
  2976. fp = popen(cmd, "r");
  2977. DEBUG_INFO("WPA reconfigure %s ...\n", Wifi.currentInterface);
  2978. if(fp == NULL)
  2979. result = FAIL;
  2980. else
  2981. {
  2982. while(fgets(buf, sizeof(buf), fp) != NULL)
  2983. {
  2984. if(strstr(buf, "OK") > 0)
  2985. {
  2986. DEBUG_INFO("reconfigure OK.\n");
  2987. result = PASS;
  2988. }else {
  2989. DEBUG_INFO("reconfigure failed.\n");
  2990. result = FAIL;
  2991. }
  2992. }
  2993. }
  2994. pclose(fp);
  2995. if(result == PASS) {
  2996. strcpy(cmd, "wpa_cli -i ");
  2997. strcat(cmd, Wifi.currentInterface);
  2998. strcat(cmd, " reconfigure");
  2999. fp = popen(cmd, "r");
  3000. DEBUG_INFO("WPA reconnect %s ...\n", Wifi.currentInterface);
  3001. if(fp == NULL)
  3002. result = FAIL;
  3003. else{
  3004. while(fgets(buf, sizeof(buf), fp) != NULL)
  3005. {
  3006. if(strstr(buf, "OK") > 0){
  3007. DEBUG_INFO("reconnect OK.\n");
  3008. result = PASS;
  3009. }else {
  3010. DEBUG_INFO("reconnect failed.\n");
  3011. result = FAIL;
  3012. }
  3013. }
  3014. }
  3015. pclose(fp);
  3016. }
  3017. return result;
  3018. }
  3019. void proc_sta()
  3020. {
  3021. switch(Wifi_module_sts)
  3022. {
  3023. case STA_STATE_INIT:
  3024. dispReq.isShowed_IF_info = false;
  3025. // get info from shared memory
  3026. getParameters();
  3027. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi=1;
  3028. ShmStatusCodeData->InfoCode.InfoEvents.bits.ApDisconnectViaWiFi=1;
  3029. isSetWPA_OK = false;
  3030. // check interface
  3031. if((strlen((const char*)Wifi_A.ssid)>0) && (isFindInterface() == PASS))
  3032. {
  3033. DEBUG_INFO("Wifi interface: %s\n", Wifi.currentInterface);
  3034. Wifi_module_sts = STA_STATE_DEVICE_DETECT;
  3035. ShmStatusCodeData->FaultCode.FaultEvents.bits.WiFiModuleBroken=0;
  3036. DEBUG_INFO("=================[State 1]===================\n");
  3037. }
  3038. else
  3039. {
  3040. ShmStatusCodeData->FaultCode.FaultEvents.bits.WiFiModuleBroken=1;
  3041. DEBUG_ERROR("Wifi support interface valid result: Fail\n");
  3042. sleep(30);
  3043. }
  3044. break;
  3045. case STA_STATE_DEVICE_DETECT:
  3046. dispReq.isShowed_IP_info = false;
  3047. if(!isSetWPA_OK && (setWPAconf() == PASS))
  3048. {
  3049. isSetWPA_OK = true;
  3050. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.WiFiModuleCommFail=0;
  3051. sleep(5);
  3052. }
  3053. else if((isSetWPA_OK == true) && (isConnectAP() == PASS))
  3054. {
  3055. Wifi_module_sts = STA_STATE_AP_CONNECTED;
  3056. ShmStatusCodeData->InfoCode.InfoEvents.bits.ApDisconnectViaWiFi=0;
  3057. DEBUG_INFO("=================[State 2]===================\n");
  3058. }
  3059. else
  3060. {
  3061. cnt_getAP_Fail++;
  3062. DEBUG_INFO("Fail to connect to the AP %d times...\n",cnt_getAP_Fail);
  3063. if(cnt_getAP_Fail>=3)
  3064. {
  3065. Wifi_module_sts = STA_STATE_INIT;
  3066. cnt_getAP_Fail = 0;
  3067. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.WiFiModuleCommFail=1;
  3068. DEBUG_INFO("=================[State 0]===================\n");
  3069. }
  3070. else
  3071. {
  3072. sleep(10);
  3073. }
  3074. }
  3075. break;
  3076. case STA_STATE_AP_CONNECTED:
  3077. getInterfaceInfo();
  3078. getLinkQuality();
  3079. DEBUG_INFO("Wifi quality: %d dBm\n", Wifi.rssi);
  3080. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi = Wifi.rssi;
  3081. if(isReachableInternet() == PASS)
  3082. {
  3083. DEBUG_INFO("Wifi internet valid result: Pass\n");
  3084. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi=0;
  3085. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiNetworkConn=1;
  3086. cnt_pingDNS_Fail = 0;
  3087. sleep(30);
  3088. }
  3089. else
  3090. {
  3091. cnt_pingDNS_Fail++;
  3092. DEBUG_INFO("Wifi internet valid result: Fail %d time\n", cnt_pingDNS_Fail);
  3093. sleep(5);
  3094. }
  3095. if(cnt_pingDNS_Fail >= 3)
  3096. {
  3097. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi=1;
  3098. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiNetworkConn=0;
  3099. cnt_pingDNS_Fail = 0;
  3100. DEBUG_INFO("Ping DNS failed...");
  3101. memset(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress, 0, sizeof ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress);
  3102. memset(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress, 0, sizeof ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress);
  3103. memset(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress, 0, sizeof ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress);
  3104. if(isFindInterface() == PASS)
  3105. {
  3106. DEBUG_INFO("Wifi interface: %s\n", Wifi.currentInterface);
  3107. getParameters();
  3108. isSetWPA_OK = false;
  3109. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi = 0;
  3110. Wifi_module_sts = STA_STATE_DEVICE_DETECT;
  3111. DEBUG_INFO("=================[State 1]===================\n");
  3112. }
  3113. else
  3114. {
  3115. DEBUG_INFO("Wifi support interface valid result: Fail\n");
  3116. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi = 0;
  3117. Wifi_module_sts = STA_STATE_INIT;
  3118. DEBUG_INFO("=================[State 0]===================\n");
  3119. }
  3120. }
  3121. break;
  3122. default:
  3123. Wifi_module_sts = STA_STATE_INIT;
  3124. break;
  3125. }
  3126. }
  3127. void proc_ap()
  3128. {
  3129. switch(Wifi_module_sts)
  3130. {
  3131. case AP_STATE_INIT:
  3132. // get info from shared memory
  3133. getParameters();
  3134. isSetWPA_OK = false;
  3135. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi=1;
  3136. ShmStatusCodeData->InfoCode.InfoEvents.bits.ApDisconnectViaWiFi=1;
  3137. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiNetworkConn=0;
  3138. // check interface
  3139. if(isFindInterface() == PASS)
  3140. {
  3141. DEBUG_INFO("Wifi interface: %s\n", Wifi.currentInterface);
  3142. Wifi_module_sts = AP_STATE_DEVICE_DETECT;
  3143. ShmStatusCodeData->FaultCode.FaultEvents.bits.WiFiModuleBroken=0;
  3144. DEBUG_INFO("=================[State 1]===================\n");
  3145. }
  3146. else
  3147. {
  3148. ShmStatusCodeData->FaultCode.FaultEvents.bits.WiFiModuleBroken=1;
  3149. DEBUG_ERROR("Wifi support interface valid result: Fail\n");
  3150. sleep(30);
  3151. }
  3152. break;
  3153. case AP_STATE_DEVICE_DETECT:
  3154. dispReq.isShowed_IP_info = false;
  3155. if(!isSetWPA_OK && (setWPAconf() == PASS))
  3156. {
  3157. isSetWPA_OK = true;
  3158. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.WiFiModuleCommFail=0;
  3159. sleep(5);
  3160. }
  3161. else if(isSetWPA_OK && (isStartUpAP() == PASS))
  3162. {
  3163. Wifi_module_sts = AP_STATE_AP_START;
  3164. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi=1;
  3165. ShmStatusCodeData->InfoCode.InfoEvents.bits.ApDisconnectViaWiFi=0;
  3166. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiNetworkConn=0;
  3167. DEBUG_INFO("=================[State 2]===================\n");
  3168. }
  3169. else
  3170. {
  3171. cnt_getAP_Fail++;
  3172. DEBUG_INFO("Fail to start up AP %d times...\n",cnt_getAP_Fail);
  3173. if(cnt_getAP_Fail>=3)
  3174. {
  3175. Wifi_module_sts = AP_STATE_INIT;
  3176. cnt_getAP_Fail = 0;
  3177. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.WiFiModuleCommFail=1;
  3178. DEBUG_INFO("=================[State 0]===================\n");
  3179. }
  3180. else
  3181. {
  3182. sleep(10);
  3183. }
  3184. }
  3185. break;
  3186. case AP_STATE_AP_START:
  3187. getInterfaceInfo();
  3188. if(isStartUpAP() == PASS)
  3189. {
  3190. DEBUG_INFO("Wifi AP start up valid result: Pass\n");
  3191. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi=1;
  3192. ShmStatusCodeData->InfoCode.InfoEvents.bits.ApDisconnectViaWiFi=0;
  3193. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiNetworkConn=0;
  3194. cnt_pingDNS_Fail = 0;
  3195. sleep(30);
  3196. }
  3197. else
  3198. {
  3199. cnt_pingDNS_Fail++;
  3200. DEBUG_INFO("Wifi AP start up valid result: Fail %d time\n", cnt_pingDNS_Fail);
  3201. sleep(5);
  3202. }
  3203. if(cnt_pingDNS_Fail >= 3)
  3204. {
  3205. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi=1;
  3206. ShmStatusCodeData->InfoCode.InfoEvents.bits.ApDisconnectViaWiFi=1;
  3207. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiNetworkConn=0;
  3208. cnt_pingDNS_Fail = 0;
  3209. DEBUG_INFO("Wifi AP start up status failed...");
  3210. memset(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress, 0, sizeof ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress);
  3211. memset(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress, 0, sizeof ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress);
  3212. memset(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress, 0, sizeof ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress);
  3213. if(isFindInterface() == PASS)
  3214. {
  3215. DEBUG_INFO("Wifi interface: %s\n", Wifi.currentInterface);
  3216. isSetWPA_OK = false;
  3217. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi = 0;
  3218. Wifi_module_sts = STA_STATE_DEVICE_DETECT;
  3219. DEBUG_INFO("=================[State 1]===================\n");
  3220. }
  3221. else
  3222. {
  3223. DEBUG_INFO("Wifi support interface valid result: Fail\n");
  3224. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi = 0;
  3225. Wifi_module_sts = STA_STATE_INIT;
  3226. DEBUG_INFO("=================[State 0]===================\n");
  3227. }
  3228. }
  3229. break;
  3230. default:
  3231. Wifi_module_sts = AP_STATE_INIT;
  3232. break;
  3233. }
  3234. }
  3235. void proc_killConnection()
  3236. {
  3237. char cmdBuf[512];
  3238. // Initialization flags when network is disable mode
  3239. ShmStatusCodeData->InfoCode.InfoEvents.bits.InternetDisconnectViaWiFi=1;
  3240. ShmStatusCodeData->InfoCode.InfoEvents.bits.ApDisconnectViaWiFi=1;
  3241. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiNetworkConn=0;
  3242. ShmStatusCodeData->FaultCode.FaultEvents.bits.WiFiModuleBroken=0;
  3243. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.WiFiModuleCommFail=0;
  3244. // Stop dhcp client or server
  3245. sprintf(cmdBuf, "pgrep -f \"udhcpc -i %s\" | xargs kill", Wifi.currentInterface);
  3246. system(cmdBuf);
  3247. sprintf(cmdBuf, "pgrep -f \"udhcpd\" | xargs kill");
  3248. system(cmdBuf);
  3249. // Restart wpa_supplicant
  3250. sprintf(cmdBuf, "pgrep -f \"wpa_supplicant\" | xargs kill");
  3251. system(cmdBuf);
  3252. // Stop wifi AP
  3253. sprintf(cmdBuf, "pgrep -f \"hostapd\" | xargs kill");
  3254. system(cmdBuf);
  3255. // Clean share memory when network is disable mode
  3256. memset(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress, 0, sizeof ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress);
  3257. memset(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress, 0, sizeof ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress);
  3258. memset(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress, 0, sizeof ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress);
  3259. }
  3260. //==========================================
  3261. // Main loop
  3262. //==========================================
  3263. int main(void)
  3264. {
  3265. pid_t pid;
  3266. if(InitShareMemory() == FAIL)
  3267. {
  3268. DEBUG_ERROR("InitShareMemory NG\n");
  3269. if(ShmStatusCodeData!=NULL)
  3270. {
  3271. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory=ON;
  3272. }
  3273. sleep(5);
  3274. return 0;
  3275. }
  3276. // Local database initial
  3277. if(DB_Open(localDb) != PASS)
  3278. {
  3279. DEBUG_ERROR("Puk pin list local db initial fail.\n");
  3280. }
  3281. // Wifi login info initial & PUK generate
  3282. wifi_login_info.loginRole = ROLE_UNKNOWN;
  3283. memset(&wifi_login_info.loginId[0], 0x00, ARRAY_SIZE(wifi_login_info.loginId));
  3284. memset(&wifi_login_info.puk[0], 0x00, ARRAY_SIZE(wifi_login_info.puk));
  3285. sprintf((char*)wifi_login_info.puk, "%08X", ~stm32crc((uint32_t*)&ShmSysConfigAndInfo->SysConfig.SystemId[0], (ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.SystemId)>>2)));
  3286. DEBUG_INFO("System ID: %s\r\n", ShmSysConfigAndInfo->SysConfig.SystemId);
  3287. DEBUG_INFO("EVSE PUK: %s\r\n", wifi_login_info.puk);
  3288. // UDP socket server start
  3289. pid = fork();
  3290. if(pid == 0)
  3291. {
  3292. if(udpSocketServerStart() == FAIL)
  3293. {
  3294. DEBUG_ERROR("UDP socket server down.\r\n");
  3295. return 0;
  3296. }
  3297. }
  3298. // TCP socket server start
  3299. pid = fork();
  3300. if(pid == 0)
  3301. {
  3302. if(tcpSocketServerStart() == FAIL)
  3303. {
  3304. DEBUG_ERROR("TCP socket server down.\r\n");
  3305. return 0;
  3306. }
  3307. }
  3308. //=============================================
  3309. // Install WIFI module driver
  3310. //=============================================
  3311. #ifdef UBLOX
  3312. system("insmod /lib/modules/mlan.ko");
  3313. system("insmod /lib/modules/usb8801.ko");
  3314. sleep(5);
  3315. system("ifconfig mlan0 up");
  3316. system("ifconfig uap0 up");
  3317. #endif
  3318. #ifdef MT7601U
  3319. system("insmod /lib/modules/mt7601u.ko");
  3320. sleep(5);
  3321. system("ifconfig wlan0 up");
  3322. #endif
  3323. DEBUG_INFO("=================[State 0]===================\n");
  3324. for(;;)
  3325. {
  3326. switch(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode)
  3327. {
  3328. case WIFI_MODE_STA:
  3329. proc_sta();
  3330. break;
  3331. case WIFI_MODE_AP:
  3332. proc_ap();
  3333. break;
  3334. case WIFI_MODE_ADHOC:
  3335. break;
  3336. case WIFI_MODE_DISABLE:
  3337. default:
  3338. proc_killConnection();
  3339. sleep(30);
  3340. break;
  3341. }
  3342. }
  3343. return 0;
  3344. }