1 ------------------------------------------------------------------------------
3 -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS --
5 -- S Y S T E M . I N T E R R U P T S --
9 -- Copyright (C) 1992-2005, Free Software Foundation, Inc. --
11 -- GNARL is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 2, or (at your option) any later ver- --
14 -- sion. GNARL is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNARL; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, USA. --
22 -- As a special exception, if other files instantiate generics from this --
23 -- unit, or you link this unit with other files to produce an executable, --
24 -- this unit does not by itself cause the resulting executable to be --
25 -- covered by the GNU General Public License. This exception does not --
26 -- however invalidate any other reasons why the executable file might be --
27 -- covered by the GNU Public License. --
29 -- GNARL was developed by the GNARL team at Florida State University. --
30 -- Extensive contributions were provided by Ada Core Technologies, Inc. --
32 ------------------------------------------------------------------------------
36 -- All user-handleable interrupts are masked at all times in all
37 -- tasks/threads except possibly for the Interrupt_Manager task.
39 -- When a user task wants to have the effect of masking/unmasking an
40 -- interrupt, it must call Block_Interrupt/Unblock_Interrupt, which
41 -- will have the effect of unmasking/masking the interrupt in the
42 -- Interrupt_Manager task.
44 -- Note : Direct calls to sigaction, sigprocmask, pthread_sigsetmask or any
45 -- other low-level interface that changes the interrupt action or
46 -- interrupt mask needs a careful thought.
47 -- One may acheive the effect of system calls first masking RTS blocked
48 -- (by calling Block_Interrupt) for the interrupt under consideration.
49 -- This will make all the tasks in RTS blocked for the Interrupt.
51 -- Once we associate a Server_Task with an interrupt, the task never
52 -- goes away, and we never remove the association.
54 -- There is no more than one interrupt per Server_Task and no more than
55 -- one Server_Task per interrupt.
57 with Ada
.Task_Identification
;
58 -- used for Task_Id type
61 -- used for Raise_Exception
63 with System
.Task_Primitives
;
67 with System
.Interrupt_Management
;
71 -- Abort_Task_Interrupt
73 with System
.Interrupt_Management
.Operations
;
74 -- used for Thread_Block_Interrupt
75 -- Thread_Unblock_Interrupt
76 -- Install_Default_Action
77 -- Install_Ignore_Action
78 -- Copy_Interrupt_Mask
80 -- Empty_Interrupt_Mask
81 -- Fill_Interrupt_Mask
82 -- Add_To_Interrupt_Mask
83 -- Delete_From_Interrupt_Mask
85 -- Interrupt_Self_Process
91 pragma Elaborate_All
(System
.Interrupt_Management
.Operations
);
93 with System
.Task_Primitives
.Operations
;
94 -- used for Write_Lock
101 with System
.Task_Primitives
.Interrupt_Operations
;
102 -- used for Set_Interrupt_ID
104 with System
.Storage_Elements
;
105 -- used for To_Address
114 -- Interrupt_Manager_ID
116 with System
.Tasking
.Utilities
;
117 -- used for Make_Independent
119 with System
.Tasking
.Rendezvous
;
120 -- used for Call_Simple
121 pragma Elaborate_All
(System
.Tasking
.Rendezvous
);
123 with System
.Tasking
.Initialization
;
124 -- used for Defer_Abort
127 with System
.Parameters
;
128 -- used for Single_Lock
130 with Unchecked_Conversion
;
132 package body System
.Interrupts
is
138 package POP
renames System
.Task_Primitives
.Operations
;
139 package PIO
renames System
.Task_Primitives
.Interrupt_Operations
;
140 package IMNG
renames System
.Interrupt_Management
;
141 package IMOP
renames System
.Interrupt_Management
.Operations
;
143 function To_System
is new Unchecked_Conversion
144 (Ada
.Task_Identification
.Task_Id
, Task_Id
);
150 -- WARNING: System.Tasking.Stages performs calls to this task
151 -- with low-level constructs. Do not change this spec without synchro-
154 task Interrupt_Manager
is
155 entry Detach_Interrupt_Entries
(T
: Task_Id
);
157 entry Initialize
(Mask
: IMNG
.Interrupt_Mask
);
160 (New_Handler
: Parameterless_Handler
;
161 Interrupt
: Interrupt_ID
;
163 Restoration
: Boolean := False);
165 entry Exchange_Handler
166 (Old_Handler
: out Parameterless_Handler
;
167 New_Handler
: Parameterless_Handler
;
168 Interrupt
: Interrupt_ID
;
172 (Interrupt
: Interrupt_ID
;
175 entry Bind_Interrupt_To_Entry
177 E
: Task_Entry_Index
;
178 Interrupt
: Interrupt_ID
);
180 entry Block_Interrupt
(Interrupt
: Interrupt_ID
);
182 entry Unblock_Interrupt
(Interrupt
: Interrupt_ID
);
184 entry Ignore_Interrupt
(Interrupt
: Interrupt_ID
);
186 entry Unignore_Interrupt
(Interrupt
: Interrupt_ID
);
188 pragma Interrupt_Priority
(System
.Interrupt_Priority
'Last);
189 end Interrupt_Manager
;
191 task type Server_Task
(Interrupt
: Interrupt_ID
) is
192 pragma Priority
(System
.Interrupt_Priority
'Last);
193 -- Note: the above pragma Priority is strictly speaking improper
194 -- since it is outside the range of allowed priorities, but the
195 -- compiler treats system units specially and does not apply
196 -- this range checking rule to system units.
200 type Server_Task_Access
is access Server_Task
;
202 -------------------------------
203 -- Local Types and Variables --
204 -------------------------------
206 type Entry_Assoc
is record
208 E
: Task_Entry_Index
;
211 type Handler_Assoc
is record
212 H
: Parameterless_Handler
;
213 Static
: Boolean; -- Indicates static binding;
216 User_Handler
: array (Interrupt_ID
'Range) of Handler_Assoc
:=
217 (others => (null, Static
=> False));
218 pragma Volatile_Components
(User_Handler
);
219 -- Holds the protected procedure handler (if any) and its Static
220 -- information for each interrupt. A handler is a Static one if
221 -- it is specified through the pragma Attach_Handler.
222 -- Attach_Handler. Otherwise, not static)
224 User_Entry
: array (Interrupt_ID
'Range) of Entry_Assoc
:=
225 (others => (T
=> Null_Task
, E
=> Null_Task_Entry
));
226 pragma Volatile_Components
(User_Entry
);
227 -- Holds the task and entry index (if any) for each interrupt
229 Blocked
: array (Interrupt_ID
'Range) of Boolean := (others => False);
230 pragma Volatile_Components
(Blocked
);
231 -- True iff the corresponding interrupt is blocked in the process level
233 Ignored
: array (Interrupt_ID
'Range) of Boolean := (others => False);
234 pragma Volatile_Components
(Ignored
);
235 -- True iff the corresponding interrupt is blocked in the process level
238 array (Interrupt_ID
'Range) of Task_Id
:= (others => Null_Task
);
239 pragma Volatile_Components
(Last_Unblocker
);
240 -- Holds the ID of the last Task which Unblocked this Interrupt.
241 -- It contains Null_Task if no tasks have ever requested the
242 -- Unblocking operation or the Interrupt is currently Blocked.
244 Server_ID
: array (Interrupt_ID
'Range) of Task_Id
:=
245 (others => Null_Task
);
246 pragma Atomic_Components
(Server_ID
);
247 -- Holds the Task_Id of the Server_Task for each interrupt.
248 -- Task_Id is needed to accomplish locking per Interrupt base. Also
249 -- is needed to decide whether to create a new Server_Task.
251 -- Type and Head, Tail of the list containing Registered Interrupt
252 -- Handlers. These definitions are used to register the handlers
253 -- specified by the pragma Interrupt_Handler.
255 type Registered_Handler
;
256 type R_Link
is access all Registered_Handler
;
258 type Registered_Handler
is record
259 H
: System
.Address
:= System
.Null_Address
;
260 Next
: R_Link
:= null;
263 Registered_Handler_Head
: R_Link
:= null;
264 Registered_Handler_Tail
: R_Link
:= null;
266 Access_Hold
: Server_Task_Access
;
267 -- variable used to allocate Server_Task using "new".
269 -----------------------
270 -- Local Subprograms --
271 -----------------------
273 function Is_Registered
(Handler
: Parameterless_Handler
) return Boolean;
274 -- See if the Handler has been "pragma"ed using Interrupt_Handler.
275 -- Always consider a null handler as registered.
281 -- Calling this procedure with New_Handler = null and Static = True
282 -- means we want to detach the current handler regardless of the
283 -- previous handler's binding status (ie. do not care if it is a
284 -- dynamic or static handler).
286 -- This option is needed so that during the finalization of a PO, we
287 -- can detach handlers attached through pragma Attach_Handler.
289 procedure Attach_Handler
290 (New_Handler
: Parameterless_Handler
;
291 Interrupt
: Interrupt_ID
;
292 Static
: Boolean := False)
295 if Is_Reserved
(Interrupt
) then
296 Raise_Exception
(Program_Error
'Identity, "Interrupt" &
297 Interrupt_ID
'Image (Interrupt
) & " is reserved");
300 Interrupt_Manager
.Attach_Handler
(New_Handler
, Interrupt
, Static
);
304 -----------------------------
305 -- Bind_Interrupt_To_Entry --
306 -----------------------------
308 -- This procedure raises a Program_Error if it tries to bind an
309 -- interrupt to which an Entry or a Procedure is already bound.
311 procedure Bind_Interrupt_To_Entry
313 E
: Task_Entry_Index
;
314 Int_Ref
: System
.Address
)
316 Interrupt
: constant Interrupt_ID
:=
317 Interrupt_ID
(Storage_Elements
.To_Integer
(Int_Ref
));
320 if Is_Reserved
(Interrupt
) then
321 Raise_Exception
(Program_Error
'Identity, "Interrupt" &
322 Interrupt_ID
'Image (Interrupt
) & " is reserved");
325 Interrupt_Manager
.Bind_Interrupt_To_Entry
(T
, E
, Interrupt
);
326 end Bind_Interrupt_To_Entry
;
328 ---------------------
329 -- Block_Interrupt --
330 ---------------------
332 procedure Block_Interrupt
(Interrupt
: Interrupt_ID
) is
334 if Is_Reserved
(Interrupt
) then
335 Raise_Exception
(Program_Error
'Identity, "Interrupt" &
336 Interrupt_ID
'Image (Interrupt
) & " is reserved");
339 Interrupt_Manager
.Block_Interrupt
(Interrupt
);
342 ---------------------
343 -- Current_Handler --
344 ---------------------
346 function Current_Handler
347 (Interrupt
: Interrupt_ID
) return Parameterless_Handler
350 if Is_Reserved
(Interrupt
) then
351 Raise_Exception
(Program_Error
'Identity, "Interrupt" &
352 Interrupt_ID
'Image (Interrupt
) & " is reserved");
355 -- ??? Since Parameterless_Handler is not Atomic, the current
356 -- implementation is wrong. We need a new service in Interrupt_Manager
357 -- to ensure atomicity.
359 return User_Handler
(Interrupt
).H
;
366 -- Calling this procedure with Static = True means we want to Detach the
367 -- current handler regardless of the previous handler's binding status
368 -- (i.e. do not care if it is a dynamic or static handler).
370 -- This option is needed so that during the finalization of a PO, we can
371 -- detach handlers attached through pragma Attach_Handler.
373 procedure Detach_Handler
374 (Interrupt
: Interrupt_ID
;
375 Static
: Boolean := False)
378 if Is_Reserved
(Interrupt
) then
379 Raise_Exception
(Program_Error
'Identity, "Interrupt" &
380 Interrupt_ID
'Image (Interrupt
) & " is reserved");
383 Interrupt_Manager
.Detach_Handler
(Interrupt
, Static
);
386 ------------------------------
387 -- Detach_Interrupt_Entries --
388 ------------------------------
390 procedure Detach_Interrupt_Entries
(T
: Task_Id
) is
392 Interrupt_Manager
.Detach_Interrupt_Entries
(T
);
393 end Detach_Interrupt_Entries
;
395 ----------------------
396 -- Exchange_Handler --
397 ----------------------
399 -- Calling this procedure with New_Handler = null and Static = True
400 -- means we want to detach the current handler regardless of the
401 -- previous handler's binding status (ie. do not care if it is a
402 -- dynamic or static handler).
404 -- This option is needed so that during the finalization of a PO,
405 -- we can detach handlers attached through pragma Attach_Handler.
407 procedure Exchange_Handler
408 (Old_Handler
: out Parameterless_Handler
;
409 New_Handler
: Parameterless_Handler
;
410 Interrupt
: Interrupt_ID
;
411 Static
: Boolean := False)
414 if Is_Reserved
(Interrupt
) then
415 Raise_Exception
(Program_Error
'Identity, "Interrupt" &
416 Interrupt_ID
'Image (Interrupt
) & " is reserved");
419 Interrupt_Manager
.Exchange_Handler
420 (Old_Handler
, New_Handler
, Interrupt
, Static
);
421 end Exchange_Handler
;
427 procedure Finalize
(Object
: in out Static_Interrupt_Protection
) is
429 -- ??? loop to be executed only when we're not doing library level
430 -- finalization, since in this case all interrupt tasks are gone.
432 if not Interrupt_Manager
'Terminated then
433 for N
in reverse Object
.Previous_Handlers
'Range loop
434 Interrupt_Manager
.Attach_Handler
435 (New_Handler
=> Object
.Previous_Handlers
(N
).Handler
,
436 Interrupt
=> Object
.Previous_Handlers
(N
).Interrupt
,
437 Static
=> Object
.Previous_Handlers
(N
).Static
,
438 Restoration
=> True);
442 Tasking
.Protected_Objects
.Entries
.Finalize
443 (Tasking
.Protected_Objects
.Entries
.Protection_Entries
(Object
));
446 -------------------------------------
447 -- Has_Interrupt_Or_Attach_Handler --
448 -------------------------------------
450 -- Need comments as to why these always return True ???
452 function Has_Interrupt_Or_Attach_Handler
453 (Object
: access Dynamic_Interrupt_Protection
) return Boolean
455 pragma Unreferenced
(Object
);
458 end Has_Interrupt_Or_Attach_Handler
;
460 function Has_Interrupt_Or_Attach_Handler
461 (Object
: access Static_Interrupt_Protection
) return Boolean
463 pragma Unreferenced
(Object
);
466 end Has_Interrupt_Or_Attach_Handler
;
468 ----------------------
469 -- Ignore_Interrupt --
470 ----------------------
472 procedure Ignore_Interrupt
(Interrupt
: Interrupt_ID
) is
474 if Is_Reserved
(Interrupt
) then
475 Raise_Exception
(Program_Error
'Identity, "Interrupt" &
476 Interrupt_ID
'Image (Interrupt
) & " is reserved");
479 Interrupt_Manager
.Ignore_Interrupt
(Interrupt
);
480 end Ignore_Interrupt
;
482 ----------------------
483 -- Install_Handlers --
484 ----------------------
486 procedure Install_Handlers
487 (Object
: access Static_Interrupt_Protection
;
488 New_Handlers
: New_Handler_Array
)
491 for N
in New_Handlers
'Range loop
493 -- We need a lock around this ???
495 Object
.Previous_Handlers
(N
).Interrupt
:= New_Handlers
(N
).Interrupt
;
496 Object
.Previous_Handlers
(N
).Static
:= User_Handler
497 (New_Handlers
(N
).Interrupt
).Static
;
499 -- We call Exchange_Handler and not directly Interrupt_Manager.
500 -- Exchange_Handler so we get the Is_Reserved check.
503 (Old_Handler
=> Object
.Previous_Handlers
(N
).Handler
,
504 New_Handler
=> New_Handlers
(N
).Handler
,
505 Interrupt
=> New_Handlers
(N
).Interrupt
,
508 end Install_Handlers
;
514 function Is_Blocked
(Interrupt
: Interrupt_ID
) return Boolean is
516 if Is_Reserved
(Interrupt
) then
517 Raise_Exception
(Program_Error
'Identity, "Interrupt" &
518 Interrupt_ID
'Image (Interrupt
) & " is reserved");
521 return Blocked
(Interrupt
);
524 -----------------------
525 -- Is_Entry_Attached --
526 -----------------------
528 function Is_Entry_Attached
(Interrupt
: Interrupt_ID
) return Boolean is
530 if Is_Reserved
(Interrupt
) then
531 Raise_Exception
(Program_Error
'Identity, "Interrupt" &
532 Interrupt_ID
'Image (Interrupt
) & " is reserved");
535 return User_Entry
(Interrupt
).T
/= Null_Task
;
536 end Is_Entry_Attached
;
538 -------------------------
539 -- Is_Handler_Attached --
540 -------------------------
542 function Is_Handler_Attached
(Interrupt
: Interrupt_ID
) return Boolean is
544 if Is_Reserved
(Interrupt
) then
545 Raise_Exception
(Program_Error
'Identity, "Interrupt" &
546 Interrupt_ID
'Image (Interrupt
) & " is reserved");
549 return User_Handler
(Interrupt
).H
/= null;
550 end Is_Handler_Attached
;
556 function Is_Ignored
(Interrupt
: Interrupt_ID
) return Boolean is
558 if Is_Reserved
(Interrupt
) then
559 Raise_Exception
(Program_Error
'Identity, "Interrupt" &
560 Interrupt_ID
'Image (Interrupt
) & " is reserved");
563 return Ignored
(Interrupt
);
570 function Is_Registered
(Handler
: Parameterless_Handler
) return Boolean is
572 type Fat_Ptr
is record
573 Object_Addr
: System
.Address
;
574 Handler_Addr
: System
.Address
;
577 function To_Fat_Ptr
is new Unchecked_Conversion
578 (Parameterless_Handler
, Fat_Ptr
);
584 if Handler
= null then
588 Fat
:= To_Fat_Ptr
(Handler
);
590 Ptr
:= Registered_Handler_Head
;
592 while Ptr
/= null loop
593 if Ptr
.H
= Fat
.Handler_Addr
then
607 function Is_Reserved
(Interrupt
: Interrupt_ID
) return Boolean is
609 return IMNG
.Reserve
(IMNG
.Interrupt_ID
(Interrupt
));
616 function Reference
(Interrupt
: Interrupt_ID
) return System
.Address
is
618 if Is_Reserved
(Interrupt
) then
619 Raise_Exception
(Program_Error
'Identity, "Interrupt" &
620 Interrupt_ID
'Image (Interrupt
) & " is reserved");
623 return Storage_Elements
.To_Address
624 (Storage_Elements
.Integer_Address
(Interrupt
));
627 ---------------------------------
628 -- Register_Interrupt_Handler --
629 ---------------------------------
631 procedure Register_Interrupt_Handler
(Handler_Addr
: System
.Address
) is
632 New_Node_Ptr
: R_Link
;
635 -- This routine registers the Handler as usable for Dynamic Interrupt
636 -- Handler. Routines attaching and detaching Handler dynamically should
637 -- first consult if the Handler is registered. A Program Error should
638 -- be raised if it is not registered.
640 -- The pragma Interrupt_Handler can only appear in the library level PO
641 -- definition and instantiation. Therefore, we do not need to implement
642 -- Unregistering operation. Neither we need to protect the queue
643 -- structure using a Lock.
645 pragma Assert
(Handler_Addr
/= System
.Null_Address
);
647 New_Node_Ptr
:= new Registered_Handler
;
648 New_Node_Ptr
.H
:= Handler_Addr
;
650 if Registered_Handler_Head
= null then
651 Registered_Handler_Head
:= New_Node_Ptr
;
652 Registered_Handler_Tail
:= New_Node_Ptr
;
655 Registered_Handler_Tail
.Next
:= New_Node_Ptr
;
656 Registered_Handler_Tail
:= New_Node_Ptr
;
658 end Register_Interrupt_Handler
;
660 -----------------------
661 -- Unblock_Interrupt --
662 -----------------------
664 procedure Unblock_Interrupt
(Interrupt
: Interrupt_ID
) is
666 if Is_Reserved
(Interrupt
) then
667 Raise_Exception
(Program_Error
'Identity, "Interrupt" &
668 Interrupt_ID
'Image (Interrupt
) & " is reserved");
671 Interrupt_Manager
.Unblock_Interrupt
(Interrupt
);
672 end Unblock_Interrupt
;
678 function Unblocked_By
679 (Interrupt
: Interrupt_ID
) return System
.Tasking
.Task_Id
682 if Is_Reserved
(Interrupt
) then
683 Raise_Exception
(Program_Error
'Identity, "Interrupt" &
684 Interrupt_ID
'Image (Interrupt
) & " is reserved");
687 return Last_Unblocker
(Interrupt
);
690 ------------------------
691 -- Unignore_Interrupt --
692 ------------------------
694 procedure Unignore_Interrupt
(Interrupt
: Interrupt_ID
) is
696 if Is_Reserved
(Interrupt
) then
697 Raise_Exception
(Program_Error
'Identity, "Interrupt" &
698 Interrupt_ID
'Image (Interrupt
) & " is reserved");
701 Interrupt_Manager
.Unignore_Interrupt
(Interrupt
);
702 end Unignore_Interrupt
;
704 -----------------------
705 -- Interrupt_Manager --
706 -----------------------
708 task body Interrupt_Manager
is
710 ---------------------
711 -- Local Variables --
712 ---------------------
714 Intwait_Mask
: aliased IMNG
.Interrupt_Mask
;
715 Ret_Interrupt
: Interrupt_ID
;
716 Old_Mask
: aliased IMNG
.Interrupt_Mask
;
717 Old_Handler
: Parameterless_Handler
;
723 procedure Bind_Handler
(Interrupt
: Interrupt_ID
);
724 -- This procedure does not do anything if the Interrupt is blocked.
725 -- Otherwise, we have to interrupt Server_Task for status change through
728 procedure Unbind_Handler
(Interrupt
: Interrupt_ID
);
729 -- This procedure does not do anything if the Interrupt is blocked.
730 -- Otherwise, we have to interrupt Server_Task for status change
731 -- through abort interrupt.
733 procedure Unprotected_Exchange_Handler
734 (Old_Handler
: out Parameterless_Handler
;
735 New_Handler
: Parameterless_Handler
;
736 Interrupt
: Interrupt_ID
;
738 Restoration
: Boolean := False);
740 procedure Unprotected_Detach_Handler
741 (Interrupt
: Interrupt_ID
;
748 procedure Bind_Handler
(Interrupt
: Interrupt_ID
) is
750 if not Blocked
(Interrupt
) then
752 -- Mask this task for the given Interrupt so that all tasks
753 -- are masked for the Interrupt and the actuall delivery of the
754 -- Interrupt will be caught using "sigwait" by the
755 -- corresponding Server_Task.
757 IMOP
.Thread_Block_Interrupt
(IMNG
.Interrupt_ID
(Interrupt
));
759 -- We have installed a Handler or an Entry before we called
760 -- this procedure. If the Handler Task is waiting to be awakened,
761 -- do it here. Otherwise, the interrupt will be discarded.
763 POP
.Wakeup
(Server_ID
(Interrupt
), Interrupt_Server_Idle_Sleep
);
771 procedure Unbind_Handler
(Interrupt
: Interrupt_ID
) is
773 if not Blocked
(Interrupt
) then
775 -- Currently, there is a Handler or an Entry attached and
776 -- corresponding Server_Task is waiting on "sigwait."
777 -- We have to wake up the Server_Task and make it
778 -- wait on condition variable by sending an
779 -- Abort_Task_Interrupt
781 POP
.Abort_Task
(Server_ID
(Interrupt
));
783 -- Make sure corresponding Server_Task is out of its own
787 Interrupt_ID
(IMOP
.Interrupt_Wait
(Intwait_Mask
'Access));
790 (Ret_Interrupt
= Interrupt_ID
(IMNG
.Abort_Task_Interrupt
));
792 IMOP
.Install_Default_Action
(IMNG
.Interrupt_ID
(Interrupt
));
794 -- Unmake the Interrupt for this task in order to allow default
797 IMOP
.Thread_Unblock_Interrupt
(IMNG
.Interrupt_ID
(Interrupt
));
800 IMOP
.Install_Default_Action
(IMNG
.Interrupt_ID
(Interrupt
));
804 --------------------------------
805 -- Unprotected_Detach_Handler --
806 --------------------------------
808 procedure Unprotected_Detach_Handler
809 (Interrupt
: Interrupt_ID
;
812 Old_Handler
: Parameterless_Handler
;
815 if User_Entry
(Interrupt
).T
/= Null_Task
then
817 -- In case we have an Interrupt Entry installed.
818 -- raise a program error. (propagate it to the caller).
820 Raise_Exception
(Program_Error
'Identity,
821 "An interrupt entry is already installed");
824 -- Note : Static = True will pass the following check. That is the
825 -- case when we want to detach a handler regardless of the static
826 -- status of the current_Handler.
828 if not Static
and then User_Handler
(Interrupt
).Static
then
830 -- Tries to detach a static Interrupt Handler.
831 -- raise a program error.
833 Raise_Exception
(Program_Error
'Identity,
834 "Trying to detach a static Interrupt Handler");
837 -- The interrupt should no longer be ignored if
838 -- it was ever ignored.
840 Ignored
(Interrupt
) := False;
842 Old_Handler
:= User_Handler
(Interrupt
).H
;
846 User_Handler
(Interrupt
).H
:= null;
847 User_Handler
(Interrupt
).Static
:= False;
849 if Old_Handler
/= null then
850 Unbind_Handler
(Interrupt
);
852 end Unprotected_Detach_Handler
;
854 ----------------------------------
855 -- Unprotected_Exchange_Handler --
856 ----------------------------------
858 procedure Unprotected_Exchange_Handler
859 (Old_Handler
: out Parameterless_Handler
;
860 New_Handler
: Parameterless_Handler
;
861 Interrupt
: Interrupt_ID
;
863 Restoration
: Boolean := False)
866 if User_Entry
(Interrupt
).T
/= Null_Task
then
868 -- In case we have an Interrupt Entry already installed.
869 -- raise a program error. (propagate it to the caller).
871 Raise_Exception
(Program_Error
'Identity,
872 "An interrupt is already installed");
875 -- Note : A null handler with Static = True will pass the
876 -- following check. That is the case when we want to Detach a
877 -- handler regardless of the Static status of the current_Handler.
879 -- We don't check anything if Restoration is True, since we
880 -- may be detaching a static handler to restore a dynamic one.
882 if not Restoration
and then not Static
884 -- Tries to overwrite a static Interrupt Handler with a
887 and then (User_Handler
(Interrupt
).Static
889 -- The new handler is not specified as an
890 -- Interrupt Handler by a pragma.
892 or else not Is_Registered
(New_Handler
))
894 Raise_Exception
(Program_Error
'Identity,
895 "Trying to overwrite a static Interrupt Handler with a " &
899 -- The interrupt should no longer be ingnored if
900 -- it was ever ignored.
902 Ignored
(Interrupt
) := False;
904 -- Save the old handler
906 Old_Handler
:= User_Handler
(Interrupt
).H
;
910 User_Handler
(Interrupt
).H
:= New_Handler
;
912 if New_Handler
= null then
914 -- The null handler means we are detaching the handler.
916 User_Handler
(Interrupt
).Static
:= False;
919 User_Handler
(Interrupt
).Static
:= Static
;
922 -- Invoke a corresponding Server_Task if not yet created.
923 -- Place Task_Id info in Server_ID array.
925 if Server_ID
(Interrupt
) = Null_Task
then
927 -- When a new Server_Task is created, it should have its
928 -- signal mask set to the All_Tasks_Mask.
930 IMOP
.Set_Interrupt_Mask
931 (IMOP
.All_Tasks_Mask
'Access, Old_Mask
'Access);
932 Access_Hold
:= new Server_Task
(Interrupt
);
933 IMOP
.Set_Interrupt_Mask
(Old_Mask
'Access);
935 Server_ID
(Interrupt
) := To_System
(Access_Hold
.all'Identity);
938 if New_Handler
= null then
939 if Old_Handler
/= null then
940 Unbind_Handler
(Interrupt
);
946 if Old_Handler
= null then
947 Bind_Handler
(Interrupt
);
949 end Unprotected_Exchange_Handler
;
951 -- Start of processing for Interrupt_Manager
954 -- By making this task independent of master, when the process
955 -- goes away, the Interrupt_Manager will terminate gracefully.
957 System
.Tasking
.Utilities
.Make_Independent
;
959 -- Environment task gets its own interrupt mask, saves it,
960 -- and then masks all interrupts except the Keep_Unmasked set.
962 -- During rendezvous, the Interrupt_Manager receives the old
963 -- interrupt mask of the environment task, and sets its own
964 -- interrupt mask to that value.
966 -- The environment task will call the entry of Interrupt_Manager some
967 -- during elaboration of the body of this package.
969 accept Initialize
(Mask
: IMNG
.Interrupt_Mask
) do
971 The_Mask
: aliased IMNG
.Interrupt_Mask
;
974 IMOP
.Copy_Interrupt_Mask
(The_Mask
, Mask
);
975 IMOP
.Set_Interrupt_Mask
(The_Mask
'Access);
979 -- Note: All tasks in RTS will have all the Reserve Interrupts
980 -- being masked (except the Interrupt_Manager) and Keep_Unmasked
981 -- unmasked when created.
983 -- Abort_Task_Interrupt is one of the Interrupt unmasked
984 -- in all tasks. We mask the Interrupt in this particular task
985 -- so that "sigwait" is possible to catch an explicitely sent
986 -- Abort_Task_Interrupt from the Server_Tasks.
988 -- This sigwaiting is needed so that we make sure a Server_Task is
989 -- out of its own sigwait state. This extra synchronization is
990 -- necessary to prevent following senarios.
992 -- 1) Interrupt_Manager sends an Abort_Task_Interrupt to the
993 -- Server_Task then changes its own interrupt mask (OS level).
994 -- If an interrupt (corresponding to the Server_Task) arrives
995 -- in the nean time we have the Interrupt_Manager umnasked and
996 -- the Server_Task waiting on sigwait.
998 -- 2) For unbinding handler, we install a default action in the
999 -- Interrupt_Manager. POSIX.1c states that the result of using
1000 -- "sigwait" and "sigaction" simaltaneously on the same interrupt
1001 -- is undefined. Therefore, we need to be informed from the
1002 -- Server_Task of the fact that the Server_Task is out of its
1005 IMOP
.Empty_Interrupt_Mask
(Intwait_Mask
'Access);
1006 IMOP
.Add_To_Interrupt_Mask
1007 (Intwait_Mask
'Access, IMNG
.Abort_Task_Interrupt
);
1008 IMOP
.Thread_Block_Interrupt
1009 (IMNG
.Abort_Task_Interrupt
);
1012 -- A block is needed to absorb Program_Error exception
1016 accept Attach_Handler
1017 (New_Handler
: Parameterless_Handler
;
1018 Interrupt
: Interrupt_ID
;
1020 Restoration
: Boolean := False)
1022 Unprotected_Exchange_Handler
1023 (Old_Handler
, New_Handler
, Interrupt
, Static
, Restoration
);
1027 accept Exchange_Handler
1028 (Old_Handler
: out Parameterless_Handler
;
1029 New_Handler
: Parameterless_Handler
;
1030 Interrupt
: Interrupt_ID
;
1033 Unprotected_Exchange_Handler
1034 (Old_Handler
, New_Handler
, Interrupt
, Static
);
1035 end Exchange_Handler
;
1038 accept Detach_Handler
1039 (Interrupt
: Interrupt_ID
;
1042 Unprotected_Detach_Handler
(Interrupt
, Static
);
1046 accept Bind_Interrupt_To_Entry
1048 E
: Task_Entry_Index
;
1049 Interrupt
: Interrupt_ID
)
1051 -- if there is a binding already (either a procedure or an
1052 -- entry), raise Program_Error (propagate it to the caller).
1054 if User_Handler
(Interrupt
).H
/= null
1055 or else User_Entry
(Interrupt
).T
/= Null_Task
1057 Raise_Exception
(Program_Error
'Identity,
1058 "A binding for this interrupt is already present");
1061 -- The interrupt should no longer be ingnored if
1062 -- it was ever ignored.
1064 Ignored
(Interrupt
) := False;
1065 User_Entry
(Interrupt
) := Entry_Assoc
'(T => T, E => E);
1067 -- Indicate the attachment of Interrupt Entry in ATCB.
1068 -- This is need so that when an Interrupt Entry task
1069 -- terminates the binding can be cleaned. The call to
1070 -- unbinding must be made by the task before it terminates.
1072 T.Interrupt_Entry := True;
1074 -- Invoke a corresponding Server_Task if not yet created.
1075 -- Place Task_Id info in Server_ID array.
1077 if Server_ID (Interrupt) = Null_Task then
1079 -- When a new Server_Task is created, it should have its
1080 -- signal mask set to the All_Tasks_Mask.
1082 IMOP.Set_Interrupt_Mask
1083 (IMOP.All_Tasks_Mask'Access, Old_Mask'Access);
1084 Access_Hold := new Server_Task (Interrupt);
1085 IMOP.Set_Interrupt_Mask (Old_Mask'Access);
1086 Server_ID (Interrupt) :=
1087 To_System (Access_Hold.all'Identity);
1090 Bind_Handler (Interrupt);
1091 end Bind_Interrupt_To_Entry;
1094 accept Detach_Interrupt_Entries (T : Task_Id) do
1095 for J in Interrupt_ID'Range loop
1096 if not Is_Reserved (J) then
1097 if User_Entry (J).T = T then
1099 -- The interrupt should no longer be ingnored if
1100 -- it was ever ignored.
1102 Ignored (J) := False;
1103 User_Entry (J) := Entry_Assoc'
1104 (T
=> Null_Task
, E
=> Null_Task_Entry
);
1110 -- Indicate in ATCB that no Interrupt Entries are attached
1112 T
.Interrupt_Entry
:= False;
1113 end Detach_Interrupt_Entries
;
1116 accept Block_Interrupt
(Interrupt
: Interrupt_ID
) do
1117 if Blocked
(Interrupt
) then
1121 Blocked
(Interrupt
) := True;
1122 Last_Unblocker
(Interrupt
) := Null_Task
;
1124 -- Mask this task for the given Interrupt so that all tasks
1125 -- are masked for the Interrupt.
1127 IMOP
.Thread_Block_Interrupt
(IMNG
.Interrupt_ID
(Interrupt
));
1129 if User_Handler
(Interrupt
).H
/= null
1130 or else User_Entry
(Interrupt
).T
/= Null_Task
1132 -- This is the case where the Server_Task is waiting
1133 -- on "sigwait." Wake it up by sending an
1134 -- Abort_Task_Interrupt so that the Server_Task
1137 POP
.Abort_Task
(Server_ID
(Interrupt
));
1139 -- Make sure corresponding Server_Task is out of its own
1142 Ret_Interrupt
:= Interrupt_ID
1143 (IMOP
.Interrupt_Wait
(Intwait_Mask
'Access));
1146 Interrupt_ID
(IMNG
.Abort_Task_Interrupt
));
1148 end Block_Interrupt
;
1151 accept Unblock_Interrupt
(Interrupt
: Interrupt_ID
) do
1152 if not Blocked
(Interrupt
) then
1156 Blocked
(Interrupt
) := False;
1157 Last_Unblocker
(Interrupt
) :=
1158 To_System
(Unblock_Interrupt
'Caller);
1160 if User_Handler
(Interrupt
).H
= null
1161 and then User_Entry
(Interrupt
).T
= Null_Task
1163 -- No handler is attached. Unmask the Interrupt so that
1164 -- the default action can be carried out.
1166 IMOP
.Thread_Unblock_Interrupt
1167 (IMNG
.Interrupt_ID
(Interrupt
));
1170 -- The Server_Task must be waiting on the Cond variable
1171 -- since it was being blocked and an Interrupt Hander or
1172 -- an Entry was there. Wake it up and let it change
1173 -- it place of waiting according to its new state.
1175 POP
.Wakeup
(Server_ID
(Interrupt
),
1176 Interrupt_Server_Blocked_Interrupt_Sleep
);
1178 end Unblock_Interrupt
;
1181 accept Ignore_Interrupt
(Interrupt
: Interrupt_ID
) do
1182 if Ignored
(Interrupt
) then
1186 Ignored
(Interrupt
) := True;
1188 -- If there is a handler associated with the Interrupt,
1189 -- detach it first. In this way we make sure that the
1190 -- Server_Task is not on sigwait. This is legal since
1191 -- Unignore_Interrupt is to install the default action.
1193 if User_Handler
(Interrupt
).H
/= null then
1194 Unprotected_Detach_Handler
1195 (Interrupt
=> Interrupt
, Static
=> True);
1197 elsif User_Entry
(Interrupt
).T
/= Null_Task
then
1198 User_Entry
(Interrupt
) := Entry_Assoc
'
1199 (T => Null_Task, E => Null_Task_Entry);
1200 Unbind_Handler (Interrupt);
1203 IMOP.Install_Ignore_Action (IMNG.Interrupt_ID (Interrupt));
1204 end Ignore_Interrupt;
1207 accept Unignore_Interrupt (Interrupt : Interrupt_ID) do
1208 Ignored (Interrupt) := False;
1210 -- If there is a handler associated with the Interrupt,
1211 -- detach it first. In this way we make sure that the
1212 -- Server_Task is not on sigwait. This is legal since
1213 -- Unignore_Interrupt is to install the default action.
1215 if User_Handler (Interrupt).H /= null then
1216 Unprotected_Detach_Handler
1217 (Interrupt => Interrupt, Static => True);
1219 elsif User_Entry (Interrupt).T /= Null_Task then
1220 User_Entry (Interrupt) := Entry_Assoc'
1221 (T
=> Null_Task
, E
=> Null_Task_Entry
);
1222 Unbind_Handler
(Interrupt
);
1225 IMOP
.Install_Default_Action
(IMNG
.Interrupt_ID
(Interrupt
));
1226 end Unignore_Interrupt
;
1230 -- If there is a program error we just want to propagate it to
1231 -- the caller and do not want to stop this task.
1233 when Program_Error
=>
1237 pragma Assert
(False);
1241 end Interrupt_Manager
;
1247 task body Server_Task
is
1248 Intwait_Mask
: aliased IMNG
.Interrupt_Mask
;
1249 Ret_Interrupt
: Interrupt_ID
;
1250 Self_ID
: constant Task_Id
:= Self
;
1251 Tmp_Handler
: Parameterless_Handler
;
1253 Tmp_Entry_Index
: Task_Entry_Index
;
1256 -- By making this task independent of master, when the process
1257 -- goes away, the Server_Task will terminate gracefully.
1259 System
.Tasking
.Utilities
.Make_Independent
;
1261 -- Install default action in system level.
1263 IMOP
.Install_Default_Action
(IMNG
.Interrupt_ID
(Interrupt
));
1265 -- Note: All tasks in RTS will have all the Reserve Interrupts
1266 -- being masked (except the Interrupt_Manager) and Keep_Unmasked
1267 -- unmasked when created.
1269 -- Abort_Task_Interrupt is one of the Interrupt unmasked
1270 -- in all tasks. We mask the Interrupt in this particular task
1271 -- so that "sigwait" is possible to catch an explicitely sent
1272 -- Abort_Task_Interrupt from the Interrupt_Manager.
1274 -- There are two Interrupt interrupts that this task catch through
1275 -- "sigwait." One is the Interrupt this task is designated to catch
1276 -- in order to execure user handler or entry. The other one is the
1277 -- Abort_Task_Interrupt. This interrupt is being sent from the
1278 -- Interrupt_Manager to inform status changes (e.g: become Blocked,
1279 -- Handler or Entry is to be detached).
1281 -- Prepare a mask to used for sigwait.
1283 IMOP
.Empty_Interrupt_Mask
(Intwait_Mask
'Access);
1285 IMOP
.Add_To_Interrupt_Mask
1286 (Intwait_Mask
'Access, IMNG
.Interrupt_ID
(Interrupt
));
1288 IMOP
.Add_To_Interrupt_Mask
1289 (Intwait_Mask
'Access, IMNG
.Abort_Task_Interrupt
);
1291 IMOP
.Thread_Block_Interrupt
1292 (IMNG
.Abort_Task_Interrupt
);
1294 PIO
.Set_Interrupt_ID
(IMNG
.Interrupt_ID
(Interrupt
), Self_ID
);
1297 System
.Tasking
.Initialization
.Defer_Abort
(Self_ID
);
1303 POP
.Write_Lock
(Self_ID
);
1305 if User_Handler
(Interrupt
).H
= null
1306 and then User_Entry
(Interrupt
).T
= Null_Task
1308 -- No Interrupt binding. If there is an interrupt,
1309 -- Interrupt_Manager will take default action.
1311 Self_ID
.Common
.State
:= Interrupt_Server_Blocked_Interrupt_Sleep
;
1312 POP
.Sleep
(Self_ID
, Interrupt_Server_Idle_Sleep
);
1313 Self_ID
.Common
.State
:= Runnable
;
1315 elsif Blocked
(Interrupt
) then
1317 -- Interrupt is blocked. Stay here, so we won't catch
1320 Self_ID
.Common
.State
:= Interrupt_Server_Blocked_Interrupt_Sleep
;
1321 POP
.Sleep
(Self_ID
, Interrupt_Server_Blocked_Interrupt_Sleep
);
1322 Self_ID
.Common
.State
:= Runnable
;
1325 -- A Handler or an Entry is installed. At this point all tasks
1326 -- mask for the Interrupt is masked. Catch the Interrupt using
1329 -- This task may wake up from sigwait by receiving an interrupt
1330 -- (Abort_Task_Interrupt) from the Interrupt_Manager for unbinding
1331 -- a Procedure Handler or an Entry. Or it could be a wake up
1332 -- from status change (Unblocked -> Blocked). If that is not
1333 -- the case, we should exceute the attached Procedure or Entry.
1335 POP
.Unlock
(Self_ID
);
1342 Interrupt_ID
(IMOP
.Interrupt_Wait
(Intwait_Mask
'Access));
1344 if Ret_Interrupt
= Interrupt_ID
(IMNG
.Abort_Task_Interrupt
) then
1346 -- Inform the Interrupt_Manager of wakeup from above sigwait.
1348 POP
.Abort_Task
(Interrupt_Manager_ID
);
1354 POP
.Write_Lock
(Self_ID
);
1361 POP
.Write_Lock
(Self_ID
);
1363 if Ret_Interrupt
/= Interrupt
then
1365 -- On some systems (e.g. recent linux kernels), sigwait
1366 -- may return unexpectedly (with errno set to EINTR).
1371 -- Even though we have received an Interrupt the status may
1372 -- have changed already before we got the Self_ID lock above
1373 -- Therefore we make sure a Handler or an Entry is still
1374 -- there and make appropriate call.
1376 -- If there is no calls to make we need to regenerate the
1377 -- Interrupt in order not to lose it.
1379 if User_Handler
(Interrupt
).H
/= null then
1380 Tmp_Handler
:= User_Handler
(Interrupt
).H
;
1382 -- RTS calls should not be made with self being locked.
1384 POP
.Unlock
(Self_ID
);
1396 POP
.Write_Lock
(Self_ID
);
1398 elsif User_Entry
(Interrupt
).T
/= Null_Task
then
1399 Tmp_ID
:= User_Entry
(Interrupt
).T
;
1400 Tmp_Entry_Index
:= User_Entry
(Interrupt
).E
;
1402 -- RTS calls should not be made with self being locked.
1408 POP
.Unlock
(Self_ID
);
1410 System
.Tasking
.Rendezvous
.Call_Simple
1411 (Tmp_ID
, Tmp_Entry_Index
, System
.Null_Address
);
1413 POP
.Write_Lock
(Self_ID
);
1420 -- This is a situation that this task wakes up receiving
1421 -- an Interrupt and before it gets the lock the Interrupt
1422 -- is blocked. We do not want to lose the interrupt in
1423 -- this case so we regenerate the Interrupt to process
1426 IMOP
.Interrupt_Self_Process
1427 (IMNG
.Interrupt_ID
(Interrupt
));
1433 POP
.Unlock
(Self_ID
);
1439 System
.Tasking
.Initialization
.Undefer_Abort
(Self_ID
);
1441 -- Undefer abort here to allow a window for this task
1442 -- to be aborted at the time of system shutdown.
1447 -- Elaboration code for package System.Interrupts
1450 -- Get Interrupt_Manager's ID so that Abort_Interrupt can be sent.
1452 Interrupt_Manager_ID
:= To_System
(Interrupt_Manager
'Identity);
1454 -- During the elaboration of this package body we want the RTS
1455 -- to inherit the interrupt mask from the Environment Task.
1457 -- The environment task should have gotten its mask from
1458 -- the enclosing process during the RTS start up. (See
1459 -- processing in s-inmaop.adb). Pass the Interrupt_Mask
1460 -- of the environment task to the Interrupt_Manager.
1462 -- Note : At this point we know that all tasks (including
1463 -- RTS internal servers) are masked for non-reserved signals
1464 -- (see s-taprop.adb). Only the Interrupt_Manager will have
1465 -- masks set up differently inheriting the original environment
1468 Interrupt_Manager
.Initialize
(IMOP
.Environment_Mask
);
1469 end System
.Interrupts
;