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 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842
|
------------------------------------------------------------------------------
-- --
-- FLORIST (FSU Implementation of POSIX.5) COMPONENTS --
-- --
-- P O S I X . P R O C E S S _ P R I M I T I V E S --
-- --
-- B o d y --
-- --
-- --
-- Copyright (C) 1996-1997 Florida State University --
-- Copyright (C) 1998-2006 AdaCore --
-- --
-- This file is a component of FLORIST, an implementation of an Ada API --
-- for the POSIX OS services, for use with the GNAT Ada compiler and --
-- the FSU Gnu Ada Runtime Library (GNARL). The interface is intended --
-- to be close to that specified in IEEE STD 1003.5: 1990 and IEEE STD --
-- 1003.5b: 1996. --
-- --
-- FLORIST is free software; you can redistribute it and/or modify it --
-- under terms of the GNU General Public License as published by the --
-- Free Software Foundation; either version 2, or (at your option) any --
-- later version. FLORIST 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 distributed with GNARL; see --
-- file COPYING. If not, write to the Free Software Foundation, 59 --
-- Temple Place - Suite 330, Boston, MA 02111-1307, USA. --
-- --
-- --
-- --
-- --
-- --
-- --
-- --
-- --
------------------------------------------------------------------------------
with POSIX.Implementation,
POSIX.Unsafe_Process_Primitives,
Unchecked_Conversion,
Unchecked_Deallocation;
package body POSIX.Process_Primitives is
use POSIX.C,
POSIX.Implementation,
POSIX.Process_Identification,
POSIX.Process_Environment;
C_File_Mode : constant array (POSIX.IO.File_Mode) of Bits :=
(POSIX.IO.Read_Only => O_RDONLY,
POSIX.IO.Write_Only => O_WRONLY,
POSIX.IO.Read_Write => O_RDWR);
-----------------------------
-- Unchecked Conversions --
-----------------------------
function To_int is new Unchecked_Conversion (Bits, int);
function To_String_List_Ptr is
new Unchecked_Conversion (POSIX_String_List, String_List_Ptr);
function To_String_List_Ptr is
new Unchecked_Conversion
(POSIX.Process_Environment.Environment, String_List_Ptr);
function To_Process_ID is new
Unchecked_Conversion (pid_t, Process_ID);
function To_pid_t is new
Unchecked_Conversion (Process_Group_ID, pid_t);
function To_pid_t is new
Unchecked_Conversion (Process_ID, pid_t);
procedure Free is new
Unchecked_Deallocation (FD_Set_Element, FD_Set_Ptr);
-------------------------
-- Local Subprograms --
-------------------------
function Make_Path_Name
(Directory : POSIX_String;
File : POSIX_String) return POSIX_String;
pragma Inline (Make_Path_Name);
-- Concatenate a directory name and a file name.
function Make_Path_Name
(Directory : POSIX_String;
File : POSIX_String) return POSIX_String is
begin
if Directory = "" then
return File & NUL;
end if;
if Directory (Directory'Last) = '/' then
return Directory & File & NUL;
end if;
return Directory & '/' & File & NUL;
end Make_Path_Name;
procedure Delete_Head (Pointer : in out FD_Set_Ptr);
procedure Delete_Head (Pointer : in out FD_Set_Ptr) is
Head : FD_Set_Ptr := Pointer;
begin
Pointer := Head.Next;
Free (Head);
end Delete_Head;
procedure Execute_Template (Template : Process_Template);
procedure Void (Ignore : int);
pragma Inline (Void);
procedure Void (Ignore : int) is
pragma Unreferenced (Ignore);
begin
null;
end Void;
function sigemptyset (set : sigset_t_ptr) return int;
pragma Import (C, sigemptyset, sigemptyset_LINKNAME);
function sigaddset (set : sigset_t_ptr; sig : POSIX.Signals.Signal)
return int;
pragma Import (C, sigaddset, sigaddset_LINKNAME);
function pthread_sigmask
(how : int;
set : sigset_t_ptr;
oset : sigset_t_ptr) return int;
pragma Import (C, pthread_sigmask, pthread_sigmask_LINKNAME);
procedure Check_Fatal (Result : int);
-- See comments in Execute_Template, below.
procedure Check_Fatal (Result : int) is
begin
if Result = -1 then
Exit_Process (Failed_Creation_Exit);
end if;
end Check_Fatal;
function getuid return uid_t;
pragma Import (C, getuid, getuid_LINKNAME);
function setuid (uid : uid_t) return int;
pragma Import (C, setuid, setuid_LINKNAME);
function getgid return gid_t;
pragma Import (C, getgid, getgid_LINKNAME);
function setgid (gid : gid_t) return int;
pragma Import (C, setgid, setgid_LINKNAME);
function close (fildes : int) return int;
pragma Import (C, close, close_LINKNAME);
function open (path : char_ptr; oflag : int) return int;
pragma Import (C, open, open_LINKNAME);
function dup2 (fildes, fildes2 : int) return int;
pragma Import (C, dup2, dup2_LINKNAME);
procedure Execute_Template (Template : Process_Template) is
FD1, FD2 : int;
Cur : FD_Set_Ptr := Template.FD_Set;
New_Mask, Old_Mask : aliased sigset_t;
begin
if not Template.Keep_Effective_IDs then
-- See note below why we do not call operations from
-- POSIX_Process_Identification, since they may raise
-- exceptions, and we worry about our ability to handle
-- them.
Check_Fatal (setuid (getuid));
Check_Fatal (setgid (getgid));
end if;
-- We cannot use signal masking operations from
-- POSIX.Signals, since they are implemented as
-- virtual operations, relative to the Ada task's
-- view of the signal interface. We normally keep
-- most signals masked in all tasks except the designated
-- signal handler threads, so that we can safely use
-- sigwait. During this situation, we have just forked
-- and we hope|expect there are no other threads active
-- in the new (child) process. Under these conditions
-- (only) it should be safe to use the raw signal masking
-- operations. In earlier versions, we used the almost-raw
-- versions, from System.Interrupt_Management.Operations.
-- These had the advantage that the Ada RTS has already
-- taken care of mapping to any nonstandard functions,
-- such as the Solaris 2.x thr_sigmask, versus the
-- POSIX.1c pthread_sigmask. However, more recent versions
-- of Unix operating systems do support the standard,
-- and in posi-signals.gpb we have already used some of
-- the raw C interfaces. In the current version, we have
-- gone over to completely avoiding calls to the Ada tasking
-- runtime system.
-- If an exception is raised during this time, the tasking
-- runtime system's data structures may "lie" about there
-- being other tasks active. This could prevent
-- orderly shutdown of the process. Hence, we use
-- Check_Fatal instead of the usual Check, and generally
-- try to avoid calling anything that could raise an
-- exception.
-- .... ????
-- The code below may not be robust against exceptions
-- that occur between fork and exec calls. There may be
-- a possibility of deadlock, if the fork occurred while some
-- other task is holding an RTS-internal lock that we need to
-- process exceptions.
-- The present approach is to avoid exceptions, by calling the
-- "raw" C interfaces below, and to replace the soft-links that are
-- used to set up exception-handling frames to use the nontasking
-- versions, since we may not be able to avoid those routines being
-- called. The soft links are switched inside the version of Fork
-- that we import from POSIX.Unsafe_Process_Primitives.
while Cur /= null loop
case Cur.Action is
when Close =>
Check_Fatal (close (int (Cur.FD)));
when Open =>
FD1 := open (Cur.File_Name (Cur.File_Name'First)'Unchecked_Access,
To_int (Option_Set (Cur.File_Options).Option
or C_File_Mode (Cur.File_Mode)));
if FD1 = -1 then
Exit_Process (Failed_Creation_Exit);
end if;
-- FD2 := dup2 (FD1, int (Cur.FD)); should be enough for the
-- following if/else statement. However, we have a mulfunction
-- under Linux when the two arguments are the same. The following
-- code is a workaround.
if FD1 /= int (Cur.FD) then
FD2 := dup2 (FD1, int (Cur.FD));
else
FD2 := FD1;
end if;
if FD2 = -1 then
Exit_Process (Failed_Creation_Exit);
end if;
when Duplicate =>
FD2 := dup2 (int (Cur.Dup_From), int (Cur.FD));
if FD2 = -1 then
Exit_Process (Failed_Creation_Exit);
end if;
end case;
Cur := Cur.Next;
end loop;
Void (sigemptyset (New_Mask'Unchecked_Access));
for Sig in 1 .. POSIX.Signals.Signal'Last loop
if POSIX.Signals.Is_Member (Template.Sig_Set, Sig) then
Void (sigaddset (New_Mask'Unchecked_Access, Sig));
end if;
end loop;
Void (pthread_sigmask (SIG_SETMASK, New_Mask'Unchecked_Access,
Old_Mask'Unchecked_Access));
-- ???? is pthread_sigmask OK after a fork?
-- sigprocmask is not safe in a multithreaded process, but after
-- the fork() call we are effectively in a single-threaded process,
-- so it might be better to use sigprocmask?
-- Void (sigprocmask (SIG_SETMASK, New_Mask'Unchecked_Access, null));
exception when others =>
Exit_Process (Failed_Creation_Exit);
-- Since this may not work, we have tried to avoid raising
-- any exceptions. However, in case we have missed something
-- and an exception is raised, we leave the handler here,
-- on the off-chance it might work.
end Execute_Template;
procedure Validate (Template : Process_Template);
procedure Validate (Template : Process_Template) is
begin
if Template.Is_Closed then
Raise_POSIX_Error (Invalid_Argument);
end if;
end Validate;
---------------------
-- Open_Template --
---------------------
procedure Open_Template
(Template : in out Process_Template) is
begin
Template.Is_Closed := False;
Template.Keep_Effective_IDs := False;
Template.Masked_Sig := No_Signals;
Template.FD_Set := null;
end Open_Template;
----------------------
-- Close_Template --
----------------------
procedure Close_Template
(Template : in out Process_Template) is
begin
Validate (Template);
while Template.FD_Set /= null loop
Delete_Head (Template.FD_Set);
end loop;
Template.Is_Closed := True;
end Close_Template;
------------------------------
-- Set_Keep_Effective_IDs --
------------------------------
procedure Set_Keep_Effective_IDs
(Template : in out Process_Template) is
begin
Validate (Template);
Template.Keep_Effective_IDs := True;
end Set_Keep_Effective_IDs;
-----------------------
-- Set_Signal_Mask --
-----------------------
procedure Set_Signal_Mask
(Template : in out Process_Template;
Mask : POSIX.Signals.Signal_Set) is
begin
Validate (Template);
Template.Sig_Set := Mask;
end Set_Signal_Mask;
-----------------------------------
-- Set_Creation_Signal_Masking --
-----------------------------------
procedure Set_Creation_Signal_Masking
(Template : in out Process_Template;
Masked_Signals : POSIX.Signal_Masking
:= POSIX.RTS_Signals) is
begin
Validate (Template);
Template.Masked_Sig := Masked_Signals;
end Set_Creation_Signal_Masking;
--------------------------------
-- Set_File_Action_To_Close --
--------------------------------
procedure Set_File_Action_To_Close
(Template : in out Process_Template;
File : POSIX.IO.File_Descriptor)
is
Tmp : FD_Set_Ptr := Template.FD_Set;
begin
Validate (Template);
if Tmp = null then
Template.FD_Set := new FD_Set_Element (Close, 1);
Tmp := Template.FD_Set;
else
while Tmp.Next /= null loop
Tmp := Tmp.Next;
end loop;
Tmp.Next := new FD_Set_Element (Close, 1);
Tmp := Tmp.Next;
end if;
Tmp.FD := File;
Tmp.Next := null;
Tmp.Action := Close;
end Set_File_Action_To_Close;
-------------------------------
-- Set_File_Action_To_Open --
-------------------------------
procedure Set_File_Action_To_Open
(Template : in out Process_Template;
File : POSIX.IO.File_Descriptor;
Name : POSIX.Pathname;
Mode : POSIX.IO.File_Mode := POSIX.IO.Read_Only;
Options : POSIX.IO.Open_Option_Set := POSIX.IO.Empty_Set)
is
Name_With_NUL : constant POSIX_String := Name & NUL;
Tmp : FD_Set_Ptr := Template.FD_Set;
begin
Validate (Template);
if Tmp = null then
Template.FD_Set := new FD_Set_Element (Open, Name_With_NUL'Length);
Tmp := Template.FD_Set;
else
while Tmp.Next /= null loop
Tmp := Tmp.Next;
end loop;
Tmp.Next := new FD_Set_Element (Open, Name_With_NUL'Length);
Tmp := Tmp.Next;
end if;
Tmp.FD := File;
Tmp.Next := null;
Tmp.Action := Open;
Tmp.File_Name := Name_With_NUL;
Tmp.File_Mode := Mode;
Tmp.File_Options := Options;
end Set_File_Action_To_Open;
------------------------------------
-- Set_File_Action_To_Duplicate --
------------------------------------
procedure Set_File_Action_To_Duplicate
(Template : in out Process_Template;
File : POSIX.IO.File_Descriptor;
From_File : POSIX.IO.File_Descriptor)
is
Tmp : FD_Set_Ptr := Template.FD_Set;
begin
Validate (Template);
if Tmp = null then
Template.FD_Set := new FD_Set_Element (Duplicate, 1);
Tmp := Template.FD_Set;
else
while Tmp.Next /= null loop
Tmp := Tmp.Next;
end loop;
Tmp.Next := new FD_Set_Element (Duplicate, 1);
Tmp := Tmp.Next;
end if;
Tmp.FD := File;
Tmp.Next := null;
Tmp.Action := Duplicate;
Tmp.Dup_From := From_File;
end Set_File_Action_To_Duplicate;
---------------------
-- Start_Process --
---------------------
function execv
(path : char_ptr;
argv : char_ptr_ptr) return int;
pragma Import (C, execv, execv_LINKNAME);
function execve
(path : char_ptr;
argv : char_ptr_ptr;
envp : char_ptr_ptr) return int;
pragma Import (C, execve, execve_LINKNAME);
function execvp
(file : char_ptr;
argv : char_ptr_ptr) return int;
pragma Import (C, execvp, execvp_LINKNAME);
function UFork return POSIX.Process_Identification.Process_ID
renames POSIX.Unsafe_Process_Primitives.Fork;
procedure Start_Process
(Child : out POSIX.Process_Identification.Process_ID;
Pathname : POSIX.Pathname;
Template : Process_Template;
Arg_List : POSIX_String_List := Empty_String_List)
is
pid : pid_t;
Result : int;
pragma Unreferenced (Result);
Pathname_With_NUL : POSIX_String := Pathname & NUL;
Arg : String_List_Ptr := To_String_List_Ptr (Arg_List);
Default_Arg : POSIX_String_List;
Old_Mask : aliased Signal_Mask;
begin
-- Construct a default argument list with the executable name (argv[0])
if Arg_List = null or else Length (Arg_List) = 0 then
Append (Default_Arg, Pathname_With_NUL);
Arg := To_String_List_Ptr (Default_Arg);
end if;
Validate (Template);
-- .... Consider trying to "quiesce" the tasking system
-- before doing the fork. It is probably not feasible.
Mask_Signals
(Template.Masked_Sig, Old_Mask'Unchecked_Access);
pid := To_pid_t (UFork); Check (int (pid));
if pid = 0 then -- child process
Execute_Template (Template);
Result := execv (Pathname_With_NUL
(Pathname_With_NUL'First)'Unchecked_Access,
Arg.Char (1)'Unchecked_Access);
Exit_Process (Failed_Creation_Exit);
else
Child := To_Process_ID (pid);
Make_Empty (Default_Arg);
Restore_Signals
(Template.Masked_Sig, Old_Mask'Unchecked_Access);
end if;
end Start_Process;
procedure Start_Process
(Child : out POSIX.Process_Identification.Process_ID;
Pathname : POSIX.Pathname;
Template : Process_Template;
Env_List : POSIX.Process_Environment.Environment;
Arg_List : POSIX_String_List := Empty_String_List)
is
pid : pid_t;
Result : int;
pragma Unreferenced (Result);
Pathname_With_NUL : POSIX_String := Pathname & NUL;
Arg : String_List_Ptr := To_String_List_Ptr (Arg_List);
Env : String_List_Ptr := To_String_List_Ptr (Env_List);
begin
if Arg = null then
Arg := Null_String_List_Ptr;
end if;
if Env = null then
Env := Null_String_List_Ptr;
end if;
Validate (Template);
pid := To_pid_t (UFork); Check (int (pid));
if pid = 0 then -- child process
Execute_Template (Template);
Result := execve (Pathname_With_NUL
(Pathname_With_NUL'First)'Unchecked_Access,
Arg.Char (1)'Access, Env.Char (1)'Access);
Exit_Process (Failed_Creation_Exit);
else
Child := To_Process_ID (pid);
end if;
end Start_Process;
----------------------------
-- Start_Process_Search --
----------------------------
procedure Start_Process_Search
(Child : out POSIX.Process_Identification.Process_ID;
Filename : POSIX.Filename;
Template : Process_Template;
Arg_List : POSIX_String_List := Empty_String_List)
is
pid : pid_t;
Result : int;
pragma Unreferenced (Result);
Filename_With_NUL : POSIX_String := Filename & NUL;
Arg : String_List_Ptr := To_String_List_Ptr (Arg_List);
begin
if Arg = null then
Arg := Null_String_List_Ptr;
end if;
Validate (Template);
pid := To_pid_t (UFork); Check (int (pid));
if pid = 0 then -- child process
Execute_Template (Template);
Result := execvp (Filename_With_NUL
(Filename_With_NUL'First)'Unchecked_Access, Arg.Char (1)'Access);
Exit_Process (Failed_Creation_Exit);
else
Child := To_Process_ID (pid);
end if;
end Start_Process_Search;
----------------------------
-- Start_Process_Search --
----------------------------
procedure Start_Process_Search
(Child : out POSIX.Process_Identification.Process_ID;
Filename : POSIX.Filename;
Template : Process_Template;
Env_List : POSIX.Process_Environment.Environment;
Arg_List : POSIX_String_List := Empty_String_List)
is
pid : pid_t;
Filename_With_NUL : POSIX_String := Filename & NUL;
Arg : String_List_Ptr := To_String_List_Ptr (Arg_List);
Env : String_List_Ptr := To_String_List_Ptr (Env_List);
begin
if Arg = null then
Arg := Null_String_List_Ptr;
end if;
if Env = null then
Env := Null_String_List_Ptr;
end if;
Validate (Template);
pid := To_pid_t (UFork); Check (int (pid));
if pid = 0 then -- child process
Execute_Template (Template);
-- See comments in POSIX.Unsafe_Process_Primitives.Exec_Search.
-- We duplicate the code here, since we don't want to raise
-- any exceptions in the child process.
for I in Filename'Range loop
if Filename (I) = '/' then
Check_Fatal (execve
(Filename_With_NUL (Filename_With_NUL'First)'Unchecked_Access,
Arg.Char (1)'Access, Env.Char (1)'Access));
return;
end if;
end loop;
-- filename does not contain "/"
declare
Path : constant POSIX_String
:= POSIX.Process_Environment.Environment_Value_Of
("PATH", "/bin:/usr/bin");
Start : Positive;
P : Positive;
Result : int;
pragma Unreferenced (Result);
begin
P := Path'First;
loop
Start := P;
while P <= Path'Last and then Path (P) /= ':' loop
P := P + 1;
end loop;
declare
Pathname : POSIX_String
:= Make_Path_Name (Path (Start .. P - 1), Filename);
begin
Result := execve (Pathname
(Pathname'First)'Unchecked_Access,
Arg.Char (1)'Access, Env.Char (1)'Access);
if Fetch_Errno /= ENOENT then
Exit_Process (Failed_Creation_Exit);
end if;
end;
exit when P > Path'Last;
P := P + 1; -- skip colon
end loop;
end;
Exit_Process (Failed_Creation_Exit);
else
Child := To_Process_ID (pid);
end if;
end Start_Process_Search;
--------------------
-- Exit_Process --
--------------------
procedure sys_exit (status : int);
pragma Import (C, sys_exit, "_exit");
procedure Exit_Process
(Status : Exit_Status := Normal_Exit) is
begin
sys_exit (int (Status));
end Exit_Process;
------------------------
-- Status_Available --
------------------------
function Status_Available
(Status : Termination_Status) return Boolean is
begin
return Status.pid /= 0 and Status.pid /= -1;
end Status_Available;
---------------------
-- Process_ID_Of --
---------------------
function Process_ID_Of (Status : Termination_Status)
return POSIX.Process_Identification.Process_ID is
begin
if not Status_Available (Status) then
Raise_POSIX_Error (Invalid_Argument);
end if;
return To_Process_ID (Status.pid);
end Process_ID_Of;
----------------------
-- Exit_Status_Of --
----------------------
function wifexited (stat_val : int) return int;
pragma Import (C, wifexited, "wifexited");
function wexitstatus (stat_val : int) return int;
pragma Import (C, wexitstatus, "wexitstatus");
function Exit_Status_Of (Status : Termination_Status)
return Exit_Status is
begin
if not Status_Available (Status) or else
wifexited (Status.stat_val) = 0 then
Raise_POSIX_Error (Invalid_Argument);
end if;
return Exit_Status (wexitstatus (Status.stat_val));
end Exit_Status_Of;
-----------------------------
-- Termination_Signal_Of --
-----------------------------
function wifsignaled (stat_val : int) return int;
pragma Import (C, wifsignaled, "wifsignaled");
function wtermsig (stat_val : int) return int;
pragma Import (C, wtermsig, "wtermsig");
function Termination_Signal_Of (Status : Termination_Status)
return POSIX.Signals.Signal is
begin
if not Status_Available (Status) or else
wifsignaled (Status.stat_val) = 0 then
Raise_POSIX_Error (Invalid_Argument);
end if;
return POSIX.Signals.Signal (wtermsig (Status.stat_val));
end Termination_Signal_Of;
--------------------------
-- Stopping_Signal_Of --
--------------------------
function wifstopped (stat_val : int) return int;
pragma Import (C, wifstopped, "wifstopped");
function wstopsig (stat_val : int) return int;
pragma Import (C, wstopsig, "wstopsig");
function Stopping_Signal_Of (Status : Termination_Status)
return POSIX.Signals.Signal is
begin
if not Status_Available (Status) or else
wifstopped (Status.stat_val) = 0 then
Raise_POSIX_Error (Invalid_Argument);
end if;
return POSIX.Signals.Signal (wstopsig (Status.stat_val));
end Stopping_Signal_Of;
----------------------------
-- Termination_Cause_Of --
----------------------------
function Termination_Cause_Of (Status : Termination_Status)
return Termination_Cause is
begin
if not Status_Available (Status) then
Raise_POSIX_Error (Invalid_Argument);
end if;
if wifexited (Status.stat_val) /= 0 then
return Exited;
end if;
if wifsignaled (Status.stat_val) /= 0 then
return Terminated_By_Signal;
end if;
if wifstopped (Status.stat_val) /= 0 then
return Stopped_By_Signal;
end if;
-- should never get here, unles system is broken
-- .... so we punt
Raise_POSIX_Error (ENOSYS);
return Stopped_By_Signal; -- to suppress compiler warning;
end Termination_Cause_Of;
------------------------------
-- Wait_For_Child_Process --
------------------------------
function waitpid
(pid : pid_t;
stat_loc : access int;
options : int) return pid_t;
pragma Import (C, waitpid, waitpid_LINKNAME);
procedure Wait_For_Child_Process
(Status : out Termination_Status;
Child : POSIX.Process_Identification.Process_ID;
Block : Boolean := True;
Trace_Stopped : Boolean := True;
Masked_Signals : POSIX.Signal_Masking := POSIX.RTS_Signals)
is
pragma Unreferenced (Masked_Signals);
Options : Bits := 0;
begin
if Trace_Stopped then
Options := Options or WUNTRACED;
end if;
if not Block then
Options := Options or WNOHANG;
end if;
Defer_Abortion;
-- .... Change P1003.5?
-- We ignore the signal masking parameter, since we keep
-- most signals masked all the time except in the special
-- handler threads. Thus, effectively, this operation
-- cannot be interrupted, except by somebody asynchronously
-- sending the thread or process one of the signals that
-- are: mapped to exceptions (e.g. SIGSEGV); used by the
-- threads library (which we dare not mask); or used for
-- Ada abortion (e.g. SIGABRT). We think it is unsafe to
-- mask these, and so intentionally do not implement the
-- exact POSIX.5 semantics here.
Status.pid := waitpid (To_pid_t (Child),
Status.stat_val'Unchecked_Access, To_int (Options));
Undefer_Abortion;
Check (int (Status.pid));
end Wait_For_Child_Process;
------------------------------
-- Wait_For_Child_Process --
------------------------------
procedure Wait_For_Child_Process
(Status : out Termination_Status;
Group : POSIX.Process_Identification.Process_Group_ID;
Block : Boolean := True;
Trace_Stopped : Boolean := True;
Masked_Signals : POSIX.Signal_Masking
:= POSIX.RTS_Signals) is
begin
Wait_For_Child_Process
(Status, To_Process_ID (-To_pid_t (Group)),
Block, Trace_Stopped, Masked_Signals);
end Wait_For_Child_Process;
------------------------------
-- Wait_For_Child_Process --
------------------------------
procedure Wait_For_Child_Process
(Status : out Termination_Status;
Block : Boolean := True;
Trace_Stopped : Boolean := True;
Masked_Signals : POSIX.Signal_Masking
:= POSIX.RTS_Signals) is
begin
Wait_For_Child_Process
(Status, To_Process_ID (-1), Block, Trace_Stopped, Masked_Signals);
end Wait_For_Child_Process;
end POSIX.Process_Primitives;
|