]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/ARM9_STR91X_IAR/webserver/httpd-cgi.c
6ad2b9b2dbc253f3db7a53f0e17de60ec8586fa0
[freertos] / FreeRTOS / Demo / ARM9_STR91X_IAR / 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 HTTPD_CGI_CALL(rtos, "rtos-stats", rtos_stats );\r
61 \r
62 \r
63 static const struct httpd_cgi_call *calls[] = { &file, &tcp, &net, &rtos, NULL };\r
64 \r
65 /*---------------------------------------------------------------------------*/\r
66 static\r
67 PT_THREAD(nullfunction(struct httpd_state *s, char *ptr))\r
68 {\r
69   PSOCK_BEGIN(&s->sout);\r
70   PSOCK_END(&s->sout);\r
71 }\r
72 /*---------------------------------------------------------------------------*/\r
73 httpd_cgifunction\r
74 httpd_cgi(char *name)\r
75 {\r
76   const struct httpd_cgi_call **f;\r
77 \r
78   /* Find the matching name in the table, return the function. */\r
79   for(f = calls; *f != NULL; ++f) {\r
80     if(strncmp((*f)->name, name, strlen((*f)->name)) == 0) {\r
81       return (*f)->function;\r
82     }\r
83   }\r
84   return nullfunction;\r
85 }\r
86 /*---------------------------------------------------------------------------*/\r
87 static unsigned short\r
88 generate_file_stats(void *arg)\r
89 {\r
90   char *f = (char *)arg;\r
91   return snprintf((char *)uip_appdata, UIP_APPDATA_SIZE, "%5u", httpd_fs_count(f));\r
92 }\r
93 /*---------------------------------------------------------------------------*/\r
94 static\r
95 PT_THREAD(file_stats(struct httpd_state *s, char *ptr))\r
96 {\r
97   PSOCK_BEGIN(&s->sout);\r
98 \r
99   PSOCK_GENERATOR_SEND(&s->sout, generate_file_stats, strchr(ptr, ' ') + 1);\r
100   \r
101   PSOCK_END(&s->sout);\r
102 }\r
103 /*---------------------------------------------------------------------------*/\r
104 static const char closed[] =   /*  "CLOSED",*/\r
105 {0x43, 0x4c, 0x4f, 0x53, 0x45, 0x44, 0};\r
106 static const char syn_rcvd[] = /*  "SYN-RCVD",*/\r
107 {0x53, 0x59, 0x4e, 0x2d, 0x52, 0x43, 0x56,\r
108  0x44,  0};\r
109 static const char syn_sent[] = /*  "SYN-SENT",*/\r
110 {0x53, 0x59, 0x4e, 0x2d, 0x53, 0x45, 0x4e,\r
111  0x54,  0};\r
112 static const char established[] = /*  "ESTABLISHED",*/\r
113 {0x45, 0x53, 0x54, 0x41, 0x42, 0x4c, 0x49, 0x53, 0x48,\r
114  0x45, 0x44, 0};\r
115 static const char fin_wait_1[] = /*  "FIN-WAIT-1",*/\r
116 {0x46, 0x49, 0x4e, 0x2d, 0x57, 0x41, 0x49,\r
117  0x54, 0x2d, 0x31, 0};\r
118 static const char fin_wait_2[] = /*  "FIN-WAIT-2",*/\r
119 {0x46, 0x49, 0x4e, 0x2d, 0x57, 0x41, 0x49,\r
120  0x54, 0x2d, 0x32, 0};\r
121 static const char closing[] = /*  "CLOSING",*/\r
122 {0x43, 0x4c, 0x4f, 0x53, 0x49,\r
123  0x4e, 0x47, 0};\r
124 static const char time_wait[] = /*  "TIME-WAIT,"*/\r
125 {0x54, 0x49, 0x4d, 0x45, 0x2d, 0x57, 0x41,\r
126  0x49, 0x54, 0};\r
127 static const char last_ack[] = /*  "LAST-ACK"*/\r
128 {0x4c, 0x41, 0x53, 0x54, 0x2d, 0x41, 0x43,\r
129  0x4b, 0};\r
130 \r
131 static const char *states[] = {\r
132   closed,\r
133   syn_rcvd,\r
134   syn_sent,\r
135   established,\r
136   fin_wait_1,\r
137   fin_wait_2,\r
138   closing,\r
139   time_wait,\r
140   last_ack};\r
141   \r
142 \r
143 static unsigned short\r
144 generate_tcp_stats(void *arg)\r
145 {\r
146   struct uip_conn *conn;\r
147   struct httpd_state *s = (struct httpd_state *)arg;\r
148     \r
149   conn = &uip_conns[s->count];\r
150   return snprintf((char *)uip_appdata, UIP_APPDATA_SIZE,\r
151                  "<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
152                  htons(conn->lport),\r
153                  htons(conn->ripaddr[0]) >> 8,\r
154                  htons(conn->ripaddr[0]) & 0xff,\r
155                  htons(conn->ripaddr[1]) >> 8,\r
156                  htons(conn->ripaddr[1]) & 0xff,\r
157                  htons(conn->rport),\r
158                  states[conn->tcpstateflags & UIP_TS_MASK],\r
159                  conn->nrtx,\r
160                  conn->timer,\r
161                  (uip_outstanding(conn))? '*':' ',\r
162                  (uip_stopped(conn))? '!':' ');\r
163 }\r
164 /*---------------------------------------------------------------------------*/\r
165 static\r
166 PT_THREAD(tcp_stats(struct httpd_state *s, char *ptr))\r
167 {\r
168   \r
169   PSOCK_BEGIN(&s->sout);\r
170 \r
171   for(s->count = 0; s->count < UIP_CONNS; ++s->count) {\r
172     if((uip_conns[s->count].tcpstateflags & UIP_TS_MASK) != UIP_CLOSED) {\r
173       PSOCK_GENERATOR_SEND(&s->sout, generate_tcp_stats, s);\r
174     }\r
175   }\r
176 \r
177   PSOCK_END(&s->sout);\r
178 }\r
179 /*---------------------------------------------------------------------------*/\r
180 static unsigned short\r
181 generate_net_stats(void *arg)\r
182 {\r
183   struct httpd_state *s = (struct httpd_state *)arg;\r
184   return snprintf((char *)uip_appdata, UIP_APPDATA_SIZE,\r
185                   "%5u\n", ((uip_stats_t *)&uip_stat)[s->count]);\r
186 }\r
187 \r
188 static\r
189 PT_THREAD(net_stats(struct httpd_state *s, char *ptr))\r
190 {\r
191   PSOCK_BEGIN(&s->sout);\r
192 \r
193 #if UIP_STATISTICS\r
194 \r
195   for(s->count = 0; s->count < sizeof(uip_stat) / sizeof(uip_stats_t);\r
196       ++s->count) {\r
197     PSOCK_GENERATOR_SEND(&s->sout, generate_net_stats, s);\r
198   }\r
199   \r
200 #endif /* UIP_STATISTICS */\r
201   \r
202   PSOCK_END(&s->sout);\r
203 }\r
204 /*---------------------------------------------------------------------------*/\r
205 \r
206 extern void vTaskList( signed char *pcWriteBuffer );\r
207 static char cCountBuf[ 32 ];\r
208 long lRefreshCount = 0;\r
209 static unsigned short\r
210 generate_rtos_stats(void *arg)\r
211 {\r
212         lRefreshCount++;\r
213         sprintf( cCountBuf, "<p><br>Refresh count = %d", lRefreshCount );\r
214     vTaskList( uip_appdata );\r
215         strcat( uip_appdata, cCountBuf );\r
216   \r
217   return strlen( uip_appdata );\r
218 }\r
219 /*---------------------------------------------------------------------------*/\r
220 \r
221 \r
222 static\r
223 PT_THREAD(rtos_stats(struct httpd_state *s, char *ptr))\r
224 {\r
225   PSOCK_BEGIN(&s->sout);\r
226 //      for( s->count = 0; s->count < 4; ++s->count )\r
227 //      {\r
228                 PSOCK_GENERATOR_SEND(&s->sout, generate_rtos_stats, NULL);  \r
229 //      }\r
230   PSOCK_END(&s->sout);\r
231 }\r
232 \r
233 /** @} */\r