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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
|
{
$Id: header,v 1.1 2000/07/13 06:33:45 michael Exp $
This file is part of the Free Component Library (FCL)
Copyright (c) 1999-2000 by the Free Pascal development team
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
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.
**********************************************************************}
{
fcgigate: implements TFastCGIGatewayApplication, an application that
acts as a CGI application and transforms CGI requests to FastCGI requests.
Usage is as simple as
uses
fcgigate;
begin
With Application do
begin
HostName:='127.0.0.1'; // Where is FastCGI app running ?
Port:=2015; // What Port does it listen on ?
Initialize;
Run;
end;
Alternatively, an .ini file can be used:
uses
fcgigate;
begin
With Application do
begin
ConfigFileName:='/etc/mygate.ini';
Initialize;
Run;
end;
}
unit fcgigate;
{ $define CGIGDEBUG}
{$mode objfpc}{$H+}
interface
uses
{$IFDEF CGIGDEBUG}
dbugintf,
{$endif}
Classes, SysUtils,httpDefs,custcgi,fastcgi,ssockets,inifiles,custweb;
Type
{ TCGIGateWayResponse }
TCGIGateWayResponse = Class(TCGIResponse)
Protected
Procedure DoSendHeaders(Headers : TStrings); override;
end;
{ TFastCGIGatewayApplication }
{ TFastCGIGatewayHandler }
TFastCGIGatewayHandler = Class(TCgiHandler)
private
FConfigFile: String;
FFastCGIBinary: String;
FHostName: String;
FPort: Integer;
FSocket: TInetSocket;
FInitDone : Boolean;
FEnvironment : TStrings;
procedure DisconnectfromFCGI;
procedure SetConfigFile(const AValue: String);
procedure SetEnvironment(const AValue: TStrings);
procedure SetHostname(const AValue: String);
protected
// Auxiliary routines
Function CreateResponse(AOutput : TStream) : TCGIResponse; override;
Procedure CheckInitDone;
procedure RaiseError(const Msg: String);
// Configuration. Override to read additional values from .ini file.
procedure ReadConfigFile(Ini: TIniFile); virtual;
// FASTCGI protocol
// Allocate record for content length AContentLength.
// Allocated size is AContentLength + SizeOf(FCGI_Header)
function CreateFastCGIRecord(const AContentLength: Word): PFCGI_Header;
// Read FastCGI record from socket. Result must be freed by called.
Function ReadFastCGIRecord: PFCGI_Header;
// Initialize memory containing fastcgi record header
procedure InitFastCGIRecord(P: PFCGI_Header; Const AContentLength, APadLength : Word);
// Send record over socket.
procedure SendFastCGIRecord(P: PFCGI_Header);
// Override this to handle FastCGI records that this class does not handle. Set EOR to 'True' if the request should be aborted.
procedure ProcessUnknownRecord(const Rec: PFCGI_Header; const AResponse: TResponse; var EOR: Boolean); virtual;
// Override this to send additional records when communication starts.
procedure SendBeginRequest; virtual;
// Transform CGI environment variables.
Function TransformRequestVars: String;virtual;
// Encode name=value pair for PARAMS fastcgi record.
Function EncodeFastCGIParam(N, V: AnsiString): String;
// High-level Communication
// Send data from request
procedure SendRequestData(const ARequest : TRequest); virtual;
// Read FastCGI response.
procedure ReadResponse(AResponse : TResponse); virtual;
// Start CGIBinary if initial connect failed.
procedure StartFCGIBinary;
// Connect to FastCGI server. Will call StartFCGIBinary.
procedure ConnectToFCGI;
// Properties
// Communication socket
Property Socket : TInetSocket Read FSocket Write FSocket;
// Initialize done ?
Property InitDone : Boolean Read FInitDone;
Public
Constructor Create(AOwner : TComponent); override;
Destructor Destroy; override;
Procedure HandleRequest(ARequest : Trequest; AResponse : TResponse); override;
Procedure Initialize;
Property ConfigFileName : String Read FConfigFile Write SetConfigFile;
Property FastCGIBinary : String Read FFastCGIBinary Write FFastCGIBinary;
Property HostName : String Read FHostName Write SetHostname;
Property Port : Integer Read FPort Write FPort;
// Values in here override CGI environment variables.
Property Environment : TStrings Read FEnvironment Write SetEnvironment;
end;
TFastCGIGatewayApplication = Class(TCustomCGIApplication)
protected
function InitializeWebHandler: TWebHandler; override;
public
Procedure Initialize; override;
end;
Resourcestring
SErrCouldNotConnectToFCGI = 'Could not connect to FastCGI server.';
SErrNoConnectionData = 'No FastCGI connection data available.';
SErrInitDone = 'Operation must be performed prior to calling Initialize';
Const
SConfig = 'FCGI';
KeyHost = 'Host';
KeyPort = 'Port';
KeyName = 'Name';
SEnvironment = 'Environment';
KeyPathInfo = 'Home';
Var
Application : TFastCGIGatewayApplication;
Procedure InitCGIGateWay; // Initializes Application.
Procedure DoneCGIGateWay; // Frees Application.
implementation
{ TCGIGateWayResponse }
procedure TCGIGatewayResponse.DoSendHeaders(Headers: TStrings);
begin
// Do nothing. Headers are in response from FastCGI and are sent as content;
end;
procedure TFastCGIGatewayHandler.SetConfigFile(const AValue: String);
begin
if FConfigFile=AValue then exit;
CheckInitDone;
FConfigFile:=AValue;
end;
procedure TFastCGIGatewayHandler.SetEnvironment(const AValue: TStrings);
begin
FEnvironment.Assign(AValue);
end;
procedure TFastCGIGatewayHandler.SetHostname(const AValue: String);
begin
if FHostName=AValue then exit;
CheckInitDone;
FHostName:=AValue;
end;
procedure TFastCGIGatewayHandler.CheckInitDone;
begin
If FInitDone then
RaiseError(SErrInitDone);
end;
function TFastCGIGatewayHandler.CreateResponse(AOutput: TStream): TCGIResponse;
begin
{$IFDEF CGIGDEBUG}SendMethodEnter('CreateResponse');{$ENDIF}
Result:=TCGIGatewayResponse.CreateCGI(Self,AOutput);
{$IFDEF CGIGDEBUG}SendMethodExit('CreateResponse');{$ENDIF}
end;
Procedure TFastCGIGatewayHandler.StartFCGIBinary;
begin
ExecuteProcess(FastCGIBinary,'',[]);
end;
Procedure TFastCGIGatewayHandler.ConnectToFCGI;
begin
try
FSocket:=TInetSocket.Create(FHostName,FPort);
except
FSocket:=Nil;
end;
If (FSocket=Nil)
and ((LowerCase(Hostname)='localhost') or (Hostname='127.0.0.1'))
and (FastCGIBinary<>'') then
begin
StartFCGIBinary;
try
FSocket:=TInetSocket.Create(FHostName,FPort);
except
FSocket:=Nil;
end;
end;
If (FSocket=Nil) Then
RaiseError(SErrCouldNotConnectToFCGI);
end;
Function DebugString(Var S : String) : String;
Var
I : Integer;
begin
For I:=1 to length(S) do
If (ord(S[i]) in [32..127]) then
Result:=Result+S[i]
else
Result:=Result+Format('#%.3d',[Ord(S[i])]);
end;
Function TFastCGIGatewayHandler.EncodeFastCGIParam(N,V : AnsiString) : String;
Function CalcJump(ALen : Integer) : Integer;
begin
If ALen<128 then
Result:=1
else
Result:=4;
end;
Procedure AddLengthEncoding(Var S : String; ALen : Integer; Var Offset : Integer);
Var
J,L : integer;
begin
J:=CalcJump(ALen);
If (J=1) then
S[Offset] := AnsiChar(ALen)
else
begin
ALen:=NtoBE(ALen);
S[Offset]:=AnsiChar(((ALen shr 24) and $FF) + $80);
S[Offset+1]:=AnsiChar((ALen shr 16) and $FF);
S[Offset+2]:=AnsiChar((ALen shr 8) and $FF);
S[Offset+3]:=AnsiChar(ALen and $FF);
end;
if (Byte(S[Offset]) and 128) = 0 then
L:=Byte(S[Offset])
else
L:=BEtoN(PWord(@(S[Offset]))^);
inc(Offset,J);
end;
var
J : integer;
NLen,VLen : integer;
BlockSize : word;
begin
{$IFDEF CGIGDEBUG}SendMethodEnter('EncodeFastCGIParam');{$ENDIF}
NLen:=Length(N);
VLen:=Length(V);
BlockSize := NLen+CalcJump(NLen)+VLen+CalcJump(VLen);
SetLength(Result,BlockSize);
J:=1;
AddlengthEncoding(Result,NLen,J);
AddlengthEncoding(Result,VLen,J);
move(N[1],Result[J],NLen);
move(V[1],Result[J+NLen],VLen);
{$IFDEF CGIGDEBUG}SendMethodExit('EncodeFastCGIParam');{$ENDIF}
end;
constructor TFastCGIGatewayHandler.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FEnvironment:=TStringList.Create;
end;
destructor TFastCGIGatewayHandler.Destroy;
begin
FreeAndNil(FEnvironment);
inherited Destroy;
end;
Function TFastCGIGatewayHandler.TransformRequestVars : String;
Var
L : TStringList;
I,J : Integer;
N,N2,V : String;
begin
L:=TStringList.Create;
try
GetCGIVarList(L);
I:=0;
For I:=0 to L.Count-1 do
begin
L.GetNameValue(I,N,V);
J:=FEnvironment.IndexOfName(N);
If (J<>-1) then
L.GetNameValue(J,N2,V); // Keep original name
Result:=Result+EncodeFastCGIParam(N,V);
end;
finally
L.Free;
end;
end;
Procedure TFastCGIGatewayHandler.SendFastCGIRecord(P : PFCGI_Header);
Var
Len : Integer;
begin
{$IFDEF CGIGDEBUG}SendMethodEnter('SendFastCGIRecord');{$ENDIF}
Len := BEtoN(P^.ContentLength) + P^.PaddingLength+sizeof(FCGI_Header);
FSocket.WriteBuffer(P^, Len);
{$IFDEF CGIGDEBUG}SendMethodExit('SendFastCGIRecord');{$ENDIF}
end;
Procedure TFastCGIGatewayHandler.InitFastCGIRecord(P : PFCGI_Header; Const AContentLength, APadLength : Word);
begin
{$IFDEF CGIGDEBUG}SendMethodEnter('InitFastCGIRecord');{$ENDIF}
FillChar(P^,SizeOf(FCGI_Header),#0);
P^.Version:=FCGI_VERSION_1;
P^.RequestID:=0;
P^.ContentLength:=NToBE(AContentLength);
P^.PaddingLength:=APadLength;
{$IFDEF CGIGDEBUG}SendMethodExit('InitFastCGIRecord');{$ENDIF}
end;
function TFastCGIGatewayHandler.CreateFastCGIRecord(const AContentLength: Word) : PFCGI_Header;
Var
L,PL : INteger;
begin
{$IFDEF CGIGDEBUG}SendMethodEnter('CreateFastCGIRecord');{$ENDIF}
PL:=AContentLength Mod 8;
If PL<>0 then
PL:=8-PL;
L:=SizeOf(FCGI_HEADER)+AContentLength+PL;
Result:=GetMem(L);
FillWord(Result^,L div 2,0);
InitFastCGIRecord(Result,AContentLength,PL);
{$IFDEF CGIGDEBUG}SendMethodExit('CreateFastCGIRecord');{$ENDIF}
end;
Procedure TFastCGIGatewayHandler.SendBeginRequest;
Var
Req : FCGI_BeginRequestRecord;
begin
{$IFDEF CGIGDEBUG}SendMethodEnter('SendBeginRequest');{$ENDIF}
FillChar(Req,SizeOf(FCGI_BeginRequestRecord),0);
InitFastCGIRecord(@Req,SizeOf(FCGI_BeginRequestBody),0);
Req.Header.ReqType:=FCGI_BEGIN_REQUEST;
Req.Body.Role:=NtoBE(FCGI_RESPONDER);
SendFastCGIRecord(@Req);
{$IFDEF CGIGDEBUG}SendMethodExit('SendBeginRequest');{$ENDIF}
end;
Procedure TFastCGIGatewayHandler.SendRequestData(Const ARequest : Trequest);
Procedure SendString(S : String; RecType : Byte);
Var
L : Integer;
Cont : PFCGI_ContentRecord;
begin
{$IFDEF CGIGDEBUG}SendMethodEnter('SendString');{$ENDIF}
L:=Length(S);
Cont:=PFCGI_ContentRecord(CreateFastCGIrecord(L));
try
Cont^.Header.ReqType:=RecType;
If (L>0) then
Move(S[1],Cont^.ContentData[0],L);
SendFastCGIRecord(PFCGI_Header(Cont));
finally
FreeMem(Cont);
end;
{$IFDEF CGIGDEBUG}SendMethodExit('SendString');{$ENDIF}
end;
Var
Vars : String;
begin
{$IFDEF CGIGDEBUG}SendMethodEnter('SendRequestData');{$ENDIF}
// Start request
SendBeginRequest;
// CGI environment.
Vars:=TransformRequestVars;
If (Vars<>'') then
begin
SendString(Vars,FCGI_PARAMS);
SendString('',FCGI_PARAMS);
end;
If (UpperCase(ARequest.Method)='POST') and (ARequest.ContentLength>0) then
SendString(ARequest.Content,FCGI_STDIN);
SendString('',FCGI_STDIN);
{$IFDEF CGIGDEBUG}SendMethodExit('SendRequestData');{$ENDIF}
end;
Function TFastCGIGatewayHandler.ReadFastCGIRecord : PFCGI_Header;
var
Header : FCGI_Header;
BytesRead : integer;
ContentLength : word;
PaddingLength : byte;
ReadBuf : Pchar;
function ReadBytes(ByteAmount : Word) : boolean;
begin
{$IFDEF CGIGDEBUG}SendMethodEnter('ReadBytes '+IntToStr(ByteAmount));{$ENDIF}
result := False;
if ByteAmount>0 then
begin
BytesRead := FSocket.Read(ReadBuf^, ByteAmount);
Result:=BytesRead=ByteAmount;
end;
{$IFDEF CGIGDEBUG}SendMethodExit('ReadBytes '+IntToStr(BytesRead));{$ENDIF}
end;
begin
{$IFDEF CGIGDEBUG}SendMethodEnter('ReadFastCGIRecord');{$ENDIF}
Result := Nil;
ReadBuf:=@Header;
if not ReadBytes(Sizeof(Header)) then
exit;
ContentLength:=BetoN(Header.contentLength);
PaddingLength:=Header.paddingLength;
Result:=Getmem(BytesRead+ContentLength+PaddingLength);
Result^:=Header;
ReadBuf:=Pchar(Result)+SizeOf(Header);
ReadBytes(ContentLength);
ReadBuf:=ReadBuf+BytesRead;
ReadBytes(PaddingLength);
{$IFDEF CGIGDEBUG}SendMethodExit('ReadFastCGIRecord');{$ENDIF}
end;
Procedure TFastCGIGatewayHandler.ProcessUnknownRecord(Const Rec : PFCGI_Header; Const AResponse : TResponse; Var EOR : Boolean);
begin
{$IFDEF CGIGDEBUG}SendMethodEnter('ProcessUnknownRecord');{$ENDIF}
{$IFDEF CGIGDEBUG}SendDebugFMT('Unknown record encountered : %d',[Rec^.ReqType]);{$ENDIF}
EOR:=False;
// Do nothing.
{$IFDEF CGIGDEBUG}SendMethodEnter('ProcessUnknownRecord');{$ENDIF}
end;
Procedure TFastCGIGatewayHandler.ReadResponse(AResponse : TResponse);
Var
Rec : PFCGI_Header;
CL : Integer;
WBuf : PChar;
EOR : Boolean;
begin
{$IFDEF CGIGDEBUG}SendMethodEnter('ReadResponse');{$ENDIF}
EOR:=False;
Rec:=ReadFastCGIRecord;
While Assigned(Rec) do
begin
CL:=BeToN(Rec^.contentLength);
If (Rec^.reqtype=FCGI_STDOUT) and (CL>0) then
begin
if (AResponse.ContentStream=Nil) then
begin
AResponse.ContentStream:=TMemoryStream.Create;
end;
WBuf:=Pchar(Rec)+SizeOf(FCGI_Header);
AResponse.ContentStream.WriteBuffer(WBuf^,CL);
end
else If (Rec^.ReqType=FCGI_END_REQUEST) and (CL>0) then
EOR:=True
else
ProcessUnknownRecord(Rec,AResponse,EOR);
If Assigned(Rec) then
begin
FreeMem(Rec);
Rec:=Nil;
end;
If Not EOR then
Rec:=ReadFastCGIRecord
else
Rec:=Nil;
end;
{$IFDEF CGIGDEBUG}SendMethodExit('ReadResponse');{$ENDIF}
end;
Procedure TFastCGIGatewayHandler.DisconnectfromFCGI;
begin
{$IFDEF CGIGDEBUG}SendMethodEnter('DisconnectfromFCGI');{$ENDIF}
FreeAndNil(FSocket);
{$IFDEF CGIGDEBUG}SendMethodExit('DisconnectfromFCGI');{$ENDIF}
end;
Procedure TFastCGIGatewayHandler.HandleRequest(ARequest : Trequest; AResponse : TResponse);
begin
{$IFDEF CGIGDEBUG}SendMethodEnter('Handle request');{$ENDIF}
ConnectToFCGI;
try
SendRequestData(ARequest);
ReadResponse(AResponse);
AResponse.SendResponse;
finally
DisconnectfromFCGI;
end;
{$IFDEF CGIGDEBUG}SendMethodExit('Handle request');{$ENDIF}
end;
procedure TFastCGIGatewayHandler.Initialize;
Var
Ini : TIniFile;
begin
If (FConfigFile<>'') and FileExists(FConfigFile) then
begin
Ini:=TIniFile.Create(FConfigFile);
try
ReadConfigFile(Ini);
finally
Ini.Free;
end;
end;
if (Hostname='') or (Port=0) then
RaiseError(SErrNoConnectionData);
FInitDone:=True;
end;
procedure TFastCGIGatewayHandler.RaiseError(Const Msg : String);
begin
Raise HTTPError.Create(Msg);
end;
procedure TFastCGIGatewayHandler.ReadConfigFile(Ini : TIniFile);
begin
With Ini do
begin
HostName:=ReadString(SConfig,KeyHost,'');
Port:=ReadInteger(SConfig,KeyPort,0);
FastCGIBinary:=ReadString(SConfig,KeyName,'');
If SectionExists(SEnvironment) then
ReadSectionValues(SEnvironment,FENvironment);
If ValueExists(SConfig,KeyPathInfo) then
FEnvironment.Values['PATH_INFO']:=ReadString(SConfig,KeyPathInfo,'');
end;
end;
procedure TFastCGIGatewayApplication.Initialize;
begin
{$IFDEF CGIGDEBUG}SendMethodEnter('Initialize');{$ENDIF}
inherited Initialize;
TFastCGIGatewayHandler(WebHandler).Initialize;
{$IFDEF CGIGDEBUG}SendMethodExit('Initialize');{$ENDIF}
end;
function TFastCGIGatewayApplication.InitializeWebHandler: TWebHandler;
begin
Result:=TFastCGIGatewayHandler.Create(self);
end;
Procedure InitCGIGateWay; // Initializes Application.
begin
Application:=TFastCGIGatewayApplication.Create(Nil);
end;
Procedure DoneCGIGateWay; // Frees Application.
begin
FreeAndNil(Application);
end;
initialization
InitCGIGateWay;
finalization
DoneCGIGateWay;
end.
|