ASSEMBLY LISTING OF SEGMENT >special_ldd>install>MR12.3-1114>access_audit_gate_.alm ASSEMBLED ON: 11/11/89 0955.8 mst Sat OPTIONS USED: -target l68 list symbols ASSEMBLED BY: ALM Version 8.14 March 1989 ASSEMBLER CREATED: 06/09/89 1002.3 mst Fri 1 " *********************************************************** 2 " * * 3 " * Copyright, (C) Honeywell Bull Inc., 1987 * 4 " * * 5 " * Copyright, (C) Honeywell Information Systems Inc., 1982 * 6 " * * 7 " * Copyright (c) 1972 by Massachusetts Institute of * 8 " * Technology and Honeywell Information Systems, Inc. * 9 " * * 10 " *********************************************************** 11 12 " HISTORY COMMENTS: 13 " 1) change(86-03-17,EJSharpe), approve(86-03-17,MCR7364), 14 " audit(86-03-17,Margolin), install(86-04-23,MR12.0-1044): 15 " Removed set_audit_flags (moved to 16 " system_privilege_$set_process_audit_flags). Renamed get_audit_flags to 17 " get_process_audit_flags. 18 " END HISTORY COMMENTS 19 20 21 " Privileged gate for calling access_audit_ a user ring. 22 23 " 84-11-27 EJ Sharpe - created 24 25 include gate_macros 1-1 " BEGIN INCLUDE FILE ...... gate_macros.incl.alm 1-2 " Last modified 6/77 by N. Morris, B. Greenberg, & T. VanVleck 1-3 " Modified 741212 by PG to inhibit while computing virtual CPU time 1-4 " Modified 83-03-14 by E. N. Kittlitz to clear IR 1-5 " Modified 83-06-01 BIM for ring alarm polling 1-6 " Modified 85-04-03 by Keith Loepere to make polling a little smarter. 1-7 1-8 " This file contains several macros used when generating gate segments. 1-9 " The major macros that are defined are: 1-10 " 1-11 " gate_info general setup code for normal gates 1-12 " hardcore_gate_info general setup code for hardcore gates 1-13 " bad_dir_handler setup and handler for bad_dir_ condition (goes at bottom) 1-14 " bad_dir_handler_entry entrypoint for above (goes at top) 1-15 " gate to define a normal gate 1-16 " hgate to define a hardcore gate 1-17 " fgate to define a fast hardcore gate 1-18 " 1-19 1-20 000000 1-21 maclist off 1-22 1-23 1-24 " HGATE - define a hardcore gate entry 1-25 " 1-26 " hgate gatename,procedure,entry,args{,bad_dir_trap} 1-27 " 1-28 " The entrypoint gatename is defined in the gate segment. If args 1-29 " is nonzero, the number of arguments passed to gatename must be 1-30 " equal to args. When gatename is called, it will in turn call 1-31 " procedure$entry. 1-32 " 1-33 1-34 macro hgate 1 1-35 gentry &1,&4*2,&1.t 2 1-36 tsx2 .setup 3 1-37 &=&5,bad_dir_trap&[ tsx0 .set_dir_trap 4 1-38 &] ldi =0,dl 5 1-39 short_call &2$&3(ap|0) 6 1-40 eppbp lp|&1.t 7 1-41 tra .return_code 8 1-42 maclist restore 9 1-43 use linkage 10 1-44 even 11 1-45 maclist on,save 12 1-46 &1.t: 13 1-47 bss ,gate_entry_data_size 14 1-48 15 1-49 maclist restore 16 1-50 &end 1-51 1-52 1-53 " FGATE - define a fast hardcore gate 1-54 " 1-55 " fgate gatename,procedure,entry 1-56 " 1-57 1-58 macro fgate 1 1-59 gentry &1,0,0 2 1-60 ldi =0,dl 3 1-61 epplp .my_lp,* 4 1-62 tra &2$&3 5 1-63 6 1-64 maclist off 7 1-65 &end 1-66 1-67 1-68 " GATE - define a normal gate entry 1-69 " 1-70 " gate gatename,procedure,entry,args 1-71 " 1-72 1-73 macro gate 1 1-74 gentry &1,&4*2,0 2 1-75 tsx2 .setup 3 1-76 ldi =0,dl 4 1-77 short_call &2$&3(ap|0) 5 1-78 return 6 1-79 7 1-80 maclist restore 8 1-81 &end 1-82 1-83 1-84 1-85 macro gentry 1 1-86 maclist on,save 2 1-87 segdef &1 3 1-88 maclist restore 4 1-89 use transfer_vector 5 1-90 maclist on,save 6 1-91 &1: 7 1-92 tra &1.e 8 1-93 maclist restore 9 1-94 use main 10 1-95 maclist on,save 11 1-96 zero &2,&3 12 1-97 &1.e: 13 1-98 &end 1-99 1-100 1-101 " HARDCORE_GATE_INFO - general info for hardcore gates 1-102 1-103 macro hardcore_gate_info 1 1-104 maclist on,save 2 1-105 name &1 3 1-106 4 1-107 include stack_header 5 1-108 6 1-109 include stack_frame 7 1-110 include gate_data 8 1-111 9 1-112 maclist restore 10 1-113 eject 11 1-114 12 1-115 tempd .temp 13 1-116 tempd .label_variable(0) 14 1-117 tempd .time1,.time2 15 1-118 tempd .unwinder_arglist(0) 16 1-119 tempd .on_unit(5) 17 1-120 temp .pf,.entryp 18 1-121 tempd .vfl_arglist(2) 19 1-122 tempd .mcptr 20 1-123 21 1-124 use transfer_vector 22 1-125 equ .tv_begin,* 23 1-126 24 1-127 tra .actor 25 1-128 26 1-129 use tv_end 27 1-130 entrybound 28 1-131 29 1-132 segdef .tv_end 30 1-133 .tv_end: vfd 14/(*-.tv_begin) 31 1-134 32 1-135 use main 33 1-136 34 1-137 segdef .my_lp 35 1-138 even 36 1-139 .my_lp: bss ,2 37 1-140 38 1-141 join /text/transfer_vector,tv_end,main 39 1-142 40 1-143 use linkage 41 1-144 join /link/linkage 42 1-145 43 1-146 use main 44 1-147 45 1-148 maclist restore 46 1-149 eject 47 1-150 48 1-151 .actor: epplp .my_lp,* 49 1-152 maclist restore 50 1-153 gate_actor 51 1-154 52 1-155 53 1-156 54 1-157 .setup: push 55 1-158 epplp .my_lp,* 56 1-159 sprilp sp|stack_frame.lp_ptr 57 1-160 58 1-161 maclist restore 59 1-162 gcheck 60 1-163 61 1-164 inhibit on <+><+><+><+><+><+><+><+><+><+><+><+> 62 1-165 rccl sys_info$clock_,* calculate times 63 1-166 sbaq pds$cpu_time 64 1-167 staq .time1 65 1-168 sbaq pds$virtual_delta 66 1-169 staq .time2 67 1-170 lda pds$page_waits 68 1-171 sta .pf 69 1-172 inhibit off <-><-><-><-><-><-><-><-><-><-><-><-> 70 1-173 tra 0,2 71 1-174 72 1-175 maclist restore 73 1-176 eject 74 1-177 75 1-178 .return_code: 76 1-179 77 1-180 inhibit on <+><+><+><+><+><+><+><+><+><+><+><+> 78 1-181 rccl sys_info$clock_,* calculate times 79 1-182 sbaq pds$cpu_time 80 1-183 staq .temp 81 1-184 sbaq .time1 82 1-185 adaq bp|gate_entry_data.cpu_time 83 1-186 staq bp|gate_entry_data.cpu_time 84 1-187 ldaq .temp 85 1-188 sbaq pds$virtual_delta 86 1-189 sbaq .time2 87 1-190 adaq bp|gate_entry_data.vcpu_time 88 1-191 staq bp|gate_entry_data.vcpu_time 89 1-192 lda pds$page_waits 90 1-193 sbla .pf 91 1-194 asa bp|gate_entry_data.page_waits 92 1-195 aos bp|gate_entry_data.calls 93 1-196 inhibit off <-><-><-><-><-><-><-><-><-><-><-><-> 94 1-197 95 1-198 " Poll for ring alarms 96 1-199 sra .temp Borrow from time calc 97 1-200 szn .temp Zero? 98 1-201 tze .return_code_return 99 1-202 100 1-203 epp1 sp|stack_frame.prev_sp,* "possible ring alarm 101 1-204 epaq pr1|stack_frame.return_ptr,* 102 1-205 ana 7,dl " ring number to which we return 103 1-206 cmpa .temp 104 1-207 tpl .ring_alarm " ring alarm will occur 105 1-208 106 1-209 .return_code_return: 107 1-210 return 108 1-211 109 1-212 .ring_alarm: " perhaps we can handle without faults? 110 1-213 111 1-214 aos bp|gate_entry_data.ring_alarms 112 1-215 stz .temp " return argument for ring_alarm$poll 113 1-216 ldaq .one_arg_header 114 1-217 staq .ring_alarm_arg_list 115 1-218 epp1 .temp 116 1-219 spri1 .ring_alarm_arg_list+2 117 1-220 eppap .ring_alarm_arg_list 118 1-221 short_call ring_alarm$poll 119 1-222 szn .temp 120 1-223 tze .return_code_return 121 1-224 eppsp sp|stack_frame.prev_sp,* 122 1-225 sprisp pds$pre_empt_poll_return " short-return from here 123 1-226 epp1 sb|stack_header.stack_begin_ptr,* " abandoning this stack frame. 124 1-227 spri1 sb|stack_header.stack_end_ptr 125 1-228 " Leave SB as stack_0, so pxss can get to operators. 126 1-229 tra pxss$pre_empt_poll 127 1-230 128 1-231 tempd .ring_alarm_arg_list(2) 129 1-232 even 130 1-233 .one_arg_header: 131 1-234 vfd 17/2,1/0,18/4 132 1-235 vfd 18/0,18/0 133 1-236 134 1-237 135 1-238 maclist restore 136 1-239 eject 137 1-240 maclist restore 138 1-241 &end 1-242 1-243 1-244 " BAD_DIR_HANDLER - code to setup and handle bad_dir_ condition 1-245 " put this after the last hgate macro 1-246 1-247 macro bad_dir_handler 1 1-248 maclist on,save 2 1-249 3 1-250 include on_unit 4 1-251 5 1-252 use transfer_vector 6 1-253 .handler_entry: 7 1-254 tra .handler 8 1-255 .handler_restart_entry: 9 1-256 tra .handler_restart_point 10 1-257 11 1-258 use main 12 1-259 .set_dir_trap: 13 1-260 stx0 .entryp save for restart 14 1-261 15 1-262 mlr (),(pr),fill(000) 16 1-263 desc9a 0,0 17 1-264 desc9a .on_unit,10*4 18 1-265 eppbp .bad_dir_name 19 1-266 spribp .on_unit+on_unit.name 20 1-267 eppbp .handler_entry 21 1-268 spribp .on_unit+on_unit.body 22 1-269 lxl1 .bad_dir_desc 23 1-270 sxl1 .on_unit+on_unit.size 24 1-271 eaa .on_unit set up on-unit for bad_dir_ 25 1-272 sbla sp|0,du .. make rel to sp 26 1-273 sta sp|stack_frame.on_unit_rel_ptrs 27 1-274 lda stack_frame.condition_bit,dl 28 1-275 orsa sp|stack_frame.flag_word 29 1-276 tra 0,0 30 1-277 31 1-278 string bad_dir_ 32 1-279 33 1-280 34 1-281 35 1-282 .handler: epaq sp|0 verify that call came from ring 0 36 1-283 cana -1,dl check ring number in AL 37 1-284 tze *+2 38 1-285 zero 0 go way kid you bother me 39 1-286 40 1-287 push " ok, we like the call 41 1-288 epplp .my_lp,* 42 1-289 ldx0 ap|0 get display 43 1-290 eppbp ap|2,0* 44 1-291 lda bp|stack_frame.prev_sp 45 1-292 cana =o700000,dl from another ring? 46 1-293 tze .continue_signal if not, back to signal_ 47 1-294 eppap ap|2,* Get mcptr 48 1-295 eppap ap|0,* .. 49 1-296 spriap bp|.mcptr .. save in gate frame 50 1-297 spribp .label_variable+2 51 1-298 eppbp .handler_restart_entry 52 1-299 spribp .label_variable 53 1-300 eppbp .label_variable 54 1-301 spribp .unwinder_arglist+2 55 1-302 fld =1b24,dl 56 1-303 staq .unwinder_arglist 57 1-304 call unwinder_$unwinder_(.unwinder_arglist) 58 1-305 59 1-306 .continue_signal: 60 1-307 lda =o400000,du "1"b 61 1-308 sta ap|10,* set continue bit 62 1-309 return 63 1-310 64 1-311 .handler_restart_point: 65 1-312 epaq sp|0 check that call came from ring 0 66 1-313 cana -1,dl 67 1-314 tze *+2 68 1-315 zero 1 69 1-316 epplp .my_lp,* 70 1-317 lca stack_frame.condition_bit+1,dl Vanish on-unit 71 1-318 ansa sp|stack_frame.flag_word 72 1-319 eppbp .mcptr 73 1-320 spribp .vfl_arglist+2 74 1-321 fld =1b24,dl 75 1-322 staq .vfl_arglist 76 1-323 short_call verify_lock$verify_lock_bad_dir(.vfl_arglist) 77 1-324 ldx0 .entryp 78 1-325 eppap sp|stack_frame.arg_ptr,* 79 1-326 tra 0,0 retry the call 80 1-327 81 1-328 maclist restore 82 1-329 eject 83 1-330 maclist restore 84 1-331 &end 1-332 1-333 1-334 " GATE_INFO - general info for non-hardcore gates 1-335 1-336 macro gate_info 1 1-337 maclist on,save 2 1-338 use transfer_vector 3 1-339 tra .actor 4 1-340 5 1-341 use tv_end 6 1-342 entrybound 7 1-343 8 1-344 use main 9 1-345 join /text/transfer_vector,tv_end,main 10 1-346 11 1-347 maclist restore 12 1-348 eject 13 1-349 14 1-350 .actor: getlp 15 1-351 maclist restore 16 1-352 gate_actor 17 1-353 18 1-354 maclist restore 19 1-355 eject 20 1-356 21 1-357 .setup: push 22 1-358 getlp 23 1-359 maclist restore 24 1-360 gcheck 25 1-361 tra 0,2 26 1-362 27 1-363 maclist restore 28 1-364 eject 29 1-365 30 1-366 maclist restore 31 1-367 &end 1-368 1-369 1-370 " Macro to generate gate actor. 1-371 1-372 macro gate_actor 1 1-373 maclist on,save 2 1-374 eppbp ap|2,* 3 1-375 lda bp|-1 get length of string 4 1-376 tze .return_name zero length => get name 5 1-377 6 1-378 adla 1,dl include length of acc 7 1-379 stz ap|4,* 8 1-380 tsx0 .search_defs 9 1-381 10 1-382 cmpc (pr,rl),(pr,rl) compare name 11 1-383 desc9a bp|-1(3),al 12 1-384 desc9a bb|0,al 13 1-385 tnz .next_def 14 1-386 15 1-387 lda ab|1,2 return location 16 1-388 arl 18 17 1-389 sta ap|4,* 18 1-390 19 1-391 short_return 20 1-392 21 1-393 .return_name: 22 1-394 lxl3 ap|4,* get location 23 1-395 tsx0 .search_defs 24 1-396 25 1-397 cmpx3 ab|1,2 compare location 26 1-398 tnz .next_def 27 1-399 28 1-400 lda bb|0 get length of name 29 1-401 arl 27 30 1-402 sta bp|-1 set length of varying string 31 1-403 mlr (pr,rl),(pr,rl) return string 32 1-404 desc9a bb|0(1),al 33 1-405 desc9a bp|0,al 34 1-406 35 1-407 short_return 36 1-408 37 1-409 .search_defs: 38 1-410 eax2 0 39 1-411 eppab lp|0,* ab -> defs 40 1-412 .defs_loop: 41 1-413 lxl1 ab|1,2 get class and flags 42 1-414 cmpx1 =o400000,du must be class 0 43 1-415 tnz .next_def 44 1-416 45 1-417 ldx7 ab|2,2 46 1-418 eppbb ab|0,7 bb -> name 47 1-419 tra 0,0 test definition 48 1-420 .next_def: 49 1-421 ldx2 ab|0,2 chain to next def 50 1-422 tnz .defs_loop 51 1-423 52 1-424 short_return 53 1-425 54 1-426 &end 1-427 1-428 1-429 " Miscellaneous macros. 1-430 1-431 macro gcheck 1 1-432 maclist on,save 2 1-433 ldx1 -2,2 get number of args expected 3 1-434 tze .no_gate_error if zero, none or doesn't matter 4 1-435 cmpx1 ap|0 compare against number given 5 1-436 tze .no_gate_error args match, call procedure 6 1-437 7 1-438 call signal_$signal_(signal_arglist) 8 1-439 oct 0 9 1-440 10 1-441 even 11 1-442 signal_arglist: 12 1-443 zero 2,4 13 1-444 zero 2,0 14 1-445 arg .gate_errorname 15 1-446 arg 16 1-447 arg .gate_errordesc 17 1-448 arg 18 1-449 19 1-450 string gate_error 20 1-451 21 1-452 22 1-453 .no_gate_error: 23 1-454 &end 1-455 1-456 macro string 1 1-457 .&1name: 2 1-458 aci "&1" 3 1-459 .&1desc: 4 1-460 vfd o9/525,o27/&l1 5 1-461 6 1-462 &end 1-463 1-464 macro eject 1 1-465 maclist on,save 2 1-466 3 1-467 &end 1-468 1-469 " END INCLUDE FILE ...... gate_macros.incl.alm 1-470 1-471 " To arrange the return it wants to return, it will have to reach back 2 frames. 26 hardcore_gate_info access_audit_gate_ 000000 name access_audit_gate_ include stack_header 2-1 " BEGIN INCLUDE FILE ... stack_header.incl.alm 3/72 Bill Silver 2-2 " 2-3 " modified 7/76 by M. Weaver for *system links and more system use of areas 2-4 " modified 3/77 by M. Weaver to add rnt_ptr 2-5 " modified 7/77 by S. Webber to add run_unit_depth and assign_linkage_ptr 2-6 " modified 6/83 by J. Ives to add trace_frames and in_trace. 2-7 2-8 " HISTORY COMMENTS: 2-9 " 1) change(86-06-24,DGHowe), approve(86-06-24,MCR7396), 2-10 " audit(86-08-05,Schroth), install(86-11-03,MR12.0-1206): 2-11 " added the heap_header_ptr definition 2-12 " 2) change(86-08-12,Kissel), approve(86-08-12,MCR7473), 2-13 " audit(86-10-10,Fawcett), install(86-11-03,MR12.0-1206): 2-14 " Modified to support control point management. These changes were 2-15 " actually made in February 1985 by G. Palter. 2-16 " 3) change(86-10-22,Fawcett), approve(86-10-22,MCR7473), 2-17 " audit(86-10-22,Farley), install(86-11-03,MR12.0-1206): 2-18 " Remove the old_lot pointer and replace it with cpm_data_ptr. Use the 18 2-19 " bit pad after cur_lot_size for the cpm_enabled. This was done to save 2-20 " some space int the stack header and change the cpd_ptr unal to 2-21 " cpm_data_ptr (ITS pair). 2-22 " END HISTORY COMMENTS 2-23 000004 2-24 equ stack_header.cpm_data_ptr,4 ptr to control point for this stack 000006 2-25 equ stack_header.combined_stat_ptr,6 ptr to separate static area 2-26 000010 2-27 equ stack_header.clr_ptr,8 ptr to area containing linkage sections 000012 2-28 equ stack_header.max_lot_size,10 number of words allowed in lot (DU) 000012 2-29 equ stack_header.main_proc_invoked,10 nonzero if main proc was invoked in run unit (DL) 000012 2-30 equ stack_header.run_unit_depth,10 number of active run units stacked (DL) 000013 2-31 equ stack_header.cur_lot_size,11 DU number of words (entries) in lot 000013 2-32 equ stack_header.cpm_enabled,11 DL non-zero if control point management is enabled 000014 2-33 equ stack_header.system_free_ptr,12 ptr to system storage area 000016 2-34 equ stack_header.user_free_ptr,14 ptr to user storage area 2-35 000020 2-36 equ stack_header.parent_ptr,16 ptr to parent stack or null 000022 2-37 equ stack_header.stack_begin_ptr,18 ptr to first stack frame 000024 2-38 equ stack_header.stack_end_ptr,20 ptr to next useable stack frame 000026 2-39 equ stack_header.lot_ptr,22 ptr to the lot for the current ring 2-40 000030 2-41 equ stack_header.signal_ptr,24 ptr to signal proc for current ring 000032 2-42 equ stack_header.bar_mode_sp,26 value of sp before entering bar mode 000034 2-43 equ stack_header.pl1_operators_ptr,28 ptr: pl1_operators_$operator_table 000036 2-44 equ stack_header.call_op_ptr,30 ptr to standard call operator 2-45 000040 2-46 equ stack_header.push_op_ptr,32 ptr to standard push operator 000042 2-47 equ stack_header.return_op_ptr,34 ptr to standard return operator 000044 2-48 equ stack_header.ret_no_pop_op_ptr,36 ptr: stand. return/ no pop operator 000046 2-49 equ stack_header.entry_op_ptr,38 ptr to standard entry operator 2-50 000050 2-51 equ stack_header.trans_op_tv_ptr,40 ptr to table of translator operator ptrs 000052 2-52 equ stack_header.isot_ptr,42 pointer to ISOT 000054 2-53 equ stack_header.sct_ptr,44 pointer to System Condition Table 000056 2-54 equ stack_header.unwinder_ptr,46 pointer to unwinder for current ring 2-55 000060 2-56 equ stack_header.sys_link_info_ptr,48 ptr to *system link name table 000062 2-57 equ stack_header.rnt_ptr,50 ptr to reference name table 000064 2-58 equ stack_header.ect_ptr,52 ptr to event channel table 000066 2-59 equ stack_header.assign_linkage_ptr,54 ptr to area for hcs_$assign_linkage calls 000070 2-60 equ stack_header.heap_header_ptr,56 ptr to heap header. 000072 2-61 equ stack_header.trace_frames,58 stack of trace_catch_ frames 000073 2-62 equ stach_header.trace_top_ptr,59 trace pointer 000074 2-63 equ stack_header.in_trace,60 trace antirecurse bit 000100 2-64 equ stack_header_end,64 length of stack header 2-65 2-66 2-67 2-68 000000 2-69 equ trace_frames.count,0 number of trace frames on stack 000001 2-70 equ trace_frames.top_ptr,1 packed pointer to top one 2-71 2-72 " The following constant is an offset within the pl1 operators table. 2-73 " It references a transfer vector table. 2-74 000551 2-75 bool tv_offset,551 2-76 2-77 2-78 " The following constants are offsets within this transfer vector table. 2-79 001170 2-80 equ call_offset,tv_offset+271 001171 2-81 equ push_offset,tv_offset+272 001172 2-82 equ return_offset,tv_offset+273 001173 2-83 equ return_no_pop_offset,tv_offset+274 001174 2-84 equ entry_offset,tv_offset+275 2-85 2-86 2-87 " END INCLUDE FILE stack_header.incl.alm include stack_frame 3-1 " 3-2 " BEGIN INCLUDE FILE ... stack_frame.incl.alm 6/72 RBS 3-3 " 3-4 " Modified: 16 Dec 1977, D. Levin - to add fio_ps_ptr 3-5 " Modified: 3 Feb 1978, P. Krupp - to add run_unit_manager_bit & main_proc_bit 3-6 " Modified: 21 March 1978, D. Levin - change fio_ps_ptr to support_ptr 3-7 " 000020 3-8 equ stack_frame.prev_sp,16 000020 3-9 equ stack_frame.condition_word,16 000022 3-10 equ stack_frame.next_sp,18 000022 3-11 equ stack_frame.signaller_word,18 000024 3-12 equ stack_frame.return_ptr,20 000026 3-13 equ stack_frame.entry_ptr,22 000030 3-14 equ stack_frame.operator_ptr,24 000030 3-15 equ stack_frame.lp_ptr,24 000032 3-16 equ stack_frame.arg_ptr,26 000034 3-17 equ stack_frame.static_ptr,28 000035 3-18 equ stack_frame.support_ptr,29 " only used by fortran I/O 000036 3-19 equ stack_frame.on_unit_rel_ptrs,30 000037 3-20 equ stack_frame.operator_ret_ptr,31 000037 3-21 equ stack_frame.translator_id,31 000040 3-22 equ stack_frame.regs,32 000060 3-23 equ stack_frame.min_length,48 000020 3-24 equ stack_frame.flag_word,16 020000 3-25 bool stack_frame.main_proc_bit,020000 (DL) 010000 3-26 bool stack_frame.run_unit_manager,010000 (DL) 004000 3-27 bool stack_frame.signal_bit,004000 (DL) 002000 3-28 bool stack_frame.crawl_out_bit,002000 (DL) 001000 3-29 bool stack_frame.signaller_bit,001000 (DL) 000400 3-30 bool stack_frame.link_trap_bit,000400 (DL) 000200 3-31 bool stack_frame.support_bit,000200 (DL) 000100 3-32 bool stack_frame.condition_bit,000100 (DL) 3-33 3-34 " 3-35 " END INCLUDE FILE ... stack_frame.incl.alm 3-36 " include gate_data 4-1 4-2 4-3 "BEGIN INCLUDE FILE gate_data.incl.alm 4-4 4-5 4-6 "Created 11/07/83 0737.6 est Mon by convert_include_file, 4-7 " Version of 11/07/82 1445.1 est Sun. 4-8 4-9 "Made from >user_dir_dir>Multics>Margulies>h>gate_data.incl.pl1, 4-10 " modified 11/07/83 0737.5 est Mon 4-11 4-12 " 4-13 " Structure gate_table 4-14 " 000003 4-15 equ gate_table_size,3 4-16 4-17 000000 4-18 equ gate_table.entryp,0 000001 4-19 equ gate_table.entryl,1 000002 4-20 equ gate_table.datap,2 4-21 4-22 " 4-23 " Structure gate_entry_data 4-24 " 000010 4-25 equ gate_entry_data_size,8 4-26 000000 4-27 equ gate_entry_data.cpu_time,0 " DOUBLE 000002 4-28 equ gate_entry_data.vcpu_time,2 " DOUBLE 000004 4-29 equ gate_entry_data.page_waits,4 000005 4-30 equ gate_entry_data.calls,5 000006 4-31 equ gate_entry_data.ring_alarms,6 4-32 4-33 "END INCLUDE FILE gate_data.incl.alm tempd .temp tempd .label_variable(0) tempd .time1,.time2 tempd .unwinder_arglist(0) tempd .on_unit(5) temp .pf,.entryp tempd .vfl_arglist(2) tempd .mcptr use transfer_vector 000000 equ .tv_begin,* 000000 0a 000036 7100 00 tra .actor use tv_end entrybound 000032 segdef .tv_end 000032 aa 000640 000000 .tv_end: vfd 14/(*-.tv_begin) use main 000034 segdef .my_lp even 000034 .my_lp: bss ,2 join /text/transfer_vector,tv_end,main use linkage join /link/linkage use main 000036 0a 000034 3700 20 .actor: epplp .my_lp,* 000037 aa 0 00002 3521 20 eppbp ap|2,* 000040 aa 2 77777 2351 00 lda bp|-1 get length of string 000041 0a 000055 6000 00 tze .return_name zero length => get name 000042 aa 000001 0350 07 adla 1,dl include length of acc 000043 aa 0 00004 4501 20 stz ap|4,* 000044 0a 000070 7000 00 tsx0 .search_defs 000045 aa 0 00140 1065 40 cmpc (pr,rl),(pr,rl) compare name 000046 aa 277777 600005 desc9a bp|-1(3),al 000047 aa 300000 000005 desc9a bb|0,al 000050 0a 000100 6010 00 tnz .next_def 000051 aa 1 00001 2351 12 lda ab|1,2 return location 000052 aa 000022 7710 00 arl 18 000053 aa 0 00004 7551 20 sta ap|4,* 000054 aa 7 00044 7101 20 short_return 000055 .return_name: 000055 aa 0 00004 7231 20 lxl3 ap|4,* get location 000056 0a 000070 7000 00 tsx0 .search_defs 000057 aa 1 00001 1031 12 cmpx3 ab|1,2 compare location 000060 0a 000100 6010 00 tnz .next_def 000061 aa 3 00000 2351 00 lda bb|0 get length of name 000062 aa 000033 7710 00 arl 27 000063 aa 2 77777 7551 00 sta bp|-1 set length of varying string 000064 aa 0 00140 1005 40 mlr (pr,rl),(pr,rl) return string 000065 aa 300000 200005 desc9a bb|0(1),al 000066 aa 200000 000005 desc9a bp|0,al 000067 aa 7 00044 7101 20 short_return 000070 .search_defs: 000070 aa 000000 6220 00 eax2 0 000071 aa 4 00000 3515 20 eppab lp|0,* ab -> defs 000072 .defs_loop: 000072 aa 1 00001 7211 12 lxl1 ab|1,2 get class and flags 000073 aa 400000 1010 03 cmpx1 =o400000,du must be class 0 000074 0a 000100 6010 00 tnz .next_def 000075 aa 1 00002 2271 12 ldx7 ab|2,2 000076 aa 1 00000 3535 17 eppbb ab|0,7 bb -> name 000077 aa 000000 7100 10 tra 0,0 test definition 000100 .next_def: 000100 aa 1 00000 2221 12 ldx2 ab|0,2 chain to next def 000101 0a 000072 6010 00 tnz .defs_loop 000102 aa 7 00044 7101 20 short_return 000103 aa 000120 6270 00 .setup: push 000104 aa 7 00040 2721 20 000105 0a 000034 3700 20 epplp .my_lp,* 000106 aa 6 00030 6501 00 sprilp sp|stack_frame.lp_ptr 000107 aa 777776 2210 12 ldx1 -2,2 get number of args expected 000110 0a 000136 6000 00 tze .no_gate_error if zero, none or doesn't matter 000111 aa 0 00000 1011 00 cmpx1 ap|0 compare against number given 000112 0a 000136 6000 00 tze .no_gate_error args match, call procedure 000113 aa 6 00000 2541 00 call signal_$signal_(signal_arglist) 000114 0a 000124 3500 00 000115 4a 4 00300 3521 20 000116 aa 6 00040 7531 00 000117 aa 7 00036 6701 20 000120 aa 6 00000 1731 00 000121 aa 6 00040 0731 00 000122 aa 000000 000000 oct 0 000123 aa 000000 0110 03 even 000124 signal_arglist: 000124 aa 000002 000004 zero 2,4 000125 aa 000002 000000 zero 2,0 000126 0a 000132 0000 00 arg .gate_errorname 000127 aa 000000 0000 00 arg 000130 0a 000135 0000 00 arg .gate_errordesc 000131 aa 000000 0000 00 arg string gate_error 000132 .gate_errorname: 000132 aa 147 141 164 145 aci "gate_error" 000133 aa 137 145 162 162 000134 aa 157 162 000 000 000135 .gate_errordesc: 000135 aa 525000 000010 vfd o9/525,o27/10 000136 .no_gate_error: 000136 inhibit on <+><+><+><+><+><+><+><+><+><+><+><+> 000136 4a 4 00304 6333 20 rccl sys_info$clock_,* calculate times 000137 4a 4 00306 1773 20 sbaq pds$cpu_time 000140 aa 6 00052 7573 00 staq .time1 000141 4a 4 00310 1773 20 sbaq pds$virtual_delta 000142 aa 6 00054 7573 00 staq .time2 000143 4a 4 00312 2353 20 lda pds$page_waits 000144 aa 6 00070 7553 00 sta .pf 000145 inhibit off <-><-><-><-><-><-><-><-><-><-><-><-> 000145 aa 000000 7100 12 tra 0,2 000146 .return_code: 000146 inhibit on <+><+><+><+><+><+><+><+><+><+><+><+> 000146 4a 4 00304 6333 20 rccl sys_info$clock_,* calculate times 000147 4a 4 00306 1773 20 sbaq pds$cpu_time 000150 aa 6 00050 7573 00 staq .temp 000151 aa 6 00052 1773 00 sbaq .time1 000152 aa 2 00000 0773 00 adaq bp|gate_entry_data.cpu_time 000153 aa 2 00000 7573 00 staq bp|gate_entry_data.cpu_time 000154 aa 6 00050 2373 00 ldaq .temp 000155 4a 4 00310 1773 20 sbaq pds$virtual_delta 000156 aa 6 00054 1773 00 sbaq .time2 000157 aa 2 00002 0773 00 adaq bp|gate_entry_data.vcpu_time 000160 aa 2 00002 7573 00 staq bp|gate_entry_data.vcpu_time 000161 4a 4 00312 2353 20 lda pds$page_waits 000162 aa 6 00070 1353 00 sbla .pf 000163 aa 2 00004 0553 00 asa bp|gate_entry_data.page_waits 000164 aa 2 00005 0543 00 aos bp|gate_entry_data.calls 000165 inhibit off <-><-><-><-><-><-><-><-><-><-><-><-> " Poll for ring alarms 000165 aa 6 00050 7545 00 sra .temp Borrow from time calc 000166 aa 6 00050 2341 00 szn .temp Zero? 000167 0a 000175 6000 00 tze .return_code_return 000170 aa 6 00020 3515 20 epp1 sp|stack_frame.prev_sp,* "possible ring alarm 000171 aa 1 00024 2131 20 epaq pr1|stack_frame.return_ptr,* 000172 aa 000007 3750 07 ana 7,dl " ring number to which we return 000173 aa 6 00050 1151 00 cmpa .temp 000174 0a 000176 6050 00 tpl .ring_alarm " ring alarm will occur 000175 .return_code_return: 000175 aa 7 00042 7101 20 return 000176 .ring_alarm: " perhaps we can handle without faults? 000176 aa 2 00006 0541 00 aos bp|gate_entry_data.ring_alarms 000177 aa 6 00050 4501 00 stz .temp " return argument for ring_alarm$poll 000200 0a 000220 2370 00 ldaq .one_arg_header 000201 aa 6 00100 7571 00 staq .ring_alarm_arg_list 000202 aa 6 00050 3515 00 epp1 .temp 000203 aa 6 00102 2515 00 spri1 .ring_alarm_arg_list+2 000204 aa 6 00100 3501 00 eppap .ring_alarm_arg_list 000205 4a 4 00314 3521 20 short_call ring_alarm$poll 000206 aa 7 00036 6701 20 000207 aa 6 00030 3701 20 000210 aa 6 00050 2341 00 szn .temp 000211 0a 000175 6000 00 tze .return_code_return 000212 aa 6 00020 3721 20 eppsp sp|stack_frame.prev_sp,* 000213 4a 4 00316 6521 20 sprisp pds$pre_empt_poll_return " short-return from here 000214 aa 7 00022 3515 20 epp1 sb|stack_header.stack_begin_ptr,* " abandoning this stack frame. 000215 aa 7 00024 2515 00 spri1 sb|stack_header.stack_end_ptr " Leave SB as stack_0, so pxss can get to operators. 000216 4a 4 00320 7101 20 tra pxss$pre_empt_poll tempd .ring_alarm_arg_list(2) 000217 aa 000000 0110 03 even 000220 .one_arg_header: 000220 aa 000004 000004 vfd 17/2,1/0,18/4 000221 aa 000000 000000 vfd 18/0,18/0 27 28 hgate log_general,access_audit_,log_general,0 000001 segdef log_general 000001 log_general: 000001 0a 000223 7100 00 tra log_general.e 000222 a8 000000 000010 zero 0*2,log_general.t 000223 log_general.e: 000223 0a 000103 7020 00 tsx2 .setup 000224 aa 000000 6340 07 ldi =0,dl 000225 4a 4 00322 3521 20 short_call access_audit_$log_general(ap|0) 000226 aa 7 00036 6701 20 000227 aa 6 00030 3701 20 000230 9a 4 00010 3521 00 eppbp lp|log_general.t 000231 0a 000146 7100 00 tra .return_code 000010 log_general.t: 000010 bss ,gate_entry_data_size 29 hgate log_general_user,access_audit_,log_general_user,0 000002 segdef log_general_user 000002 log_general_user: 000002 0a 000233 7100 00 tra log_general_user.e 000232 a8 000000 000020 zero 0*2,log_general_user.t 000233 log_general_user.e: 000233 0a 000103 7020 00 tsx2 .setup 000234 aa 000000 6340 07 ldi =0,dl 000235 4a 4 00324 3521 20 short_call access_audit_$log_general_user(ap|0) 000236 aa 7 00036 6701 20 000237 aa 6 00030 3701 20 000240 9a 4 00020 3521 00 eppbp lp|log_general_user.t 000241 0a 000146 7100 00 tra .return_code 000020 log_general_user.t: 000020 bss ,gate_entry_data_size 30 hgate log_obj_class_range,access_audit_,log_obj_class_range,0 000003 segdef log_obj_class_range 000003 log_obj_class_range: 000003 0a 000243 7100 00 tra log_obj_class_range.e 000242 a8 000000 000030 zero 0*2,log_obj_class_range.t 000243 log_obj_class_range.e: 000243 0a 000103 7020 00 tsx2 .setup 000244 aa 000000 6340 07 ldi =0,dl 000245 4a 4 00326 3521 20 short_call access_audit_$log_obj_class_range(ap|0) 000246 aa 7 00036 6701 20 000247 aa 6 00030 3701 20 000250 9a 4 00030 3521 00 eppbp lp|log_obj_class_range.t 000251 0a 000146 7100 00 tra .return_code 000030 log_obj_class_range.t: 000030 bss ,gate_entry_data_size 31 hgate log_obj_class_range_user,access_audit_,log_obj_class_range_user,0 000004 segdef log_obj_class_range_user 000004 log_obj_class_range_user: 000004 0a 000253 7100 00 tra log_obj_class_range_user.e 000252 a8 000000 000040 zero 0*2,log_obj_class_range_user.t 000253 log_obj_class_range_user.e: 000253 0a 000103 7020 00 tsx2 .setup 000254 aa 000000 6340 07 ldi =0,dl 000255 4a 4 00330 3521 20 short_call access_audit_$log_obj_class_range_user(ap|0) 000256 aa 7 00036 6701 20 000257 aa 6 00030 3701 20 000260 9a 4 00040 3521 00 eppbp lp|log_obj_class_range_user.t 000261 0a 000146 7100 00 tra .return_code 000040 log_obj_class_range_user.t: 000040 bss ,gate_entry_data_size 32 hgate log_obj_class,access_audit_,log_obj_class,0 000005 segdef log_obj_class 000005 log_obj_class: 000005 0a 000263 7100 00 tra log_obj_class.e 000262 a8 000000 000050 zero 0*2,log_obj_class.t 000263 log_obj_class.e: 000263 0a 000103 7020 00 tsx2 .setup 000264 aa 000000 6340 07 ldi =0,dl 000265 4a 4 00332 3521 20 short_call access_audit_$log_obj_class(ap|0) 000266 aa 7 00036 6701 20 000267 aa 6 00030 3701 20 000270 9a 4 00050 3521 00 eppbp lp|log_obj_class.t 000271 0a 000146 7100 00 tra .return_code 000050 log_obj_class.t: 000050 bss ,gate_entry_data_size 33 hgate log_obj_class_user,access_audit_,log_obj_class_user,0 000006 segdef log_obj_class_user 000006 log_obj_class_user: 000006 0a 000273 7100 00 tra log_obj_class_user.e 000272 a8 000000 000060 zero 0*2,log_obj_class_user.t 000273 log_obj_class_user.e: 000273 0a 000103 7020 00 tsx2 .setup 000274 aa 000000 6340 07 ldi =0,dl 000275 4a 4 00334 3521 20 short_call access_audit_$log_obj_class_user(ap|0) 000276 aa 7 00036 6701 20 000277 aa 6 00030 3701 20 000300 9a 4 00060 3521 00 eppbp lp|log_obj_class_user.t 000301 0a 000146 7100 00 tra .return_code 000060 log_obj_class_user.t: 000060 bss ,gate_entry_data_size 34 hgate log_obj_path,access_audit_,log_obj_path,0,bad_dir_trap 000007 segdef log_obj_path 000007 log_obj_path: 000007 0a 000303 7100 00 tra log_obj_path.e 000302 a8 000000 000070 zero 0*2,log_obj_path.t 000303 log_obj_path.e: 000303 0a 000103 7020 00 tsx2 .setup 000304 0a 000522 7000 00 tsx0 .set_dir_trap 000305 aa 000000 6340 07 ldi =0,dl 000306 4a 4 00336 3521 20 short_call access_audit_$log_obj_path(ap|0) 000307 aa 7 00036 6701 20 000310 aa 6 00030 3701 20 000311 9a 4 00070 3521 00 eppbp lp|log_obj_path.t 000312 0a 000146 7100 00 tra .return_code 000070 log_obj_path.t: 000070 bss ,gate_entry_data_size 35 hgate log_obj_path_user,access_audit_,log_obj_path_user,0,bad_dir_trap 000010 segdef log_obj_path_user 000010 log_obj_path_user: 000010 0a 000314 7100 00 tra log_obj_path_user.e 000313 a8 000000 000100 zero 0*2,log_obj_path_user.t 000314 log_obj_path_user.e: 000314 0a 000103 7020 00 tsx2 .setup 000315 0a 000522 7000 00 tsx0 .set_dir_trap 000316 aa 000000 6340 07 ldi =0,dl 000317 4a 4 00340 3521 20 short_call access_audit_$log_obj_path_user(ap|0) 000320 aa 7 00036 6701 20 000321 aa 6 00030 3701 20 000322 9a 4 00100 3521 00 eppbp lp|log_obj_path_user.t 000323 0a 000146 7100 00 tra .return_code 000100 log_obj_path_user.t: 000100 bss ,gate_entry_data_size 36 hgate log_obj_ptr,access_audit_,log_obj_ptr,0,bad_dir_trap 000011 segdef log_obj_ptr 000011 log_obj_ptr: 000011 0a 000325 7100 00 tra log_obj_ptr.e 000324 a8 000000 000110 zero 0*2,log_obj_ptr.t 000325 log_obj_ptr.e: 000325 0a 000103 7020 00 tsx2 .setup 000326 0a 000522 7000 00 tsx0 .set_dir_trap 000327 aa 000000 6340 07 ldi =0,dl 000330 4a 4 00342 3521 20 short_call access_audit_$log_obj_ptr(ap|0) 000331 aa 7 00036 6701 20 000332 aa 6 00030 3701 20 000333 9a 4 00110 3521 00 eppbp lp|log_obj_ptr.t 000334 0a 000146 7100 00 tra .return_code 000110 log_obj_ptr.t: 000110 bss ,gate_entry_data_size 37 hgate log_obj_ptr_user,access_audit_,log_obj_ptr_user,0,bad_dir_trap 000012 segdef log_obj_ptr_user 000012 log_obj_ptr_user: 000012 0a 000336 7100 00 tra log_obj_ptr_user.e 000335 a8 000000 000120 zero 0*2,log_obj_ptr_user.t 000336 log_obj_ptr_user.e: 000336 0a 000103 7020 00 tsx2 .setup 000337 0a 000522 7000 00 tsx0 .set_dir_trap 000340 aa 000000 6340 07 ldi =0,dl 000341 4a 4 00344 3521 20 short_call access_audit_$log_obj_ptr_user(ap|0) 000342 aa 7 00036 6701 20 000343 aa 6 00030 3701 20 000344 9a 4 00120 3521 00 eppbp lp|log_obj_ptr_user.t 000345 0a 000146 7100 00 tra .return_code 000120 log_obj_ptr_user.t: 000120 bss ,gate_entry_data_size 38 hgate log_no_process,access_audit_,log_no_process,0 000013 segdef log_no_process 000013 log_no_process: 000013 0a 000347 7100 00 tra log_no_process.e 000346 a8 000000 000130 zero 0*2,log_no_process.t 000347 log_no_process.e: 000347 0a 000103 7020 00 tsx2 .setup 000350 aa 000000 6340 07 ldi =0,dl 000351 4a 4 00346 3521 20 short_call access_audit_$log_no_process(ap|0) 000352 aa 7 00036 6701 20 000353 aa 6 00030 3701 20 000354 9a 4 00130 3521 00 eppbp lp|log_no_process.t 000355 0a 000146 7100 00 tra .return_code 000130 log_no_process.t: 000130 bss ,gate_entry_data_size 39 hgate check_general,access_audit_,check_general,3 000014 segdef check_general 000014 check_general: 000014 0a 000357 7100 00 tra check_general.e 000356 a8 000006 000140 zero 3*2,check_general.t 000357 check_general.e: 000357 0a 000103 7020 00 tsx2 .setup 000360 aa 000000 6340 07 ldi =0,dl 000361 4a 4 00350 3521 20 short_call access_audit_$check_general(ap|0) 000362 aa 7 00036 6701 20 000363 aa 6 00030 3701 20 000364 9a 4 00140 3521 00 eppbp lp|check_general.t 000365 0a 000146 7100 00 tra .return_code 000140 check_general.t: 000140 bss ,gate_entry_data_size 40 hgate check_general_user,access_audit_,check_general_user,5 000015 segdef check_general_user 000015 check_general_user: 000015 0a 000367 7100 00 tra check_general_user.e 000366 a8 000012 000150 zero 5*2,check_general_user.t 000367 check_general_user.e: 000367 0a 000103 7020 00 tsx2 .setup 000370 aa 000000 6340 07 ldi =0,dl 000371 4a 4 00352 3521 20 short_call access_audit_$check_general_user(ap|0) 000372 aa 7 00036 6701 20 000373 aa 6 00030 3701 20 000374 9a 4 00150 3521 00 eppbp lp|check_general_user.t 000375 0a 000146 7100 00 tra .return_code 000150 check_general_user.t: 000150 bss ,gate_entry_data_size 41 hgate check_obj_class_range,access_audit_,check_obj_class_range,4 000016 segdef check_obj_class_range 000016 check_obj_class_range: 000016 0a 000377 7100 00 tra check_obj_class_range.e 000376 a8 000010 000160 zero 4*2,check_obj_class_range.t 000377 check_obj_class_range.e: 000377 0a 000103 7020 00 tsx2 .setup 000400 aa 000000 6340 07 ldi =0,dl 000401 4a 4 00354 3521 20 short_call access_audit_$check_obj_class_range(ap|0) 000402 aa 7 00036 6701 20 000403 aa 6 00030 3701 20 000404 9a 4 00160 3521 00 eppbp lp|check_obj_class_range.t 000405 0a 000146 7100 00 tra .return_code 000160 check_obj_class_range.t: 000160 bss ,gate_entry_data_size 42 hgate check_obj_class_range_user,access_audit_,check_obj_class_range_user,6 000017 segdef check_obj_class_range_user 000017 check_obj_class_range_user: 000017 0a 000407 7100 00 tra check_obj_class_range_user.e 000406 a8 000014 000170 zero 6*2,check_obj_class_range_user.t 000407 check_obj_class_range_user.e: 000407 0a 000103 7020 00 tsx2 .setup 000410 aa 000000 6340 07 ldi =0,dl 000411 4a 4 00356 3521 20 short_call access_audit_$check_obj_class_range_user(ap|0) 000412 aa 7 00036 6701 20 000413 aa 6 00030 3701 20 000414 9a 4 00170 3521 00 eppbp lp|check_obj_class_range_user.t 000415 0a 000146 7100 00 tra .return_code 000170 check_obj_class_range_user.t: 000170 bss ,gate_entry_data_size 43 hgate check_obj_class,access_audit_,check_obj_class,4 000020 segdef check_obj_class 000020 check_obj_class: 000020 0a 000417 7100 00 tra check_obj_class.e 000416 a8 000010 000200 zero 4*2,check_obj_class.t 000417 check_obj_class.e: 000417 0a 000103 7020 00 tsx2 .setup 000420 aa 000000 6340 07 ldi =0,dl 000421 4a 4 00360 3521 20 short_call access_audit_$check_obj_class(ap|0) 000422 aa 7 00036 6701 20 000423 aa 6 00030 3701 20 000424 9a 4 00200 3521 00 eppbp lp|check_obj_class.t 000425 0a 000146 7100 00 tra .return_code 000200 check_obj_class.t: 000200 bss ,gate_entry_data_size 44 hgate check_obj_class_user,access_audit_,check_obj_class_user,6 000021 segdef check_obj_class_user 000021 check_obj_class_user: 000021 0a 000427 7100 00 tra check_obj_class_user.e 000426 a8 000014 000210 zero 6*2,check_obj_class_user.t 000427 check_obj_class_user.e: 000427 0a 000103 7020 00 tsx2 .setup 000430 aa 000000 6340 07 ldi =0,dl 000431 4a 4 00362 3521 20 short_call access_audit_$check_obj_class_user(ap|0) 000432 aa 7 00036 6701 20 000433 aa 6 00030 3701 20 000434 9a 4 00210 3521 00 eppbp lp|check_obj_class_user.t 000435 0a 000146 7100 00 tra .return_code 000210 check_obj_class_user.t: 000210 bss ,gate_entry_data_size 45 hgate check_obj_path,access_audit_,check_obj_path,4,bad_dir_trap 000022 segdef check_obj_path 000022 check_obj_path: 000022 0a 000437 7100 00 tra check_obj_path.e 000436 a8 000010 000220 zero 4*2,check_obj_path.t 000437 check_obj_path.e: 000437 0a 000103 7020 00 tsx2 .setup 000440 0a 000522 7000 00 tsx0 .set_dir_trap 000441 aa 000000 6340 07 ldi =0,dl 000442 4a 4 00364 3521 20 short_call access_audit_$check_obj_path(ap|0) 000443 aa 7 00036 6701 20 000444 aa 6 00030 3701 20 000445 9a 4 00220 3521 00 eppbp lp|check_obj_path.t 000446 0a 000146 7100 00 tra .return_code 000220 check_obj_path.t: 000220 bss ,gate_entry_data_size 46 hgate check_obj_path_user,access_audit_,check_obj_path_user,6,bad_dir_trap 000023 segdef check_obj_path_user 000023 check_obj_path_user: 000023 0a 000450 7100 00 tra check_obj_path_user.e 000447 a8 000014 000230 zero 6*2,check_obj_path_user.t 000450 check_obj_path_user.e: 000450 0a 000103 7020 00 tsx2 .setup 000451 0a 000522 7000 00 tsx0 .set_dir_trap 000452 aa 000000 6340 07 ldi =0,dl 000453 4a 4 00366 3521 20 short_call access_audit_$check_obj_path_user(ap|0) 000454 aa 7 00036 6701 20 000455 aa 6 00030 3701 20 000456 9a 4 00230 3521 00 eppbp lp|check_obj_path_user.t 000457 0a 000146 7100 00 tra .return_code 000230 check_obj_path_user.t: 000230 bss ,gate_entry_data_size 47 hgate check_obj_ptr,access_audit_,check_obj_ptr,4,bad_dir_trap 000024 segdef check_obj_ptr 000024 check_obj_ptr: 000024 0a 000461 7100 00 tra check_obj_ptr.e 000460 a8 000010 000240 zero 4*2,check_obj_ptr.t 000461 check_obj_ptr.e: 000461 0a 000103 7020 00 tsx2 .setup 000462 0a 000522 7000 00 tsx0 .set_dir_trap 000463 aa 000000 6340 07 ldi =0,dl 000464 4a 4 00370 3521 20 short_call access_audit_$check_obj_ptr(ap|0) 000465 aa 7 00036 6701 20 000466 aa 6 00030 3701 20 000467 9a 4 00240 3521 00 eppbp lp|check_obj_ptr.t 000470 0a 000146 7100 00 tra .return_code 000240 check_obj_ptr.t: 000240 bss ,gate_entry_data_size 48 hgate check_obj_ptr_user,access_audit_,check_obj_ptr_user,6,bad_dir_trap 000025 segdef check_obj_ptr_user 000025 check_obj_ptr_user: 000025 0a 000472 7100 00 tra check_obj_ptr_user.e 000471 a8 000014 000250 zero 6*2,check_obj_ptr_user.t 000472 check_obj_ptr_user.e: 000472 0a 000103 7020 00 tsx2 .setup 000473 0a 000522 7000 00 tsx0 .set_dir_trap 000474 aa 000000 6340 07 ldi =0,dl 000475 4a 4 00372 3521 20 short_call access_audit_$check_obj_ptr_user(ap|0) 000476 aa 7 00036 6701 20 000477 aa 6 00030 3701 20 000500 9a 4 00250 3521 00 eppbp lp|check_obj_ptr_user.t 000501 0a 000146 7100 00 tra .return_code 000250 check_obj_ptr_user.t: 000250 bss ,gate_entry_data_size 49 hgate get_audit_meters,access_audit_util_,get_audit_meters,4 000026 segdef get_audit_meters 000026 get_audit_meters: 000026 0a 000503 7100 00 tra get_audit_meters.e 000502 a8 000010 000260 zero 4*2,get_audit_meters.t 000503 get_audit_meters.e: 000503 0a 000103 7020 00 tsx2 .setup 000504 aa 000000 6340 07 ldi =0,dl 000505 4a 4 00374 3521 20 short_call access_audit_util_$get_audit_meters(ap|0) 000506 aa 7 00036 6701 20 000507 aa 6 00030 3701 20 000510 9a 4 00260 3521 00 eppbp lp|get_audit_meters.t 000511 0a 000146 7100 00 tra .return_code 000260 get_audit_meters.t: 000260 bss ,gate_entry_data_size 50 hgate get_process_audit_flags,access_audit_util_,get_audit_flags,1 000027 segdef get_process_audit_flags 000027 get_process_audit_flags: 000027 0a 000513 7100 00 tra get_process_audit_flags.e 000512 a8 000002 000270 zero 1*2,get_process_audit_flags.t 000513 get_process_audit_flags.e: 000513 0a 000103 7020 00 tsx2 .setup 000514 aa 000000 6340 07 ldi =0,dl 000515 4a 4 00376 3521 20 short_call access_audit_util_$get_audit_flags(ap|0) 000516 aa 7 00036 6701 20 000517 aa 6 00030 3701 20 000520 9a 4 00270 3521 00 eppbp lp|get_process_audit_flags.t 000521 0a 000146 7100 00 tra .return_code 000270 get_process_audit_flags.t: 000270 bss ,gate_entry_data_size 51 52 bad_dir_handler include on_unit 5-1 " 5-2 " BEGIN INCLUDE FILE --- on_unit.incl.alm 5/75 RAB 5-3 " 000000 5-4 equ on_unit.name,0 000002 5-5 equ on_unit.body,2 000004 5-6 equ on_unit.size,4 000005 5-7 equ on_unit.next,5 upper offset relative to stack FRAME 000005 5-8 equ on_unit.flags,5 lower 000006 5-9 equ on_unit.file,6 000010 5-10 equ on_unit.file_copy,8 5-11 " 5-12 " END INCLUDE FILE --- on_unit.incl.alm 5-13 " use transfer_vector 000030 .handler_entry: 000030 0a 000545 7100 00 tra .handler 000031 .handler_restart_entry: 000031 0a 000605 7100 00 tra .handler_restart_point use main 000522 .set_dir_trap: 000522 aa 6 00071 7401 00 stx0 .entryp save for restart 000523 aa 000100 1004 00 mlr (),(pr),fill(000) 000524 aa 000000 000000 desc9a 0,0 000525 aa 600056 000050 desc9a .on_unit,10*4 000526 0a 000542 3520 00 eppbp .bad_dir_name 000527 aa 6 00056 2521 00 spribp .on_unit+on_unit.name 000530 0a 000030 3520 00 eppbp .handler_entry 000531 aa 6 00060 2521 00 spribp .on_unit+on_unit.body 000532 0a 000544 7210 00 lxl1 .bad_dir_desc 000533 aa 6 00062 4411 00 sxl1 .on_unit+on_unit.size 000534 aa 6 00056 6351 00 eaa .on_unit set up on-unit for bad_dir_ 000535 aa 6 00000 1351 03 sbla sp|0,du .. make rel to sp 000536 aa 6 00036 7551 00 sta sp|stack_frame.on_unit_rel_ptrs 000537 aa 000100 2350 07 lda stack_frame.condition_bit,dl 000540 aa 6 00020 2551 00 orsa sp|stack_frame.flag_word 000541 aa 000000 7100 10 tra 0,0 string bad_dir_ 000542 .bad_dir_name: 000542 aa 142 141 144 137 aci "bad_dir_" 000543 aa 144 151 162 137 000544 .bad_dir_desc: 000544 aa 525000 000010 vfd o9/525,o27/8 000545 aa 6 00000 2131 00 .handler: epaq sp|0 verify that call came from ring 0 000546 aa 777777 3150 07 cana -1,dl check ring number in AL 000547 0a 000551 6000 00 tze *+2 000550 aa 000000 000000 zero 0 go way kid you bother me 000551 aa 000120 6270 00 push " ok, we like the call 000552 aa 7 00040 2721 20 000553 0a 000034 3700 20 epplp .my_lp,* 000554 aa 0 00000 2201 00 ldx0 ap|0 get display 000555 aa 0 00002 3521 30 eppbp ap|2,0* 000556 aa 2 00020 2351 00 lda bp|stack_frame.prev_sp 000557 aa 700000 3150 07 cana =o700000,dl from another ring? 000560 0a 000602 6000 00 tze .continue_signal if not, back to signal_ 000561 aa 0 00002 3501 20 eppap ap|2,* Get mcptr 000562 aa 0 00000 3501 20 eppap ap|0,* .. 000563 aa 2 00076 2501 00 spriap bp|.mcptr .. save in gate frame 000564 aa 6 00054 2521 00 spribp .label_variable+2 000565 0a 000031 3520 00 eppbp .handler_restart_entry 000566 aa 6 00052 2521 00 spribp .label_variable 000567 aa 6 00052 3521 00 eppbp .label_variable 000570 aa 6 00060 2521 00 spribp .unwinder_arglist+2 000571 aa 004000 4310 07 fld =1b24,dl 000572 aa 6 00056 7571 00 staq .unwinder_arglist 000573 aa 6 00000 2541 00 call unwinder_$unwinder_(.unwinder_arglist) 000574 aa 6 00056 3501 00 000575 4a 4 00302 3521 20 000576 aa 6 00040 7531 00 000577 aa 7 00036 6701 20 000600 aa 6 00000 1731 00 000601 aa 6 00040 0731 00 000602 .continue_signal: 000602 aa 400000 2350 03 lda =o400000,du "1"b 000603 aa 0 00012 7551 20 sta ap|10,* set continue bit 000604 aa 7 00042 7101 20 return 000605 .handler_restart_point: 000605 aa 6 00000 2131 00 epaq sp|0 check that call came from ring 0 000606 aa 777777 3150 07 cana -1,dl 000607 0a 000611 6000 00 tze *+2 000610 aa 000001 000000 zero 1 000611 0a 000034 3700 20 epplp .my_lp,* 000612 aa 000101 3350 07 lca stack_frame.condition_bit+1,dl Vanish on-unit 000613 aa 6 00020 3551 00 ansa sp|stack_frame.flag_word 000614 aa 6 00076 3521 00 eppbp .mcptr 000615 aa 6 00074 2521 00 spribp .vfl_arglist+2 000616 aa 004000 4310 07 fld =1b24,dl 000617 aa 6 00072 7571 00 staq .vfl_arglist 000620 4a 4 00400 3521 20 short_call verify_lock$verify_lock_bad_dir(.vfl_arglist) 000621 aa 7 00036 6701 20 000622 aa 6 00030 3701 20 000623 aa 6 00071 2201 00 ldx0 .entryp 000624 aa 6 00032 3501 20 eppap sp|stack_frame.arg_ptr,* 000625 aa 000000 7100 10 tra 0,0 retry the call 53 54 end NO LITERALS NAME DEFINITIONS FOR ENTRY POINTS AND SEGDEFS 000626 5a 000003 000000 000627 5a 000320 600000 000630 aa 000000 000000 000631 55 000013 000002 000632 5a 000002 400003 000633 55 000006 000013 000634 aa 022 141 143 143 000635 aa 145 163 163 137 000636 aa 141 165 144 151 000637 aa 164 137 147 141 000640 aa 164 145 137 000 000641 55 000024 000003 000642 0a 000027 400000 000643 55 000016 000003 000644 aa 027 147 145 164 get_process_audit_flags 000645 aa 137 160 162 157 000646 aa 143 145 163 163 000647 aa 137 141 165 144 000650 aa 151 164 137 146 000651 aa 154 141 147 163 000652 55 000034 000013 000653 0a 000026 400000 000654 55 000027 000003 000655 aa 020 147 145 164 get_audit_meters 000656 aa 137 141 165 144 000657 aa 151 164 137 155 000660 aa 145 164 145 162 000661 aa 163 000 000 000 000662 55 000044 000024 000663 0a 000025 400000 000664 55 000037 000003 000665 aa 022 143 150 145 check_obj_ptr_user 000666 aa 143 153 137 157 000667 aa 142 152 137 160 000670 aa 164 162 137 165 000671 aa 163 145 162 000 000672 55 000053 000034 000673 0a 000024 400000 000674 55 000047 000003 000675 aa 015 143 150 145 check_obj_ptr 000676 aa 143 153 137 157 000677 aa 142 152 137 160 000700 aa 164 162 000 000 000701 55 000063 000044 000702 0a 000023 400000 000703 55 000056 000003 000704 aa 023 143 150 145 check_obj_path_user 000705 aa 143 153 137 157 000706 aa 142 152 137 160 000707 aa 141 164 150 137 000710 aa 165 163 145 162 000711 55 000072 000053 000712 0a 000022 400000 000713 55 000066 000003 000714 aa 016 143 150 145 check_obj_path 000715 aa 143 153 137 157 000716 aa 142 152 137 160 000717 aa 141 164 150 000 000720 55 000103 000063 000721 0a 000021 400000 000722 55 000075 000003 000723 aa 024 143 150 145 check_obj_class_user 000724 aa 143 153 137 157 000725 aa 142 152 137 143 000726 aa 154 141 163 163 000727 aa 137 165 163 145 000730 aa 162 000 000 000 000731 55 000112 000072 000732 0a 000020 400000 000733 55 000106 000003 000734 aa 017 143 150 145 check_obj_class 000735 aa 143 153 137 157 000736 aa 142 152 137 143 000737 aa 154 141 163 163 000740 55 000124 000103 000741 0a 000017 400000 000742 55 000115 000003 000743 aa 032 143 150 145 check_obj_class_range_user 000744 aa 143 153 137 157 000745 aa 142 152 137 143 000746 aa 154 141 163 163 000747 aa 137 162 141 156 000750 aa 147 145 137 165 000751 aa 163 145 162 000 000752 55 000135 000112 000753 0a 000016 400000 000754 55 000127 000003 000755 aa 025 143 150 145 check_obj_class_range 000756 aa 143 153 137 157 000757 aa 142 152 137 143 000760 aa 154 141 163 163 000761 aa 137 162 141 156 000762 aa 147 145 000 000 000763 55 000145 000124 000764 0a 000015 400000 000765 55 000140 000003 000766 aa 022 143 150 145 check_general_user 000767 aa 143 153 137 147 000770 aa 145 156 145 162 000771 aa 141 154 137 165 000772 aa 163 145 162 000 000773 55 000154 000135 000774 0a 000014 400000 000775 55 000150 000003 000776 aa 015 143 150 145 check_general 000777 aa 143 153 137 147 001000 aa 145 156 145 162 001001 aa 141 154 000 000 001002 55 000163 000145 001003 0a 000013 400000 001004 55 000157 000003 001005 aa 016 154 157 147 log_no_process 001006 aa 137 156 157 137 001007 aa 160 162 157 143 001010 aa 145 163 163 000 001011 55 000173 000154 001012 0a 000012 400000 001013 55 000166 000003 001014 aa 020 154 157 147 log_obj_ptr_user 001015 aa 137 157 142 152 001016 aa 137 160 164 162 001017 aa 137 165 163 145 001020 aa 162 000 000 000 001021 55 000201 000163 001022 0a 000011 400000 001023 55 000176 000003 001024 aa 013 154 157 147 log_obj_ptr 001025 aa 137 157 142 152 001026 aa 137 160 164 162 001027 55 000211 000173 001030 0a 000010 400000 001031 55 000204 000003 001032 aa 021 154 157 147 log_obj_path_user 001033 aa 137 157 142 152 001034 aa 137 160 141 164 001035 aa 150 137 165 163 001036 aa 145 162 000 000 001037 55 000220 000201 001040 0a 000007 400000 001041 55 000214 000003 001042 aa 014 154 157 147 log_obj_path 001043 aa 137 157 142 152 001044 aa 137 160 141 164 001045 aa 150 000 000 000 001046 55 000230 000211 001047 0a 000006 400000 001050 55 000223 000003 001051 aa 022 154 157 147 log_obj_class_user 001052 aa 137 157 142 152 001053 aa 137 143 154 141 001054 aa 163 163 137 165 001055 aa 163 145 162 000 001056 55 000237 000220 001057 0a 000005 400000 001060 55 000233 000003 001061 aa 015 154 157 147 log_obj_class 001062 aa 137 157 142 152 001063 aa 137 143 154 141 001064 aa 163 163 000 000 001065 55 000251 000230 001066 0a 000004 400000 001067 55 000242 000003 001070 aa 030 154 157 147 log_obj_class_range_user 001071 aa 137 157 142 152 001072 aa 137 143 154 141 001073 aa 163 163 137 162 001074 aa 141 156 147 145 001075 aa 137 165 163 145 001076 aa 162 000 000 000 001077 55 000261 000237 001100 0a 000003 400000 001101 55 000254 000003 001102 aa 023 154 157 147 log_obj_class_range 001103 aa 137 157 142 152 001104 aa 137 143 154 141 001105 aa 163 163 137 162 001106 aa 141 156 147 145 001107 55 000271 000251 001110 0a 000002 400000 001111 55 000264 000003 001112 aa 020 154 157 147 log_general_user 001113 aa 137 147 145 156 001114 aa 145 162 141 154 001115 aa 137 165 163 145 001116 aa 162 000 000 000 001117 55 000277 000261 001120 0a 000001 400000 001121 55 000274 000003 001122 aa 013 154 157 147 log_general 001123 aa 137 147 145 156 001124 aa 145 162 141 154 001125 55 000304 000271 001126 0a 000034 400000 001127 55 000302 000003 001130 aa 006 056 155 171 .my_lp 001131 aa 137 154 160 000 001132 55 000311 000277 001133 0a 000032 400000 001134 55 000307 000003 001135 aa 007 056 164 166 .tv_end 001136 aa 137 145 156 144 001137 55 000002 000304 001140 6a 000000 400002 001141 55 000314 000003 001142 aa 014 163 171 155 symbol_table 001143 aa 142 157 154 137 001144 aa 164 141 142 154 001145 aa 145 000 000 000 DEFINITIONS HASH TABLE 001146 aa 000000 000065 001147 5a 000124 000000 001150 5a 000211 000000 001151 5a 000072 000000 001152 5a 000173 000000 001153 5a 000053 000000 001154 5a 000271 000000 001155 5a 000034 000000 001156 5a 000135 000000 001157 aa 000000 000000 001160 aa 000000 000000 001161 aa 000000 000000 001162 aa 000000 000000 001163 5a 000103 000000 001164 5a 000277 000000 001165 5a 000063 000000 001166 aa 000000 000000 001167 5a 000044 000000 001170 5a 000145 000000 001171 aa 000000 000000 001172 aa 000000 000000 001173 aa 000000 000000 001174 aa 000000 000000 001175 aa 000000 000000 001176 aa 000000 000000 001177 aa 000000 000000 001200 aa 000000 000000 001201 aa 000000 000000 001202 aa 000000 000000 001203 5a 000311 000000 001204 aa 000000 000000 001205 5a 000237 000000 001206 aa 000000 000000 001207 aa 000000 000000 001210 aa 000000 000000 001211 aa 000000 000000 001212 aa 000000 000000 001213 5a 000013 000000 001214 aa 000000 000000 001215 aa 000000 000000 001216 aa 000000 000000 001217 5a 000251 000000 001220 5a 000304 000000 001221 5a 000220 000000 001222 5a 000112 000000 001223 5a 000201 000000 001224 aa 000000 000000 001225 5a 000163 000000 001226 5a 000261 000000 001227 aa 000000 000000 001230 aa 000000 000000 001231 5a 000024 000000 001232 5a 000154 000000 001233 5a 000230 000000 EXTERNAL NAMES 001234 aa 023 166 145 162 verify_lock_bad_dir 001235 aa 151 146 171 137 001236 aa 154 157 143 153 001237 aa 137 142 141 144 001240 aa 137 144 151 162 001241 aa 013 166 145 162 verify_lock 001242 aa 151 146 171 137 001243 aa 154 157 143 153 001244 aa 017 147 145 164 get_audit_flags 001245 aa 137 141 165 144 001246 aa 151 164 137 146 001247 aa 154 141 147 163 001250 aa 022 141 143 143 access_audit_util_ 001251 aa 145 163 163 137 001252 aa 141 165 144 151 001253 aa 164 137 165 164 001254 aa 151 154 137 000 001255 aa 015 141 143 143 access_audit_ 001256 aa 145 163 163 137 001257 aa 141 165 144 151 001260 aa 164 137 000 000 001261 aa 015 160 162 145 pre_empt_poll 001262 aa 137 145 155 160 001263 aa 164 137 160 157 001264 aa 154 154 000 000 001265 aa 004 160 170 163 pxss 001266 aa 163 000 000 000 001267 aa 024 160 162 145 pre_empt_poll_return 001270 aa 137 145 155 160 001271 aa 164 137 160 157 001272 aa 154 154 137 162 001273 aa 145 164 165 162 001274 aa 156 000 000 000 001275 aa 004 160 157 154 poll 001276 aa 154 000 000 000 001277 aa 012 162 151 156 ring_alarm 001300 aa 147 137 141 154 001301 aa 141 162 155 000 001302 aa 012 160 141 147 page_waits 001303 aa 145 137 167 141 001304 aa 151 164 163 000 001305 aa 015 166 151 162 virtual_delta 001306 aa 164 165 141 154 001307 aa 137 144 145 154 001310 aa 164 141 000 000 001311 aa 010 143 160 165 cpu_time 001312 aa 137 164 151 155 001313 aa 145 000 000 000 001314 aa 003 160 144 163 pds 001315 aa 006 143 154 157 clock_ 001316 aa 143 153 137 000 001317 aa 010 163 171 163 sys_info 001320 aa 137 151 156 146 001321 aa 157 000 000 000 001322 aa 011 165 156 167 unwinder_ 001323 aa 151 156 144 145 001324 aa 162 137 000 000 001325 aa 007 163 151 147 signal_ 001326 aa 156 141 154 137 NO TRAP POINTER WORDS TYPE PAIR BLOCKS 001327 aa 000004 000000 001330 55 000413 000406 001331 aa 000004 000000 001332 55 000422 000416 001333 aa 000004 000000 001334 55 000422 000027 001335 aa 000004 000000 001336 55 000427 000037 001337 aa 000004 000000 001340 55 000427 000047 001341 aa 000004 000000 001342 55 000427 000056 001343 aa 000004 000000 001344 55 000427 000066 001345 aa 000004 000000 001346 55 000427 000075 001347 aa 000004 000000 001350 55 000427 000106 001351 aa 000004 000000 001352 55 000427 000115 001353 aa 000004 000000 001354 55 000427 000127 001355 aa 000004 000000 001356 55 000427 000140 001357 aa 000004 000000 001360 55 000427 000150 001361 aa 000004 000000 001362 55 000427 000157 001363 aa 000004 000000 001364 55 000427 000166 001365 aa 000004 000000 001366 55 000427 000176 001367 aa 000004 000000 001370 55 000427 000204 001371 aa 000004 000000 001372 55 000427 000214 001373 aa 000004 000000 001374 55 000427 000223 001375 aa 000004 000000 001376 55 000427 000233 001377 aa 000004 000000 001400 55 000427 000242 001401 aa 000004 000000 001402 55 000427 000254 001403 aa 000004 000000 001404 55 000427 000264 001405 aa 000004 000000 001406 55 000427 000274 001407 aa 000004 000000 001410 55 000437 000433 001411 aa 000004 000000 001412 55 000466 000441 001413 aa 000004 000000 001414 55 000451 000447 001415 aa 000004 000000 001416 55 000466 000454 001417 aa 000004 000000 001420 55 000466 000457 001421 aa 000004 000000 001422 55 000466 000463 001423 aa 000004 000000 001424 55 000471 000467 001425 aa 000004 000000 001426 55 000474 000474 001427 aa 000004 000000 001430 55 000477 000477 001431 aa 000001 000000 001432 aa 000000 000000 INTERNAL EXPRESSION WORDS 001433 5a 000501 000000 001434 5a 000503 000000 001435 5a 000505 000000 001436 5a 000507 000000 001437 5a 000511 000000 001440 5a 000513 000000 001441 5a 000515 000000 001442 5a 000517 000000 001443 5a 000521 000000 001444 5a 000523 000000 001445 5a 000525 000000 001446 5a 000527 000000 001447 5a 000531 000000 001450 5a 000533 000000 001451 5a 000535 000000 001452 5a 000537 000000 001453 5a 000541 000000 001454 5a 000543 000000 001455 5a 000545 000000 001456 5a 000547 000000 001457 5a 000551 000000 001460 5a 000553 000000 001461 5a 000555 000000 001462 5a 000557 000000 001463 5a 000561 000000 001464 5a 000563 000000 001465 5a 000565 000000 001466 5a 000567 000000 001467 5a 000571 000000 001470 5a 000573 000000 001471 5a 000575 000000 001472 5a 000577 000000 001473 5a 000601 000000 LINKAGE INFORMATION 000000 aa 000000 000000 000001 0a 000626 000000 000002 aa 000000 000000 000003 aa 000000 000000 000004 aa 000000 000000 000005 aa 000000 000000 000006 22 000300 000402 000007 a2 000000 000270 000300 9a 777500 0000 46 signal_|signal_ 000301 5a 000645 0000 00 000302 9a 777476 0000 46 unwinder_|unwinder_ 000303 5a 000644 0000 00 000304 9a 777474 0000 46 sys_info|clock_ 000305 5a 000643 0000 20 000306 9a 777472 0000 46 pds|cpu_time 000307 5a 000642 0000 00 000310 9a 777470 0000 46 pds|virtual_delta 000311 5a 000641 0000 00 000312 9a 777466 0000 46 pds|page_waits 000313 5a 000640 0000 00 000314 9a 777464 0000 46 ring_alarm|poll 000315 5a 000637 0000 00 000316 9a 777462 0000 46 pds|pre_empt_poll_return 000317 5a 000636 0000 00 000320 9a 777460 0000 46 pxss|pre_empt_poll 000321 5a 000635 0000 00 000322 9a 777456 0000 46 access_audit_|log_general 000323 5a 000634 0000 00 000324 9a 777454 0000 46 access_audit_|log_general_user 000325 5a 000633 0000 00 000326 9a 777452 0000 46 access_audit_|log_obj_class_range 000327 5a 000632 0000 00 000330 9a 777450 0000 46 access_audit_|log_obj_class_range_user 000331 5a 000631 0000 00 000332 9a 777446 0000 46 access_audit_|log_obj_class 000333 5a 000630 0000 00 000334 9a 777444 0000 46 access_audit_|log_obj_class_user 000335 5a 000627 0000 00 000336 9a 777442 0000 46 access_audit_|log_obj_path 000337 5a 000626 0000 00 000340 9a 777440 0000 46 access_audit_|log_obj_path_user 000341 5a 000625 0000 00 000342 9a 777436 0000 46 access_audit_|log_obj_ptr 000343 5a 000624 0000 00 000344 9a 777434 0000 46 access_audit_|log_obj_ptr_user 000345 5a 000623 0000 00 000346 9a 777432 0000 46 access_audit_|log_no_process 000347 5a 000622 0000 00 000350 9a 777430 0000 46 access_audit_|check_general 000351 5a 000621 0000 00 000352 9a 777426 0000 46 access_audit_|check_general_user 000353 5a 000620 0000 00 000354 9a 777424 0000 46 access_audit_|check_obj_class_range 000355 5a 000617 0000 00 000356 9a 777422 0000 46 access_audit_|check_obj_class_range_user 000357 5a 000616 0000 00 000360 9a 777420 0000 46 access_audit_|check_obj_class 000361 5a 000615 0000 00 000362 9a 777416 0000 46 access_audit_|check_obj_class_user 000363 5a 000614 0000 00 000364 9a 777414 0000 46 access_audit_|check_obj_path 000365 5a 000613 0000 00 000366 9a 777412 0000 46 access_audit_|check_obj_path_user 000367 5a 000612 0000 00 000370 9a 777410 0000 46 access_audit_|check_obj_ptr 000371 5a 000611 0000 00 000372 9a 777406 0000 46 access_audit_|check_obj_ptr_user 000373 5a 000610 0000 00 000374 9a 777404 0000 46 access_audit_util_|get_audit_meters 000375 5a 000607 0000 00 000376 9a 777402 0000 46 access_audit_util_|get_audit_flags 000377 5a 000606 0000 00 000400 9a 777400 0000 46 verify_lock|verify_lock_bad_dir 000401 5a 000605 0000 00 SYMBOL INFORMATION SYMBOL TABLE HEADER 000000 aa 000000 000001 000001 aa 163171 155142 000002 aa 164162 145145 000003 aa 000000 000010 000004 aa 000000 117244 000005 aa 361023 525721 000006 aa 000000 117547 000007 aa 260250 752344 000010 aa 141154 155040 000011 aa 040040 040040 000012 aa 000024 000040 000013 aa 000034 000040 000014 aa 000044 000100 000015 aa 000002 000002 000016 aa 000064 000000 000017 aa 000000 000417 000020 aa 000000 000207 000021 aa 000316 000265 000022 aa 000405 000207 000023 aa 000064 000000 000024 aa 101114 115040 000025 aa 126145 162163 000026 aa 151157 156040 000027 aa 070056 061064 000030 aa 040115 141162 000031 aa 143150 040061 000032 aa 071070 071040 000033 aa 040040 040040 000034 aa 110151 162156 000035 aa 145151 163145 000036 aa 156056 123171 000037 aa 163115 141151 000040 aa 156164 056141 000041 aa 040040 040040 000042 aa 040040 040040 000043 aa 040040 040040 000044 aa 055164 141162 000045 aa 147145 164040 000046 aa 154066 070040 000047 aa 040040 040040 000050 aa 040040 040040 000051 aa 040040 040040 000052 aa 040040 040040 000053 aa 040040 040040 000054 aa 040040 040040 000055 aa 040040 040040 000056 aa 040154 151163 000057 aa 164040 163171 000060 aa 155142 157154 000061 aa 163040 040040 000062 aa 040040 040040 000063 aa 040040 040040 000064 aa 000000 000001 000065 aa 000000 000006 000066 aa 000116 000067 000067 aa 175453 020726 000070 aa 000000 117547 000071 aa 207360 200000 000072 aa 000134 000041 000073 aa 134571 651553 000074 aa 000000 113462 000075 aa 317506 600000 000076 aa 000145 000042 000077 aa 147777 464111 000100 aa 000000 115000 000101 aa 507463 000000 000102 aa 000156 000041 000103 aa 052721 247134 000104 aa 000000 105272 000105 aa 317215 400000 000106 aa 000167 000037 000107 aa 127236 043523 000110 aa 000000 112724 000111 aa 701744 400000 000112 aa 000177 000035 000113 aa 043243 130223 000114 aa 000000 102727 000115 aa 712743 600000 000116 aa 076163 160145 >special_ldd>install>MR12.3-1114>access_audit_gate_.alm 000117 aa 143151 141154 000120 aa 137154 144144 000121 aa 076151 156163 000122 aa 164141 154154 000123 aa 076115 122061 000124 aa 062056 063055 000125 aa 061061 061064 000126 aa 076141 143143 000127 aa 145163 163137 000130 aa 141165 144151 000131 aa 164137 147141 000132 aa 164145 137056 000133 aa 141154 155040 000134 aa 076154 144144 >ldd>include>gate_macros.incl.alm 000135 aa 076151 156143 000136 aa 154165 144145 000137 aa 076147 141164 000140 aa 145137 155141 000141 aa 143162 157163 000142 aa 056151 156143 000143 aa 154056 141154 000144 aa 155040 040040 000145 aa 076154 144144 >ldd>include>stack_header.incl.alm 000146 aa 076151 156143 000147 aa 154165 144145 000150 aa 076163 164141 000151 aa 143153 137150 000152 aa 145141 144145 000153 aa 162056 151156 000154 aa 143154 056141 000155 aa 154155 040040 000156 aa 076154 144144 >ldd>include>stack_frame.incl.alm 000157 aa 076151 156143 000160 aa 154165 144145 000161 aa 076163 164141 000162 aa 143153 137146 000163 aa 162141 155145 000164 aa 056151 156143 000165 aa 154056 141154 000166 aa 155040 040040 000167 aa 076154 144144 >ldd>include>gate_data.incl.alm 000170 aa 076151 156143 000171 aa 154165 144145 000172 aa 076147 141164 000173 aa 145137 144141 000174 aa 164141 056151 000175 aa 156143 154056 000176 aa 141154 155040 000177 aa 076154 144144 >ldd>include>on_unit.incl.alm 000200 aa 076151 156143 000201 aa 154165 144145 000202 aa 076157 156137 000203 aa 165156 151164 000204 aa 056151 156143 000205 aa 154056 141154 000206 aa 155040 040040 MULTICS ASSEMBLY CROSS REFERENCE LISTING Value Symbol Source file Line number 36 .actor access_audit_gate_: 26. 544 .bad_dir_desc access_audit_gate_: 52. 542 .bad_dir_name access_audit_gate_: 52. 602 .continue_signal access_audit_gate_: 52. 72 .defs_loop access_audit_gate_: 26. 71 .entryp access_audit_gate_: 26, 52. 135 .gate_errordesc access_audit_gate_: 26. 132 .gate_errorname access_audit_gate_: 26. 545 .handler access_audit_gate_: 52. 30 .handler_entry access_audit_gate_: 52. 31 .handler_restart_entry access_audit_gate_: 52. 605 .handler_restart_point access_audit_gate_: 52. 52 .label_variable access_audit_gate_: 26, 52. 76 .mcptr access_audit_gate_: 26, 52. 34 .my_lp access_audit_gate_: 26, 52. 100 .next_def access_audit_gate_: 26. 136 .no_gate_error access_audit_gate_: 26. 220 .one_arg_header access_audit_gate_: 26. 56 .on_unit access_audit_gate_: 26, 52. 70 .pf access_audit_gate_: 26. 146 .return_code access_audit_gate_: 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50. 175 .return_code_return access_audit_gate_: 26. 55 .return_name access_audit_gate_: 26. 176 .ring_alarm access_audit_gate_: 26. 100 .ring_alarm_arg_list access_audit_gate_: 26. 70 .search_defs access_audit_gate_: 26. 103 .setup access_audit_gate_: 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50. 522 .set_dir_trap access_audit_gate_: 34, 35, 36, 37, 45, 46, 47, 48, 52. 50 .temp access_audit_gate_: 26. 52 .time1 access_audit_gate_: 26. 54 .time2 access_audit_gate_: 26. 0 .tv_begin access_audit_gate_: 26. 32 .tv_end access_audit_gate_: 26. 56 .unwinder_arglist access_audit_gate_: 26, 52. 72 .vfl_arglist access_audit_gate_: 26, 52. access_audit_ access_audit_gate_: 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48. access_audit_util_ access_audit_gate_: 49, 50. 1170 call_offset stack_header: 80. 14 check_general access_audit_gate_: 39. 357 check_general.e access_audit_gate_: 39. 140 check_general.t access_audit_gate_: 39. 15 check_general_user access_audit_gate_: 40. 367 check_general_user.e access_audit_gate_: 40. 150 check_general_user.t access_audit_gate_: 40. 20 check_obj_class access_audit_gate_: 43. 417 check_obj_class.e access_audit_gate_: 43. 200 check_obj_class.t access_audit_gate_: 43. 16 check_obj_class_range access_audit_gate_: 41. 377 check_obj_class_range.e access_audit_gate_: 41. 160 check_obj_class_range.t access_audit_gate_: 41. 17 check_obj_class_range_user access_audit_gate_: 42. 407 check_obj_class_range_user.e access_audit_gate_: 42. 170 check_obj_class_range_user.t access_audit_gate_: 42. 21 check_obj_class_user access_audit_gate_: 44. 427 check_obj_class_user.e access_audit_gate_: 44. 210 check_obj_class_user.t access_audit_gate_: 44. 22 check_obj_path access_audit_gate_: 45. 437 check_obj_path.e access_audit_gate_: 45. 220 check_obj_path.t access_audit_gate_: 45. 23 check_obj_path_user access_audit_gate_: 46. 450 check_obj_path_user.e access_audit_gate_: 46. 230 check_obj_path_user.t access_audit_gate_: 46. 24 check_obj_ptr access_audit_gate_: 47. 461 check_obj_ptr.e access_audit_gate_: 47. 240 check_obj_ptr.t access_audit_gate_: 47. 25 check_obj_ptr_user access_audit_gate_: 48. 472 check_obj_ptr_user.e access_audit_gate_: 48. 250 check_obj_ptr_user.t access_audit_gate_: 48. clock_ access_audit_gate_: 26. cpu_time access_audit_gate_: 26. 1174 entry_offset stack_header: 84. 5 gate_entry_data.calls access_audit_gate_: 26, gate_data: 30. 0 gate_entry_data.cpu_time access_audit_gate_: 26, gate_data: 27. 4 gate_entry_data.page_waits access_audit_gate_: 26, gate_data: 29. 6 gate_entry_data.ring_alarms access_audit_gate_: 26, gate_data: 31. 2 gate_entry_data.vcpu_time access_audit_gate_: 26, gate_data: 28. 10 gate_entry_data_size access_audit_gate_: 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, gate_data: 25. 2 gate_table.datap gate_data: 20. 1 gate_table.entryl gate_data: 19. 0 gate_table.entryp gate_data: 18. 3 gate_table_size gate_data: 15. get_audit_flags access_audit_gate_: 50. 26 get_audit_meters access_audit_gate_: 49. 503 get_audit_meters.e access_audit_gate_: 49. 260 get_audit_meters.t access_audit_gate_: 49. 27 get_process_audit_flags access_audit_gate_: 50. 513 get_process_audit_flags.e access_audit_gate_: 50. 270 get_process_audit_flags.t access_audit_gate_: 50. 10 linkage access_audit_gate_: 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50. 1 log_general access_audit_gate_: 28. 223 log_general.e access_audit_gate_: 28. 10 log_general.t access_audit_gate_: 28. 2 log_general_user access_audit_gate_: 29. 233 log_general_user.e access_audit_gate_: 29. 20 log_general_user.t access_audit_gate_: 29. 13 log_no_process access_audit_gate_: 38. 347 log_no_process.e access_audit_gate_: 38. 130 log_no_process.t access_audit_gate_: 38. 5 log_obj_class access_audit_gate_: 32. 263 log_obj_class.e access_audit_gate_: 32. 50 log_obj_class.t access_audit_gate_: 32. 3 log_obj_class_range access_audit_gate_: 30. 243 log_obj_class_range.e access_audit_gate_: 30. 30 log_obj_class_range.t access_audit_gate_: 30. 4 log_obj_class_range_user access_audit_gate_: 31. 253 log_obj_class_range_user.e access_audit_gate_: 31. 40 log_obj_class_range_user.t access_audit_gate_: 31. 6 log_obj_class_user access_audit_gate_: 33. 273 log_obj_class_user.e access_audit_gate_: 33. 60 log_obj_class_user.t access_audit_gate_: 33. 7 log_obj_path access_audit_gate_: 34. 303 log_obj_path.e access_audit_gate_: 34. 70 log_obj_path.t access_audit_gate_: 34. 10 log_obj_path_user access_audit_gate_: 35. 314 log_obj_path_user.e access_audit_gate_: 35. 100 log_obj_path_user.t access_audit_gate_: 35. 11 log_obj_ptr access_audit_gate_: 36. 325 log_obj_ptr.e access_audit_gate_: 36. 110 log_obj_ptr.t access_audit_gate_: 36. 12 log_obj_ptr_user access_audit_gate_: 37. 336 log_obj_ptr_user.e access_audit_gate_: 37. 120 log_obj_ptr_user.t access_audit_gate_: 37. 34 main access_audit_gate_: 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 52. 2 on_unit.body access_audit_gate_: 52, on_unit: 5. 6 on_unit.file on_unit: 9. 10 on_unit.file_copy on_unit: 10. 5 on_unit.flags on_unit: 8. 0 on_unit.name access_audit_gate_: 52, on_unit: 4. 5 on_unit.next on_unit: 7. 4 on_unit.size access_audit_gate_: 52, on_unit: 6. page_waits access_audit_gate_: 26. pds access_audit_gate_: 26. poll access_audit_gate_: 26. pre_empt_poll access_audit_gate_: 26. pre_empt_poll_return access_audit_gate_: 26. 1171 push_offset stack_header: 81. pxss access_audit_gate_: 26. 1173 return_no_pop_offset stack_header: 83. 1172 return_offset stack_header: 82. ring_alarm access_audit_gate_: 26. signal_ access_audit_gate_: 26. 124 signal_arglist access_audit_gate_: 26. 73 stach_header.trace_top_ptr stack_header: 62. 32 stack_frame.arg_ptr access_audit_gate_: 52, stack_frame: 16. 100 stack_frame.condition_bit access_audit_gate_: 52, stack_frame: 32. 20 stack_frame.condition_word stack_frame: 9. 2000 stack_frame.crawl_out_bit stack_frame: 28. 26 stack_frame.entry_ptr stack_frame: 13. 20 stack_frame.flag_word access_audit_gate_: 52, stack_frame: 24. 400 stack_frame.link_trap_bit stack_frame: 30. 30 stack_frame.lp_ptr access_audit_gate_: 26, stack_frame: 15. 20000 stack_frame.main_proc_bit stack_frame: 25. 60 stack_frame.min_length stack_frame: 23. 22 stack_frame.next_sp stack_frame: 10. 36 stack_frame.on_unit_rel_ptrs access_audit_gate_: 52, stack_frame: 19. 30 stack_frame.operator_ptr stack_frame: 14. 37 stack_frame.operator_ret_ptr stack_frame: 20. 20 stack_frame.prev_sp access_audit_gate_: 26, 52, stack_frame: 8. 40 stack_frame.regs stack_frame: 22. 24 stack_frame.return_ptr access_audit_gate_: 26, stack_frame: 12. 10000 stack_frame.run_unit_manager stack_frame: 26. 1000 stack_frame.signaller_bit stack_frame: 29. 22 stack_frame.signaller_word stack_frame: 11. 4000 stack_frame.signal_bit stack_frame: 27. 34 stack_frame.static_ptr stack_frame: 17. 200 stack_frame.support_bit stack_frame: 31. 35 stack_frame.support_ptr stack_frame: 18. 37 stack_frame.translator_id stack_frame: 21. 66 stack_header.assign_linkage_ptr stack_header: 59. 32 stack_header.bar_mode_sp stack_header: 42. 36 stack_header.call_op_ptr stack_header: 44. 10 stack_header.clr_ptr stack_header: 27. 6 stack_header.combined_stat_ptr stack_header: 25. 4 stack_header.cpm_data_ptr stack_header: 24. 13 stack_header.cpm_enabled stack_header: 32. 13 stack_header.cur_lot_size stack_header: 31. 64 stack_header.ect_ptr stack_header: 58. 46 stack_header.entry_op_ptr stack_header: 49. 70 stack_header.heap_header_ptr stack_header: 60. 74 stack_header.in_trace stack_header: 63. 52 stack_header.isot_ptr stack_header: 52. 26 stack_header.lot_ptr stack_header: 39. 12 stack_header.main_proc_invoked stack_header: 29. 12 stack_header.max_lot_size stack_header: 28. 20 stack_header.parent_ptr stack_header: 36. 34 stack_header.pl1_operators_ptr stack_header: 43. 40 stack_header.push_op_ptr stack_header: 46. 42 stack_header.return_op_ptr stack_header: 47. 44 stack_header.ret_no_pop_op_ptr stack_header: 48. 62 stack_header.rnt_ptr stack_header: 57. 12 stack_header.run_unit_depth stack_header: 30. 54 stack_header.sct_ptr stack_header: 53. 30 stack_header.signal_ptr stack_header: 41. 22 stack_header.stack_begin_ptr access_audit_gate_: 26, stack_header: 37. 24 stack_header.stack_end_ptr access_audit_gate_: 26, stack_header: 38. 14 stack_header.system_free_ptr stack_header: 33. 60 stack_header.sys_link_info_ptr stack_header: 56. 72 stack_header.trace_frames stack_header: 61. 50 stack_header.trans_op_tv_ptr stack_header: 51. 56 stack_header.unwinder_ptr stack_header: 54. 16 stack_header.user_free_ptr stack_header: 34. 100 stack_header_end stack_header: 64. sys_info access_audit_gate_: 26. 0 trace_frames.count stack_header: 69. 1 trace_frames.top_ptr stack_header: 70. 0 transfer_vector access_audit_gate_: 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 52. 32 tv_end access_audit_gate_: 26. 551 tv_offset stack_header: 75, 80, 81, 82, 83, 84. unwinder_ access_audit_gate_: 52. verify_lock access_audit_gate_: 52. verify_lock_bad_dir access_audit_gate_: 52. virtual_delta access_audit_gate_: 26. NO FATAL ERRORS ----------------------------------------------------------- Historical Background This edition of the Multics software materials and documentation is provided and donated to Massachusetts Institute of Technology by Group BULL including BULL HN Information Systems Inc. as a contribution to computer science knowledge. This donation is made also to give evidence of the common contributions of Massachusetts Institute of Technology, Bell Laboratories, General Electric, Honeywell Information Systems Inc., Honeywell BULL Inc., Groupe BULL and BULL HN Information Systems Inc. to the development of this operating system. Multics development was initiated by Massachusetts Institute of Technology Project MAC (1963-1970), renamed the MIT Laboratory for Computer Science and Artificial Intelligence in the mid 1970s, under the leadership of Professor Fernando Jose Corbato. Users consider that Multics provided the best software architecture for managing computer hardware properly and for executing programs. Many subsequent operating systems incorporated Multics principles. Multics was distributed in 1975 to 2000 by Group Bull in Europe , and in the U.S. by Bull HN Information Systems Inc., as successor in interest by change in name only to Honeywell Bull Inc. and Honeywell Information Systems Inc. . ----------------------------------------------------------- Permission to use, copy, modify, and distribute these programs and their documentation for any purpose and without fee is hereby granted,provided that the below copyright notice and historical background appear in all copies and that both the copyright notice and historical background and this permission notice appear in supporting documentation, and that the names of MIT, HIS, BULL or BULL HN not be used in advertising or publicity pertaining to distribution of the programs without specific prior written permission. Copyright 1972 by Massachusetts Institute of Technology and Honeywell Information Systems Inc. Copyright 2006 by BULL HN Information Systems Inc. Copyright 2006 by Bull SAS All Rights Reserved