version 1.6, 2000/09/23 15:06:01
|
version 1.20, 2006/10/07 17:06:15
|
Line 1
|
Line 1
|
#! /usr/local/bin/gforth |
#! /usr/local/bin/gforth |
|
|
\ Copyright (C) 2000 Free Software Foundation, Inc. |
\ Copyright (C) 2000,2002,2003,2004 Free Software Foundation, Inc. |
|
|
\ This file is part of Gforth. |
\ This file is part of Gforth. |
|
|
Line 16
|
Line 16
|
|
|
\ You should have received a copy of the GNU General Public License |
\ You should have received a copy of the GNU General Public License |
\ along with this program; if not, write to the Free Software |
\ along with this program; if not, write to the Free Software |
\ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
\ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA. |
|
|
warnings off |
warnings off |
|
|
include string.fs |
require string.fs |
|
|
|
Variable DocumentRoot s" /usr/local/httpd/htdocs/" DocumentRoot $! |
|
Variable UserDir s" public_html/" UserDir $! |
|
|
Variable url |
Variable url |
Variable posted |
Variable posted |
Line 83 value: Connection:
|
Line 86 value: Connection:
|
value: Referer: |
value: Referer: |
value: Content-Type: |
value: Content-Type: |
value: Content-Length: |
value: Content-Length: |
|
value: Keep-Alive: |
|
|
definitions |
definitions |
|
|
Line 90 Variable maxnum
|
Line 94 Variable maxnum
|
|
|
: ?cr ( -- ) |
: ?cr ( -- ) |
#tib @ 1 >= IF source 1- + c@ #cr = #tib +! THEN ; |
#tib @ 1 >= IF source 1- + c@ #cr = #tib +! THEN ; |
: refill-loop ( -- flag ) |
: refill-loop ( -- flag ) base @ >r base off |
BEGIN refill ?cr WHILE interpret >in @ 0= UNTIL |
BEGIN refill ?cr WHILE ['] interpret catch drop >in @ 0= UNTIL |
true ELSE maxnum off false THEN ; |
true ELSE maxnum off false THEN r> base ! ; |
: get-input ( -- flag ior ) |
: get-input ( -- flag ior ) |
s" /nosuchfile" url $! s" HTTP/1.0" protocol $! |
s" /nosuchfile" url $! s" HTTP/1.0" protocol $! |
s" close" connection $! |
s" close" connection $! |
infile-id push-file loadfile ! loadline off blk off |
infile-id push-file loadfile ! loadline off blk off |
commands 1 set-order command? on ['] refill-loop catch |
commands 1 set-order command? on ['] refill-loop catch |
|
Keep-Alive $@ snumber? dup 0> IF nip THEN IF maxnum ! THEN |
active @ IF s" " posted $! Content-Length $@ snumber? drop |
active @ IF s" " posted $! Content-Length $@ snumber? drop |
posted $!len posted $@ infile-id read-file throw drop |
posted $!len posted $@ infile-id read-file throw drop |
THEN only forth also pop-file ; |
THEN only forth also pop-file ; |
Line 107 Variable maxnum
|
Line 112 Variable maxnum
|
Variable htmldir |
Variable htmldir |
|
|
: rework-htmldir ( addr u -- addr' u' / ior ) |
: rework-htmldir ( addr u -- addr' u' / ior ) |
htmldir $! |
htmldir $! htmldir $@ compact-filename htmldir $!len drop |
htmldir $@ 1 min s" ~" compare 0= |
htmldir $@ s" ../" string-prefix? |
IF s" /.html-data" htmldir dup $@ 2dup '/ scan |
IF -1 EXIT THEN \ can't access below current directory |
|
htmldir $@ s" ~" string-prefix? |
|
IF UserDir $@ htmldir dup $@ 2dup '/ scan '/ skip |
nip - nip $ins |
nip - nip $ins |
ELSE s" /usr/local/httpd/htdocs/" htmldir 0 $ins THEN |
ELSE DocumentRoot $@ htmldir 0 $ins THEN |
htmldir $@ 1- 0 max + c@ '/ = htmldir $@len 0= or |
htmldir $@ 1- 0 max + c@ '/ = htmldir $@len 0= or |
IF s" index.html" htmldir dup $@len $ins THEN |
IF s" index.html" htmldir dup $@len $ins THEN |
htmldir $@ file-status nip ?dup ?EXIT |
htmldir $@ file-status nip ?dup ?EXIT |
Line 137 Variable htmldir
|
Line 144 Variable htmldir
|
|
|
: .connection ( -- ) |
: .connection ( -- ) |
." Connection: " |
." Connection: " |
connection $@ s" Keep-Alive" compare 0= maxnum @ 0> and |
connection $@ s" Keep-Alive" str= maxnum @ 0> and |
IF connection $@ type cr |
IF connection $@ type cr |
." Keep-Alive: timeout=15, max=" maxnum @ 0 .r cr |
." Keep-Alive: timeout=15, max=" maxnum @ 0 .r cr |
-1 maxnum +! ELSE ." close" cr maxnum off THEN ; |
-1 maxnum +! ELSE ." close" cr maxnum off THEN ; |
Line 152 Variable htmldir
|
Line 159 Variable htmldir
|
|
|
: mime-read ( addr u -- ) r/o open-file throw |
: mime-read ( addr u -- ) r/o open-file throw |
push-file loadfile ! 0 loadline ! blk off |
push-file loadfile ! 0 loadline ! blk off |
BEGIN refill WHILE name |
BEGIN refill WHILE |
BEGIN >in @ >r name nip WHILE |
char '# <> >in off name nip 0<> and IF |
r> >in ! 2dup transparent: REPEAT |
>in off name |
2drop rdrop |
BEGIN >in @ >r name nip WHILE |
|
r> >in ! 2dup transparent: REPEAT |
|
2drop rdrop |
|
THEN |
REPEAT loadfile @ close-file pop-file throw ; |
REPEAT loadfile @ close-file pop-file throw ; |
|
|
: lastrequest |
: lastrequest |
Line 171 mime set-current
|
Line 181 mime set-current
|
s" application/pgp-signature" transparent: sig |
s" application/pgp-signature" transparent: sig |
s" application/x-bzip2" transparent: bz2 |
s" application/x-bzip2" transparent: bz2 |
s" application/x-gzip" transparent: gz |
s" application/x-gzip" transparent: gz |
s" /etc/mime.types" mime-read |
s" /etc/mime.types" ['] mime-read catch [IF] 2drop [THEN] |
|
|
definitions |
definitions |
|
|
Line 205 s" text/plain" transparent: txt
|
Line 215 s" text/plain" transparent: txt
|
|
|
\ http server 26mar00py |
\ http server 26mar00py |
|
|
|
Defer redirect? ( addr u -- addr' u' t / f ) |
|
Defer redirect ( addr u -- ) |
|
:noname 2drop false ; IS redirect? |
|
|
: http ( -- ) get-input IF .nok ELSE |
: http ( -- ) get-input IF .nok ELSE |
IF url $@ 1 /string rework-htmldir |
IF url $@ 1 /string 2dup redirect? IF redirect 2drop ELSE |
|
rework-htmldir |
dup 0< IF drop .nofile |
dup 0< IF drop .nofile |
ELSE .ok 2dup >mime mime search-wordlist |
ELSE .ok 2dup >mime mime search-wordlist |
0= IF ['] txt THEN catch IF maxnum off THEN |
0= IF ['] txt THEN catch IF maxnum off THEN |
THEN THEN THEN outfile-id flush-file throw ; |
THEN THEN THEN THEN outfile-id flush-file throw ; |
|
|
: httpd ( n -- ) maxnum ! |
: httpd ( n -- ) dup maxnum ! 0 <# #S #> Keep-Alive $! |
BEGIN ['] http catch maxnum @ 0= or UNTIL ; |
maxnum @ 0 DO ['] http catch maxnum @ 0= or ?LEAVE LOOP ; |
|
|
script? [IF] :noname &100 httpd bye ; is bootmessage [THEN] |
script? [IF] :noname &100 httpd bye ; is bootmessage [THEN] |
|
|
Line 224 script? [IF] :noname &100 httpd bye ; i
|
Line 239 script? [IF] :noname &100 httpd bye ; i
|
type cr refill 0= UNTIL EXIT THEN |
type cr refill 0= UNTIL EXIT THEN |
nip source >in @ /string rot - dup 2 + >in +! type ; |
nip source >in @ /string rot - dup 2 + >in +! type ; |
: <HTML> ( -- ) ." <HTML>" $> ; |
: <HTML> ( -- ) ." <HTML>" $> ; |
|
|
|
\ provide transparent proxying |
|
|
|
include ./proxy.fs |