FWMaker.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*===========================================================================
  2. Combined Charging System (CCS): SECC
  3. FWMaker.c
  4. initiated by Vern, Joseph
  5. (since 2019/07/19)
  6. =============================================================================*/
  7. #include <stdio.h>
  8. #include <sys/types.h>
  9. #include <sys/socket.h>
  10. #include <netinet/in.h>
  11. #include <arpa/inet.h>
  12. #include <string.h>
  13. #include <net/if.h> /*struct ifreq*/
  14. #include <linux/sockios.h> /*SIOCGIFINDEX*/
  15. #include <linux/socket.h>
  16. #include <errno.h>
  17. #include <sys/time.h>
  18. #include <sys/timeb.h>
  19. #include <fcntl.h>
  20. #include <sys/mman.h>
  21. #include "FWMaker.h"
  22. //./FWMaker 172.16.24.126
  23. int main(int argc, char *argv[])
  24. {
  25. unsigned char *MemBuf, *MemBuf2, buf[64];
  26. int fd, rd = 0, wrd = 0, tmp = 0, rd2 = 0;
  27. unsigned int CheckSum = 0;
  28. memset(buf, 0, 64);
  29. sprintf(buf, "tftp -gr uImage -l /mnt/uImage %s", argv[1]);
  30. system(buf);
  31. memset(buf, 0, 64);
  32. sprintf(buf, "tftp -gr rootfs_nor.img -l /mnt/rootfs_nor.img %s", argv[1]);
  33. system(buf);
  34. if((MemBuf = malloc(0x100000D)) == NULL)
  35. {
  36. printf("Allocate MemBuf memory error\n");
  37. return 0;
  38. }
  39. memset(MemBuf, 0xff, 0x100000D);
  40. fd = open("/mnt/uImage", O_RDWR);
  41. if(fd > 0)
  42. {
  43. if((rd = read(fd, MemBuf, 0x100000D)) <= 0)
  44. {
  45. printf("/mnt/uImage read Error\n");
  46. free(MemBuf);
  47. close(fd);
  48. return 0;
  49. }
  50. close(fd);
  51. for(tmp = 0; tmp < rd; tmp++)
  52. {
  53. CheckSum += MemBuf[tmp];
  54. }
  55. strncpy(MemBuf + rd, "DELTADCOK", 9);
  56. *(MemBuf + rd + 9) = CheckSum >> 24;
  57. *(MemBuf + rd + 10) = CheckSum >> 16;
  58. *(MemBuf + rd + 11) = CheckSum >> 8;
  59. *(MemBuf + rd + 12) = CheckSum;
  60. // memcpy(MemBuf+rd+9,&CheckSum,4);
  61. fd = open("/mnt/DcoKImage", O_CREAT | O_RDWR);
  62. wrd = write(fd, MemBuf, rd + 13);
  63. if(wrd != (rd + 13))
  64. {
  65. printf("write error wrd=0x%x, rd=0x%x\n", wrd, rd + 13);
  66. }
  67. else
  68. {
  69. printf("/mnt/DcoKImage OK\n");
  70. }
  71. }
  72. else
  73. {
  74. free(MemBuf);
  75. printf("/mnt/uImage open Error\n");
  76. return 0;
  77. }
  78. memset(MemBuf, 0xff, 0x100000D);
  79. CheckSum = rd = 0;
  80. fd = open("/mnt/rootfs_nor.img", O_RDWR);
  81. if(fd > 0)
  82. {
  83. if((rd = read(fd, MemBuf, 0x100000D)) <= 0)
  84. {
  85. printf("/mnt/rootfs_nor.img read Error\n");
  86. free(MemBuf);
  87. close(fd);
  88. return 0;
  89. }
  90. close(fd);
  91. for(tmp = 0; tmp < rd; tmp++)
  92. {
  93. CheckSum += MemBuf[tmp];
  94. }
  95. strncpy(MemBuf + rd, "DELTADCOF", 9);
  96. *(MemBuf + rd + 9) = CheckSum >> 24;
  97. *(MemBuf + rd + 10) = CheckSum >> 16;
  98. *(MemBuf + rd + 11) = CheckSum >> 8;
  99. *(MemBuf + rd + 12) = CheckSum;
  100. //memcpy(MemBuf+rd+9,&CheckSum,4);
  101. fd = open("/mnt/DcoFImage", O_CREAT | O_RDWR);
  102. wrd = write(fd, MemBuf, rd + 13);
  103. if(wrd != (rd + 13))
  104. {
  105. printf("write error wrd=0x%x, rd=0x%x\n", wrd, rd + 13);
  106. }
  107. else
  108. {
  109. printf("/mnt/DcoFImage OK\n");
  110. }
  111. }
  112. else
  113. {
  114. free(MemBuf);
  115. printf("/mnt/rootfs_nor.img open Error\n");
  116. return 0;
  117. }
  118. }