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
|
{
This file is part of the Free Pascal run time library.
Copyright (c) 1999-2004 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.
System.pp for Netware libc environment
**********************************************************************}
{ no stack check in system }
{$S-}
unit System;
interface
{$define netware}
{$define netware_libc}
{$define StdErrToConsole}
{$define autoHeapRelease}
{$define IOpossix}
{$define DisableArrayOfConst}
{$define DISABLE_NO_THREAD_MANAGER}
{$ifdef SYSTEMDEBUG}
{$define SYSTEMEXCEPTIONDEBUG}
{$endif SYSTEMDEBUG}
{$ifdef cpui386}
{$define Set_i386_Exception_handler}
{$endif cpui386}
{ include system-independent routine headers }
{$I systemh.inc}
{Platform specific information}
const
LineEnding = #13#10;
LFNSupport : boolean = false;
DirectorySeparator = '/';
DriveSeparator = ':';
ExtensionSeparator = '.';
PathSeparator = ';';
AllowDirectorySeparators : set of char = ['\','/'];
AllowDriveSeparators : set of char = [':'];
{ FileNameCaseSensitive and FileNameCasePreserving are defined separately below!!! }
maxExitCode = $ffff;
MaxPathLen = 256;
AllFilesMask = '*';
CONST
{ Default filehandles }
UnusedHandle : THandle = -1;
StdInputHandle : THandle = 0;
StdOutputHandle : THandle = 0;
StdErrorHandle : THandle = 0;
FileNameCaseSensitive : boolean = false;
FileNameCasePreserving: boolean = true;
CtrlZMarksEOF: boolean = false; (* #26 not considered as end of file *)
sLineBreak = LineEnding;
DefaultTextLineBreakStyle : TTextLineBreakStyle = tlbsCRLF;
type
TNWCheckFunction = procedure (var code : longint);
TDLL_Process_Entry_Hook = function (dllparam : longint) : longbool;
TDLL_Entry_Hook = procedure (dllparam : longint);
VAR
ArgC : INTEGER;
ArgV : ppchar;
NetwareCheckFunction: TNWCheckFunction;
NWLoggerScreen : pointer = nil;
const
Dll_Process_Attach_Hook : TDLL_Process_Entry_Hook = nil;
Dll_Process_Detach_Hook : TDLL_Entry_Hook = nil;
Dll_Thread_Attach_Hook : TDLL_Entry_Hook = nil;
Dll_Thread_Detach_Hook : TDLL_Entry_Hook = nil;
NetwareUnloadProc : pointer = nil; {like exitProc but for nlm unload only}
envp : ppchar = nil;
type
//TSysCloseAllRemainingSemaphores = procedure;
TSysReleaseThreadVars = procedure;
TSysSetThreadDataAreaPtr = function (newPtr:pointer):pointer;
procedure NWSysSetThreadFunctions (atv:TSysReleaseThreadVars;
rtv:TSysReleaseThreadVars;
stdata:TSysSetThreadDataAreaPtr);
procedure _ConsolePrintf (s :shortstring);
procedure _ConsolePrintf (FormatStr : PCHAR; Param : LONGINT);
procedure _ConsolePrintf (FormatStr : PCHAR; Param : pchar);
procedure _ConsolePrintf (FormatStr : PCHAR; P1,P2 : LONGINT);
procedure _ConsolePrintf (FormatStr : PCHAR; P1,P2,P3 : LONGINT);
procedure _ConsolePrintf (FormatStr : PCHAR);
procedure __EnterDebugger;cdecl;external '!netware' name 'EnterDebugger';
function NWGetCodeStart : pointer; // needed for Lineinfo
function NWGetCodeLength : dword;
function NWGetDataStart : pointer;
function NWGetDataLength : dword;
implementation
{ Indicate that stack checking is taken care by OS}
{$DEFINE NO_GENERIC_STACK_CHECK}
{ include system independent routines }
{$I system.inc}
procedure PASCALMAIN;external name 'PASCALMAIN';
procedure fpc_do_exit;external name 'FPC_DO_EXIT';
{*****************************************************************************
System Dependent Exit code
*****************************************************************************}
var SigTermHandlerActive : boolean;
Procedure system_exit;
begin
if TerminatingThreadID <> 0 then
if TerminatingThreadID <> ThreadId then
if TerminatingThreadID <> dword(pthread_self) then
begin
{$ifdef DEBUG_MT}
_ConsolePrintf ('Terminating Thread %x because halt was called while Thread %x terminates nlm'#13#10,dword(pthread_self),TerminatingThreadId);
{$endif}
pthread_exit (nil);
// only for the case ExitThread fails
while true do
NXThreadYield;
end;
if assigned (ReleaseThreadVars) then ReleaseThreadVars;
{$ifdef autoHeapRelease}
FreeSbrkMem; { free memory allocated by heapmanager }
{$endif}
if not SigTermHandlerActive then
begin
if Erroraddr <> nil then { otherwise we dont see runtime-errors }
SetScreenMode (0);
_exit (ExitCode);
end;
end;
{*****************************************************************************
Stack check code
*****************************************************************************}
const StackErr : boolean = false;
procedure fpc_stackcheck(stack_size:SizeUInt);[public,alias:'FPC_STACKCHECK']; compilerproc;
{
called when trying to get local stack if the compiler directive $S
is set this function must preserve all registers
With a 5k byte safe area used to write to StdIo and some libc
functions without crossing the stack boundary
}
begin
if StackErr then exit; // avoid recursive calls
asm
pusha
end;
stackerr := (stackavail < stack_size + 5120); // we really need that much, at least on nw6.5
asm
popa
end;
if not StackErr then exit;
StackErr := true;
HandleError (202);
end;
{*****************************************************************************
ParamStr/Randomize
*****************************************************************************}
{ number of args }
function paramcount : longint;
begin
paramcount := argc - 1;
end;
{ argument number l }
function paramstr(l : longint) : string;
begin
if (l>=0) and (l+1<=argc) then
begin
paramstr:=strpas(argv[l]);
if l = 0 then // fix nlm path
begin
DoDirSeparators(paramstr);
end;
end else
paramstr:='';
end;
{ set randseed to a new pseudo random value }
procedure randomize;
begin
randseed := time (NIL);
end;
{*****************************************************************************
Thread Handling
*****************************************************************************}
{ if return-value is <> 0, netware shows the message
Unload Anyway ?
To Disable unload at all, SetNLMDontUnloadFlag can be used on
Netware >= 4.0 }
function CheckFunction : longint; CDECL; [public,alias: '_NonAppCheckUnload'];
var oldPtr : pointer;
begin
//_ConsolePrintf ('CheckFunction'#13#10);
if assigned (NetwareCheckFunction) then
begin
if assigned (SetThreadDataAreaPtr) then
oldPtr := SetThreadDataAreaPtr (NIL); { nil means main thread }
result := 0;
NetwareCheckFunction (result);
if assigned (SetThreadDataAreaPtr) then
SetThreadDataAreaPtr (oldPtr);
end else
result := 0;
end;
procedure _ConsolePrintf (s : shortstring);
begin
if length(s) > 254 then
byte(s[0]) := 254;
s := s + #0;
_ConsolePrintf (@s[1]);
end;
procedure _ConsolePrintf (FormatStr : PCHAR);
begin
if NWLoggerScreen = nil then
NWLoggerScreen := getnetwarelogger;
if NWLoggerScreen <> nil then
screenprintf (NWLoggerScreen,FormatStr);
end;
procedure _ConsolePrintf (FormatStr : PCHAR; Param : LONGINT);
begin
if NWLoggerScreen = nil then
NWLoggerScreen := getnetwarelogger;
if NWLoggerScreen <> nil then
screenprintf (NWLoggerScreen,FormatStr,Param);
end;
procedure _ConsolePrintf (FormatStr : PCHAR; Param : pchar);
begin
_ConsolePrintf (FormatStr,longint(Param));
end;
procedure _ConsolePrintf (FormatStr : PCHAR; P1,P2 : LONGINT);
begin
if NWLoggerScreen = nil then
NWLoggerScreen := getnetwarelogger;
if NWLoggerScreen <> nil then
screenprintf (NWLoggerScreen,FormatStr,P1,P2);
end;
procedure _ConsolePrintf (FormatStr : PCHAR; P1,P2,P3 : LONGINT);
begin
if NWLoggerScreen = nil then
NWLoggerScreen := getnetwarelogger;
if NWLoggerScreen <> nil then
screenprintf (NWLoggerScreen,FormatStr,P1,P2,P3);
end;
var NWUts : Tutsname;
procedure getCodeAddresses;
begin
if Fpuname(NWUts) < 0 then
FillChar(NWuts,sizeof(NWUts),0);
end;
function NWGetCodeStart : pointer;
begin
NWGetCodeStart := NWUts.codeoffset;
NXThreadYield;
end;
function NWGetCodeLength : dword;
begin
NWGetCodeLength := NWUts.codelength;
NXThreadYield;
end;
function NWGetDataStart : pointer;
begin
NWGetDataStart := NWUts.dataoffset;
NXThreadYield;
end;
function NWGetDataLength : dword;
begin
NWGetDataLength := NWUts.datalength;
NXThreadYield;
end;
{$ifdef StdErrToConsole}
var ConsoleBuff : array [0..512] of char;
Function ConsoleWrite(Var F: TextRec): Integer;
var
i : longint;
Begin
if F.BufPos>0 then
begin
if F.BufPos>sizeof(ConsoleBuff)-1 then
i:=sizeof(ConsoleBuff)-1
else
i:=F.BufPos;
Move(F.BufPtr^,ConsoleBuff,i);
ConsoleBuff[i] := #0;
screenprintf (NWLoggerScreen,@ConsoleBuff);
end;
F.BufPos:=0;
ConsoleWrite := 0;
NXThreadYield;
End;
Function ConsoleClose(Var F: TextRec): Integer;
begin
ConsoleClose:=0;
end;
Function ConsoleOpen(Var F: TextRec): Integer;
Begin
TextRec(F).InOutFunc:=@ConsoleWrite;
TextRec(F).FlushFunc:=@ConsoleWrite;
TextRec(F).CloseFunc:=@ConsoleClose;
ConsoleOpen:=0;
End;
procedure AssignStdErrConsole(Var T: Text);
begin
Assign(T,'');
TextRec(T).OpenFunc:=@ConsoleOpen;
Rewrite(T);
end;
{$endif}
function GetProcessID: SizeUInt;
begin
GetProcessID := SizeUInt (getnlmhandle);
end;
{ this will be called if the nlm is unloaded. It will NOT be
called if the program exits i.e. with halt.
Halt (or _exit) can not be called from this callback procedure }
procedure TermSigHandler (Sig:longint); CDecl;
var oldPtr : pointer;
current_exit : procedure;
begin
{ Threadvar Pointer will not be valid because the signal
handler is called by netware with a differnt thread. To avoid
problems in the exit routines, we set the data of the main thread
here }
if assigned (SetThreadDataAreaPtr) then
oldPtr := SetThreadDataAreaPtr (NIL); { nil means main thread }
TerminatingThreadID := dword(pthread_self);
{we need to finalize winock to release threads
waiting on a blocking socket call. If that thread
calls halt, we have to avoid that unit finalization
is called by that thread because we are doing it
here
like the old exitProc, mainly to allow winsock to release threads
blocking in a winsock calls }
while NetwareUnloadProc<>nil Do
Begin
InOutRes:=0;
current_exit:=tProcedure(NetwareUnloadProc);
NetwareUnloadProc:=nil;
current_exit();
NXThreadYield;
//hadExitProc := true;
End;
SigTermHandlerActive := true; { to avoid that system_exit calls _exit }
do_exit; { calls finalize units }
if assigned (SetThreadDataAreaPtr) then
SetThreadDataAreaPtr (oldPtr);
end;
procedure SysInitStdIO;
begin
{ Setup stdin, stdout and stderr }
{$ifdef IOpossix}
StdInputHandle := THandle (fileno (___stdin^)); // GetStd** returns **FILE !
StdOutputHandle:= THandle (fileno (___stdout^));
StdErrorHandle := THandle (fileno (___stderr^));
{$else}
StdInputHandle := THandle (___stdin^); // GetStd** returns **FILE !
StdOutputHandle:= THandle (___stdout^);
StdErrorHandle := THandle (___stderr^);
{$endif}
OpenStdIO(Input,fmInput,StdInputHandle);
OpenStdIO(Output,fmOutput,StdOutputHandle);
OpenStdIO(StdOut,fmOutput,StdOutputHandle);
{$ifdef StdErrToConsole}
AssignStdErrConsole(StdErr);
AssignStdErrConsole(ErrOutput);
{$else}
OpenStdIO(StdErr,fmOutput,StdErrorHandle);
OpenStdIO(ErrOutput,fmOutput,StdErrorHandle);
{$endif}
end;
// this is called by main.as, setup args and call PASCALMAIN
procedure nlm_main (_ArgC : LONGINT; _ArgV : ppchar); cdecl; [public,alias: '_FPC_NLM_Entry'];
BEGIN
ArgC := _ArgC;
ArgV := _ArgV;
isLibrary := false;
PASCALMAIN;
do_exit; // currently not needed
END;
function _DLLMain (hInstDLL:pointer; fdwReason:dword; DLLParam:longint):longbool; cdecl;
[public, alias : '_FPC_DLL_Entry'];
var res : longbool;
begin
{$ifdef DEBUG_MT}
_ConsolePrintf ('_FPC_DLL_Entry called');
{$endif}
_DLLMain := false;
isLibrary := true;
case fdwReason of
DLL_ACTUAL_DLLMAIN : _DLLMain := true;
DLL_NLM_STARTUP : begin
//_ConsolePrintf ('DLL_NLM_STARTUP');
if assigned(Dll_Process_Attach_Hook) then
begin
res:=Dll_Process_Attach_Hook(DllParam);
if not res then
exit(false);
end;
PASCALMAIN;
_DLLMain := true;
end;
DLL_NLM_SHUTDOWN : begin
//_ConsolePrintf ('DLL_NLM_SHUTDOWN');
TermSigHandler(0);
_DLLMain := true;
end;
{ standard DllMain() messages... }
DLL_THREAD_ATTACH,
DLL_PROCESS_ATTACH : begin
//__ConsolePrintf ('DLL_PROCESS/THREAD_ATTACH');
if assigned(AllocateThreadVars) then
AllocateThreadVars;
if assigned(Dll_Thread_Attach_Hook) then
Dll_Thread_Attach_Hook(DllParam);
_DLLMain := true;
end;
DLL_THREAD_DETACH,
DLL_PROCESS_DETACH : begin
//__ConsolePrintf ('DLL_PROCESS/THREAD_DETACH');
if assigned(Dll_Thread_Detach_Hook) then
Dll_Thread_Detach_Hook(DllParam);
if assigned(ReleaseThreadVars) then
ReleaseThreadVars;
_DLLMain := true;
end;
end;
end;
function CheckInitialStkLen(stklen : SizeUInt) : SizeUInt;
begin
result := stklen;
end;
{*****************************************************************************
SystemUnit Initialization
*****************************************************************************}
Begin
getCodeAddresses;
StackLength := CheckInitialStkLen(initialStkLen);
StackBottom := SPtr - StackLength;
SigTermHandlerActive := false;
NetwareCheckFunction := nil;
{$ifdef StdErrToConsole}
NWLoggerScreen := getnetwarelogger;
{$endif}
CheckFunction; // avoid check function to be removed by the linker
envp := ____environ^;
NLMHandle := getnlmhandle;
{ allocate resource tags to see what kind of memory i forgot to release }
HeapAllocResourceTag :=
AllocateResourceTag(NLMHandle,'Heap Memory',AllocSignature);
{$ifdef autoHeapRelease}
HeapListAllocResourceTag :=
AllocateResourceTag(NLMHandle,'Heap Memory List',AllocSignature);
{$endif}
FpSignal (SIGTERM, @TermSigHandler);
{ Setup heap }
InitHeap;
SysInitExceptions;
{ Reset IO Error }
InOutRes:=0;
ThreadID := dword(pthread_self);
initunicodestringmanager;
SysInitStdIO;
{Delphi Compatible}
IsConsole := TRUE;
ExitCode := 0;
InitSystemThreads;
InitSystemDynLibs;
End.
|