]> git.sur5r.net Git - freertos/blob - Demo/Common/ethernet/uIP/uip-1.0/apps/webserver/httpd-cgi.c
Start to re-arrange files to include FreeRTOS+ in main download.
[freertos] / Demo / Common / ethernet / uIP / uip-1.0 / apps / webserver / httpd-cgi.c
1 /**\r
2  * \addtogroup httpd\r
3  * @{\r
4  */\r
5 \r
6 /**\r
7  * \file\r
8  *         Web server script interface\r
9  * \author\r
10  *         Adam Dunkels <adam@sics.se>\r
11  *\r
12  */\r
13 \r
14 /*\r
15  * Copyright (c) 2001-2006, Adam Dunkels.\r
16  * All rights reserved.\r
17  *\r
18  * Redistribution and use in source and binary forms, with or without\r
19  * modification, are permitted provided that the following conditions\r
20  * are met:\r
21  * 1. Redistributions of source code must retain the above copyright\r
22  *    notice, this list of conditions and the following disclaimer.\r
23  * 2. Redistributions in binary form must reproduce the above copyright\r
24  *    notice, this list of conditions and the following disclaimer in the\r
25  *    documentation and/or other materials provided with the distribution.\r
26  * 3. The name of the author may not be used to endorse or promote\r
27  *    products derived from this software without specific prior\r
28  *    written permission.\r
29  *\r
30  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS\r
31  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\r
32  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\r
33  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY\r
34  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r
35  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\r
36  * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\r
37  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\r
38  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\r
39  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\r
40  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
41  *\r
42  * This file is part of the uIP TCP/IP stack.\r
43  *\r
44  * $Id: httpd-cgi.c,v 1.2 2006/06/11 21:46:37 adam Exp $\r
45  *\r
46  */\r
47 \r
48 #include "uip.h"\r
49 #include "psock.h"\r
50 #include "httpd.h"\r
51 #include "httpd-cgi.h"\r
52 #include "httpd-fs.h"\r
53 \r
54 #include <stdio.h>\r
55 #include <string.h>\r
56 \r
57 HTTPD_CGI_CALL(file, "file-stats", file_stats);\r
58 HTTPD_CGI_CALL(tcp, "tcp-connections", tcp_stats);\r
59 HTTPD_CGI_CALL(net, "net-stats", net_stats);\r
60 \r
61 static const struct httpd_cgi_call *calls[] = { &file, &tcp, &net, NULL };\r
62 \r
63 /*---------------------------------------------------------------------------*/\r
64 static\r
65 PT_THREAD(nullfunction(struct httpd_state *s, char *ptr))\r
66 {\r
67   PSOCK_BEGIN(&s->sout);\r
68   PSOCK_END(&s->sout);\r
69 }\r
70 /*---------------------------------------------------------------------------*/\r
71 httpd_cgifunction\r
72 httpd_cgi(char *name)\r
73 {\r
74   const struct httpd_cgi_call **f;\r
75 \r
76   /* Find the matching name in the table, return the function. */\r
77   for(f = calls; *f != NULL; ++f) {\r
78     if(strncmp((*f)->name, name, strlen((*f)->name)) == 0) {\r
79       return (*f)->function;\r
80     }\r
81   }\r
82   return nullfunction;\r
83 }\r
84 /*---------------------------------------------------------------------------*/\r
85 static unsigned short\r
86 generate_file_stats(void *arg)\r
87 {\r
88   char *f = (char *)arg;\r
89   return snprintf((char *)uip_appdata, UIP_APPDATA_SIZE, "%5u", httpd_fs_count(f));\r
90 }\r
91 /*---------------------------------------------------------------------------*/\r
92 static\r
93 PT_THREAD(file_stats(struct httpd_state *s, char *ptr))\r
94 {\r
95   PSOCK_BEGIN(&s->sout);\r
96 \r
97   PSOCK_GENERATOR_SEND(&s->sout, generate_file_stats, strchr(ptr, ' ') + 1);\r
98   \r
99   PSOCK_END(&s->sout);\r
100 }\r
101 /*---------------------------------------------------------------------------*/\r
102 static const char closed[] =   /*  "CLOSED",*/\r
103 {0x43, 0x4c, 0x4f, 0x53, 0x45, 0x44, 0};\r
104 static const char syn_rcvd[] = /*  "SYN-RCVD",*/\r
105 {0x53, 0x59, 0x4e, 0x2d, 0x52, 0x43, 0x56,\r
106  0x44,  0};\r
107 static const char syn_sent[] = /*  "SYN-SENT",*/\r
108 {0x53, 0x59, 0x4e, 0x2d, 0x53, 0x45, 0x4e,\r
109  0x54,  0};\r
110 static const char established[] = /*  "ESTABLISHED",*/\r
111 {0x45, 0x53, 0x54, 0x41, 0x42, 0x4c, 0x49, 0x53, 0x48,\r
112  0x45, 0x44, 0};\r
113 static const char fin_wait_1[] = /*  "FIN-WAIT-1",*/\r
114 {0x46, 0x49, 0x4e, 0x2d, 0x57, 0x41, 0x49,\r
115  0x54, 0x2d, 0x31, 0};\r
116 static const char fin_wait_2[] = /*  "FIN-WAIT-2",*/\r
117 {0x46, 0x49, 0x4e, 0x2d, 0x57, 0x41, 0x49,\r
118  0x54, 0x2d, 0x32, 0};\r
119 static const char closing[] = /*  "CLOSING",*/\r
120 {0x43, 0x4c, 0x4f, 0x53, 0x49,\r
121  0x4e, 0x47, 0};\r
122 static const char time_wait[] = /*  "TIME-WAIT,"*/\r
123 {0x54, 0x49, 0x4d, 0x45, 0x2d, 0x57, 0x41,\r
124  0x49, 0x54, 0};\r
125 static const char last_ack[] = /*  "LAST-ACK"*/\r
126 {0x4c, 0x41, 0x53, 0x54, 0x2d, 0x41, 0x43,\r
127  0x4b, 0};\r
128 \r
129 static const char *states[] = {\r
130   closed,\r
131   syn_rcvd,\r
132   syn_sent,\r
133   established,\r
134   fin_wait_1,\r
135   fin_wait_2,\r
136   closing,\r
137   time_wait,\r
138   last_ack};\r
139   \r
140 \r
141 static unsigned short\r
142 generate_tcp_stats(void *arg)\r
143 {\r
144   struct uip_conn *conn;\r
145   struct httpd_state *s = (struct httpd_state *)arg;\r
146     \r
147   conn = &uip_conns[s->count];\r
148   return snprintf((char *)uip_appdata, UIP_APPDATA_SIZE,\r
149                  "<tr><td>%d</td><td>%u.%u.%u.%u:%u</td><td>%s</td><td>%u</td><td>%u</td><td>%c %c</td></tr>\r\n",\r
150                  htons(conn->lport),\r
151                  htons(conn->ripaddr[0]) >> 8,\r
152                  htons(conn->ripaddr[0]) & 0xff,\r
153                  htons(conn->ripaddr[1]) >> 8,\r
154                  htons(conn->ripaddr[1]) & 0xff,\r
155                  htons(conn->rport),\r
156                  states[conn->tcpstateflags & UIP_TS_MASK],\r
157                  conn->nrtx,\r
158                  conn->timer,\r
159                  (uip_outstanding(conn))? '*':' ',\r
160                  (uip_stopped(conn))? '!':' ');\r
161 }\r
162 /*---------------------------------------------------------------------------*/\r
163 static\r
164 PT_THREAD(tcp_stats(struct httpd_state *s, char *ptr))\r
165 {\r
166   \r
167   PSOCK_BEGIN(&s->sout);\r
168 \r
169   for(s->count = 0; s->count < UIP_CONNS; ++s->count) {\r
170     if((uip_conns[s->count].tcpstateflags & UIP_TS_MASK) != UIP_CLOSED) {\r
171       PSOCK_GENERATOR_SEND(&s->sout, generate_tcp_stats, s);\r
172     }\r
173   }\r
174 \r
175   PSOCK_END(&s->sout);\r
176 }\r
177 /*---------------------------------------------------------------------------*/\r
178 static unsigned short\r
179 generate_net_stats(void *arg)\r
180 {\r
181   struct httpd_state *s = (struct httpd_state *)arg;\r
182   return snprintf((char *)uip_appdata, UIP_APPDATA_SIZE,\r
183                   "%5u\n", ((uip_stats_t *)&uip_stat)[s->count]);\r
184 }\r
185 \r
186 static\r
187 PT_THREAD(net_stats(struct httpd_state *s, char *ptr))\r
188 {\r
189   PSOCK_BEGIN(&s->sout);\r
190 \r
191 #if UIP_STATISTICS\r
192 \r
193   for(s->count = 0; s->count < sizeof(uip_stat) / sizeof(uip_stats_t);\r
194       ++s->count) {\r
195     PSOCK_GENERATOR_SEND(&s->sout, generate_net_stats, s);\r
196   }\r
197   \r
198 #endif /* UIP_STATISTICS */\r
199   \r
200   PSOCK_END(&s->sout);\r
201 }\r
202 /*---------------------------------------------------------------------------*/\r
203 /** @} */\r