Don't try to compile anything on pure perl build
[catagits/fcgi2.git] / perl / FCGI.PL
1 use Config;
2
3 do 'FCGI.cfg' or die "no FCGI.cfg";
4
5 open OUT, ">FCGI.pm";
6
7 print "Generating FCGI.pm\n";
8 print OUT <<'EOP';
9 # $Id: FCGI.PL,v 1.23 2001/03/27 11:49:11 skimo Exp $
10
11 package FCGI;
12
13 require Exporter;
14 require DynaLoader;
15
16 @ISA = qw(Exporter DynaLoader);
17 # Items to export into callers namespace by default. Note: do not export
18 # names by default without a very good reason. Use EXPORT_OK instead.
19 # Do not simply export all your public functions/methods/constants.
20 @EXPORT = qw(
21         
22 );
23
24 $VERSION = '0.60';
25
26 EOP
27
28 print OUT "bootstrap FCGI;\n" unless ($pure);
29
30 print OUT <<'EOP' if ($pure);
31 use Symbol;
32 use POSIX 'ENOTCONN';
33
34 use constant VERSION_1 => 1;
35
36 use constant BEGIN_REQUEST => 1;
37 use constant PARAMS => 4;
38 use constant FCGI_STDIN => 5;
39 use constant FCGI_STDOUT => 6;
40 use constant FCGI_STDERR => 7;
41
42 use constant RESPONDER => 1;
43 use constant AUTHORIZER => 2;
44 use constant FILTER => 3;
45
46 %FCGI::rolenames = (RESPONDER, "RESPONDER",
47                       AUTHORIZER, "AUTHORIZER",
48                       FILTER, "FILTER",
49                      );
50 sub IsFastCGI {
51     my ($req) = @_;
52     $req->{isfastcgi} =
53         (!defined getpeername shift->{listen_sock}) && $! == ENOTCONN
54         unless exists $req->{isfastcgi};
55     return $req->{isfastcgi};
56 }
57
58 sub read_nv_len {
59     my ($stream) = @_;
60     my $buf;
61     return undef unless read $stream, $buf, 1, 0;
62     my ($len) = unpack("C", $buf);
63     if ($len & 0x80) {
64         return undef unless read $stream, $buf, 3, 1;
65         $len = unpack("N", $buf);
66     }
67     $len;
68 }
69
70 sub RequestX {
71     my $self = {
72         in => shift,
73         out => shift,
74         err => shift,
75         env => shift,
76         socket => shift,
77         flags => shift,
78     };
79     open $self->{listen_sock}, "<&=0";
80     bless $self, "FCGI";
81 }
82
83 my $run_once = 0;
84
85 sub Accept {
86     my ($req) = @_;
87
88     unless ($req->IsFastCGI()) {
89         return -1 if $run_once;
90
91         $run_once = 1;
92         return 0;
93     }
94     $req->Finish();
95     $req->{socket} = gensym();
96     if (!accept($req->{socket}, $req->{listen_sock})) {
97         $req->{error} = "accept";
98         return -1;
99     }
100     my ($type, $id, $body) = $req->read_record();
101     if ($type != BEGIN_REQUEST) {
102         $req->{error} = "begin request";
103         return -1;
104     }
105     my ($role, $flags) = unpack("nC", $body);
106     $req->{role} = $role;
107     $req->{flags} = $flags;
108     $req->{id} = $id;
109
110     %{$req->{env}} = ();
111     $req->{env}{FCGI_ROLE} = $FCGI::rolenames{$req->{role}};
112     my $param = FCGI::Stream->new($req, PARAMS);
113     my ($nlen, $vlen);
114     while (defined($nlen = read_nv_len($param)) && 
115            defined($vlen = read_nv_len($param))) {
116         my ($name, $val);
117         read $param, $name, $nlen;
118         read $param, $val, $vlen;
119         $req->{env}{$name} = $val;
120     }
121     $req->Bind;
122     $req->{accepted} = 1;
123
124     return 0;
125 }
126
127 sub UndoBindings {
128     my ($req) = @_;
129     untie ${$req->{in}};
130     untie ${$req->{out}};
131     untie ${$req->{err}};
132     $req->{bound} = 0;
133 }
134
135 sub Bind {
136     my ($req) = @_;
137     tie ${$req->{in}}, 'FCGI::Stream', $req, FCGI_STDIN;
138     tie ${$req->{out}}, 'FCGI::Stream', $req, FCGI_STDOUT;
139     tie ${$req->{err}}, 'FCGI::Stream', $req, FCGI_STDERR;
140     $req->{bound} = 1;
141 }
142
143 sub Attach {
144     my ($req) = @_;
145     $req->Bind() if ($req->{accepted} && !$req->{bound});
146 }
147
148 sub Detach {
149     my ($req) = @_;
150     $req->UndoBindings() if ($req->{accepted} && $req->{bound});
151 }
152
153 sub Finish {
154     my ($req) = @_;
155     return unless $req->{accepted};
156     if ($req->{bound}) {
157         $req->UndoBindings();
158         close ${$req->{out}};
159         close ${$req->{err}};
160     }
161     $req->{accepted} = 0;
162 }
163
164 sub DESTROY {
165     shift->Finish();
166 }
167
168 sub read_record {
169     my ($self) = @_;
170     my ($header, $body);
171
172     read($self->{socket}, $header, 8);
173     my ($version, $type, $id, $clen, $plen) = unpack("CCnnC", $header);
174     read($self->{socket}, $body, $clen+$plen);
175     $body = undef if $clen == 0;
176     ($type, $id, $body);
177 }
178
179 sub read {
180     my ($self, $rtype, $len) = @_;
181     while (length $self->{buf} < $len) {
182         my ($type, $id, $buf) = $self->read_record();
183         return undef unless defined $buf;
184         if ($type != $rtype) {
185             $self->{error} = "unexpected stream type";
186             return 0;
187         }
188         $self->{buf} .= $buf;
189     }
190     my ($newbuf, $result) = (substr($self->{buf}, $len), 
191                              substr($self->{buf}, 0, $len));
192     $self->{buf} = $newbuf;
193     $result;
194 }
195
196 sub Flush {
197     my ($req) = @_;
198 }
199
200 sub write {
201     my ($self, $type, $content, $len) = @_;
202     return unless $len > 0;
203     $self->write_record($type, $content, $len);
204 }
205
206 sub write_record {
207     my ($self, $type, $content, $len) = @_;
208     my $padlen = (8 - ($len % 8)) % 8;
209     my $templ = "CCnnCxa${len}x$padlen";
210     my $data = pack($templ, 
211                     VERSION_1, $type, $self->{id}, $len, $padlen, $content);
212     syswrite $self->{socket}, $data;
213 }
214
215 { package FCGI::Stream;
216
217 sub new {
218     my ($class, $src, $type) = @_;
219     my $handle = do { \local *FH };
220     tie($$handle, $class, $src, $type);
221     $handle;
222 }
223
224 sub TIEHANDLE {
225     my ($class, $src, $type) = @_;
226     bless { src => $src, type => $type }, $class;
227 }
228
229 sub READ {
230     my ($stream, undef, $len, $offset) = @_;
231     my ($ref) = \$_[1];
232     my $buf = $stream->{src}->read($stream->{type}, $len);
233     return undef unless defined $buf;
234     substr($$ref, $offset, 0, $buf);
235     length $buf;
236 }
237
238 sub PRINT {
239     my ($stream) = shift;
240     for (@_) {
241         $stream->{src}->write($stream->{type}, $_, length($_));
242     }
243 }
244
245 sub CLOSE {
246     my ($stream) = @_;
247     $stream->{src}->write_record($stream->{type}, undef, 0);
248 }
249
250 }
251
252 EOP
253 print OUT while <DATA>;
254 close OUT;
255 __END__
256
257 # Preloaded methods go here.
258
259 # Autoload methods go after __END__, and are processed by the autosplit program.
260
261 *FAIL_ACCEPT_ON_INTR = sub() { 1 };
262
263 sub Request(;***$$$) {
264     my @defaults = (\*STDIN, \*STDOUT, \*STDERR, \%ENV, 0, 0);
265     splice @defaults,0,@_,@_;
266     RequestX(@defaults);
267 }
268
269 sub accept() {
270     warn "accept called as a method; you probably wanted to call Accept" if @_;
271     if (defined %FCGI::ENV) {
272         %ENV = %FCGI::ENV;
273     } else {
274         %FCGI::ENV = %ENV;
275     }
276     my $rc = Accept($global_request);
277     for (keys %FCGI::ENV) {
278         $ENV{$_} = $FCGI::ENV{$_} unless exists $ENV{$_};
279     }
280
281     # not SFIO
282     $SIG{__WARN__} = $warn_handler if (tied (*STDIN));
283     $SIG{__DIE__} = $die_handler if (tied (*STDIN));
284
285     return $rc;
286 }
287
288 sub finish() {
289     warn "finish called as a method; you probably wanted to call Finish" if @_;
290     %ENV = %FCGI::ENV if (defined %FCGI::ENV);
291
292     # not SFIO
293     if (tied (*STDIN)) {
294         delete $SIG{__WARN__} if ($SIG{__WARN__} == $warn_handler);
295         delete $SIG{__DIE__} if ($SIG{__DIE__} == $die_handler);
296     }
297
298     Finish ($global_request);
299 }
300
301 sub flush() {
302     warn "flush called as a method; you probably wanted to call Flush" if @_;
303     Flush($global_request);
304 }
305
306 sub detach() {
307     warn "detach called as a method; you probably wanted to call Detach" if @_;
308     Detach($global_request);
309 }
310
311 sub attach() {
312     warn "attach called as a method; you probably wanted to call Attach" if @_;
313     Attach($global_request);
314 }
315
316 # deprecated
317 sub set_exit_status {
318 }
319
320 sub start_filter_data() {
321     StartFilterData($global_request);
322 }
323
324 $global_request = Request();
325 $warn_handler = sub { print STDERR @_ };
326 $die_handler = sub { print STDERR @_ unless $^S };
327
328 package FCGI::Stream;
329
330 sub PRINTF {
331   shift->PRINT(sprintf(shift, @_));
332 }
333
334 sub BINMODE {
335 }
336
337 sub READLINE {
338     my $stream = shift;
339     my ($s, $c);
340     my $rs = $/ eq '' ? "\n\n" : $/;
341     my $l = substr $rs, -1;
342     my $len = length $rs;
343
344     $c = $stream->GETC();
345     if ($/ eq '') {
346         while ($c eq "\n") { 
347             $c = $stream->GETC();
348         }
349     }
350     while (defined $c) {
351         $s .= $c;
352         last if $c eq $l and substr($s, -$len) eq $rs;
353         $c = $stream->GETC();
354     }
355     $s;
356 }
357
358 sub OPEN {
359     $_[0]->CLOSE;
360     if (@_ == 2) {
361         return open($_[0], $_[1]);
362     } else {
363         my $rc;
364         eval("$rc = open($_[0], $_[1], $_[2])");
365         die $@ if $@;
366         return $rc;
367     }
368 }
369
370 1;
371
372 =pod
373
374 =head1 NAME
375
376 FCGI - Fast CGI module
377
378 =head1 SYNOPSIS
379
380     use FCGI;
381
382     my $count = 0;
383     my $request = FCGI::Request();
384
385     while($request->Accept() >= 0) {
386         print("Content-type: text/html\r\n\r\n", ++$count);
387     }
388
389 =head1 DESCRIPTION
390
391 Functions:
392
393 =over 4
394
395 =item FCGI::Request
396
397 Creates a request handle. It has the following optional parameters:
398
399 =over 8
400
401 =item input perl file handle (default: \*STDIN)
402
403 =item output perl file handle (default: \*STDOUT)
404
405 =item error perl file handle (default: \*STDERR)
406
407 These filehandles will be setup to act as input/output/error
408 on succesful Accept.
409
410 =item environment hash reference (default: \%ENV)
411
412 The hash will be populated with the environment.
413
414 =item socket (default: 0)
415
416 Socket to communicate with the server.
417 Can be the result of the OpenSocket function.
418 For the moment, it's the file descriptor of the socket
419 that should be passed. This may change in the future.
420
421 =item flags (default: 0)
422
423 Possible values:
424
425 =over 12
426
427 =item FCGI::FAIL_ACCEPT_ON_INTR
428
429 If set, Accept will fail if interrupted.
430 It not set, it will just keep on waiting.
431
432 =back
433
434 =back
435
436 Example usage:
437     my $req = FCGI::Request;
438
439 or:
440     my %env;
441     my $in = new IO::Handle;
442     my $out = new IO::Handle;
443     my $err = new IO::Handle;
444     my $req = FCGI::Request($in, $out, $err, \%env);
445
446 =item FCGI::OpenSocket(path, backlog)
447
448 Creates a socket suitable to use as an argument to Request.
449
450 =over 8
451
452 =item path
453
454 Pathname of socket or colon followed by local tcp port.
455 Note that some systems take file permissions into account
456 on Unix domain sockets, so you'll have to make sure that
457 the server can write to the created file, by changing
458 the umask before the call and/or changing permissions and/or
459 group of the file afterwards.
460
461 =item backlog
462
463 Maximum length of the queue of pending connections.
464 If a connection
465 request arrives with the queue full the client may receive
466 an  error  with  an  indication of ECONNREFUSED.
467
468 =back
469
470 =item FCGI::CloseSocket(socket)
471
472 Close a socket opened with OpenSocket.
473
474 =item $req->Accept()
475
476 Accepts a connection on $req, attaching the filehandles and
477 populating the environment hash.
478 Returns 0 on success.
479 If a connection has been accepted before, the old
480 one will be finished first.
481
482 Note that unlike with the old interface, no die and warn
483 handlers are installed by default. This means that if
484 you are not running an sfio enabled perl, any warn or
485 die message will not end up in the server's log by default.
486 It is advised you set up die and warn handlers yourself.
487 FCGI.pm contains an example of die and warn handlers.
488
489 =item $req->Finish()
490
491 Finishes accepted connection.
492 Also detaches filehandles.
493
494 =item $req->Flush()
495
496 Flushes accepted connection.
497
498 =item $req->Detach()
499
500 Temporarily detaches filehandles on an accepted connection.
501
502 =item $req->Attach()
503
504 Re-attaches filehandles on an accepted connection.
505
506 =item $env = $req->GetEnvironment()
507
508 Returns the environment parameter passed to FCGI::Request.
509
510 =item ($in, $out, $err) = $req->GetHandles()
511
512 Returns the file handle parameters passed to FCGI::Request.
513
514 =item $isfcgi = $req->IsFastCGI()
515
516 Returns whether or not the program was run as a FastCGI.
517
518 =back
519
520 =head1 AUTHOR
521
522 Sven Verdoolaege <skimo@kotnet.org>
523
524 =cut
525
526 __END__