e576bb2002-10-11Martin Nilsson /* || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information. */
33805b2000-08-12Per Hedbor #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"
ced8a32001-02-13Henrik Grubbström (Grubba) /*! @module _Roxen */ /*! @class HeaderParser
4883852009-07-17Henrik Grubbström (Grubba)  *! *! Class for parsing HTTP-requests.
ced8a32001-02-13Henrik Grubbström (Grubba)  */
33805b2000-08-12Per Hedbor 
6b87882001-06-21Martin Stjernholm #define THP ((struct header_buf *)Pike_fp->current_storage)
33805b2000-08-12Per Hedbor struct header_buf {
fc03522005-04-08Henrik Grubbström (Grubba)  unsigned char *headers; unsigned char *pnt;
2d41d42001-10-02Per Hedbor  ptrdiff_t hsize, left;
117d2c2005-11-28Per Hedbor  int slash_n, tslash_n, spc;
b675152009-07-29Martin Nilsson  int mode;
33805b2000-08-12Per Hedbor };
74dfe82012-12-30Jonas Walldén static void f_hp_init( struct object *UNUSED(o) )
e15d142002-10-14Henrik Grubbström (Grubba) { THP->headers = NULL; THP->pnt = NULL; THP->hsize = 0;
8f77192004-01-27Henrik Grubbström (Grubba)  THP->left = 0;
117d2c2005-11-28Per Hedbor  THP->spc = THP->slash_n = THP->tslash_n = 0;
b675152009-07-29Martin Nilsson  THP->mode = 0;
e15d142002-10-14Henrik Grubbström (Grubba) }
74dfe82012-12-30Jonas Walldén static void f_hp_exit( struct object *UNUSED(o) )
2d41d42001-10-02Per Hedbor { if( THP->headers ) free( THP->headers );
e15d142002-10-14Henrik Grubbström (Grubba)  THP->headers = NULL; THP->pnt = NULL; THP->hsize = 0;
2d41d42001-10-02Per Hedbor } static void f_hp_feed( INT32 args )
ced8a32001-02-13Henrik Grubbström (Grubba) /*! @decl array(string|mapping) feed(string data)
4883852009-07-17Henrik Grubbström (Grubba)  *! *! @returns *! @array *! @elem string 0 *! Trailing data. *! @elem string 1 *! First line of request. *! @elem mapping(string:string|array(string)) 2 *! Headers. *! @endarray
ced8a32001-02-13Henrik Grubbström (Grubba)  */
33805b2000-08-12Per Hedbor { struct pike_string *str = Pike_sp[-1].u.string;
3c64ee2001-02-20Per Hedbor  struct header_buf *hp = THP;
21dc262003-04-14Martin Stjernholm  int str_len;
117d2c2005-11-28Per Hedbor  int tot_slash_n=hp->slash_n, slash_n = hp->tslash_n, spc = hp->spc;
fc03522005-04-08Henrik Grubbström (Grubba)  unsigned char *pp,*ep;
33805b2000-08-12Per Hedbor  struct svalue *tmp; struct mapping *headers;
aad5842000-08-12Henrik Grubbström (Grubba)  ptrdiff_t os=0, i, j, l;
33805b2000-08-12Per Hedbor  unsigned char *in;
4883852009-07-17Henrik Grubbström (Grubba)  if (args != 1) Pike_error("Bad number of arguments to feed().\n");
017b572011-10-28Henrik Grubbström (Grubba)  if( TYPEOF(Pike_sp[-1]) != PIKE_T_STRING )
b2d3e42000-12-01Fredrik Hübinette (Hubbe)  Pike_error("Wrong type of argument to feed()\n");
2d41d42001-10-02Per Hedbor  if( str->size_shift ) Pike_error("Wide string headers not supported\n");
21dc262003-04-14Martin Stjernholm  str_len = str->len; while( str_len >= hp->left )
2d41d42001-10-02Per Hedbor  {
fc03522005-04-08Henrik Grubbström (Grubba)  unsigned char *buf;
117d2c2005-11-28Per Hedbor  if( hp->hsize > 512 * 1024 )
2d41d42001-10-02Per Hedbor  Pike_error("Too many headers\n");
117d2c2005-11-28Per Hedbor  hp->hsize += 8192; buf = hp->headers; hp->headers = realloc( hp->headers, hp->hsize ); if( !hp->headers )
2d41d42001-10-02Per Hedbor  {
9e361c2002-02-14Henrik Grubbström (Grubba)  free(buf);
117d2c2005-11-28Per Hedbor  hp->hsize = 0; hp->left = 0; hp->spc = hp->slash_n = 0; hp->pnt = NULL;
2d41d42001-10-02Per Hedbor  Pike_error("Running out of memory in header parser\n"); }
117d2c2005-11-28Per Hedbor  hp->left += 8192; hp->pnt = (hp->headers + hp->hsize - hp->left);
2d41d42001-10-02Per Hedbor  }
33805b2000-08-12Per Hedbor 
59fc9e2014-09-03Martin Nilsson  memcpy( hp->pnt, str->str, str_len );
d5ea292001-02-01Per Hedbor  pop_n_elems( args );
9e361c2002-02-14Henrik Grubbström (Grubba)  /* FIXME: The below does not support lines terminated with just \r. */
21dc262003-04-14Martin Stjernholm  for( ep=(hp->pnt+str_len),pp=MAXIMUM(hp->headers,hp->pnt-3);
d5ea292001-02-01Per Hedbor  pp<ep && slash_n<2; pp++ )
117d2c2005-11-28Per Hedbor  if( *pp == ' ' ) { spc++; slash_n = 0; } else if( *pp == '\n' ) { slash_n++; tot_slash_n++; } else if( *pp != '\r' ) { slash_n=0; }
33805b2000-08-12Per Hedbor 
3c64ee2001-02-20Per Hedbor  hp->slash_n = tot_slash_n; hp->spc = spc;
117d2c2005-11-28Per Hedbor  hp->tslash_n = slash_n;
21dc262003-04-14Martin Stjernholm  hp->left -= str_len; hp->pnt += str_len;
3c64ee2001-02-20Per Hedbor  hp->pnt[0] = 0;
d5ea292001-02-01Per Hedbor 
33805b2000-08-12Per Hedbor  if( slash_n != 2 ) {
d5ea292001-02-01Per Hedbor  /* one newline, but less than 2 space, * --> HTTP/0.9 or broken request */ if( (spc < 2) && tot_slash_n ) {
7863d62005-05-06Martin Nilsson  push_empty_string();
d5ea292001-02-01Per Hedbor  /* This includes (all eventual) \r\n etc. */
571b7c2005-04-09Henrik Grubbström (Grubba)  push_text((char *)hp->headers);
d5ea292001-02-01Per Hedbor  f_aggregate_mapping( 0 ); f_aggregate( 3 ); return; }
33805b2000-08-12Per Hedbor  push_int( 0 ); return; }
117d2c2005-11-28Per Hedbor 
571b7c2005-04-09Henrik Grubbström (Grubba)  /*leftovers*/ push_string(make_shared_binary_string((char *)pp, hp->pnt - pp));
33805b2000-08-12Per Hedbor  headers = allocate_mapping( 5 );
3c64ee2001-02-20Per Hedbor  in = hp->headers; l = pp - hp->headers;
4a84492000-08-13David Hedbor 
33805b2000-08-12Per Hedbor  /* find first line here */ for( i = 0; i < l; i++ )
117d2c2005-11-28Per Hedbor  if( (in[i] == '\n') || (in[i] == '\r') )
33805b2000-08-12Per Hedbor  break;
571b7c2005-04-09Henrik Grubbström (Grubba)  push_string(make_shared_binary_string((char *)in, i));
9e361c2002-02-14Henrik Grubbström (Grubba)  if((in[i] == '\r') && (in[i+1] == '\n'))
33805b2000-08-12Per Hedbor  i++;
9e361c2002-02-14Henrik Grubbström (Grubba)  i++;
33805b2000-08-12Per Hedbor  in += i; l -= i;
9e361c2002-02-14Henrik Grubbström (Grubba)  /* Parse headers. */
33805b2000-08-12Per Hedbor  for(i = 0; i < l; i++) {
b675152009-07-29Martin Nilsson  if(in[i] > 64 && in[i] < 91) in[i]+=32; /* lower_case */
4a84492000-08-13David Hedbor  else if( in[i] == ':' )
33805b2000-08-12Per Hedbor  {
9e361c2002-02-14Henrik Grubbström (Grubba)  /* FIXME: Does not support white space before the colon. */
33805b2000-08-12Per Hedbor  /* in[os..i-1] == the header */
9e361c2002-02-14Henrik Grubbström (Grubba)  int val_cnt = 0;
33805b2000-08-12Per Hedbor  push_string(make_shared_binary_string((char*)in+os,i-os));
d5ea292001-02-01Per Hedbor 
9e361c2002-02-14Henrik Grubbström (Grubba)  /* Skip the colon and initial white space. */ os = i+1; while((in[os]==' ') || (in[os]=='\t')) os++; /* NOTE: We need to support MIME header continuation lines * (Opera uses this...). */ do { for(j=os;j<l;j++) /* Find end of line */ if( in[j] == '\n' || in[j]=='\r') break; push_string(make_shared_binary_string((char*)in+os,j-os)); val_cnt++; if((in[j] == '\r') && (in[j+1] == '\n')) j++; os = j+1; i = j; /* Check for continuation line. */ } while ((os < l) && ((in[os] == ' ') || (in[os] == '\t'))); if (val_cnt > 1) { /* Join partial header values. */ f_add(val_cnt); }
33805b2000-08-12Per Hedbor  if((tmp = low_mapping_lookup(headers, Pike_sp-2))) {
017b572011-10-28Henrik Grubbström (Grubba)  if( TYPEOF(*tmp) == PIKE_T_ARRAY )
9e361c2002-02-14Henrik Grubbström (Grubba)  {
11b8af2006-01-02Martin Nilsson  f_aggregate( 1 );
50ea682003-03-14Henrik Grubbström (Grubba)  ref_push_array(tmp->u.array);
f540ce2006-11-10Per Hedbor  stack_swap();
9e361c2002-02-14Henrik Grubbström (Grubba)  map_delete(headers, Pike_sp-3); f_add(2); } else {
50ea682003-03-14Henrik Grubbström (Grubba)  ref_push_string(tmp->u.string);
f540ce2006-11-10Per Hedbor  stack_swap();
9e361c2002-02-14Henrik Grubbström (Grubba)  map_delete(headers, Pike_sp-3);
1b25eb2006-01-02Martin Nilsson  f_aggregate(2);
9e361c2002-02-14Henrik Grubbström (Grubba)  }
33805b2000-08-12Per Hedbor  } mapping_insert(headers, Pike_sp-2, Pike_sp-1);
9e361c2002-02-14Henrik Grubbström (Grubba) 
33805b2000-08-12Per Hedbor  pop_n_elems(2); }
b675152009-07-29Martin Nilsson  else if( in[i]=='\r' || in[i]=='\n' ) { if( THP->mode == 1 ) { /* FIXME: Reset stack so that backtrace shows faulty header. */ Pike_error("Malformed HTTP header.\n"); } else os = i+1; }
33805b2000-08-12Per Hedbor  } push_mapping( headers );
d5ea292001-02-01Per Hedbor  f_aggregate( 3 ); /* data, firstline, headers */
33805b2000-08-12Per Hedbor }
2d41d42001-10-02Per Hedbor static void f_hp_create( INT32 args )
b675152009-07-29Martin Nilsson /*! @decl void create(int throw_errors)
ced8a32001-02-13Henrik Grubbström (Grubba)  */
33805b2000-08-12Per Hedbor {
e15d142002-10-14Henrik Grubbström (Grubba)  if (THP->headers) { free(THP->headers); THP->headers = NULL; }
b675152009-07-29Martin Nilsson 
ddc1a32010-07-27Martin Stjernholm  THP->mode = 0;
b675152009-07-29Martin Nilsson  get_all_args("create",args,".%i",&THP->mode);
e15d142002-10-14Henrik Grubbström (Grubba)  THP->headers = xalloc( 8192 );
33805b2000-08-12Per Hedbor  THP->pnt = THP->headers;
2d41d42001-10-02Per Hedbor  THP->hsize = 8192;
33805b2000-08-12Per Hedbor  THP->left = 8192;
3c64ee2001-02-20Per Hedbor  THP->spc = THP->slash_n = 0;
ced8a32001-02-13Henrik Grubbström (Grubba)  pop_n_elems(args); push_int(0);
33805b2000-08-12Per Hedbor }
4183032001-10-03Martin Nilsson /*! @endclass */
2d41d42001-10-02Per Hedbor static void f_make_http_headers( INT32 args )
ced8a32001-02-13Henrik Grubbström (Grubba) /*! @decl string @
d7a5342005-10-27Henrik Grubbström (Grubba)  *! make_http_headers(mapping(string:string|array(string)) headers, @ *! int(0..1)|void no_terminator)
ced8a32001-02-13Henrik Grubbström (Grubba)  */
33805b2000-08-12Per Hedbor { int total_len = 0, e;
fc03522005-04-08Henrik Grubbström (Grubba)  unsigned char *pnt;
33805b2000-08-12Per Hedbor  struct mapping *m; struct keypair *k; struct pike_string *res;
d7a5342005-10-27Henrik Grubbström (Grubba)  int terminator = 2;
017b572011-10-28Henrik Grubbström (Grubba)  if( TYPEOF(Pike_sp[-args]) != PIKE_T_MAPPING )
b2d3e42000-12-01Fredrik Hübinette (Hubbe)  Pike_error("Wrong argument type to make_http_headers(mapping heads)\n");
d7a5342005-10-27Henrik Grubbström (Grubba)  m = Pike_sp[-args].u.mapping; if (args > 1) {
017b572011-10-28Henrik Grubbström (Grubba)  if (TYPEOF(Pike_sp[1-args]) != PIKE_T_INT)
d7a5342005-10-27Henrik Grubbström (Grubba)  Pike_error("Bad argument 2 to make_http_headers(). Expected int.\n"); if (Pike_sp[1-args].u.integer) terminator = 0; }
33805b2000-08-12Per Hedbor  /* loop to check len */ NEW_MAPPING_LOOP( m->data ) {
017b572011-10-28Henrik Grubbström (Grubba)  if( TYPEOF(k->ind) != PIKE_T_STRING || k->ind.u.string->size_shift )
b2d3e42000-12-01Fredrik Hübinette (Hubbe)  Pike_error("Wrong argument type to make_http_headers("
33805b2000-08-12Per Hedbor  "mapping(string(8bit):string(8bit)|array(string(8bit))) heads)\n");
017b572011-10-28Henrik Grubbström (Grubba)  if( TYPEOF(k->val) == PIKE_T_STRING && !k->val.u.string->size_shift )
33805b2000-08-12Per Hedbor  total_len += k->val.u.string->len + 2 + k->ind.u.string->len + 2;
017b572011-10-28Henrik Grubbström (Grubba)  else if( TYPEOF(k->val) == PIKE_T_ARRAY )
33805b2000-08-12Per Hedbor  { struct array *a = k->val.u.array;
aad5842000-08-12Henrik Grubbström (Grubba)  ptrdiff_t i, kl = k->ind.u.string->len + 2 ;
33805b2000-08-12Per Hedbor  for( i = 0; i<a->size; i++ )
017b572011-10-28Henrik Grubbström (Grubba)  if( TYPEOF(a->item[i]) != PIKE_T_STRING || a->item[i].u.string->size_shift )
b2d3e42000-12-01Fredrik Hübinette (Hubbe)  Pike_error("Wrong argument type to make_http_headers("
33805b2000-08-12Per Hedbor  "mapping(string(8bit):string(8bit)|" "array(string(8bit))) heads)\n"); else total_len += kl + a->item[i].u.string->len + 2; } else
b2d3e42000-12-01Fredrik Hübinette (Hubbe)  Pike_error("Wrong argument type to make_http_headers("
33805b2000-08-12Per Hedbor  "mapping(string(8bit):string(8bit)|" "array(string(8bit))) heads)\n"); }
d7a5342005-10-27Henrik Grubbström (Grubba)  total_len += terminator;
33805b2000-08-12Per Hedbor  res = begin_shared_string( total_len );
fc03522005-04-08Henrik Grubbström (Grubba)  pnt = STR0(res);
571b7c2005-04-09Henrik Grubbström (Grubba) #define STRADD(X) \ for( l=(X).u.string->len, s=STR0((X).u.string), c=0; c<l; c++ ) \ *(pnt++)=*(s++)
33805b2000-08-12Per Hedbor  NEW_MAPPING_LOOP( m->data ) {
fc03522005-04-08Henrik Grubbström (Grubba)  unsigned char *s;
aad5842000-08-12Henrik Grubbström (Grubba)  ptrdiff_t l, c;
017b572011-10-28Henrik Grubbström (Grubba)  if( TYPEOF(k->val) == PIKE_T_STRING )
33805b2000-08-12Per Hedbor  { STRADD( k->ind ); *(pnt++) = ':'; *(pnt++) = ' '; STRADD( k->val ); *(pnt++) = '\r'; *(pnt++) = '\n'; } else { struct array *a = k->val.u.array;
aad5842000-08-12Henrik Grubbström (Grubba)  ptrdiff_t i, kl = k->ind.u.string->len + 2;
33805b2000-08-12Per Hedbor  for( i = 0; i<a->size; i++ ) { STRADD( k->ind ); *(pnt++) = ':'; *(pnt++) = ' '; STRADD( a->item[i] );*(pnt++) = '\r';*(pnt++) = '\n'; } } }
d7a5342005-10-27Henrik Grubbström (Grubba)  if (terminator) { *(pnt++) = '\r'; *(pnt++) = '\n'; }
33805b2000-08-12Per Hedbor  pop_n_elems( args ); push_string( end_shared_string( res ) ); }
2d41d42001-10-02Per Hedbor static void f_http_decode_string(INT32 args)
ced8a32001-02-13Henrik Grubbström (Grubba) /*! @decl string http_decode_string(string encoded) *!
14ae152012-09-13Martin Nilsson  *! Decodes an http transport-encoded string. Knows about %XX and *! %uXXXX syntax. Treats %UXXXX as %uXXXX. It will treat '+' as '+' *! and not ' ', so form decoding needs to replace that in a second *! step.
ced8a32001-02-13Henrik Grubbström (Grubba)  */
33805b2000-08-12Per Hedbor {
380a152014-10-08Henrik Grubbström (Grubba)  int proc = 0; int size_shift; PCHARP foo, end; struct string_builder newstr; if (!args || Pike_sp[-args].type != PIKE_T_STRING) Pike_error("Invalid argument to http_decode_string(string).\n"); foo = MKPCHARP_STR(Pike_sp[-args].u.string); end = ADD_PCHARP(foo, Pike_sp[-args].u.string->len); size_shift = Pike_sp[-args].u.string->size_shift; /* Count '%' and wide characters. * * proc counts the number of characters that are to be removed. */ for (; COMPARE_PCHARP(foo, <, end); INC_PCHARP(foo, 1)) { p_wchar2 c = INDEX_PCHARP(foo, 0); if (c == '%') { c = INDEX_PCHARP(foo, 1); if (c == 'u' || c == 'U') {
8f77192004-01-27Henrik Grubbström (Grubba)  /* %uXXXX */
380a152014-10-08Henrik Grubbström (Grubba)  if (INDEX_PCHARP(foo, 2) != '0' || INDEX_PCHARP(foo, 3) != '0') { if (!size_shift) size_shift = 1;
2140112004-01-27Henrik Grubbström (Grubba)  }
380a152014-10-08Henrik Grubbström (Grubba)  proc += 5; INC_PCHARP(foo, 5);
8f77192004-01-27Henrik Grubbström (Grubba)  } else {
380a152014-10-08Henrik Grubbström (Grubba)  proc += 2; INC_PCHARP(foo, 2);
8f77192004-01-27Henrik Grubbström (Grubba)  } } }
33805b2000-08-12Per Hedbor  if (!proc) { pop_n_elems(args-1); return; }
380a152014-10-08Henrik Grubbström (Grubba)  init_string_builder_alloc(&newstr, Pike_sp[-args].u.string->len - proc, size_shift); foo = MKPCHARP_STR(Pike_sp[-args].u.string); for (; COMPARE_PCHARP(foo, <, end); INC_PCHARP(foo, 1)) { p_wchar2 c = INDEX_PCHARP(foo, 0); if (c == '%') { c = INDEX_PCHARP(foo, 1); if (c == 'u' || c == 'U') { c = 0; if (SUBTRACT_PCHARP(end, foo) > 5) { p_wchar2 hex = INDEX_PCHARP(foo, 2); c = (((hex<'A')?hex:(hex + 9)) & 15)<<12; hex = INDEX_PCHARP(foo, 3); c |= (((hex<'A')?hex:(hex + 9)) & 15)<<8; hex = INDEX_PCHARP(foo, 4); c |= (((hex<'A')?hex:(hex + 9)) & 15)<<4; hex = INDEX_PCHARP(foo, 5); c |= ((hex<'A')?hex:(hex + 9)) & 15;
8f77192004-01-27Henrik Grubbström (Grubba)  }
380a152014-10-08Henrik Grubbström (Grubba)  INC_PCHARP(foo, 5);
8f77192004-01-27Henrik Grubbström (Grubba)  } else {
380a152014-10-08Henrik Grubbström (Grubba)  c = 0; if (SUBTRACT_PCHARP(end, foo) > 2) { p_wchar2 hex = INDEX_PCHARP(foo, 1); c = (((hex<'A')?hex:(hex + 9)) & 15)<<4; hex = INDEX_PCHARP(foo, 2); c |= ((hex<'A')?hex:(hex + 9)) & 15;
8f77192004-01-27Henrik Grubbström (Grubba)  }
380a152014-10-08Henrik Grubbström (Grubba)  INC_PCHARP(foo, 2);
8f77192004-01-27Henrik Grubbström (Grubba)  }
380a152014-10-08Henrik Grubbström (Grubba)  } string_builder_putchar(&newstr, c);
8f77192004-01-27Henrik Grubbström (Grubba)  }
380a152014-10-08Henrik Grubbström (Grubba) 
33805b2000-08-12Per Hedbor  pop_n_elems(args);
380a152014-10-08Henrik Grubbström (Grubba)  push_string(finish_string_builder(&newstr));
33805b2000-08-12Per Hedbor }
77ef812001-06-30Per Hedbor static void f_html_encode_string( INT32 args )
d579c82001-12-08Martin Nilsson /*! @decl string html_encode_string(mixed in) *! *! Encodes the @[in] data as an HTML safe string. */
77ef812001-06-30Per Hedbor { struct pike_string *str; int newlen; if( args != 1 ) Pike_error("Wrong number of arguments to html_encode_string\n" );
017b572011-10-28Henrik Grubbström (Grubba)  switch( TYPEOF(Pike_sp[-1]) )
77ef812001-06-30Per Hedbor  {
2a33f02002-07-02Per Hedbor  void o_cast_to_string();
77ef812001-06-30Per Hedbor  case PIKE_T_INT: case PIKE_T_FLOAT: /* Optimization, no need to check the resultstring for * unsafe characters. */
2a33f02002-07-02Per Hedbor  o_cast_to_string();
77ef812001-06-30Per Hedbor  return; default:
2a33f02002-07-02Per Hedbor  o_cast_to_string();
77ef812001-06-30Per Hedbor  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] ) \ { \
8f77192004-01-27Henrik Grubbström (Grubba)  case 0: /* &#0; */ \ case '<': /* &lt; */ \
77ef812001-06-30Per Hedbor  case '>': newlen+=3; break;/* &gt; */ \
8f77192004-01-27Henrik Grubbström (Grubba)  case '&': /* &amp; */ \ case '"': /* &#34; */ \
77ef812001-06-30Per Hedbor  case '\'': newlen+=4;break;/* &#39; */ \ } \ } #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("&#0;"); break; \ case '&': ADD("&amp;"); break; \ case '<': ADD("&lt;"); break; \ case '>': ADD("&gt;"); break; \ case '"': ADD("&#34;"); break; \ case '\'':ADD("&#39;"); break; \ default: *d = *s; break; \ } \ } \ switch( str->size_shift ) {
8f77192004-01-27Henrik Grubbström (Grubba)  case 0: COUNT(p_wchar0); break; case 1: COUNT(p_wchar1); break; case 2: COUNT(p_wchar2); break;
77ef812001-06-30Per Hedbor  } if( newlen == str->len ) return; /* Already on stack. */ { struct pike_string *res = begin_wide_shared_string(newlen,str->size_shift); switch( str->size_shift ) {
8f77192004-01-27Henrik Grubbström (Grubba)  case 0: REPLACE(p_wchar0); break; case 1: REPLACE(p_wchar1); break; case 2: REPLACE(p_wchar2); break;
77ef812001-06-30Per Hedbor  } pop_stack(); push_string( low_end_shared_string( res ) ); } }
2d41d42001-10-02Per Hedbor 
ced8a32001-02-13Henrik Grubbström (Grubba) /*! @endmodule */
33805b2000-08-12Per Hedbor 
51ef5c2002-10-21Marcus Comstedt PIKE_MODULE_INIT
33805b2000-08-12Per Hedbor {
09959a2005-01-20Martin Nilsson  ADD_FUNCTION("make_http_headers", f_make_http_headers,
d7a5342005-10-27Henrik Grubbström (Grubba)  tFunc(tMap(tStr,tOr(tStr,tArr(tStr))) tOr(tInt01,tVoid), tStr), 0);
33805b2000-08-12Per Hedbor 
09959a2005-01-20Martin Nilsson  ADD_FUNCTION("http_decode_string", f_http_decode_string, tFunc(tStr,tStr), 0 );
33805b2000-08-12Per Hedbor 
09959a2005-01-20Martin Nilsson  ADD_FUNCTION("html_encode_string", f_html_encode_string, tFunc(tMix,tStr), 0 );
2d41d42001-10-02Per Hedbor 
33805b2000-08-12Per Hedbor  start_new_program(); ADD_STORAGE( struct header_buf );
18b0822002-10-14Henrik Grubbström (Grubba)  set_init_callback( f_hp_init );
2d41d42001-10-02Per Hedbor  set_exit_callback( f_hp_exit );
09959a2005-01-20Martin Nilsson  ADD_FUNCTION( "feed", f_hp_feed, tFunc(tStr,tArr(tOr(tStr,tMapping))), 0 );
b675152009-07-29Martin Nilsson  ADD_FUNCTION( "create", f_hp_create, tFunc(tOr(tInt,tVoid),tVoid), ID_PROTECTED );
33805b2000-08-12Per Hedbor  end_class( "HeaderParser", 0 ); }
51ef5c2002-10-21Marcus Comstedt PIKE_MODULE_EXIT
33805b2000-08-12Per Hedbor { }