2 * uhttpd - Tiny single-threaded httpd - Lua handler
4 * Copyright (C) 2010 Jo-Philipp Wich <xm@subsignal.org>
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
20 #include "uhttpd-utils.h"
21 #include "uhttpd-lua.h"
24 static int uh_lua_recv(lua_State
*L
)
27 char buffer
[UH_LIMIT_MSGHEAD
];
30 struct timeval timeout
;
32 length
= luaL_checknumber(L
, 1);
34 if( (length
> 0) && (length
<= sizeof(buffer
)) )
37 FD_SET(fileno(stdin
), &reader
);
41 timeout
.tv_usec
= 100000;
43 /* check whether fd is readable */
44 if( select(fileno(stdin
) + 1, &reader
, NULL
, NULL
, &timeout
) > 0 )
47 rlen
= read(fileno(stdin
), buffer
, length
);
48 lua_pushnumber(L
, rlen
);
52 lua_pushlstring(L
, buffer
, rlen
);
59 /* no, timeout and actually no data */
60 lua_pushnumber(L
, -2);
65 lua_pushnumber(L
, -3);
69 static int uh_lua_send_common(lua_State
*L
, int chunked
)
76 buffer
= luaL_checklstring(L
, 1, &length
);
82 snprintf(chunk
, sizeof(chunk
), "%X\r\n", length
);
83 slen
= write(fileno(stdout
), chunk
, strlen(chunk
));
84 slen
+= write(fileno(stdout
), buffer
, length
);
85 slen
+= write(fileno(stdout
), "\r\n", 2);
89 slen
= write(fileno(stdout
), "0\r\n\r\n", 5);
94 slen
= write(fileno(stdout
), buffer
, length
);
97 lua_pushnumber(L
, slen
);
101 static int uh_lua_send(lua_State
*L
)
103 return uh_lua_send_common(L
, 0);
106 static int uh_lua_sendc(lua_State
*L
)
108 return uh_lua_send_common(L
, 1);
111 static int uh_lua_urldecode(lua_State
*L
)
113 size_t inlen
, outlen
;
115 char outbuf
[UH_LIMIT_MSGHEAD
];
117 inbuf
= luaL_checklstring(L
, 1, &inlen
);
118 outlen
= uh_urldecode(outbuf
, sizeof(outbuf
), inbuf
, inlen
);
120 lua_pushlstring(L
, outbuf
, outlen
);
125 lua_State
* uh_lua_init(const char *handler
)
127 lua_State
*L
= lua_open();
128 const char *err_str
= NULL
;
130 /* Load standard libaries */
133 /* build uhttpd api table */
136 /* register global send and receive functions */
137 lua_pushcfunction(L
, uh_lua_recv
);
138 lua_setfield(L
, -2, "recv");
140 lua_pushcfunction(L
, uh_lua_send
);
141 lua_setfield(L
, -2, "send");
143 lua_pushcfunction(L
, uh_lua_sendc
);
144 lua_setfield(L
, -2, "sendc");
146 lua_pushcfunction(L
, uh_lua_urldecode
);
147 lua_setfield(L
, -2, "urldecode");
149 /* _G.uhttpd = { ... } */
150 lua_setfield(L
, LUA_GLOBALSINDEX
, "uhttpd");
153 /* load Lua handler */
154 switch( luaL_loadfile(L
, handler
) )
158 "Lua handler contains syntax errors, unable to continue\n");
163 "Lua handler ran out of memory, unable to continue\n");
168 "Lua cannot open the handler script, unable to continue\n");
172 /* compile Lua handler */
173 switch( lua_pcall(L
, 0, 0, 0) )
176 err_str
= luaL_checkstring(L
, -1);
178 "Lua handler had runtime error, unable to continue\n"
179 "Error: %s\n", err_str
184 err_str
= luaL_checkstring(L
, -1);
186 "Lua handler ran out of memory, unable to continue\n"
187 "Error: %s\n", err_str
192 /* test handler function */
193 lua_getglobal(L
, UH_LUA_CALLBACK
);
195 if( ! lua_isfunction(L
, -1) )
198 "Lua handler provides no " UH_LUA_CALLBACK
"(), unable to continue\n");
212 void uh_lua_request(struct client
*cl
, struct http_request
*req
, lua_State
*L
)
215 int content_length
= 0;
219 const char *prefix
= cl
->server
->conf
->lua_prefix
;
220 const char *err_str
= NULL
;
222 int rfd
[2] = { 0, 0 };
223 int wfd
[2] = { 0, 0 };
225 char buf
[UH_LIMIT_MSGHEAD
];
233 struct timeval timeout
;
236 /* spawn pipes for me->child, child->me */
237 if( (pipe(rfd
) < 0) || (pipe(wfd
) < 0) )
239 uh_http_sendhf(cl
, 500, "Internal Server Error",
240 "Failed to create pipe: %s", strerror(errno
));
242 if( rfd
[0] > 0 ) close(rfd
[0]);
243 if( rfd
[1] > 0 ) close(rfd
[1]);
244 if( wfd
[0] > 0 ) close(wfd
[0]);
245 if( wfd
[1] > 0 ) close(wfd
[1]);
251 switch( (child
= fork()) )
254 uh_http_sendhf(cl
, 500, "Internal Server Error",
255 "Failed to fork child: %s", strerror(errno
));
259 /* restore SIGTERM */
261 sa
.sa_handler
= SIG_DFL
;
262 sigemptyset(&sa
.sa_mask
);
263 sigaction(SIGTERM
, &sa
, NULL
);
265 /* close loose pipe ends */
269 /* patch stdout and stdin to pipes */
273 /* put handler callback on stack */
274 lua_getglobal(L
, UH_LUA_CALLBACK
);
276 /* build env table */
282 case UH_HTTP_MSG_GET
:
283 lua_pushstring(L
, "GET");
286 case UH_HTTP_MSG_HEAD
:
287 lua_pushstring(L
, "HEAD");
290 case UH_HTTP_MSG_POST
:
291 lua_pushstring(L
, "POST");
295 lua_setfield(L
, -2, "REQUEST_METHOD");
298 lua_pushstring(L
, req
->url
);
299 lua_setfield(L
, -2, "REQUEST_URI");
302 lua_pushstring(L
, cl
->server
->conf
->lua_prefix
);
303 lua_setfield(L
, -2, "SCRIPT_NAME");
305 /* query string, path info */
306 if( (query_string
= strchr(req
->url
, '?')) != NULL
)
308 lua_pushstring(L
, query_string
+ 1);
309 lua_setfield(L
, -2, "QUERY_STRING");
311 if( (int)(query_string
- req
->url
) > strlen(prefix
) )
314 &req
->url
[strlen(prefix
)],
315 (int)(query_string
- req
->url
) - strlen(prefix
)
318 lua_setfield(L
, -2, "PATH_INFO");
321 else if( strlen(req
->url
) > strlen(prefix
) )
323 lua_pushstring(L
, &req
->url
[strlen(prefix
)]);
324 lua_setfield(L
, -2, "PATH_INFO");
327 /* http protcol version */
328 lua_pushnumber(L
, floor(req
->version
* 10) / 10);
329 lua_setfield(L
, -2, "HTTP_VERSION");
331 if( req
->version
> 1.0 )
332 lua_pushstring(L
, "HTTP/1.1");
334 lua_pushstring(L
, "HTTP/1.0");
336 lua_setfield(L
, -2, "SERVER_PROTOCOL");
339 /* address information */
340 lua_pushstring(L
, sa_straddr(&cl
->peeraddr
));
341 lua_setfield(L
, -2, "REMOTE_ADDR");
343 lua_pushinteger(L
, sa_port(&cl
->peeraddr
));
344 lua_setfield(L
, -2, "REMOTE_PORT");
346 lua_pushstring(L
, sa_straddr(&cl
->servaddr
));
347 lua_setfield(L
, -2, "SERVER_ADDR");
349 lua_pushinteger(L
, sa_port(&cl
->servaddr
));
350 lua_setfield(L
, -2, "SERVER_PORT");
352 /* essential env vars */
353 foreach_header(i
, req
->headers
)
355 if( !strcasecmp(req
->headers
[i
], "Content-Length") )
357 lua_pushnumber(L
, atoi(req
->headers
[i
+1]));
358 lua_setfield(L
, -2, "CONTENT_LENGTH");
360 else if( !strcasecmp(req
->headers
[i
], "Content-Type") )
362 lua_pushstring(L
, req
->headers
[i
+1]);
363 lua_setfield(L
, -2, "CONTENT_TYPE");
370 foreach_header(i
, req
->headers
)
372 if( strcasecmp(req
->headers
[i
], "Content-Length") &&
373 strcasecmp(req
->headers
[i
], "Content-Type")
375 lua_pushstring(L
, req
->headers
[i
+1]);
376 lua_setfield(L
, -2, req
->headers
[i
]);
380 lua_setfield(L
, -2, "headers");
384 switch( lua_pcall(L
, 1, 0, 0) )
388 err_str
= luaL_checkstring(L
, -1);
391 err_str
= "Unknown error";
394 "HTTP/%.1f 500 Internal Server Error\r\n"
395 "Connection: close\r\n"
396 "Content-Type: text/plain\r\n"
397 "Content-Length: %i\r\n\r\n"
398 "Lua raised a runtime error:\n %s\n",
399 req
->version
, 31 + strlen(err_str
), err_str
414 /* parent; handle I/O relaying */
416 /* close unneeded pipe ends */
421 fd_max
= max(rfd
[0], wfd
[1]) + 1;
423 /* find content length */
424 if( req
->method
== UH_HTTP_MSG_POST
)
426 foreach_header(i
, req
->headers
)
428 if( ! strcasecmp(req
->headers
[i
], "Content-Length") )
430 content_length
= atoi(req
->headers
[i
+1]);
438 do { if( x < 0 ) goto out; } while(0)
442 timeout
.tv_sec
= cl
->server
->conf
->script_timeout
;
445 /* I/O loop, watch our pipe ends and dispatch child reads/writes from/to socket */
451 FD_SET(rfd
[0], &reader
);
452 FD_SET(wfd
[1], &writer
);
454 /* wait until we can read or write or both */
455 if( select_intr(fd_max
, &reader
,
456 (content_length
> -1) ? &writer
: NULL
, NULL
,
457 (data_sent
< 1) ? &timeout
: NULL
) > 0
459 /* ready to write to Lua child */
460 if( FD_ISSET(wfd
[1], &writer
) )
462 /* there is unread post data waiting */
463 if( content_length
> 0 )
465 /* read it from socket ... */
466 if( (buflen
= uh_tcp_recv(cl
, buf
, min(content_length
, sizeof(buf
)))) > 0 )
468 /* ... and write it to child's stdin */
469 if( write(wfd
[1], buf
, buflen
) < 0 )
472 content_length
-= buflen
;
475 /* unexpected eof! */
478 if( write(wfd
[1], "", 0) < 0 )
485 /* there is no more post data, close pipe to child's stdin */
486 else if( content_length
> -1 )
493 /* ready to read from Lua child */
494 if( FD_ISSET(rfd
[0], &reader
) )
496 /* read data from child ... */
497 if( (buflen
= read(rfd
[0], buf
, sizeof(buf
))) > 0 )
499 /* pass through buffer to socket */
500 ensure(uh_tcp_send(cl
, buf
, buflen
));
504 /* looks like eof from child */
509 uh_http_sendhf(cl
, 500, "Internal Server Error",
510 "The Lua child did not produce any response");
517 /* timeout exceeded or interrupted by SIGCHLD */
520 if( (errno
!= EINTR
) && ! data_sent
)
522 ensure(uh_http_sendhf(cl
, 504, "Gateway Timeout",
523 "The Lua script took too long to produce "
535 if( !kill(child
, 0) )
537 kill(child
, SIGTERM
);
538 waitpid(child
, NULL
, 0);
545 void uh_lua_close(lua_State
*L
)
This page took 0.072334 seconds and 5 git commands to generate.