FactoryConfig.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. #include <sys/time.h>
  2. #include <sys/timeb.h>
  3. #include <sys/types.h>
  4. #include <sys/stat.h>
  5. #include <sys/types.h>
  6. #include <sys/ioctl.h>
  7. #include <sys/socket.h>
  8. #include <sys/ipc.h>
  9. #include <sys/shm.h>
  10. #include <sys/shm.h>
  11. #include <sys/mman.h>
  12. #include <linux/can.h>
  13. #include <linux/can/raw.h>
  14. #include <linux/wireless.h>
  15. #include <arpa/inet.h>
  16. #include <netinet/in.h>
  17. #include <unistd.h>
  18. #include <stdarg.h>
  19. #include <stdio.h> /*標準輸入輸出定義*/
  20. #include <stdlib.h> /*標準函數庫定義*/
  21. #include <unistd.h> /*Unix 標準函數定義*/
  22. #include <fcntl.h> /*檔控制定義*/
  23. #include <termios.h> /*PPSIX 終端控制定義*/
  24. #include <errno.h> /*錯誤號定義*/
  25. #include <errno.h>
  26. #include <string.h>
  27. #include <time.h>
  28. #include <ctype.h>
  29. #include <ifaddrs.h>
  30. #include "./Define/define.h"
  31. #include "Config.h"
  32. #define Debug
  33. #define OUTPUT_FLASH 0x01
  34. #define OUTPUT_FILE 0x02
  35. struct SysConfigData SysConfig;
  36. int StoreLogMsg(const char *fmt, ...)
  37. {
  38. char Buf[4096 + 256];
  39. char buffer[4096];
  40. va_list args;
  41. struct timeb SeqEndTime;
  42. struct tm *tm;
  43. va_start(args, fmt);
  44. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  45. va_end(args);
  46. memset(Buf, 0, sizeof(Buf));
  47. ftime(&SeqEndTime);
  48. SeqEndTime.time = time(NULL);
  49. tm = localtime(&SeqEndTime.time);
  50. sprintf(Buf, "echo \"%04d-%02d-%02d %02d:%02d:%02d:%03d - %s\" >> /Storage/SystemLog/[%04d.%02d]SystemLog",
  51. tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec, SeqEndTime.millitm,
  52. buffer,
  53. tm->tm_year + 1900, tm->tm_mon + 1);
  54. system(Buf);
  55. return rc;
  56. }
  57. int runShellCmd(const char *cmd)
  58. {
  59. int result = FAIL;
  60. char buf[256];
  61. FILE *fp;
  62. fp = popen(cmd, "r");
  63. if (fp != NULL) {
  64. while (fgets(buf, sizeof(buf), fp) != NULL) {
  65. StoreLogMsg("%s\n", buf);
  66. }
  67. result = PASS;
  68. }
  69. pclose(fp);
  70. return result;
  71. }
  72. void helpOutput(void)
  73. {
  74. printf("Usage: Module_FactoryConfig [OPTION]...\r\n\r\n");
  75. printf("Generate factory default configuration value\r\n\r\n");
  76. printf("OPTION:\r\n");
  77. printf(" -a Write to file(/mnt) & flash\r\n");
  78. printf(" -f Write to file(/mnt)\r\n");
  79. printf(" -m Write to flash\r\n");
  80. }
  81. /**************************************************************************************/
  82. /************This task will create Factory default confgiuration file *****************/
  83. /***********and store it into mtdblock 10,11,12 ****************/
  84. /**************************************************************************************/
  85. int main(int argc, char *argv[])
  86. {
  87. uint8_t outType = 0;
  88. unsigned int i, Chk;
  89. uint8_t *ptr;
  90. int fd, wrd;
  91. ptr = malloc(MtdBlockSize);
  92. if (ptr == NULL) {
  93. #ifdef SystemLogMessage
  94. StoreLogMsg("[FactoryConfig]main: malloc for SysConfigData NG");
  95. #endif
  96. return 0;
  97. }
  98. memset(ptr, 0, MtdBlockSize);
  99. memset(&SysConfig, 0, sizeof(struct SysConfigData));
  100. /*
  101. * TODO: Set factory default configuration
  102. */
  103. //********** System **********// udhcpc -i eth1 -s ./dhcp_script/eth1.script
  104. //
  105. strcpy((char *)SysConfig.ModelName, "DXYE18200EE1E4");
  106. strcpy((char *)SysConfig.SerialNumber, "SERIALFORRD");
  107. memset(SysConfig.SystemId, 0x00, sizeof(SysConfig.SystemId));
  108. char Dash = '-';
  109. strcat((char *)SysConfig.SystemId, (char *)SysConfig.ModelName);
  110. strncat((char *)SysConfig.SystemId, &Dash, 1);
  111. strcat((char *)SysConfig.SystemId, (char *)SysConfig.SerialNumber);
  112. strcpy((char *)SysConfig.SystemDateTime, "");
  113. SysConfig.AuthorisationMode = AUTH_MODE_ENABLE;
  114. SysConfig.DefaultLanguage = 0;
  115. SysConfig.RfidCardNumEndian = 0;
  116. SysConfig.AcPlugInTimes = 0;
  117. SysConfig.GbPlugInTimes = 0;
  118. SysConfig.Ccs1PlugInTime = 0;
  119. SysConfig.Ccs2PlugInTimes = 0;
  120. SysConfig.ChademoPlugInTimes = 0;
  121. SysConfig.BillingData.isBilling = 0;
  122. SysConfig.isAPP = 1;
  123. SysConfig.isQRCode = 1;
  124. SysConfig.isRFID = 1;
  125. //********** Charging **********//
  126. SysConfig.MaxChargingEnergy = 0;
  127. SysConfig.MaxChargingCurrent = 500; // 最大可輸出電流 (整樁)
  128. SysConfig.MaxChargingDuration = 0;
  129. SysConfig.AcMaxChargingCurrent = 0;
  130. SysConfig.PhaseLossPolicy = 0;
  131. /*+++ 20200908, vern, modify it +++*/
  132. /*for(uint8_t i = 0; i < 10; i++)
  133. strcpy((char *)SysConfig.LocalWhiteCard, "");*/
  134. memset(SysConfig.LocalWhiteCard, 0, sizeof(SysConfig.LocalWhiteCard));
  135. /*--- 20200908, vern, modify it ---*/
  136. strcpy((char *)SysConfig.UserId, "");
  137. //********** Network **********//
  138. strcpy((char *)SysConfig.FtpServer, "");
  139. SysConfig.Eth0Interface.EthDhcpClient = 0;
  140. strcpy((char *) SysConfig.Eth0Interface.EthIpAddress, "192.168.1.10");
  141. strcpy((char *) SysConfig.Eth0Interface.EthSubmaskAddress, "255.255.255.0");
  142. strcpy((char *) SysConfig.Eth0Interface.EthGatewayAddress, "192.168.1.254");
  143. SysConfig.Eth1Interface.EthDhcpClient = 0;
  144. strcpy((char *) SysConfig.Eth1Interface.EthIpAddress, "192.168.0.10");
  145. strcpy((char *) SysConfig.Eth1Interface.EthSubmaskAddress, "255.255.255.0");
  146. strcpy((char *) SysConfig.Eth1Interface.EthGatewayAddress, "192.168.0.254");
  147. if (SysConfig.ModelName[10] == 'W') {
  148. SysConfig.AthInterface.WifiMode = 2;
  149. } else {
  150. SysConfig.AthInterface.WifiMode = 0;
  151. }
  152. strcpy((char *) SysConfig.AthInterface.WifiSsid, "");
  153. strcpy((char *) SysConfig.AthInterface.WifiPassword, "");
  154. SysConfig.AthInterface.WifiRssi = 0;
  155. SysConfig.AthInterface.WifiDhcpServer = 0;
  156. SysConfig.AthInterface.WifiDhcpClient = 0;
  157. strcpy((char *) SysConfig.AthInterface.WifiMacAddress, "");
  158. strcpy((char *) SysConfig.AthInterface.WifiIpAddress, "");
  159. strcpy((char *) SysConfig.AthInterface.WifiSubmaskAddress, "");
  160. strcpy((char *) SysConfig.AthInterface.WifiGatewayAddress, "");
  161. SysConfig.AthInterface.WifiNetworkConn = 0;
  162. strcpy((char *) SysConfig.TelecomInterface.TelcomModelName, "");
  163. strcpy((char *) SysConfig.TelecomInterface.TelcomSoftwareVer, "");
  164. //strcpy((char *) SysConfig.TelecomInterface.TelcomApn, "Internet");
  165. strcpy((char *) SysConfig.TelecomInterface.TelcomApn, "");
  166. SysConfig.TelecomInterface.TelcomRssi = 0;
  167. strcpy((char *) SysConfig.TelecomInterface.TelcomChapPapId, " ");
  168. strcpy((char *) SysConfig.TelecomInterface.TelcomChapPapPwd, " ");
  169. strcpy((char *) SysConfig.TelecomInterface.TelcomModemImei, "");
  170. strcpy((char *) SysConfig.TelecomInterface.TelcomSimImsi, "");
  171. strcpy((char *) SysConfig.TelecomInterface.TelcomSimIccid, "");
  172. SysConfig.TelecomInterface.TelcomSimStatus = 0;
  173. SysConfig.TelecomInterface.TelcomModemMode = 0;
  174. strcpy((char *) SysConfig.TelecomInterface.TelcomIpAddress, "");
  175. SysConfig.TelecomInterface.TelcomNetworkConn = 0;
  176. strcpy((char *)SysConfig.chargePointVendor, "Phihong Technology");
  177. //********** Backend **********//
  178. SysConfig.BackendConnTimeout = 300; //300 seconds
  179. SysConfig.OfflinePolicy = 2;
  180. SysConfig.OfflineMaxChargeEnergy = 0;
  181. SysConfig.OfflineMaxChargeDuration = 0;
  182. strcpy((char *) SysConfig.OcppServerURL, "");
  183. strcpy((char *) SysConfig.ChargeBoxId, "");
  184. SysConfig.LedInfo.Intensity = 2;
  185. //copy default configuration to pointer
  186. memcpy(ptr, &SysConfig, sizeof(struct SysConfigData));
  187. //calculate CRC
  188. Chk = 0;
  189. for (i = ARRAY_SIZE(SysConfig.CsuBootLoadFwRev); i < (MtdBlockSize - 4); i++) {
  190. Chk += *(ptr + i);
  191. }
  192. memcpy(ptr + MtdBlockSize - 4, &Chk, 4);
  193. //Chk = 0;
  194. //for (i = 0; i < (MtdBlockSize - 4); i++) {
  195. // Chk += *(ptr + i);
  196. //}
  197. //memcpy( ptr + MtdBlockSize - 4, &Chk, 4);
  198. /*
  199. * Parameter process
  200. */
  201. if (argc > 1) {
  202. char *arg = argv[1];
  203. switch (arg[0]) {
  204. case '-':
  205. switch (arg[1]) {
  206. case 'a':
  207. outType |= OUTPUT_FILE;
  208. outType |= OUTPUT_FLASH;
  209. break;
  210. case 'f':
  211. outType |= OUTPUT_FILE;
  212. break;
  213. case 'm':
  214. outType |= OUTPUT_FLASH;
  215. break;
  216. default:
  217. helpOutput();
  218. break;
  219. }
  220. break;
  221. default:
  222. helpOutput();
  223. break;
  224. }
  225. } else {
  226. helpOutput();
  227. }
  228. if (argc == 4) {
  229. strcpy((char *)SysConfig.ModelName, argv[2]);
  230. strcpy((char *)SysConfig.SerialNumber, argv[3]);
  231. } else {
  232. strcpy((char *)SysConfig.ModelName, "DDYC182V0UE2AD");
  233. strcpy((char *)SysConfig.SerialNumber, "SERIALFORRD");
  234. }
  235. /*
  236. * Configuration bin file generate
  237. */
  238. fd = open("/mnt/FactoryDefaultConfig.bin", O_RDWR | O_CREAT | O_TRUNC);
  239. if (fd < 0) {
  240. StoreLogMsg("open /mnt/FactoryDefaultConfig.bin NG\n");
  241. free(ptr);
  242. return 0;
  243. }
  244. wrd = write(fd, ptr, MtdBlockSize);
  245. close(fd);
  246. if (wrd < MtdBlockSize) {
  247. StoreLogMsg("write /mnt/FactoryDefaultConfig.bin NG\n");
  248. free(ptr);
  249. return 0;
  250. }
  251. StoreLogMsg("FactoryConfig write to file in /mnt OK.\n");
  252. //if ((outType & OUTPUT_FILE) > 0) {
  253. // fd = open("/mnt/FactoryDefaultConfig.bin", O_RDWR | O_CREAT);
  254. // if (fd < 0) {
  255. // StoreLogMsg("[FactoryConfig]main: open /mnt/FactoryDefaultConfig.bin NG");
  256. // free(ptr);
  257. // return 0;
  258. // }
  259. // wrd = write(fd, ptr, MtdBlockSize);
  260. // close(fd);
  261. // if (wrd < MtdBlockSize) {
  262. // StoreLogMsg("write /mnt/FactoryDefaultConfig.bin NG\r\n");
  263. // free(ptr);
  264. // return 0;
  265. // }
  266. // StoreLogMsg("FactoryConfig write to file in /mnt OK.\r\n");
  267. //}
  268. /*
  269. * Flash memory write
  270. */
  271. if ((outType & OUTPUT_FLASH) > 0) {
  272. StoreLogMsg("Erase /dev/mtd10.\n");
  273. runShellCmd("flash_erase /dev/mtd10 0 0");
  274. StoreLogMsg("Write /dev/mtd10.\n");
  275. runShellCmd("nandwrite -p /dev/mtd10 /mnt/FactoryDefaultConfig.bin");
  276. StoreLogMsg("Erase /dev/mtd11.\n");
  277. runShellCmd("flash_erase /dev/mtd11 0 0");
  278. StoreLogMsg("Write /dev/mtd11.\n");
  279. runShellCmd("nandwrite -p /dev/mtd11 /mnt/FactoryDefaultConfig.bin");
  280. StoreLogMsg("Erase /dev/mtd12.\n");
  281. runShellCmd("flash_erase /dev/mtd12 0 0");
  282. StoreLogMsg("Write /dev/mtd12.\n");
  283. runShellCmd("nandwrite -p /dev/mtd12 /mnt/FactoryDefaultConfig.bin");
  284. system("rm -f /mnt/FactoryDefaultConfig.bin");
  285. StoreLogMsg("FactoryConfig write to flash OK\n");
  286. #if 0
  287. // Save factory default setting value to flash factory default setting block
  288. fd = open("/dev/mtdblock12", O_RDWR);
  289. if (fd < 0) {
  290. StoreLogMsg("open /dev/mtdblock12 NG\r\n");
  291. free(ptr);
  292. return 0;
  293. }
  294. wrd = write(fd, ptr, MtdBlockSize);
  295. close(fd);
  296. if (wrd < MtdBlockSize) {
  297. StoreLogMsg("write /dev/mtdblock12 NG\r\n");
  298. free(ptr);
  299. return 0;
  300. }
  301. // Save factory default setting value to flash backup setting block
  302. fd = open("/dev/mtdblock11", O_RDWR);
  303. if (fd < 0) {
  304. StoreLogMsg("open /dev/mtdblock11 NG\r\n");
  305. free(ptr);
  306. return 0;
  307. }
  308. wrd = write(fd, ptr, MtdBlockSize);
  309. close(fd);
  310. if (wrd < MtdBlockSize) {
  311. StoreLogMsg("write /dev/mtdblock11 NG\r\n");
  312. free(ptr);
  313. return 0;
  314. }
  315. // Save factory default setting value to flash setting block
  316. fd = open("/dev/mtdblock10", O_RDWR);
  317. if (fd < 0) {
  318. StoreLogMsg("open /dev/mtdblock10 NG\r\n");
  319. free(ptr);
  320. return 0;
  321. }
  322. wrd = write(fd, ptr, MtdBlockSize);
  323. close(fd);
  324. if (wrd < MtdBlockSize) {
  325. StoreLogMsg("write /dev/mtdblock10 NG\r\n");
  326. free(ptr);
  327. return 0;
  328. }
  329. StoreLogMsg("FactoryConfig write to flash OK\r\n");
  330. #endif //0
  331. }
  332. free(ptr);
  333. return FAIL;
  334. }