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
|
#! /usr/bin/gforth
\ Copyright (C) 2000,2002,2003,2004,2006,2007,2008 Free Software Foundation, Inc.
\ This file is part of Gforth.
\ Gforth is free software; you can redistribute it and/or
\ modify it under the terms of the GNU General Public License
\ as published by the Free Software Foundation, either version 3
\ of the License, or (at your option) any later version.
\ This program is distributed in the hope that it will be useful,
\ but WITHOUT ANY WARRANTY; without even the implied warranty of
\ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\ GNU General Public License for more details.
\ You should have received a copy of the GNU General Public License
\ along with this program. If not, see http://www.gnu.org/licenses/.
\ This relies on inetd or xinetd:
\ To run the server on port 4444, do the following:
\ Add the following line to /etc/services:
\ gforth 4444/tcp
\ If you use inetd, add the following line to /etc/inetd.conf:
\ gforth stream tcp nowait.10000 wwwrun /usr/users/bernd/bin/httpd
\ If you use xinetd, create the folliwing service in /etc/xinetd.d:
\ service gforth
\ {
\ socket_type = stream
\ protocol = tcp
\ wait = no
\ user = wwwrun
\ server = /home/bernd/bin/httpd
\ }
\ If you want port 80, replace the service "gforth" with "http"
warnings off
require string.fs
Variable DocumentRoot s" /srv/www/htdocs/" DocumentRoot $!
Variable UserDir s" public_html/" UserDir $!
Variable url
Variable posted
Variable url-args
Variable protocol
Variable data
Variable active
Variable command?
: get ( addr -- ) name rot $! ;
: get-rest ( addr -- ) source >in @ /string dup >in +! rot $! ;
wordlist constant values
wordlist constant commands
: value: ( -- ) name
Forth definitions 2dup 1- nextname Variable
values set-current nextname here cell - Create ,
DOES> @ get-rest ;
: >values values 1 set-order command? off ;
\ HTTP protocol commands 26mar00py
: rework-% ( add -- ) { url } base @ >r hex
0 url $@len 0 ?DO
url $@ drop I + c@ dup '% = IF
drop 0. url $@ I 1+ /string
2 min dup >r >number r> swap - >r 2drop
ELSE 0 >r THEN over url $@ drop + c! 1+
r> 1+ +LOOP url $!len
r> base ! ;
: rework-? ( addr -- )
dup >r $@ '? $split url-args $! nip r> $!len ;
: get-url ( -- ) url get protocol get-rest
url rework-? url rework-% >values ;
commands set-current
: GET get-url data on active off ;
: POST get-url data on active on ;
: HEAD get-url data off active off ;
\ HTTP protocol values 26mar00py
values set-current
value: User-Agent:
value: Pragma:
value: Host:
value: Accept:
value: Accept-Encoding:
value: Accept-Language:
value: Accept-Charset:
value: Via:
value: X-Forwarded-For:
value: Cache-Control:
value: Connection:
value: Referer:
value: Content-Type:
value: Content-Length:
value: Keep-Alive:
definitions
Variable maxnum
: ?cr ( -- )
#tib @ 1 >= IF source 1- + c@ #cr = #tib +! THEN ;
: refill-loop ( -- flag ) base @ >r base off
BEGIN refill ?cr WHILE ['] interpret catch drop >in @ 0= UNTIL
true ELSE maxnum off false THEN r> base ! ;
: get-input ( -- flag ior )
s" /nosuchfile" url $! s" HTTP/1.0" protocol $!
s" close" connection $!
infile-id push-file loadfile ! loadline off blk off
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
posted $!len posted $@ infile-id read-file throw drop
THEN only forth also pop-file ;
\ Rework HTML directory 26mar00py
Variable htmldir
: rework-htmldir ( addr u -- addr' u' / ior )
htmldir $! htmldir $@ compact-filename htmldir $!len drop
htmldir $@ s" ../" string-prefix?
IF -1 EXIT THEN \ can't access below current directory
htmldir $@ s" ~" string-prefix?
IF UserDir $@ htmldir dup $@ 2dup '/ scan '/ skip
nip - nip $ins
ELSE DocumentRoot $@ htmldir 0 $ins THEN
htmldir $@ 1- 0 max + c@ '/ = htmldir $@len 0= or
IF s" index.html" htmldir dup $@len $ins THEN
htmldir $@ file-status nip ?dup ?EXIT
htmldir $@ ;
\ MIME type handling 26mar00py
: >mime ( addr u -- mime u' ) 2dup tuck over + 1- ?DO
I c@ '. = ?LEAVE 1- -1 +LOOP /string ;
: >file ( addr u -- size fd )
r/o bin open-file throw >r
r@ file-size throw drop
." Accept-Ranges: bytes" cr
." Content-Length: " dup 0 .r cr r> ;
: transparent ( size fd -- ) { fd }
$4000 allocate throw swap dup 0 ?DO
2dup over swap $4000 min fd read-file throw type
$4000 - $4000 +LOOP drop
free fd close-file throw throw ;
\ Keep-Alive handling 26mar00py
: .connection ( -- )
." Connection: "
connection $@ s" Keep-Alive" str= maxnum @ 0> and
IF connection $@ type cr
." Keep-Alive: timeout=15, max=" maxnum @ 0 .r cr
-1 maxnum +! ELSE ." close" cr maxnum off THEN ;
: transparent: ( addr u -- ) Create here over 1+ allot place
DOES> >r >file
.connection
." Content-Type: " r> count type cr cr
data @ IF transparent ELSE nip close-file throw THEN ;
\ mime types 26mar00py
: mime-read ( addr u -- ) r/o open-file throw
push-file loadfile ! 0 loadline ! blk off
BEGIN refill WHILE
char '# <> >in off name nip 0<> and IF
>in off name
BEGIN >in @ >r name nip WHILE
r> >in ! 2dup transparent: REPEAT
2drop rdrop
THEN
REPEAT loadfile @ close-file pop-file throw ;
: lastrequest
." Connection: close" cr maxnum off
." Content-Type: text/html" cr cr ;
wordlist constant mime
mime set-current
: shtml ( addr u -- ) lastrequest
data @ IF also forth included previous ELSE 2drop THEN ;
s" application/pgp-signature" transparent: sig
s" application/x-bzip2" transparent: bz2
s" application/x-gzip" transparent: gz
s" /etc/mime.types" ' mime-read catch [IF] 2drop
\ no /etc/mime.types found on this machine,
\ generating the most important types:
s" text/html" transparent: html
s" image/gif" transparent: gif
s" image/png" transparent: png
s" image/jpg" transparent: jpg
[THEN]
definitions
s" text/plain" transparent: txt
\ http errors 26mar00py
: .server ( -- ) ." Server: Gforth httpd/1.0 ("
s" os-class" environment? IF type THEN ." )" cr ;
: .ok ( -- ) ." HTTP/1.1 200 OK" cr .server ;
: html-error ( n addr u -- )
." HTTP/1.1 " 2 pick . 2dup type cr .server
2 pick &405 = IF ." Allow: GET, HEAD, POST" cr THEN
lastrequest
." <HTML><HEAD><TITLE>" 2 pick . 2dup type
." </TITLE></HEAD>" cr
." <BODY><H1>" type drop ." </H1>" cr ;
: .trailer ( -- )
." <HR><ADDRESS>Gforth httpd 1.0</ADDRESS>" cr
." </BODY></HTML>" cr ;
: .nok ( -- ) command? @ IF &405 s" Method Not Allowed"
ELSE &400 s" Bad Request" THEN html-error
." <P>Your browser sent a request that this server "
." could not understand.</P>" cr
." <P>Invalid request in: <CODE>"
error-stack cell+ 2@ swap type
." </CODE></P>" cr .trailer ;
: .nofile ( -- ) &404 s" Not Found" html-error
." <P>The requested URL <CODE>" url $@ type
." </CODE> was not found on this server</P>" cr .trailer ;
\ 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
IF url $@ 1 /string 2dup redirect? IF redirect 2drop ELSE
rework-htmldir
dup 0< IF drop .nofile
ELSE .ok 2dup >mime mime search-wordlist
0= IF ['] txt THEN catch IF maxnum off THEN
THEN THEN THEN THEN outfile-id flush-file throw ;
: httpd ( n -- ) dup maxnum ! 0 <# #S #> Keep-Alive $!
maxnum @ 0 DO ['] http catch maxnum @ 0= or ?LEAVE LOOP ;
script? [IF] :noname &100 httpd bye ; is bootmessage [THEN]
\ Use Forth as server-side script language 26mar00py
: $> ( -- )
BEGIN source >in @ /string s" <$" search 0= WHILE
type cr refill 0= UNTIL EXIT THEN
nip source >in @ /string rot - dup 2 + >in +! type ;
: <HTML> ( -- ) ." <HTML>" $> ;
\ provide transparent proxying
include ./proxy.fs
|