ftp.c
上传用户:sxdewei
上传日期:2014-06-02
资源大小:67k
文件大小:6k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. #include <fcntl.h>
  5. #include <getopt.h>
  6. #include <errno.h>
  7. #include <sys/ioctl.h>
  8. #include <linux/config.h>
  9. #include <netinet/in.h>
  10. #include <arpa/inet.h>
  11. #include "cgivars.h"
  12. #include "htmllib.h"
  13. #include "config_phase.h"
  14. #include "sysconf.h"
  15. #define DEBUG        0
  16. #define ID_FTPSERADD         45
  17. #define ID_FTPPORT             46
  18. #define ID_FTPUSNM            47
  19. #define ID_FTPPSWD            48
  20. #define ID_FTPMODE            49
  21. static config_item ** items;
  22. static int config_list[] = {45,46,47,48,49};
  23. static char *config_name[] = {"FTPSERADD","FTPPORT","FTPUSNM","FTPPSWD","FTPMODE"};
  24. char java[] = 
  25. "<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  26. <HTML><HEAD>
  27. <META http-equiv=Expires content="Tue, 1 Jan 1980 2:00:00 GMT">
  28. <META http-equiv=Pragma content=no-cache>
  29. <META http-equiv=Cache-Control content="no-cache,must revalidate">
  30. <META http-equiv=Content-Type content="text/html; charset=gb2312">
  31. <STYLE type=text/css>BODY {
  32. FONT-SIZE: 10pt; FONT-FAMILY: Arial
  33. }
  34. TD {
  35. FONT-SIZE: 10pt; FONT-FAMILY: Arial
  36. }
  37. FORM {
  38. FONT-SIZE: 10pt; FONT-FAMILY: Arial
  39. }
  40. OPTION {
  41. FONT-SIZE: 10pt; FONT-FAMILY: Arial
  42. }
  43. TEXTAREA {
  44. FONT-SIZE: 10pt; FONT-FAMILY: Arial
  45. }
  46. P {
  47. FONT-SIZE: 10pt; FONT-FAMILY: Arial
  48. }
  49. OL {
  50. FONT-SIZE: 10pt; FONT-FAMILY: Arial
  51. }
  52. INPUT {
  53. FONT-SIZE: 10pt; FONT-FAMILY: Arial
  54. }
  55. SELECT {
  56. FONT-SIZE: 10pt; FONT-FAMILY: Arial
  57. }
  58. .style1 {
  59. FONT-WEIGHT: bold; FONT-SIZE: 14pt
  60. }
  61. </STYLE>
  62. <META content="MSHTML 6.00.6000.16414" name=GENERATOR></HEAD>";
  63. void ftp(char **postvars, int form_method)
  64. {
  65. int config_num = sizeof(config_list)/sizeof(int);
  66. int i;
  67. int r_fd, w_fd;
  68. int temp_int;
  69. char *temp_string;
  70. //r_fd = open_read_fifo();
  71. items = init_config_item(items, config_num, config_list);
  72. printf("%sn", java);
  73. // If we got post, write it into flash
  74. if(form_method == POST)
  75. {
  76. GetConfValues(config_list, items, config_num);
  77. if(SaveConfig(postvars, items, config_list, config_name, config_num))
  78. {/*
  79. w_fd = open_write_fifo();
  80. notify_config(w_fd);
  81. close_write_fifo(w_fd);
  82. read_fifo(r_fd);
  83. */
  84. }
  85. }
  86. GetConfValues(config_list, items, config_num);
  87. printf("<BODY leftMargin=30 topMargin=24 rightMargin=30><P class=style1>FTP服务</P>n");
  88. printf("<TABLE width="100%"><TBODY><TR><TD><FORM name=ftp action="/ftp.cgi" method=post target=msgFrame>n");
  89. printf("<TABLE style="BORDER-COLLAPSE: collapse" borderColor=#dae3eb cellSpacing=0 cellPadding=0 width="100%" border=1>n");
  90. printf("<TBODY><TR bgColor=#cccccc><TD colSpan=2><STRONG>FTP设置</STRONG></TD></TR>n");
  91. printf("<TR><TD noWrap width="40%">FTP服务器地址</TD>n");
  92. //ID_FTPSERADD
  93. if(temp_string = getdata(ID_FTPSERADD, items, config_num))
  94. printf("<TD>&nbsp; <INPUT size=25 name=FTPSERADD value=%s></TD></TR>n", temp_string);
  95. else
  96. printf("<TD>&nbsp; <INPUT size=25 name=FTPSERADD></TD></TR>n");
  97. //ID_FTPPORT
  98. if(temp_string = getdata(ID_FTPPORT, items, config_num))
  99. printf("<TR><TD noWrap width="40%">FTP服务器端口</TD> <TD>&nbsp; <INPUT size=25 name=FTPPORT value=%s ></TD></TR>n", temp_string);
  100.        else
  101.     printf("<TR><TD noWrap width="40%">FTP服务器端口</TD> <TD>&nbsp; <INPUT size=25 name=FTPPORT></TD></TR>n");
  102.  //ID_FTPUSNM
  103.  if(temp_string = getdata(ID_FTPUSNM, items, config_num))
  104.   printf("<TR><TD>帐号</TD><TD>&nbsp; <INPUT maxLength=32 name=FTPUSNM value=%s></TD></TR>n", temp_string);
  105.  else
  106.   printf("<TR><TD>帐号</TD><TD>&nbsp; <INPUT maxLength=32 name=FTPUSNM></TD></TR>n");
  107.  //ID_FTPPSWD
  108.  if(temp_string = getdata(ID_FTPPSWD, items, config_num))
  109.           printf("<TR><TD>密码</TD><TD>&nbsp; <INPUT type=password maxLength=32  name=FTPPSWD value=%s></TD></TR>n", temp_string);
  110.  else
  111.    printf("<TR><TD>密码</TD><TD>&nbsp; <INPUT type=password maxLength=32  name=FTPPSWD></TD></TR>n");
  112.  //ID_FTPMODE
  113. printf("<TR><TD>连接模式</TD><TD>&nbsp; <SELECT name=FTPMODE>n");
  114. if(temp_string = getdata(ID_FTPMODE, items, config_num))
  115. {
  116. temp_int = atoi(temp_string);
  117. if( 1 == temp_int )
  118. {
  119. printf("<OPTION value="1" selected>Port</OPTION>n");
  120. printf("<OPTION value="0">Passive</OPTION></SELECT> (通常情况下选择Port模式) </TD></TR>n");
  121. }
  122. else
  123. {
  124. printf("<OPTION value="1">Port</OPTION>n");
  125. printf("<OPTION value="0" selected>Passive</OPTION></SELECT> (通常情况下选择Port模式) </TD></TR>n");
  126. }
  127. }
  128. printf("</TBODY></TABLE><DIV align=left><INPUT type=submit value=应用> <INPUT type=reset value=清除> </DIV>n");
  129.        printf("</FORM></TD></TR><TR><TD></TD></TR></TBODY></TABLE></BODY></HTML>n");
  130.     
  131. free_config_item(items, config_num);
  132. //close_read_fifo();
  133. }
  134. ////////////////////////////////////////////////////////////////////////////
  135. // Function: main
  136. ////////////////////////////////////////////////////////////////////////////
  137. int main(void)
  138. {
  139.     char **postvars = NULL;  // POST request data repository
  140.     char **getvars = NULL;   // GET request data repository
  141.     int form_method;         // POST = 1, GET = 0
  142.     // CGI part start here
  143.     adminCheck();
  144.     form_method = getRequestMethod();
  145.     if(form_method == POST)
  146.     {
  147.        // getvars = getGETvars();
  148.         postvars = getPOSTvars();
  149.     }
  150.     else if(form_method == GET)
  151.     {
  152.         getvars = getGETvars();
  153.     }
  154.     // CGI start here, set COM port
  155.     ftp(postvars, form_method);
  156.     //htmlFooter();
  157.     cleanUp(form_method, getvars, postvars);
  158.     fflush(stdout);
  159.     exit(0);
  160. }  // end of main