| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346 | {   This file is part of the Free Pascal run time library.   Copyright (c) 1999-2000 by Michael Van Canneyt,   BSD parts (c) 2000 by Marco van de Voort   members of 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.**********************************************************************}Unit Unix;InterfaceUses BaseUnix,UnixType;{$if (defined(BSD) or defined(SUNOS)) and defined(FPC_USE_LIBC)}{$define USE_VFORK}{$endif}{$i aliasptp.inc}{$i unxconst.inc} { Get Types and Constants only exported in this unit }{**  File handling **}Const  P_IN  = 1;                    // pipes (?)  P_OUT = 2;  LOCK_SH = 1;                  // flock constants ?  LOCK_EX = 2;  LOCK_UN = 8;  LOCK_NB = 4;// The portable MAP_* and PROT_ constants are exported from unit Unix for compability.  PROT_READ  = baseunix.PROT_READ;             { page can be read }  PROT_WRITE = baseunix.PROT_WRITE;             { page can be written }  PROT_EXEC  = baseunix.PROT_EXEC;             { page can be executed }  PROT_NONE  = baseunix.PROT_NONE;             { page can not be accessed }  MAP_FAILED    = baseunix.MAP_FAILED;	      { mmap() failed }  MAP_SHARED    = baseunix.MAP_SHARED;        { Share changes }  MAP_PRIVATE   = baseunix.MAP_PRIVATE;       { Changes are private }  MAP_TYPE      = baseunix.MAP_TYPE;          { Mask for type of mapping }  MAP_FIXED     = baseunix.MAP_FIXED;         { Interpret addr exactly }{ Flags to `msync'.  There is non msync() call in this unit? }  MS_ASYNC        = 1;               { Sync memory asynchronously.  }  MS_SYNC         = 4;               { Synchronous memory sync.  }  MS_INVALIDATE   = 2;               { Invalidate the caches.  }Type  Tpipe = baseunix.tfildes;     // compability.{** Time/Date Handling **}var  tzdaylight : boolean;  tzname     : array[boolean] of pchar;{************     Procedure/Functions     ************}{$IFNDEF DONT_READ_TIMEZONE}  // allows to disable linking in and trying for platforms                       // it doesn't (yet) work for.{ timezone support }procedure GetLocalTimezone(timer:cint;var leap_correct,leap_hit:cint);procedure GetLocalTimezone(timer:cint);procedure ReadTimezoneFile(fn:string);function  GetTimezoneFile:string;{$ENDIF}{**  Process Handling  **}function FpExecLE (Const PathName:AnsiString;const S:Array Of AnsiString;MyEnv:ppchar):cint;function FpExecL  (Const PathName:AnsiString;const S:Array Of AnsiString):cint;function FpExecLP (Const PathName:AnsiString;const S:Array Of AnsiString):cint;function FpExecLPE(Const PathName:AnsiString;const S:Array Of AnsiString;env:ppchar):cint;function FpExecV  (Const PathName:AnsiString;args:ppchar):cint;function FpExecVP (Const PathName:AnsiString;args:ppchar):cint;function FpExecVPE(Const PathName:AnsiString;args,env:ppchar):cint;Function Shell   (const Command:String):cint;     deprecated;Function Shell   (const Command:AnsiString):cint; deprecated;Function fpSystem(const Command:string):cint;Function fpSystem(const Command:AnsiString):cint;Function WaitProcess (Pid:cint):cint; Function WIFSTOPPED (Status: Integer): Boolean;Function W_EXITCODE (ReturnCode, Signal: Integer): Integer;Function W_STOPCODE (Signal: Integer): Integer;{**      File Handling     **}// some of these are formally listed as deprecated, but specially statfs will remain for a while, no rush.Function  fsync (fd : cint) : cint; deprecated;	Function  fStatFS (Fd: cint;Var Info:tstatfs):cint; deprecated;Function  StatFS  (Path:pchar;Var Info:tstatfs):cint; deprecated;Function  fpFlock   (var T : text;mode : cint) : cint;Function  fpFlock   (var F : File;mode : cint) : cint;Function  SelectText (var T:Text;TimeOut :PTimeVal):cint; deprecated;Function  SelectText (var T:Text;TimeOut :cint):cint; deprecated;{**  Directory Handling  **}procedure SeekDir(p:pdir;loc:clong);function  TellDir(p:pdir):TOff;{**     Pipe/Fifo/Stream     **}Function AssignPipe  (var pipe_in,pipe_out:cint):cint;Function AssignPipe  (var pipe_in,pipe_out:text):cint;Function AssignPipe  (var pipe_in,pipe_out:file):cint;Function POpen       (var F:text;const Prog:Ansistring;rw:char):cint;Function POpen       (var F:file;const Prog:Ansistring;rw:char):cint;Function AssignStream(Var StreamIn,Streamout:text;Const Prog:ansiString;const args : array of ansistring) : cint;Function AssignStream(Var StreamIn,Streamout,streamerr:text;Const Prog:ansiString;const args : array of ansistring) : cint;Function  GetDomainName:String; deprecated; // because linux only.Function  GetHostName:String;{** Utility functions  **}Type        TFSearchOption  = (NoCurrentDirectory,                           CurrentDirectoryFirst,                           CurrentDirectoryLast);Function  FSearch  (const path:AnsiString;dirlist:Ansistring;CurrentDirStrategy:TFSearchOption):AnsiString;Function  FSearch  (const path:AnsiString;dirlist:AnsiString):AnsiString;procedure SigRaise (sig:integer); deprecated;{$ifdef FPC_USE_LIBC}  const clib = 'c';  {$i unxdeclh.inc}{$else}  {$i unxsysch.inc} //  calls used in system and not reexported from baseunix{$endif}{******************************************************************************                            Implementation******************************************************************************}{$i unxovlh.inc}ImplementationUses   UnixUtil  // tzseconds  {$ifndef FPC_USE_LIBC},Syscall{$endif}  ;{$i unxovl.inc}{$ifndef FPC_USE_LIBC}  {$i syscallh.inc}  {$i unxsysc.inc}{$endif}{ Get the definitions of textrec and filerec }{$i textrec.inc}{$i filerec.inc}{$i unxfunc.inc}   { Platform specific implementations }Function getenv(name:string):Pchar; external name 'FPC_SYSC_FPGETENV';{******************************************************************************                          Process related calls******************************************************************************}{ Most calls of WaitPID do not handle the result correctly, this funktion treats errors more correctly }Function  WaitProcess(Pid:cint):cint; { like WaitPid(PID,@result,0) Handling of Signal interrupts (errno=EINTR), returning the Exitcode of Process (>=0) or -Status if terminated}var  r,s     : cint;begin  s:=$7F00;  repeat    r:=fpWaitPid(Pid,@s,0);    if (r=-1) and (fpgeterrno=ESysEIntr) Then      r:=0;  until (r<>0);  if (r=-1) or (r=0) then // 0 is not a valid return and should never occur (it means status invalid when using WNOHANG)    WaitProcess:=-1 // return -1 to indicate an error.  fpwaitpid updated it.  else   begin     if wifexited(s) then      WaitProcess:=wexitstatus(s)     else if (s>0) then  // Until now there is not use of the highest bit , but check this for the future      WaitProcess:=-s // normal case     else      WaitProcess:=s; // s<0 should not occur, but wie return also a negativ value   end;end;function intFpExecVEMaybeP (Const PathName:AnsiString;Args,MyEnv:ppchar;SearchPath:Boolean):cint;// does an ExecVE, but still has to handle P// execv variants call this directly, execl variants indirectly via//     intfpexeclVar  NewCmd  : ansistring;  ThePath : AnsiString;Begin  If SearchPath and (pos('/',pathname)=0) Then    Begin      // The above could be better. (check if not escaped/quoted '/'s) ?      // (Jilles says this is ok)      // Stevens says only search if newcmd contains no '/'      // fsearch is not ansistring clean yet.      ThePath:=fpgetenv('PATH');      if thepath='' then        thepath:='.';     // FreeBSD uses _PATH_DEFPATH = /usr/bin:/bin                          // but a quick check showed that _PATH_DEFPATH                          // varied from OS to OS      newcmd:=FSearch(pathname,thepath,NoCurrentDirectory);      // FreeBSD libc keeps on trying till a file is successfully run.      // Stevens says "try each path prefix"      // execp puts newcmd here.        args^:=pchar(newcmd);   End else      newcmd:=pathname; // repeat//      if searchpath then args^:=pchar(commandtorun)  IntFpExecVEMaybeP:=fpExecVE(newcmd,Args,MyEnv);{// Code that if exec fails due to permissions, tries to run it with sh// Should we deallocate p on fail? -> no fpexit is run no matter what//}// if intfpexecvemaybep=-1 then zoekvolgende file.// until (Goexit) or SearchExit;{ If IntFpExec=-1 Then    Begin      Error:=fpGetErrno      Case Error of        ESysE2Big  : Exit(-1);        ESysELoop,          : Exit(-1);}end;function intFpExecl (Const PathName:AnsiString;const s:array of ansistring;MyEnv:ppchar;SearchPath:Boolean):cint;{ Handles the array of ansistring -> ppchar conversion.  Base for the the "l" variants.}var p:ppchar;begin  If PathName='' Then    Begin      fpsetErrno(ESysEnoEnt);      Exit(-1);                 // Errno?    End;  p:=ArrayStringToPPchar(s,1);  if p=NIL Then    Begin      GetMem(p,2*sizeof(pchar));      if p=nil then       begin        {$ifdef xunix}          fpseterrno(ESysEnoMem);        {$endif}         fpseterrno(ESysEnoEnt);         exit(-1);       end;      p[1]:=nil;    End;  p^:=pchar(PathName);  IntFPExecL:=intFpExecVEMaybeP(PathName,p,MyEnv,SearchPath);  // If we come here, no attempts were executed successfully.  Freemem(p);end;function FpExecLE (Const PathName:AnsiString;const S:Array Of AnsiString;MyEnv:ppchar):cint;Begin  FpExecLE:=intFPExecl(PathName,s,MyEnv,false);End;function FpExecL(Const PathName:AnsiString;const S:Array Of AnsiString):cint;Begin  FpExecL:=intFPExecl(PathName,S,EnvP,false);End;function FpExecLP(Const PathName:AnsiString;const S:Array Of AnsiString):cint;Begin  FpExecLP:=intFPExecl(PathName,S,EnvP,True);End;function FpExecLPE(Const PathName:AnsiString;const S:Array Of AnsiString;env:ppchar):cint;Begin  FpExecLPE:=intFPExecl(PathName,S,Env,True);End;function FpExecV(Const PathName:AnsiString;args:ppchar):cint;Begin fpexecV:=intFpExecVEMaybeP (PathName,args,envp,false);End;function FpExecVP(Const PathName:AnsiString;args:ppchar):cint;Begin fpexecVP:=intFpExecVEMaybeP (PathName,args,envp,true);End;function FpExecVPE(Const PathName:AnsiString;args,env:ppchar):cint;Begin fpexecVPE:=intFpExecVEMaybeP (PathName,args,env,true);End;// exect and execvP (ExecCapitalP) are not implement// Non POSIX anyway.// Exect turns on tracing for the process// execvP has the searchpath as array of ansistring ( const char *search_path){$define FPC_USE_FPEXEC}{$if defined(FPC_USE_FPEXEC) and not defined(USE_VFORK)}{$define SHELL_USE_FPEXEC}{$endif}Function Shell(const Command:String):cint; deprecated;{  Executes the shell, and passes it the string Command. (Through /bin/sh -c)  The current environment is passed to the shell.  It waits for the shell to exit, and returns its exit status.  If the Exec call failed exit status 127 is reported.}{ Changed the structure:- the previous version returns an undefinied value if fork fails- it returns the status of Waitpid instead of the Process returnvalue (see the doc to Shell)- it uses exit(127) not ExitProc (The Result in pp386: going on Compiling in 2 processes!)- ShellArgs are now released- The Old CreateShellArg gives back pointers to a local var}var{$ifndef SHELL_USE_FPEXEC}  p      : ppchar;{$endif}  pid    : cint;begin {$ifndef SHELL_USE_FPEXEC}  p:=CreateShellArgv(command);{$endif}{$ifdef USE_VFORK}  pid:=fpvfork;{$else USE_VFORK}  pid:=fpfork;{$endif USE_VFORK}  if pid=0 then // We are in the Child   begin     {This is the child.}     {$ifndef SHELL_USE_FPEXEC}       fpExecve(p^,p,envp);     {$else}      fpexecl('/bin/sh',['-c',Command]);     {$endif}     fpExit(127);  // was Exit(127)   end  else if (pid<>-1) then // Successfull started   Shell:=WaitProcess(pid)  else // no success   Shell:=-1; // indicate an error  {$ifndef SHELL_USE_FPEXEC}  FreeShellArgV(p);  {$endif}end;Function Shell(const Command:AnsiString):cint;{  AnsiString version of Shell}var{$ifndef SHELL_USE_FPEXEC}  p     : ppchar;{$endif}  pid   : cint;begin { Changes as above }{$ifndef SHELL_USE_FPEXEC}  p:=CreateShellArgv(command);{$endif}{$ifdef USE_VFORK}  pid:=fpvfork;{$else USE_VFORK}  pid:=fpfork;{$endif USE_VFORK}  if pid=0 then // We are in the Child   begin    {$ifdef SHELL_USE_FPEXEC}      fpexecl('/bin/sh',['-c',Command]);    {$else}     fpExecve(p^,p,envp);    {$endif}     fpExit(127); // was exit(127)!! We must exit the Process, not the function   end  else if (pid<>-1) then // Successfull started   Shell:=WaitProcess(pid)  else // no success   Shell:=-1; {$ifndef SHELL_USE_FPEXEC}  FreeShellArgV(p); {$ENDIF}end;{$ifdef FPC_USE_LIBC}function xfpsystem(p:pchar):cint; cdecl; external clib name 'system';function fpsystem(const Command:string):cint;var c:array[0..255] of char;begin  move(command[1],c[0],length(command));  c[length(command)]:=#0;  fpsystem:=xfpsystem(@c);end;Function fpSystem(const Command:AnsiString):cint;begin  fpsystem:=xfpsystem(pchar(command));end;{$else}Function fpSystem(const Command:string):cint;var  pid,savedpid   : cint;  pstat          : cint;  ign,intact,  quitact        : SigactionRec;  newsigblock,  oldsigblock    : tsigset;begin { Changes as above }  if command='' then exit(1);  ign.sa_handler:=SigActionHandler(SIG_IGN);  fpsigemptyset(ign.sa_mask);  ign.sa_flags:=0;  fpsigaction(SIGINT, @ign, @intact);  fpsigaction(SIGQUIT, @ign, @quitact);  fpsigemptyset(newsigblock);  fpsigaddset(newsigblock,SIGCHLD);  fpsigprocmask(SIG_BLOCK,newsigblock,oldsigblock);  pid:=fpfork;  if pid=0 then // We are in the Child   begin     fpsigaction(SIGINT,@intact,NIL);     fpsigaction(SIGQUIT,@quitact,NIL);     fpsigprocmask(SIG_SETMASK,@oldsigblock,NIL);     fpexecl('/bin/sh',['-c',Command]);     fpExit(127); // was exit(127)!! We must exit the Process, not the function   end  else if (pid<>-1) then // Successfull started     begin        savedpid:=pid;        repeat          pid:=fpwaitpid(savedpid,@pstat,0);        until (pid<>-1) and (fpgeterrno()<>ESysEintr);        if pid=-1 Then         fpsystem:=-1        else         fpsystem:=pstat;     end  else // no success   fpsystem:=-1;  fpsigaction(SIGINT,@intact,NIL);  fpsigaction(SIGQUIT,@quitact,NIL);  fpsigprocmask(SIG_SETMASK,@oldsigblock,NIL);end;Function fpSystem(const Command:AnsiString):cint;{  AnsiString version of Shell}var  pid,savedpid   : cint;  pstat          : cint;  ign,intact,  quitact        : SigactionRec;  newsigblock,  oldsigblock    : tsigset;begin { Changes as above }  if command='' then exit(1);  ign.sa_handler:=SigActionHandler(SIG_IGN);  fpsigemptyset(ign.sa_mask);  ign.sa_flags:=0;  fpsigaction(SIGINT, @ign, @intact);  fpsigaction(SIGQUIT, @ign, @quitact);  fpsigemptyset(newsigblock);  fpsigaddset(newsigblock,SIGCHLD);  fpsigprocmask(SIG_BLOCK,newsigblock,oldsigblock);  pid:=fpfork;  if pid=0 then // We are in the Child   begin     fpsigaction(SIGINT,@intact,NIL);     fpsigaction(SIGQUIT,@quitact,NIL);     fpsigprocmask(SIG_SETMASK,@oldsigblock,NIL);     fpexecl('/bin/sh',['-c',Command]);     fpExit(127); // was exit(127)!! We must exit the Process, not the function   end  else if (pid<>-1) then // Successfull started     begin        savedpid:=pid;        repeat          pid:=fpwaitpid(savedpid,@pstat,0);        until (pid<>-1) and (fpgeterrno()<>ESysEintr);        if pid=-1 Then         fpsystem:=-1        else         fpsystem:=pstat;     end  else // no success   fpsystem:=-1;  fpsigaction(SIGINT,@intact,NIL);  fpsigaction(SIGQUIT,@quitact,NIL);  fpsigprocmask(SIG_SETMASK,@oldsigblock,NIL);end;{$endif}Function WIFSTOPPED(Status: Integer): Boolean;begin  WIFSTOPPED:=((Status and $FF)=$7F);end;Function W_EXITCODE(ReturnCode, Signal: Integer): Integer;begin  W_EXITCODE:=(ReturnCode shl 8) or Signal;end;Function W_STOPCODE(Signal: Integer): Integer;begin  W_STOPCODE:=(Signal shl 8) or $7F;end;{$IFNDEF DONT_READ_TIMEZONE}{ Include timezone handling routines which use /usr/share/timezone info }{$i timezone.inc}{$endif}{******************************************************************************                           FileSystem calls******************************************************************************}Function fpFlock (var T : text;mode : cint) : cint;begin{$ifndef beos}  fpFlock:=fpFlock(TextRec(T).Handle,mode);{$endif}end;Function  fpFlock (var F : File;mode : cint) :cint;begin{$ifndef beos}  fpFlock:=fpFlock(FileRec(F).Handle,mode);{$endif}end;Function SelectText(var T:Text;TimeOut :PTimeval):cint;Var  F:TfdSet;begin  if textrec(t).mode=fmclosed then   begin     fpseterrno(ESysEBADF);     exit(-1);   end;  FpFD_ZERO(f);  fpFD_SET(textrec(T).handle,f);  if textrec(T).mode=fminput then   SelectText:=fpselect(textrec(T).handle+1,@f,nil,nil,TimeOut)  else   SelectText:=fpselect(textrec(T).handle+1,nil,@f,nil,TimeOut);end;Function SelectText(var T:Text;TimeOut :cint):cint;var  p  : PTimeVal;  tv : TimeVal;begin  if TimeOut=-1 then   p:=nil  else   begin     tv.tv_Sec:=Timeout div 1000;     tv.tv_Usec:=(Timeout mod 1000)*1000;     p:=@tv;   end;  SelectText:=SelectText(T,p);end;{******************************************************************************                               Directory******************************************************************************}procedure SeekDir(p:pdir;loc:clong);begin  if p=nil then   begin     fpseterrno(ESysEBADF);     exit;   end; {$if not(defined(bsd)) and not(defined(solaris)) and not(defined(beos)) }  p^.dd_nextoff:=fplseek(p^.dd_fd,loc,seek_set); {$endif} {$if not(defined(beos))}  p^.dd_size:=0;  p^.dd_loc:=0; {$endif} end;function TellDir(p:pdir):TOff;begin  if p=nil then   begin     fpseterrno(ESysEBADF);     telldir:=-1;     exit;   end; {$ifndef beos}     telldir:=fplseek(p^.dd_fd,0,seek_cur) {$endif}       { We could try to use the nextoff field here, but on my 1.2.13    kernel, this gives nothing... This may have to do with    the readdir implementation of libc... I also didn't find any trace of    the field in the kernel code itself, So I suspect it is an artifact of libc.    Michael. }end;{******************************************************************************                               Pipes/Fifo******************************************************************************}Procedure OpenPipe(var F:Text);begin  case textrec(f).mode of    fmoutput :      if textrec(f).userdata[1]<>P_OUT then        textrec(f).mode:=fmclosed;    fminput :      if textrec(f).userdata[1]<>P_IN then        textrec(f).mode:=fmclosed;    else      textrec(f).mode:=fmclosed;  end;end;Function IOPipe(var F:text):cint;begin  IOPipe:=0;  case textrec(f).mode of    fmoutput :      begin        { first check if we need something to write, else we may          get a SigPipe when Close() is called (PFV) }        if textrec(f).bufpos>0 then          IOPipe:=fpwrite(textrec(f).handle,pchar(textrec(f).bufptr),textrec(f).bufpos);      end;    fminput : Begin                textrec(f).bufend:=fpread(textrec(f).handle,pchar(textrec(f).bufptr),textrec(f).bufsize);                IOPipe:=textrec(f).bufend;              End;  end;  textrec(f).bufpos:=0;end;Function FlushPipe(var F:Text):cint;begin  FlushPipe:=0;  if (textrec(f).mode=fmoutput) and (textrec(f).bufpos<>0) then   FlushPipe:=IOPipe(f);  textrec(f).bufpos:=0;end;Function ClosePipe(var F:text):cint;begin  textrec(f).mode:=fmclosed;  ClosePipe:=fpclose(textrec(f).handle);end;Function AssignPipe(var pipe_in,pipe_out:text):cint;{  Sets up a pair of file variables, which act as a pipe. The first one can  be read from, the second one can be written to.}var  f_in,f_out : cint;begin  if AssignPipe(f_in,f_out)=-1 then     exit(-1);{ Set up input }  Assign(Pipe_in,'');  Textrec(Pipe_in).Handle:=f_in;  Textrec(Pipe_in).Mode:=fmInput;  Textrec(Pipe_in).userdata[1]:=P_IN;  TextRec(Pipe_in).OpenFunc:=@OpenPipe;  TextRec(Pipe_in).InOutFunc:=@IOPipe;  TextRec(Pipe_in).FlushFunc:=@FlushPipe;  TextRec(Pipe_in).CloseFunc:=@ClosePipe;{ Set up output }  Assign(Pipe_out,'');  Textrec(Pipe_out).Handle:=f_out;  Textrec(Pipe_out).Mode:=fmOutput;  Textrec(Pipe_out).userdata[1]:=P_OUT;  TextRec(Pipe_out).OpenFunc:=@OpenPipe;  TextRec(Pipe_out).InOutFunc:=@IOPipe;  TextRec(Pipe_out).FlushFunc:=@FlushPipe;  TextRec(Pipe_out).CloseFunc:=@ClosePipe;  AssignPipe:=0;end;Function AssignPipe(var pipe_in,pipe_out:file):cint;{  Sets up a pair of file variables, which act as a pipe. The first one can  be read from, the second one can be written to.  If the operation was unsuccesful,}var  f_in,f_out : cint;begin  if AssignPipe(f_in,f_out)=-1 then     exit(-1);{ Set up input }  Assign(Pipe_in,'');  Filerec(Pipe_in).Handle:=f_in;  Filerec(Pipe_in).Mode:=fmInput;  Filerec(Pipe_in).recsize:=1;  Filerec(Pipe_in).userdata[1]:=P_IN;{ Set up output }  Assign(Pipe_out,'');  Filerec(Pipe_out).Handle:=f_out;  Filerec(Pipe_out).Mode:=fmoutput;  Filerec(Pipe_out).recsize:=1;  Filerec(Pipe_out).userdata[1]:=P_OUT;  AssignPipe:=0;end;Function PCloseText(Var F:text):cint;{  May not use @PClose due overloading}begin  PCloseText:=PClose(f);end;Function POpen(var F:text;const Prog:Ansistring;rw:char):cint;{  Starts the program in 'Prog' and makes it's input or out put the  other end of a pipe. If rw is 'w' or 'W', then whatever is written to  F, will be read from stdin by the program in 'Prog'. The inverse is true  for 'r' or 'R' : whatever the program in 'Prog' writes to stdout, can be  read from 'f'.}var  pipi,  pipo : text;  pid  : cint;  pl   : ^cint;{$if not defined(FPC_USE_FPEXEC) or defined(USE_VFORK)}  pp : array[0..3] of pchar;  temp : string[255];{$endif not FPC_USE_FPEXEC or USE_VFORK}  ret  : cint;begin  rw:=upcase(rw);  if not (rw in ['R','W']) then   begin     FpSetErrno(ESysEnoent);     exit(-1);   end;  ret:=AssignPipe(pipi,pipo);  if ret=-1 then   exit(-1);{$ifdef USE_VFORK}  pid:=fpvfork;{$else USE_VFORK}  pid:=fpfork;{$endif USE_VFORK}  if pid=-1 then   begin     close(pipi);     close(pipo);     exit(-1);   end;  if pid=0 then   begin   { We're in the child }     if rw='W' then      begin        if (textrec(pipi).handle <> stdinputhandle) then          begin            ret:=fpdup2(pipi,input);{$ifdef USE_VFORK}            fpclose(textrec(pipi).handle);{$else USE_VFORK}            close(pipi);{$endif USE_VFORK}          end;{$ifdef USE_VFORK}        fpclose(textrec(pipo).handle);{$else USE_VFORK}        close(pipo);{$endif USE_VFORK}        if ret=-1 then         fpexit(127);      end     else      begin{$ifdef USE_VFORK}        fpclose(textrec(pipi).handle);{$else USE_VFORK}        close(pipi);{$endif USE_VFORK}        if (textrec(pipo).handle <> stdoutputhandle) then          begin            ret:=fpdup2(pipo,output);{$ifdef USE_VFORK}            fpclose(textrec(pipo).handle);{$else USE_VFORK}            close(pipo);{$endif USE_VFORK}          end;        if ret=-1 then         fpexit(127);      end;     {$if defined(FPC_USE_FPEXEC) and not defined(USE_VFORK)}     fpexecl(pchar('/bin/sh'),['-c',Prog]);     {$else}     temp:='/bin/sh'#0'-c'#0;     pp[0]:=@temp[1];     pp[1]:=@temp[9];     pp[2]:=@prog[1];     pp[3]:=Nil;     fpExecve('/bin/sh',@pp,envp);     {$endif}     fpexit(127);   end  else   begin   { We're in the parent }     if rw='W' then      begin        close(pipi);        f:=pipo;      end     else      begin        close(pipo);        f:=pipi;      end;     textrec(f).bufptr:=@textrec(f).buffer;   {Save the process ID - needed when closing }     pl:=pcint(@textrec(f).userdata[2]);     { avoid alignment error on sparc }     move(pid,pl^,sizeof(pid));     textrec(f).closefunc:=@PCloseText;   end; POpen:=0;end;Function POpen(var F:file;const Prog:Ansistring;rw:char):cint;{  Starts the program in 'Prog' and makes it's input or out put the  other end of a pipe. If rw is 'w' or 'W', then whatever is written to  F, will be read from stdin by the program in 'Prog'. The inverse is true  for 'r' or 'R' : whatever the program in 'Prog' writes to stdout, can be  read from 'f'.}var  pipi,  pipo : file;  pid  : cint;  pl   : ^cint;{$if not defined(FPC_USE_FPEXEC) or defined(USE_VFORK)}  pp : array[0..3] of pchar;  temp : string[255];{$endif not FPC_USE_FPEXEC or USE_VFORK}  ret  : cint;begin  rw:=upcase(rw);  if not (rw in ['R','W']) then   begin     FpSetErrno(ESysEnoent);     exit(-1);   end;  ret:=AssignPipe(pipi,pipo);  if ret=-1 then   exit(-1);{$ifdef USE_VFORK}  pid:=fpvfork;{$else USE_VFORK}  pid:=fpfork;{$endif USE_VFORK}  if pid=-1 then   begin     close(pipi);     close(pipo);     exit(-1);   end;  if pid=0 then   begin   { We're in the child }     if rw='W' then      begin        if (filerec(pipi).handle <> stdinputhandle) then          begin            ret:=fpdup2(filerec(pipi).handle,stdinputhandle);{$ifdef USE_VFORK}            fpclose(filerec(pipi).handle);{$else USE_VFORK}            close(pipi);{$endif USE_VFORK}          end;{$ifdef USE_VFORK}        fpclose(filerec(pipo).handle);{$else USE_VFORK}        close(pipo);{$endif USE_VFORK}        if ret=-1 then         fpexit(127);      end     else      begin{$ifdef USE_VFORK}        fpclose(filerec(pipi).handle);{$else USE_VFORK}        close(pipi);{$endif USE_VFORK}        if (filerec(pipo).handle <> stdoutputhandle) then          begin            ret:=fpdup2(filerec(pipo).handle,stdoutputhandle);{$ifdef USE_VFORK}            fpclose(filerec(pipo).handle);{$else USE_VFORK}            close(pipo);{$endif USE_VFORK}          end;        if ret=-1 then         fpexit(127);      end;     {$if defined(FPC_USE_FPEXEC) and not defined(USE_VFORK)}     fpexecl(pchar('/bin/sh'),['-c',Prog]);     {$else}     temp:='/bin/sh'#0'-c'#0;     pp[0]:=@temp[1];     pp[1]:=@temp[9];     pp[2]:=@prog[1];     pp[3]:=Nil;     fpExecve('/bin/sh',@pp,envp);     {$endif}     fpexit(127);   end  else   begin   { We're in the parent }     if rw='W' then      begin        close(pipi);        f:=pipo;      end     else      begin        close(pipo);        f:=pipi;      end;   {Save the process ID - needed when closing }     pl:=pcint(@filerec(f).userdata[2]);     { avoid alignment error on sparc }     move(pid,pl^,sizeof(pid));   end; POpen:=0;end;Function AssignStream(Var StreamIn,Streamout:text;Const Prog:ansiString;const args : array of ansistring) : cint;{  Starts the program in 'Prog' and makes its input and output the  other end of two pipes, which are the stdin and stdout of a program  specified in 'Prog'.  streamout can be used to write to the program, streamin can be used to read  the output of the program. See the following diagram :  Parent          Child  STreamout -->  Input  Streamin  <--  Output  Return value is the process ID of the process being spawned, or -1 in case of failure.}var  pipi,  pipo : text;  pid  : cint;  pl   : ^cint;begin  AssignStream:=-1;  if AssignPipe(streamin,pipo)=-1 Then   exit(-1);  if AssignPipe(pipi,streamout)=-1 Then    begin      close(streamin);      close(pipo);      exit(-1);    end;  pid:=fpfork;  if pid=-1 then   begin     close(pipi);     close(pipo);     close (streamin);     close (streamout);     exit;   end;  if pid=0 then   begin     { We're in the child }     { Close what we don't need }     close(streamout);     close(streamin);     if fpdup2(pipi,input)=-1 Then      halt(127);     close(pipi);     If fpdup2(pipo,output)=-1 Then       halt (127);     close(pipo);     fpExecl(Prog,args);     halt(127);   end  else   begin     { we're in the parent}     close(pipo);     close(pipi);     {Save the process ID - needed when closing }     pl:=pcint(@textrec(StreamIn).userdata[2]);     { avoid alignment error on sparc }     move(pid,pl^,sizeof(pid));     textrec(StreamIn).closefunc:=@PCloseText;     {Save the process ID - needed when closing }     pl:=pcint(@textrec(StreamOut).userdata[2]);     { avoid alignment error on sparc }     move(pid,pl^,sizeof(pid));     textrec(StreamOut).closefunc:=@PCloseText;     AssignStream:=Pid;   end;end;Function AssignStream(Var StreamIn,Streamout,streamerr:text;Const Prog:ansiString;const args : array of ansistring) : cint;{  Starts the program in 'prog' and makes its input, output and error output the  other end of three pipes, which are the stdin, stdout and stderr of a program  specified in 'prog'.  StreamOut can be used to write to the program, StreamIn can be used to read  the output of the program, StreamErr reads the error output of the program.  See the following diagram :  Parent          Child  StreamOut -->  StdIn  (input)  StreamIn  <--  StdOut (output)  StreamErr <--  StdErr (error output)}var  PipeIn, PipeOut, PipeErr: text;  pid: cint;  pl: ^cint;begin  AssignStream := -1;  // Assign pipes  if AssignPipe(StreamIn, PipeOut)=-1 Then   Exit(-1);  If AssignPipe(StreamErr, PipeErr)=-1 Then  begin    Close(StreamIn);    Close(PipeOut);    exit(-1);  end;  if AssignPipe(PipeIn, StreamOut)=-1 Then  begin    Close(StreamIn);    Close(PipeOut);    Close(StreamErr);    Close(PipeErr);    exit(-1);  end;  // Fork  pid := fpFork;  if pid=-1 then begin    Close(StreamIn);    Close(PipeOut);    Close(StreamErr);    Close(PipeErr);    Close(PipeIn);    Close(StreamOut);    exit(-1);  end;  if pid = 0 then begin    // *** We are in the child ***    // Close what we don not need    Close(StreamOut);    Close(StreamIn);    Close(StreamErr);    // Connect pipes    if fpdup2(PipeIn, Input)=-1 Then     Halt(127);    Close(PipeIn);    if fpdup2(PipeOut, Output)=-1 Then     Halt(127);    Close(PipeOut);    if fpdup2(PipeErr, StdErr)=-1 Then     Halt(127);    Close(PipeErr);    // Execute program    fpExecl(Prog,args);    Halt(127);  end else begin    // *** We are in the parent ***    Close(PipeErr);    Close(PipeOut);    Close(PipeIn);    // Save the process ID - needed when closing    pl := pcint(@TextRec(StreamIn).userdata[2]);    { avoid alignment error on sparc }    move(pid,pl^,sizeof(pid));    TextRec(StreamIn).closefunc := @PCloseText;    // Save the process ID - needed when closing    pl := pcint(@TextRec(StreamOut).userdata[2]);    { avoid alignment error on sparc }    move(pid,pl^,sizeof(pid));    TextRec(StreamOut).closefunc := @PCloseText;    // Save the process ID - needed when closing    pl := pcint(@TextRec(StreamErr).userdata[2]);    { avoid alignment error on sparc }    move(pid,pl^,sizeof(pid));    TextRec(StreamErr).closefunc := @PCloseText;    AssignStream := pid;  end;end;{******************************************************************************                        General information calls******************************************************************************}{$ifdef Linux}Function GetDomainName:String;  { linux only!}// domainname is a glibc extension.{  Get machines domain name. Returns empty string if not set.}Var  Sysn : utsname;begin  If fpUname(sysn)<>0 then   getdomainname:=''  else   getdomainname:=strpas(@Sysn.domain[0]);end;{$endif}{$ifdef sunos}{ sunos doesn't support GetDomainName, see also  http://www.sun.com/software/solaris/programs/abi/appcert_faq.xml#q18}Function GetDomainName:String;  begin    GetDomainName:='';  end;{$endif sunos}{$ifdef BSD}function intGetDomainName(Name:PChar; NameLen:Cint):cint;{$ifndef FPC_USE_LIBC} external name 'FPC_SYSC_GETDOMAINNAME';{$else FPC_USE_LIBC} cdecl; external clib name 'getdomainname';{$endif FPC_USE_LIBC}Function GetDomainName:String;  { linux only!}// domainname is a glibc extension.{  Get machines domain name. Returns empty string if not set.}begin  if intGetDomainName(@getdomainname[1],255)=-1 then   getdomainname:=''  else   getdomainname[0]:=chr(strlen(@getdomainname[1]));end;{$endif}Function GetHostName:String;{  Get machines name. Returns empty string if not set.}Var  Sysn : utsname;begin  If fpuname(sysn)=-1 then   gethostname:=''  else   gethostname:=strpas(@Sysn.nodename[0]);end;{******************************************************************************                          Signal handling calls******************************************************************************}procedure SigRaise(sig:integer);begin  fpKill(fpGetPid,Sig);end;{******************************************************************************                             Utility calls******************************************************************************}Function FSearch(const path:AnsiString;dirlist:Ansistring;CurrentDirStrategy:TFSearchOption):AnsiString;{  Searches for a file 'path' in the list of direcories in 'dirlist'.  returns an empty string if not found. Wildcards are NOT allowed.  If dirlist is empty, it is set to '.'This function tries to make FSearch use ansistrings, and decreasestringhandling overhead at the same time.}Var  mydir,NewDir : ansistring;  p1     : cint;  Info   : Stat;  i,j      : cint;  p      : pchar;Begin if CurrentDirStrategy=CurrentDirectoryFirst Then     Dirlist:='.:'+dirlist;             {Make sure current dir is first to be searched.} if CurrentDirStrategy=CurrentDirectoryLast Then     Dirlist:=dirlist+':.';             {Make sure current dir is last to be searched.}{Replace ':' and ';' with #0} for p1:=1 to length(dirlist) do   if (dirlist[p1]=':') or (dirlist[p1]=';') then    dirlist[p1]:=#0;{Check for WildCards}  If (Pos('?',Path) <> 0) or (Pos('*',Path) <> 0) Then   FSearch:='' {No wildcards allowed in these things.}  Else   Begin     p:=pchar(dirlist);     i:=length(dirlist);     j:=1;     Repeat       mydir:=ansistring(p);       if (length(mydir)>0) and (mydir[length(mydir)]<>'/') then          mydir:=mydir+'/';       NewDir:=mydir+Path;       if (FpStat(NewDir,Info)>=0) and          (not fpS_ISDIR(Info.st_Mode)) then        Begin          If Pos('./',NewDir)=1 Then           Delete(NewDir,1,2);        {DOS strips off an initial .\}        End       Else        NewDir:='';       while (j<=i) and (p^<>#0) do begin inc(j); inc(p); end;       if p^=#0 then inc(p);     Until (j>=i) or (Length(NewDir) > 0);     FSearch:=NewDir;   End;End;Function FSearch(const path:AnsiString;dirlist:Ansistring):AnsiString;Begin FSearch:=FSearch(path,dirlist,CurrentDirectoryFirst);End;Function  fsync (fd : cint) : cint;begin  fsync := fpFSync(fd);end;Function StatFS(Path:Pchar;Var Info:tstatfs):cint;{  Get all information on a fileSystem, and return it in Info.  Path is the name of a file/directory on the fileSystem you wish to  investigate.}begin  StatFS:=fpStatFS(Path, @Info);;end;Function fStatFS(Fd:cint;Var Info:tstatfs):cint;{  Get all information on a fileSystem, and return it in Info.  Fd is the file descriptor of a file/directory on the fileSystem  you wish to investigate.}begin  fStatFS:=fpfStatFS(fd, @Info);end;Initialization{$IFNDEF DONT_READ_TIMEZONE}  InitLocalTime;{$endif}finalization{$IFNDEF DONT_READ_TIMEZONE}  DoneLocalTime;{$endif}End.
 |