#define NO_PIKE_SHORTHAND |
|
#include "global.h" |
#include "config.h" |
|
|
#include "machine.h" |
|
#include <sys/types.h> |
#include <sys/stat.h> |
#include <fcntl.h> |
#include <ctype.h> |
#include <string.h> |
#include <time.h> |
#include <limits.h> |
|
#include "fdlib.h" |
#include "stralloc.h" |
#include "pike_macros.h" |
#include "machine.h" |
#include "object.h" |
#include "constants.h" |
#include "interpret.h" |
#include "svalue.h" |
#include "mapping.h" |
#include "array.h" |
#include "builtin_functions.h" |
#include "module_support.h" |
#include "backend.h" |
#include "threads.h" |
#include "operators.h" |
|
|
#include "module_magic.h" |
|
|
|
|
|
|
|
#define THP ((struct header_buf *)Pike_fp->current_storage) |
struct header_buf |
{ |
char *headers; |
char *pnt; |
ptrdiff_t hsize, left; |
int slash_n, spc; |
}; |
|
static void f_hp_exit( struct object *o ) |
{ |
if( THP->headers ) |
free( THP->headers ); |
} |
|
static void f_hp_feed( INT32 args ) |
|
|
{ |
struct pike_string *str = Pike_sp[-1].u.string; |
struct header_buf *hp = THP; |
int tot_slash_n=hp->slash_n, slash_n = 0, spc = hp->spc; |
char *pp,*ep; |
struct svalue *tmp; |
struct mapping *headers; |
ptrdiff_t os=0, i, j, l; |
unsigned char *in; |
|
if( Pike_sp[-1].type != PIKE_T_STRING ) |
Pike_error("Wrong type of argument to feed()\n"); |
if( str->size_shift ) |
Pike_error("Wide string headers not supported\n"); |
while( str->len >= hp->left ) |
{ |
if( THP->hsize > 512 * 1024 ) |
Pike_error("Too many headers\n"); |
THP->hsize += 8192; |
THP->headers = realloc( THP->headers, THP->hsize ); |
if( !THP->headers ) |
{ |
THP->hsize = 0; |
THP->left = 0; |
Pike_error("Running out of memory in header parser\n"); |
} |
THP->left += 8192; |
THP->pnt = (THP->headers + THP->hsize - THP->left); |
} |
|
MEMCPY( hp->pnt, str->str, str->len ); |
pop_n_elems( args ); |
|
for( ep=(hp->pnt+str->len),pp=MAXIMUM(hp->headers,hp->pnt-3); |
pp<ep && slash_n<2; pp++ ) |
if( *pp == ' ' ) spc++; |
else if( *pp == '\n' ) slash_n++, tot_slash_n++; |
else if( *pp != '\r' ) slash_n=0; |
|
hp->slash_n = tot_slash_n; |
hp->spc = spc; |
|
hp->left -= str->len; |
hp->pnt += str->len; |
hp->pnt[0] = 0; |
|
if( slash_n != 2 ) |
{ |
|
|
|
if( (spc < 2) && tot_slash_n ) |
{ |
push_text( "" ); |
|
push_text( hp->headers ); |
f_aggregate_mapping( 0 ); |
f_aggregate( 3 ); |
return; |
} |
push_int( 0 ); |
return; |
} |
|
push_string( make_shared_binary_string( pp, hp->pnt - pp ) ); |
headers = allocate_mapping( 5 ); |
in = hp->headers; |
l = pp - hp->headers; |
|
|
for( i = 0; i < l; i++ ) |
if( in[i] == '\n' ) |
break; |
|
if( in[i-1] != '\r' ) |
i++; |
|
push_string( make_shared_binary_string( in, i-1 ) ); |
in += i; l -= i; |
if( *in == '\n' ) (in++),(l--); |
|
for(i = 0; i < l; i++) |
{ |
if(in[i] > 64 && in[i] < 91) in[i]+=32; |
else if( in[i] == ':' ) |
{ |
|
push_string(make_shared_binary_string((char*)in+os,i-os)); |
os = i+1; |
while(in[os]==' ') os++; |
for(j=os;j<l;j++) |
if( in[j] == '\n' || in[j]=='\r') |
break; |
|
push_string(make_shared_binary_string((char*)in+os,j-os)); |
|
if((tmp = low_mapping_lookup(headers, Pike_sp-2))) |
{ |
f_aggregate( 1 ); |
if( tmp->type == PIKE_T_ARRAY ) |
{ |
tmp->u.array->refs++; |
push_array(tmp->u.array); |
map_delete(headers, Pike_sp-3); |
f_add(2); |
} else { |
tmp->u.string->refs++; |
push_string(tmp->u.string); |
f_aggregate(1); |
map_delete(headers, Pike_sp-3); |
f_add(2); |
} |
} |
mapping_insert(headers, Pike_sp-2, Pike_sp-1); |
pop_n_elems(2); |
if( in[j+1] == '\n' ) j++; |
os = j+1; |
i = j; |
} |
} |
push_mapping( headers ); |
f_aggregate( 3 ); |
} |
|
static void f_hp_create( INT32 args ) |
|
|
{ |
THP->headers = malloc( 8192 ); |
THP->pnt = THP->headers; |
THP->hsize = 8192; |
THP->left = 8192; |
THP->spc = THP->slash_n = 0; |
pop_n_elems(args); |
push_int(0); |
} |
|
static void f_make_http_headers( INT32 args ) |
|
|
|
{ |
int total_len = 0, e; |
char *pnt; |
struct mapping *m; |
struct keypair *k; |
struct pike_string *res; |
if( Pike_sp[-1].type != PIKE_T_MAPPING ) |
Pike_error("Wrong argument type to make_http_headers(mapping heads)\n"); |
|
m = Pike_sp[-1].u.mapping; |
|
NEW_MAPPING_LOOP( m->data ) |
{ |
if( k->ind.type != PIKE_T_STRING || k->ind.u.string->size_shift ) |
Pike_error("Wrong argument type to make_http_headers(" |
"mapping(string(8bit):string(8bit)|array(string(8bit))) heads)\n"); |
if( k->val.type == PIKE_T_STRING ) |
total_len += k->val.u.string->len + 2 + k->ind.u.string->len + 2; |
else if( k->val.type == PIKE_T_ARRAY ) |
{ |
struct array *a = k->val.u.array; |
ptrdiff_t i, kl = k->ind.u.string->len + 2 ; |
for( i = 0; i<a->size; i++ ) |
if( a->item[i].type != PIKE_T_STRING||a->item[i].u.string->size_shift ) |
Pike_error("Wrong argument type to make_http_headers(" |
"mapping(string(8bit):string(8bit)|" |
"array(string(8bit))) heads)\n"); |
else |
total_len += kl + a->item[i].u.string->len + 2; |
} else |
Pike_error("Wrong argument type to make_http_headers(" |
"mapping(string(8bit):string(8bit)|" |
"array(string(8bit))) heads)\n"); |
} |
total_len += 2; |
|
res = begin_shared_string( total_len ); |
pnt = (char *)res->str; |
#define STRADD(X)\ |
for( l=X.u.string->len,s=X.u.string->str,c=0; c<l; c++ )\ |
*(pnt++)=*(s++); |
|
NEW_MAPPING_LOOP( m->data ) |
{ |
char *s; |
ptrdiff_t l, c; |
if( k->val.type == PIKE_T_STRING ) |
{ |
STRADD( k->ind ); *(pnt++) = ':'; *(pnt++) = ' '; |
STRADD( k->val ); *(pnt++) = '\r'; *(pnt++) = '\n'; |
} |
else |
{ |
struct array *a = k->val.u.array; |
ptrdiff_t i, kl = k->ind.u.string->len + 2; |
for( i = 0; i<a->size; i++ ) |
{ |
STRADD( k->ind ); *(pnt++) = ':'; *(pnt++) = ' '; |
STRADD( a->item[i] );*(pnt++) = '\r';*(pnt++) = '\n'; |
} |
} |
} |
*(pnt++) = '\r'; |
*(pnt++) = '\n'; |
|
pop_n_elems( args ); |
push_string( end_shared_string( res ) ); |
} |
|
static void f_http_decode_string(INT32 args) |
|
|
|
|
{ |
int proc; |
char *foo,*bar,*end; |
struct pike_string *newstr; |
|
if (!args || Pike_sp[-args].type != PIKE_T_STRING) |
Pike_error("Invalid argument to http_decode_string(STRING);\n"); |
|
foo=bar=Pike_sp[-args].u.string->str; |
end=foo+Pike_sp[-args].u.string->len; |
|
|
for (proc=0; foo<end; ) if (*foo=='%') { proc++; foo+=3; } else foo++; |
|
if (!proc) { pop_n_elems(args-1); return; } |
|
|
newstr=begin_shared_string((foo-bar)-proc*2); |
foo=newstr->str; |
for (proc=0; bar<end; foo++) |
if (*bar=='%') |
{ |
if (bar<end-2) |
*foo=(((bar[1]<'A')?(bar[1]&15):((bar[1]+9)&15))<<4)| |
((bar[2]<'A')?(bar[2]&15):((bar[2]+9)&15)); |
else |
*foo=0; |
bar+=3; |
} |
else { *foo=*(bar++); } |
pop_n_elems(args); |
push_string(end_shared_string(newstr)); |
} |
|
static void f_html_encode_string( INT32 args ) |
{ |
struct pike_string *str; |
int newlen; |
|
if( args != 1 ) |
Pike_error("Wrong number of arguments to html_encode_string\n" ); |
|
switch( Pike_sp[-1].type ) |
{ |
struct pike_string *s; |
void o_cast(struct pike_string *type, INT32 run_time_type); |
|
case PIKE_T_INT: |
|
{ |
char buf[21], *b = buf+19; |
int neg, i, j=0; |
i = Pike_sp[-1].u.integer; |
pop_stack(); |
if( i < 0 ) |
{ |
neg = 1; |
i = -i; |
} |
else |
neg = 0; |
|
buf[20] = 0; |
|
while( i >= 10 ) |
{ |
b[ -j++ ] = '0'+(i%10); |
i /= 10; |
} |
b[ -j++ ] = '0'+(i%10); |
if( neg ) b[ -j++ ] = '-'; |
push_text( b-j+1 ); |
} |
return; |
|
case PIKE_T_FLOAT: |
|
|
|
MAKE_CONSTANT_SHARED_STRING( s, tString ); |
o_cast(s, PIKE_T_STRING); |
return; |
|
default: |
MAKE_CONSTANT_SHARED_STRING( s, tString ); |
o_cast(s, PIKE_T_STRING); |
case PIKE_T_STRING: |
break; |
} |
|
str = Pike_sp[-1].u.string; |
newlen = str->len; |
|
#define COUNT(T) { \ |
T *s = (T *)str->str; \ |
int i; \ |
for( i = 0; i<str->len; i++ ) \ |
switch( s[i] ) \ |
{ \ |
case 0: /* � */ \ |
case '<': /* < */ \ |
case '>': newlen+=3; break;/* > */ \ |
case '&': /* & */ \ |
case '"': /* " */ \ |
case '\'': newlen+=4;break;/* ' */ \ |
} \ |
} |
|
#define ADD(X) if(sizeof(X)-sizeof("")==4) ADD4(X); else ADD5(X) |
|
#define ADD4(X) ((d[0] = X[0]), (d[1] = X[1]), (d[2] = X[2]), (d[3] = X[3]),\ |
(d+=3)) |
|
#define ADD5(X) ((d[0] = X[0]), (d[1] = X[1]), (d[2] = X[2]), (d[3] = X[3]),\ |
(d[4] = X[4]), (d+=4)) |
|
#define REPLACE(T) { \ |
T *s = (T *)str->str; \ |
T *d = (T *)res->str; \ |
int i; \ |
for( i = 0; i<str->len; i++,s++,d++ ) \ |
switch( *s ) \ |
{ \ |
case 0: ADD("�"); break; \ |
case '&': ADD("&"); break; \ |
case '<': ADD("<"); break; \ |
case '>': ADD(">"); break; \ |
case '"': ADD("""); break; \ |
case '\'':ADD("'"); break; \ |
default: *d = *s; break; \ |
} \ |
} \ |
|
switch( str->size_shift ) |
{ |
case 0: COUNT(unsigned char); break; |
case 1: COUNT(unsigned short); break; |
case 2: COUNT(int); break; |
} |
|
if( newlen == str->len ) |
return; |
|
{ |
struct pike_string *res = begin_wide_shared_string(newlen,str->size_shift); |
switch( str->size_shift ) |
{ |
case 0: REPLACE(unsigned char); break; |
case 1: REPLACE(unsigned short); break; |
case 2: REPLACE(int); break; |
} |
pop_stack(); |
push_string( low_end_shared_string( res ) ); |
} |
} |
|
|
|
|
void pike_module_init() |
{ |
pike_add_function("make_http_headers", f_make_http_headers, |
"function(mapping(string:string|array(string)):string)", 0 ); |
|
pike_add_function("http_decode_string", f_http_decode_string, |
"function(string:string)", 0 ); |
|
pike_add_function("html_encode_string", f_html_encode_string, |
"function(mixed:string)", 0 ); |
|
start_new_program(); |
ADD_STORAGE( struct header_buf ); |
set_exit_callback( f_hp_exit ); |
pike_add_function( "feed", f_hp_feed, "function(string:array(string|mapping))",0 ); |
pike_add_function( "create", f_hp_create, "function(:void)", ID_STATIC ); |
end_class( "HeaderParser", 0 ); |
} |
|
void pike_module_exit() |
{ |
} |
|
|