1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613
|
/*
* Copyright (C)2005-2022 Haxe Foundation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#include <neko.h>
#include <string.h>
#include "mod_neko.h"
DEFINE_KIND(k_mod_neko);
#ifndef NEKO_WINDOWS
# define strcmpi strcasecmp
#endif
// recent versions of APR include "stdbool.h" somewhere which causes conflicts.
#ifdef bool
# undef bool
#endif
#ifdef APACHE_2_X
# define ap_table_get apr_table_get
# define ap_table_set apr_table_set
# define ap_table_add apr_table_add
# define ap_table_do apr_table_do
# define REDIRECT HTTP_MOVED_TEMPORARILY
#endif
#define PARSE_HEADER(start,cursor) \
cursor = start; \
if( *cursor == '"' ) { \
start++; \
cursor++; \
while( *cursor != '"' && *cursor != 0 ) \
cursor++; \
} else { \
while( *cursor != 0 && *cursor != '\r' && *cursor != '\n' && *cursor != '\t' ) \
cursor++; \
}
#define HEADERS_NOT_SENT(msg) \
if( c->headers_sent ) { \
buffer b = alloc_buffer("Cannot set "); \
buffer_append(b,msg); \
buffer_append(b," : Headers already sent"); \
bfailure(b); \
}
/**
<doc>
<h1>Mod_neko</h1>
<p>
Apache access when running inside mod_neko.
</p>
</doc>
**/
/**
get_cookies : void -> #list
<doc>Return a cookie list as a (name,value) chained list</doc>
**/
static value get_cookies() {
const char *k = ap_table_get(CONTEXT()->r->headers_in,"Cookie");
char *start, *end;
value p = val_null, tmp;
if( k == NULL )
return p;
while( (start = strchr(k,'=')) != NULL ) {
start++;
end = start;
while( *end != 0 && *end != '\r' && *end != '\n' && *end != ';' )
end++;
tmp = alloc_array(3);
val_array_ptr(tmp)[0] = copy_string(k,(int)(start-k-1));
val_array_ptr(tmp)[1] = copy_string(start,(int)(end-start));
val_array_ptr(tmp)[2] = p;
p = tmp;
if( *end != ';' || end[1] != ' ' )
break;
k = end + 2;
}
return p;
}
/**
set_cookie : name:string -> val:string -> void
<doc>Set a cookie</doc>
**/
static value set_cookie( value name, value v ) {
mcontext *c = CONTEXT();
buffer b;
value str;
val_check(name,string);
val_check(v,string);
HEADERS_NOT_SENT("Cookie");
b = alloc_buffer(NULL);
val_buffer(b,name);
buffer_append(b,"=");
val_buffer(b,v);
buffer_append(b,";");
str = buffer_to_string(b);
ap_table_add(c->r->headers_out,"Set-Cookie",val_string(str));
return val_true;
}
/**
get_host_name : void -> string
<doc>Get the local host IP</doc>
**/
static value get_host_name() {
mcontext *c = CONTEXT();
return alloc_string( c->r->hostname );
}
/**
get_client_ip : void -> string
<doc>Get the connected client IP</doc>
**/
static value get_client_ip() {
#if AP_SERVER_MAJORVERSION_NUMBER >= 2 && AP_SERVER_MINORVERSION_NUMBER >= 4
return alloc_string( CONTEXT()->r->useragent_ip );
#else
return alloc_string( CONTEXT()->r->connection->remote_ip );
#endif
}
/**
get_uri : void -> string
<doc>Get the original URI requested by the client (before any internal redirection)</doc>
**/
static value get_uri() {
request_rec *r = CONTEXT()->r;
while( r->prev != NULL )
r = r->prev;
return alloc_string( r->uri );
}
/**
redirect : string -> void
<doc>Redirect the client to another page (Location header)</doc>
**/
static value redirect( value s ) {
mcontext *c = CONTEXT();
val_check(s,string);
HEADERS_NOT_SENT("Redirection");
ap_table_set(c->r->headers_out,"Location",val_string(s));
c->r->status = REDIRECT;
return val_true;
}
/**
set_return_code : int -> void
<doc>Set the HTTP return code</doc>
**/
static value set_return_code( value i ) {
mcontext *c = CONTEXT();
val_check(i,int);
HEADERS_NOT_SENT("Return code");
c->r->status = val_int(i);
return val_true;
}
/**
set_header : name:string -> val:string -> void
<doc>Set a HTTP header value</doc>
**/
static value set_header( value s, value k ) {
mcontext *c = CONTEXT();
val_check(s,string);
val_check(k,string);
HEADERS_NOT_SENT("Header");
if( strcmpi(val_string(s),"Content-Type") == 0 ) {
c->content_type = alloc_string(val_string(k));
c->r->content_type = val_string(c->content_type);
} else
ap_table_set(c->r->headers_out,val_string(s),val_string(k));
return val_true;
}
/**
get_client_header : name:string -> string?
<doc>Get a HTTP header sent by the client</doc>
**/
static value get_client_header( value s ) {
mcontext *c = CONTEXT();
val_check(s,string);
return alloc_string( ap_table_get(c->r->headers_in,val_string(s)) );
}
static int store_table( void *r, const char *key, const char *val ) {
value a;
if( key == NULL || val == NULL )
return 1;
a = alloc_array(3);
val_array_ptr(a)[0] = alloc_string(key);
val_array_ptr(a)[1] = alloc_string(val);
val_array_ptr(a)[2] = *(value*)r;
*((value*)r) = a;
return 1;
}
/**
get_client_headers : void -> string list
<doc>Get all the HTTP client headers</doc>
**/
static value get_client_headers() {
value r = val_null;
ap_table_do(store_table,&r,CONTEXT()->r->headers_in,NULL);
return r;
}
/**
get_params_string : void -> string
<doc>Return the whole parameters string</doc>
**/
static value get_params_string() {
return alloc_string(CONTEXT()->r->args);
}
/**
get_post_data : void -> string
<doc>Return the whole unparsed POST string</doc>
**/
static value get_post_data() {
return CONTEXT()->post_data;
}
static char *memfind( char *mem, int mlen, const char *v ) {
char *found;
int len = (int)strlen(v);
if( len == 0 )
return mem;
while( (found = memchr(mem,*v,mlen)) != NULL ) {
if( (int)(found - mem) + len > mlen )
break;
if( memcmp(found,v,len) == 0 )
return found;
mlen -= (int)(found - mem + 1);
mem = found + 1;
}
return NULL;
}
#define BUFSIZE 1024
static void fill_buffer( mcontext *c, value buf, int *len ) {
int pos = *len;
while( pos < BUFSIZE ) {
int k = ap_get_client_block(c->r,val_string(buf)+pos,BUFSIZE-pos);
if( k == 0 )
break;
pos += k;
}
*len = pos;
}
static value discard_body( mcontext *c ) {
char buf[256];
while( ap_get_client_block(c->r,buf,256) > 0 ) {
}
neko_error();
}
/**
parse_multipart_data : onpart:function:2 -> ondata:function:3 -> void
<doc>
Incrementally parse the multipart data. call [onpart(name,filename)] for each part
found and [ondata(buf,pos,len)] when some data is available
</doc>
**/
static value parse_multipart_data( value onpart, value ondata ) {
value buf;
int len = 0;
mcontext *c = CONTEXT();
const char *ctype = ap_table_get(c->r->headers_in,"Content-Type");
value boundstr;
val_check_function(onpart,2);
val_check_function(ondata,3);
buf = alloc_empty_string(BUFSIZE);
if( !ctype || strstr(ctype,"multipart/form-data") == NULL )
return val_null;
// extract boundary value
{
const char *boundary, *bend;
if( (boundary = strstr(ctype,"boundary=")) == NULL )
neko_error();
boundary += 9;
PARSE_HEADER(boundary,bend);
len = (int)(bend - boundary);
boundstr = alloc_empty_string(len+2);
if( val_strlen(boundstr) > BUFSIZE / 2 )
neko_error();
val_string(boundstr)[0] = '-';
val_string(boundstr)[1] = '-';
memcpy(val_string(boundstr)+2,boundary,len);
}
len = 0;
if( !ap_should_client_block(c->r) )
neko_error();
while( true ) {
char *name, *end_name, *filename, *end_file_name, *data;
int pos;
// refill buffer
// we assume here that the the whole multipart header can fit in the buffer
fill_buffer(c,buf,&len);
// is boundary at the beginning of buffer ?
if( len < val_strlen(boundstr) || memcmp(val_string(buf),val_string(boundstr),val_strlen(boundstr)) != 0 )
return discard_body(c);
name = memfind(val_string(buf),len,"Content-Disposition:");
if( name == NULL )
break;
name = memfind(name,len - (int)(name - val_string(buf)),"name=");
if( name == NULL )
return discard_body(c);
name += 5;
PARSE_HEADER(name,end_name);
data = memfind(end_name,len - (int)(end_name - val_string(buf)),"\r\n\r\n");
if( data == NULL )
return discard_body(c);
filename = memfind(name,(int)(data - name),"filename=");
if( filename != NULL ) {
filename += 9;
PARSE_HEADER(filename,end_file_name);
}
data += 4;
pos = (int)(data - val_string(buf));
// send part name
val_call2(onpart,copy_string(name,(int)(end_name - name)),filename?copy_string(filename,(int)(end_file_name - filename)):val_null);
// read data
while( true ) {
const char *boundary;
// recall buffer
memmove(val_string(buf),val_string(buf)+pos,len - pos);
len -= pos;
pos = 0;
fill_buffer(c,buf,&len);
// lookup bounds
boundary = memfind(val_string(buf),len,val_string(boundstr));
if( boundary == NULL ) {
if( len == 0 )
return discard_body(c);
// send as much buffer as possible to client
if( len < BUFSIZE )
pos = len;
else
pos = len - val_strlen(boundstr) + 1;
val_call3(ondata,buf,alloc_int(0),alloc_int(pos));
} else {
// send remaining data
pos = (int)(boundary - val_string(buf));
val_call3(ondata,buf,alloc_int(0),alloc_int(pos-2));
// recall
memmove(val_string(buf),val_string(buf)+pos,len - pos);
len -= pos;
break;
}
}
}
return val_null;
}
static value url_decode( const char *in, int len ) {
int pin = 0;
int pout = 0;
value v = alloc_empty_string(len);
char *out = (char*)val_string(v);
while( len-- > 0 ) {
char c = in[pin++];
if( c == '+' )
c = ' ';
else if( c == '%' ) {
int p1, p2;
if( len < 2 )
break;
p1 = in[pin++];
p2 = in[pin++];
len -= 2;
if( p1 >= '0' && p1 <= '9' )
p1 -= '0';
else if( p1 >= 'a' && p1 <= 'f' )
p1 -= 'a' - 10;
else if( p1 >= 'A' && p1 <= 'F' )
p1 -= 'A' - 10;
else
continue;
if( p2 >= '0' && p2 <= '9' )
p2 -= '0';
else if( p2 >= 'a' && p2 <= 'f' )
p2 -= 'a' - 10;
else if( p2 >= 'A' && p2 <= 'F' )
p2 -= 'A' - 10;
else
continue;
c = (char)((unsigned char)((p1 << 4) + p2));
}
out[pout++] = c;
}
out[pout] = 0;
val_set_size(v,pout);
return v;
}
static void parse_get( value *p, const char *args ) {
char *aand, *aeq, *asep;
value tmp;
while( true ) {
aand = strchr(args,'&');
if( aand == NULL ) {
asep = strchr(args,';');
aand = asep;
} else {
asep = strchr(args,';');
if( asep != NULL && asep < aand )
aand = asep;
}
if( aand != NULL )
*aand = 0;
aeq = strchr(args,'=');
if( aeq != NULL ) {
*aeq = 0;
tmp = alloc_array(3);
val_array_ptr(tmp)[0] = url_decode(args,(int)(aeq-args));
val_array_ptr(tmp)[1] = url_decode(aeq+1,(int)strlen(aeq+1));
val_array_ptr(tmp)[2] = *p;
*p = tmp;
*aeq = '=';
}
if( aand == NULL )
break;
*aand = (aand == asep)?';':'&';
args = aand+1;
}
}
/**
get_params : void -> #list
<doc>parse all GET and POST params and return them into a chained list</doc>
**/
static value get_params() {
mcontext *c = CONTEXT();
const char *args = c->r->args;
value p = val_null;
// PARSE "GET" PARAMS
if( args != NULL )
parse_get(&p,args);
// PARSE "POST" PARAMS
if( c->post_data != NULL ) {
const char *ctype = ap_table_get(c->r->headers_in,"Content-Type");
if( ctype == NULL || strstr(ctype,"urlencoded") != NULL )
parse_get(&p,val_string(c->post_data));
}
return p;
}
/**
cgi_get_cwd : void -> string
<doc>Return current bytecode file working directory</doc>
**/
static value cgi_get_cwd() {
mcontext *c = CONTEXT();
char *s = strrchr(c->r->filename,'/');
value v;
char old;
if( s != NULL ) {
old = s[1];
s[1] = 0;
}
v = alloc_string(c->r->filename);
if( s != NULL )
s[1] = old;
return v;
}
/**
cgi_set_main : function:0? -> void
<doc>Set or disable the main entry point function</doc>
**/
static value cgi_set_main( value f ) {
if( val_is_null(f) ) {
CONTEXT()->main = NULL;
return val_true;
}
val_check_function(f,0);
CONTEXT()->main = f;
return val_true;
}
/**
cgi_flush : void -> void
<doc>Flush the data written so it's immediatly sent to the client</doc>
**/
static value cgi_flush() {
ap_rflush(CONTEXT()->r);
return val_null;
}
/**
cgi_get_config : void -> object
<doc>Return the current configuration</doc>
**/
#define FSET(name,t) alloc_field(v,val_id(#name),alloc_##t(c-> name))
static value cgi_get_config() {
value v = alloc_object(NULL);
mconfig *c = mod_neko_get_config();
FSET(hits,int);
FSET(use_jit,bool);
FSET(use_stats,bool);
FSET(use_prim_stats,bool);
FSET(use_cache,bool);
FSET(exceptions,int);
FSET(gc_period,int);
FSET(max_post_size,int);
return v;
}
/**
cgi_set_config : object -> void
<doc>Set the current configuration</doc>
**/
#define FGET(name,t) f = val_field(v,val_id(#name)); val_check(f,t); c. name = val_##t(f)
static value cgi_set_config( value v ) {
mconfig c;
value f;
val_check(v,object);
FGET(hits,int);
FGET(use_jit,bool);
FGET(use_stats,bool);
FGET(use_prim_stats,bool);
FGET(use_cache,bool);
FGET(exceptions,int);
FGET(gc_period,int);
FGET(max_post_size,int);
mod_neko_set_config(&c);
return val_null;
}
/**
cgi_command : any -> any
<doc>Perform a configuration-specific command :
<ul>
<li>stats : returns the statistics</li>
<li>cache : returns the current cache</li>
</ul>
</doc>
**/
extern value cgi_command( value v );
/**
get_http_method : void -> string
<doc>Returns the http method (GET,POST...) used by the client</doc>
**/
static value get_http_method() {
return alloc_string(CONTEXT()->r->method);
}
/**
log_message : string -> void
<doc>Write the message into the apache log</doc>
**/
static value log_message( value message ) {
mcontext *c = CONTEXT();
val_check(message, string);
#ifdef APACHE_2_X
ap_log_rerror(APLOG_MARK, APLOG_NOTICE, APR_SUCCESS, c->r, "[mod_neko] %s", val_string(message));
#else
ap_log_rerror(APLOG_MARK, APLOG_NOTICE, c->r, "[mod_neko] %s", val_string(message));
#endif
return val_null;
}
DEFINE_PRIM(cgi_get_cwd,0);
DEFINE_PRIM(cgi_set_main,1);
DEFINE_PRIM(get_cookies,0);
DEFINE_PRIM(set_cookie,2);
DEFINE_PRIM(get_host_name,0);
DEFINE_PRIM(get_client_ip,0);
DEFINE_PRIM(get_uri,0);
DEFINE_PRIM(redirect,1);
DEFINE_PRIM(get_params,0);
DEFINE_PRIM(get_params_string,0);
DEFINE_PRIM(get_post_data,0);
DEFINE_PRIM(set_header,2);
DEFINE_PRIM(set_return_code,1);
DEFINE_PRIM(get_client_header,1);
DEFINE_PRIM(get_client_headers,0);
DEFINE_PRIM(parse_multipart_data,2);
DEFINE_PRIM(cgi_flush,0);
DEFINE_PRIM(cgi_get_config,0);
DEFINE_PRIM(cgi_set_config,1);
DEFINE_PRIM(cgi_command,1);
DEFINE_PRIM(get_http_method,0);
DEFINE_PRIM(log_message,1);
/* ************************************************************************ */
|