@ -4,6 +4,7 @@
# include "../include/servers/fcgi.h"
# include "../include/servers/fcgi.h"
# include "../c/utils.h"
# include "../c/utils.h"
# include <ctype.h>
# include <ctype.h>
# include <fcgiapp.h>
# include <stdio.h>
# include <stdio.h>
# include <stdlib.h>
# include <stdlib.h>
# include <string.h>
# include <string.h>
@ -81,6 +82,8 @@ int rpd_fcgi_server_start(rpd_app *app, const char *sock_path)
listen_requests ( ( void * ) & data ) ;
listen_requests ( ( void * ) & data ) ;
# endif
# endif
FCGX_ShutdownPending ( ) ;
return 0 ;
return 0 ;
}
}
@ -131,14 +134,16 @@ static void handle_request(rpd_app *app, FCGX_Request *fcgx_req)
req = ( rpd_req * ) malloc ( sizeof ( rpd_req ) ) ;
req = ( rpd_req * ) malloc ( sizeof ( rpd_req ) ) ;
res = ( rpd_res * ) malloc ( sizeof ( rpd_res ) ) ;
res = ( rpd_res * ) malloc ( sizeof ( rpd_res ) ) ;
fcgx_to_ rpd_req( req , fcgx_ req) ;
rpd_req_init ( req ) ;
rpd_res_init ( res ) ;
rpd_res_init ( res ) ;
fcgx_to_rpd_req ( req , fcgx_req ) ;
rpd_app_handle_request ( app , req , res ) ;
rpd_app_handle_request ( app , req , res ) ;
send_response ( res , fcgx_req - > out ) ;
send_response ( res , fcgx_req - > out ) ;
rpd_req_cleanup ( req ) ;
rpd_req_free ( req ) ;
rpd_res_cleanup ( res ) ;
rpd_res_free ( res ) ;
free ( req ) ;
free ( req ) ;
free ( res ) ;
free ( res ) ;
}
}
@ -163,8 +168,6 @@ static int fcgx_to_rpd_req(rpd_req *dest, FCGX_Request *req)
rpd_url_parse ( & dest - > path , FCGX_GetParam ( " DOCUMENT_URI " , req - > envp ) ) ;
rpd_url_parse ( & dest - > path , FCGX_GetParam ( " DOCUMENT_URI " , req - > envp ) ) ;
// dest->auth = FCGX_GetParam("HTTP_AUTHORIZATION", req->envp);
// dest->auth = FCGX_GetParam("HTTP_AUTHORIZATION", req->envp);
// dest->cookie = FCGX_GetParam("HTTP_COOKIE", req->envp);
// dest->cookie = FCGX_GetParam("HTTP_COOKIE", req->envp);
rpd_keyval_init ( & dest - > params , 0 ) ;
rpd_keyval_init ( & dest - > headers , 0 ) ;
dest - > headers . unique = 0 ;
dest - > headers . unique = 0 ;
char * * env = req - > envp ;
char * * env = req - > envp ;
@ -210,15 +213,17 @@ static int fcgx_to_rpd_req(rpd_req *dest, FCGX_Request *req)
static int read_fcgx_req_body ( char * * dest , FCGX_Request * req )
static int read_fcgx_req_body ( char * * dest , FCGX_Request * req )
{
{
char * clen = FCGX_GetParam ( " CONTENT_LENGTH " , req - > envp ) ;
char * clen = FCGX_GetParam ( " CONTENT_LENGTH " , req - > envp ) ;
if ( ! clen )
if ( ! clen ) {
return 1 ;
return 1 ;
}
size_t len = atoll ( clen ) ;
size_t len = atoll ( clen ) ;
* dest = ( char * ) malloc ( sizeof ( char ) * ( len + 1 ) ) ;
* dest = ( char * ) malloc ( sizeof ( char ) * ( len + 1 ) ) ;
if ( ! * dest )
if ( ! * dest )
return 2 ;
return 2 ;
* dest [ len ] = ' \0 ' ;
( * dest ) [ len ] = ' \0 ' ;
FCGX_GetStr ( * dest , len , req - > in ) ;
FCGX_GetStr ( * dest , len , req - > in ) ;
return 0 ;
return 0 ;
@ -226,8 +231,6 @@ static int read_fcgx_req_body(char **dest, FCGX_Request *req)
static int env_to_req_header ( char * * key , char * * val , const char * env )
static int env_to_req_header ( char * * key , char * * val , const char * env )
{
{
const char * ptr = NULL ;
rpd_splitbyc ( key , val , env , ' = ' ) ;
rpd_splitbyc ( key , val , env , ' = ' ) ;
if ( ! * key | | ! * val ) {
if ( ! * key | | ! * val ) {
if ( * key )
if ( * key )