COMPILATION LISTING OF SEGMENT uc_ls_destroy_request_ Compiled by: Multics PL/I Compiler, Release 30, of February 16, 1988 Compiled at: Honeywell Bull, Phoenix AZ, SysM Compiled on: 07/13/88 1027.3 mst Wed Options: optimize map 1 /****^ ******************************************** 2* * * 3* * Copyright, (C) Honeywell Bull Inc., 1987 * 4* * * 5* ******************************************** */ 6 7 8 /* * * * * * * * * * * * * * * * * * * * * * * * * * */ 9 /* */ 10 /* This module is part of the Multics Network Architecture (MNA) version of */ 11 /* user control. MNA user control serves users coming into Multics via */ 12 /* separate networks (eg, the Distributed Systems Architecture (DSA) */ 13 /* network. MNA user control is not used for logins through the Multics */ 14 /* Communications System (MCS). A separate MCS user control system serves */ 15 /* MCS users. */ 16 /* */ 17 /* To Be Supplied: */ 18 /* 1) Brief module description. See MDD010 or MTBs 751 and 752 for details */ 19 /* about this module, and its relationship to modules in the MCS user */ 20 /* control system. */ 21 /* 2) Operator error message documentation. This program calls */ 22 /* sys_log_$general but does not contain the required descriptions of */ 23 /* these messages. This omission was waived for initial installation */ 24 /* of the subsystem by the auditor, security coordinator, and by MDC */ 25 /* management. */ 26 /* */ 27 /* * * * * * * * * * * * * * * * * * * * * * * * * * */ 28 29 /****^ HISTORY COMMENTS: 30* 1) change(86-04-04,Swenson), approve(87-07-13,MCR7737), 31* audit(87-05-16,GDixon), install(87-08-04,MR12.1-1055): 32* Initial coding. 33* 2) change(87-04-28,GDixon), approve(87-07-13,MCR7737), 34* audit(87-07-30,Brunelle), install(87-08-04,MR12.1-1055): 35* Updated for change to user_table_entry.incl.pl1. 36* END HISTORY COMMENTS */ 37 38 /* format: style4,indattr */ 39 40 uc_ls_destroy_request_: 41 procedure (P_ls_request_server_info_ptr, 42 P_ls_request_ptr, P_ls_request_lth, 43 P_ls_response_ptr, P_ls_response_lth, 44 P_ls_ipc_reply_ptr, P_code); 45 46 /* Parameters */ 47 48 dcl P_ls_request_server_info_ptr ptr parameter; 49 dcl P_ls_request_ptr ptr parameter; 50 dcl P_ls_request_lth fixed bin (18) parameter; 51 dcl P_ls_response_ptr ptr parameter; 52 dcl P_ls_response_lth fixed bin (18) parameter; 53 dcl P_ls_ipc_reply_ptr ptr parameter; 54 dcl P_code fixed bin (35) parameter; 55 56 /* Automatic */ 57 58 dcl code fixed bin (35) automatic; 59 60 /* Entries */ 61 62 dcl asu_$send_term_signal entry (ptr, fixed bin) returns (bit (1) aligned); 63 dcl dpg_ entry (ptr, char (*)); 64 dcl uc_setup_process_connect_ entry (ptr, ptr, fixed bin (18), ptr, fixed bin (18), ptr, ptr, fixed bin (35)); 65 66 /* Constant */ 67 68 dcl ME char (22) initial ("uc_ls_destroy_request_") internal static options (constant); 69 dcl TRUE bit (1) aligned initial ("1"b) internal static options (constant); 70 71 /* Builtins */ 72 73 dcl (addr, null) builtin; 74 75 76 /* Program */ 77 78 ls_request_server_info_ptr = P_ls_request_server_info_ptr; 79 ls_request_ptr = P_ls_request_ptr; 80 ls_reply_message_ptr = P_ls_ipc_reply_ptr; 81 code = 0; 82 83 call uc_setup_process_connect_ (ls_request_server_info_ptr, 84 ls_request_ptr, P_ls_request_lth, P_ls_response_ptr, 85 P_ls_response_lth, ls_reply_message_ptr, utep, code); 86 if code ^= 0 then 87 call Abort (code, "Destroying process for ^a.^a failed.", 88 login_server_process_request.person_id, 89 login_server_process_request.project_id); 90 91 /**** Tell the request server not to send a reply for this request, yet. */ 92 93 P_ls_ipc_reply_ptr -> ls_reply_message.flags.do_not_reply = TRUE; 94 P_ls_response_lth = 0; 95 ute.logout_type = "dest"; 96 ute.destroy_flag = WAIT_DESTROY_REQUEST; 97 98 if login_server_process_request.other_flags.immediate then 99 call dpg_ (utep, "destroy immediate"); 100 else if ^asu_$send_term_signal (utep, PT_DESTROY_REQUEST) then 101 call dpg_ (utep, "destroy"); 102 else ; /* sent trm_ signal; go away until response comes in */ 103 104 RETURN: 105 P_code = code; 106 return; 107 108 /* * * * * * * * * * * * * * * * * * * * * * * * * * */ 109 /* */ 110 /* Abort: Report errors via sys_log_$general and stop execution. */ 111 /* */ 112 /* Syntax: call Abort (code, ioa_ctl, args); */ 113 /* */ 114 /* * * * * * * * * * * * * * * * * * * * * * * * * * */ 115 116 Abort: 117 procedure options (variable); 118 119 dcl cu_$arg_list_ptr entry returns (ptr); 120 dcl sys_log_$general entry (ptr); 121 122 sl_info = sl_info_code_msg; 123 sl_info.arg_list_ptr = cu_$arg_list_ptr (); 124 sl_info.severity = SL_LOG_SILENT; 125 sl_info.caller = ME; 126 call sys_log_$general (addr (sl_info)); 127 code = sl_info.code; 128 if code ^= 0 then go to RETURN; 129 130 end Abort; 131 132 /* format: off */ 133 /* BEGIN INCLUDE FILE ... dialup_values.incl.pl1 */ 1 2 1 3 /* format: style4 */ 1 4 1 5 /* Values for "cdte.tra_vec" used by dialup_ and others. */ 1 6 1 7 /* Modified by T. Casey April 1976 to add WAIT_NEW_PASSWORD 1 8* - in 1977 and 1978 to add WAIT_(GREETING_MSG DELETE_CHANNEL) 1 9* - and in October 1979 to add WAIT_CONNECT_REQUEST 1 10* Modified by Robert Coren in May 1981 to add TANDD_ATTACH values and 1 11* WAIT_DISCARD_WAKEUP 1 12* Modified by T. Casey, July 1981, for MR9.0, to add WAIT_BEFORE_HANGUP. 1 13* Modified by E. N. Kittlitz, July 1982, to add TTY_MASKED. 1 14**/ 1 15 1 16 /****^ HISTORY COMMENTS: 1 17* 1) change(87-04-20,GDixon), approve(87-07-13,MCR7741), 1 18* audit(87-07-16,Brunelle), install(87-08-04,MR12.1-1056): 1 19* Add constant arrays naming cdte.state, cdte.tra_vec and ute.active values. 1 20* 2) change(87-05-11,GDixon), approve(87-07-13,MCR7741), 1 21* audit(87-07-16,Brunelle), install(87-08-04,MR12.1-1056): 1 22* Add named constants for instance tags. 1 23* END HISTORY COMMENTS */ 1 24 1 25 dcl (WAIT_DIALUP init (1), /* Channel waiting for dialup. */ 1 26 WAIT_ANSWERBACK initial (2), /* WRU sent, waiting for reply */ 1 27 WAIT_LOGIN_LINE init (3), /* Greeting typed, wait for login command. */ 1 28 WAIT_LOGIN_ARGS init (4), /* Want rest of login line */ 1 29 WAIT_OLD_PASSWORD init (5), /* "-cpw" was specified. Wait for old password. */ 1 30 WAIT_PASSWORD init (6), /* Waiting for password. (If "-cpw", repeat of new one.) */ 1 31 WAIT_NEW_PASSWORD init (7), /* "-cpw" was specified. Wait for new password */ 1 32 WAIT_LOGOUT_SIG init (8), /* Channel is hooked up. Wait for logout. */ 1 33 WAIT_LOGOUT init (9), /* A logout has been requested. Wait for process to die */ 1 34 WAIT_LOGOUT_HOLD init (10), /* As above but don't hang up when it dies. */ 1 35 WAIT_DETACH init (11), /* As above but ignore channel afterwards. */ 1 36 WAIT_NEW_PROC init (12), /* As above but make new process and continue. */ 1 37 WAIT_REMOVE init (13), /* As above but completely expunge channel. */ 1 38 WAIT_FIN_PRIV_ATTACH init (14), /* When channel dials up, connect it to user */ 1 39 WAIT_DIAL_RELEASE init (15), /* Waiting for master process to release. */ 1 40 WAIT_DIAL_OUT init (16), /* Waiting for auto call to complete */ 1 41 WAIT_HANGUP init (17), /* Wait for the hangup event to occur for a channel */ 1 42 WAIT_SLAVE_REQUEST init (18), /* Ignore line until someone asks */ 1 43 WAIT_GREETING_MSG init (19), /* Print greeting message and wait for login line */ 1 44 WAIT_DELETE_CHANNEL init (20), /* Channel deleted - mark cdte after process is destroyed */ 1 45 WAIT_CONNECT_REQUEST init (21), /* logged in; awaiting request re disconnected processes */ 1 46 WAIT_TANDD_HANGUP init (22), /* when channel hangs up, proceed with t & d attachment */ 1 47 WAIT_FIN_TANDD_ATTACH init (23), /* when channel dials up, finish t & d attachment */ 1 48 WAIT_DISCARD_WAKEUPS init (24), /* disregard all wakeups on channel */ 1 49 WAIT_BEFORE_HANGUP init (25), /* allow output to print before hanging up */ 1 50 WAIT_DESTROY_REQUEST init (26), /* waiting to continue with destroy request after process has destroyed itself */ 1 51 WAIT_NEW_PROC_REQUEST init (27) /* waiting to continue with new_proc request after process has destroyed itself */ 1 52 ) fixed bin internal static options (constant); 1 53 1 54 dcl TRA_VEC_VALUES (0:13) char (32) aligned int static options (constant) init 1 55 /* names of ute.destroy_flag values */ 1 56 ("", "wait dialup", "wait answerback", "wait login line", /* 0-3 */ 1 57 "wait login args", "wait old password", "wait password", /* 4-6 */ 1 58 "wait new password", "wait logout signal", "wait logout", /* 7-9 */ 1 59 "wait logout hold", "wait detach", "wait new proc", /* 10-12 */ 1 60 "wait remove"); /* -13 */ 1 61 1 62 /* Values for "cdte.state", typewriter state. */ 1 63 1 64 dcl (TTY_MASKED init (-1), /* Terminal channel is there, but masked by MCS */ 1 65 TTY_HUNG init (1), /* Terminal channel is there, but dead. */ 1 66 TTY_KNOWN init (2), /* Channel being "listened" to, awaiting dialup. */ 1 67 TTY_DIALED init (5) /* Channel is dialed up. This is normal state. */ 1 68 ) fixed bin internal static options (constant); 1 69 1 70 dcl STATE_VALUES (-1:5) char (15) aligned int static options (constant) init 1 71 /* names of cdte.state values */ 1 72 ("masked", "dead", "hung up", "listening", "", "", "dialed up"); 1 73 1 74 /* Values for "cdte.in_use" and "ate.active" */ 1 75 1 76 dcl (NOW_FREE init (0), /* Entry is empty. */ 1 77 NOW_HUNG_UP init (1), /* Entry is usable but tty is hung up. */ 1 78 NOW_LISTENING init (2), /* Entry is waiting for phone call. */ 1 79 NOW_DIALED init (3), /* Entry is connected but login not complete. */ 1 80 NOW_LOGGED_IN init (4), /* Entry is logged in but no process. */ 1 81 NOW_HAS_PROCESS init (5), /* Entry has a valid process. */ 1 82 NOW_DIALING init (6), /* Entry (auto_call line) is dialing */ 1 83 NOW_DIALED_OUT init (7) /* Entry (auto_call line) is in use */ 1 84 ) fixed bin internal static options (constant); 1 85 1 86 dcl ACTIVE_VALUES (0:5) char (18) aligned int static options (constant) init 1 87 /* names of ute.active values */ 1 88 ("free", "hung-up", "listening", "dialed", "logged in, no proc", "logged in & proc"); 1 89 1 90 1 91 /**** Values for ute.tag */ 1 92 1 93 dcl (TAG_INTERACTIVE init("a"), 1 94 TAG_UFT init("f"), 1 95 TAG_ABSENTEE init("m"), 1 96 TAG_PROXY init("p"), 1 97 TAG_DAEMON init("z") 1 98 ) char(1) int static options(constant); 1 99 1 100 1 101 /**** Following are constants used to indicate to the process termination 1 102* handler the reason for the process termination. They are used by 1 103* uc_proc_term_handler_, as well as uc_ls_new_proc_request_ and 1 104* uc_ls_destroy_request_. */ 1 105 1 106 dcl ( 1 107 PT_FPE initial (1), 1 108 PT_LOGOUT initial (4), 1 109 PT_NEW_PROC_AUTH initial (13), 1 110 PT_HANGUP initial (20), 1 111 PT_SHUTDOWN initial (21), 1 112 PT_BUMP initial (22), 1 113 PT_ALARM initial (23), 1 114 PT_DETACH initial (24), 1 115 PT_UNBUMP initial (25), 1 116 PT_OPERATOR_TERMINATE initial (27), 1 117 PT_DESTROY_REQUEST initial (30), 1 118 PT_NEW_PROC_REQUEST initial (31) 1 119 ) fixed bin (17) internal static options (constant); 1 120 1 121 /**** Values for ute.preempted: 1 122* -1 user unbumped after term signal sent 1 123* 0 user unbumped; ignore alarm___ 1 124* 1 value internally used in load_ctl_ 1 125* 2 user bumped; when alarm___ comes in, send term signal 1 126* 3 term signal sent; destroy process if termsgnl, alarm___, or cpulimit 1 127* signals come in 1 128* 4 user bumped; process sick, so destroy without sending term signal 1 129* 5 trm_ signal sent, termsgnl received; (if still 3, we never got the 1 130* termsgnl). */ 1 131 1 132 dcl ( 1 133 PREEMPT_UNBUMP initial (-1), 1 134 PREEMPT_UNBUMP_IGNORE_ALARM initial (0), 1 135 PREEMPT_LOAD_CTL initial (1), 1 136 PREEMPT_BUMPED initial (2), 1 137 PREEMPT_TERM_SENT initial (3), 1 138 PREEMPT_BUMPED_NO_TERM initial (4), 1 139 PREEMPT_TERMSGNL_RECEIVED initial (5) 1 140 ) fixed bin (17) internal static options(constant); 1 141 1 142 dcl PREEMPT_VALUES (-1:5) char(28) varying int static options(constant) init( 1 143 "unbumped", 1 144 "not bumped, ignore alarm___", 1 145 "load_ctl_", 1 146 "bumped", 1 147 "bumped, trm_ sent", 1 148 "bumped without trm_", 1 149 "bumped, termsgnl received"); 1 150 1 151 /* END INCLUDE FILE ... dialup_values.incl.pl1 */ 133 134 /* BEGIN INCLUDE FILE ... login_server_messages.incl.pl1 */ 2 2 2 3 /****^ HISTORY COMMENTS: 2 4* 1) change(86-06-30,Coren), approve(86-06-30,MCR7415), 2 5* audit(86-07-02,Margolin), install(86-07-11,MR12.0-1092): 2 6* Initial implementation. 2 7* 2) change(87-04-16,GDixon), approve(87-07-13,MCR7679), 2 8* audit(87-07-16,Brunelle), install(87-08-04,MR12.1-1056): 2 9* A) Add REQUEST_TYPES and RESPONSE_TYPES arrays. 2 10* B) Add login_server_validate_response.last_incorrect_password.time. 2 11* C) Add user_connection_info.line_type. 2 12* D) Add login_server_process_request.minimum_ring. 2 13* 3) change(87-05-14,GDixon), approve(87-07-13,MCR7737), 2 14* audit(87-07-16,Brunelle), install(87-08-04,MR12.1-1056): 2 15* A) Add login_server_process_response.brief. 2 16* B) Add login_server_list_response.initial_ring. 2 17* C) Separate login_server_process_response into fixed and variable parts. 2 18* D) Move user_connection_info into login_server_request_header. 2 19* END HISTORY COMMENTS */ 2 20 2 21 /* This include file defines all the structures passed in message segments 2 22* between a login server process and the Initializer (or "answering service") 2 23* process. For convenience, messages from the server to the initializer, 2 24* passed using the send_ls_request_ subroutine, are called "requests"; 2 25* messages from the initializer to the server, passed using the user_message_ 2 26* mechanism, are called "responses". 2 27**/ 2 28 2 29 /* Request types */ 2 30 2 31 dcl (LS_VALIDATE_REQUEST initial (1), /* validate user ID and password */ 2 32 LS_PROCESS_REQUEST initial (2), /* create or connect to a process */ 2 33 LS_LIST_REQUEST initial (3), /* list disconnected processes */ 2 34 LS_DIAL_REQUEST initial (4), /* find a dial server */ 2 35 LS_DISCONNECT_REQUEST initial (5), /* report disconnection of a login channel */ 2 36 LS_LOGOUT_REQUEST initial (6), /* discard UTE (end of dialogue) */ 2 37 LS_OPERATOR_REQUEST initial (7)) /* log the user in as an operator */ 2 38 fixed bin internal static options (constant); 2 39 2 40 dcl LS_REQUEST_TYPES (7) char (10) internal static options (constant) initial 2 41 ( 2 42 "validate", 2 43 "process", 2 44 "list", 2 45 "dial", 2 46 "disconnect", 2 47 "logout", 2 48 "operator"); 2 49 2 50 dcl ls_request_ptr pointer; 2 51 2 52 /* common header for all requests */ 2 53 2 54 dcl 1 ls_request_header aligned based (ls_request_ptr), 2 55 2 header_version char (8), /* version for this header */ 2 56 2 request_version char (8), /* varies depending on the request */ 2 57 2 request_type fixed bin, 2 58 2 pad1 bit (36), 2 59 2 reply_event_channel fixed bin (71), /* event channel over which reply_message should be sent */ 2 60 2 reply_handle bit (72) aligned, /* used for dispatching response */ 2 61 2 connection_info like user_connection_info; /* connection making this request. */ 2 62 2 63 dcl LS_REQUEST_HEADER_VERSION_1 char (8) initial ("lsrh0001") internal static options (constant); 2 64 2 65 dcl 1 user_connection_info aligned based, /* common info passed in most requests */ 2 66 2 connection_name char (32), 2 67 2 access_class_range (2) bit (72), 2 68 2 terminal_type char (32), 2 69 2 terminal_id char (4), 2 70 2 line_type fixed bin; 2 71 2 72 2 73 2 74 /* "validate" request: validate user ID and password */ 2 75 2 76 dcl 1 login_server_validate_request aligned based (ls_request_ptr), 2 77 2 header like ls_request_header, /* request_type = LS_VALIDATE_REQUEST */ 2 78 2 current_password char (8), /* scrambled */ 2 79 2 authorization bit (72), /* only valid if auth_given = "1"b */ 2 80 2 terminate_event_channel fixed bin (71), /* event channel to notify server when process terminates */ 2 81 2 person_id char (22), /* as specified in login line */ 2 82 2 project_id char (9), /* likewise, might be null string */ 2 83 2 network_connection_type fixed bin, /* see below for values */ 2 84 2 new_password char (8), /* only valid if change_password = "1"b */ 2 85 2 flags, 2 86 3 gpw bit (1) unaligned, /* password generated in response to -generate_password */ 2 87 3 auth_given bit (1) unaligned, /* -authorization specified */ 2 88 3 anonymous bit (1) unaligned, /* "enterp" request */ 2 89 3 anon_no_password bit (1) unaligned, /* "enter" request */ 2 90 3 change_password bit (1) unaligned, /* gave -cpw or -gpw */ 2 91 3 change_default_auth bit (1) unaligned, /* gave -change_default_authorization */ 2 92 3 change_default_proj bit (1) unaligned, /* gave -change_default_project */ 2 93 3 operator bit (1) unaligned, /* gave -operator */ 2 94 3 pad bit (28) unaligned; 2 95 2 96 2 97 dcl LS_VALIDATE_REQUEST_VERSION_1 char (8) internal static options (constant) initial ("lsvr0001"); 2 98 2 99 2 100 2 101 /* "process" request: create a process or reconnect to an existing process for the specified user */ 2 102 2 103 dcl 1 login_server_process_request aligned based (ls_request_ptr), 2 104 2 fixed_part, /* to allow for automatic copies */ 2 105 3 header like ls_request_header, /* request_type = LS_PROCESS_REQUEST */ 2 106 3 handle bit (72), /* as provided in validate_response */ 2 107 3 person_id char (22), /* the real one */ 2 108 3 project_id char (9), /* likewise */ 2 109 3 project_pad fixed bin, 2 110 3 command_type fixed bin, /* login, connect, etc.; see below for names */ 2 111 3 process_number fixed bin, /* 0 if unspecified or irrelevant */ 2 112 3 default_io_module char (32), /* I/O module to use if no outer_module specified */ 2 113 3 switch_flags, /* used to indicate if "switch"-type control args were specified */ 2 114 4 warn_given bit (1) unaligned, 2 115 4 force_given bit (1) unaligned, 2 116 4 save_given bit (1) unaligned, 2 117 4 preempt_given bit (1) unaligned, 2 118 4 brief_given bit (1) unaligned, 2 119 4 pad2 bit (31) unaligned, 2 120 3 switch_values, /* these are only valid if corresponding bit in switch_flags is on */ 2 121 4 warn bit (1) unaligned, 2 122 4 force bit (1) unaligned, 2 123 4 save_on_disconnect bit (1) unaligned, 2 124 4 preempt bit (1) unaligned, 2 125 4 brief bit (1) unaligned, /* "0"b & brief_given => -long */ 2 126 4 pad3 bit (31) unaligned, 2 127 3 other_flags, 2 128 4 init_ring_given bit (1) unaligned, /* "1"b if -ring */ 2 129 4 minimum_ring_given bit (1) unaligned, /* "1"b if MNA terminal interface ring > 1 */ 2 130 4 immediate bit (1) unaligned, /* "1"b => -new_proc (or -destroy) -immediate */ 2 131 4 no_start_up bit (1) unaligned, /* "1"b if -no_start_up */ 2 132 4 pad4 bit (32) unaligned, 2 133 3 initial_ring fixed bin, /* valid iff init_ring_given = "1"b */ 2 134 3 minimum_ring fixed bin, /* ring in which MNA terminal mgr operates */ 2 135 3 home_dir char (168), /* null if not specified */ 2 136 3 outer_module char (32), /* likewise */ 2 137 3 process_overseer char (168), /* likewise */ 2 138 3 subsystem char (168), /* likewise */ 2 139 3 n_args fixed bin, /* how many arguments specified after -ag; if 0, ignore the rest of the structure */ 2 140 2 login_arguments, /* variable part, describes stuff after -ag */ 2 141 3 arg_string_length fixed bin (21), 2 142 3 args (ls_process_request_n_args refer (login_server_process_request.n_args)), 2 143 4 start_index fixed bin (21), /* position in arg_string at which arg (i) starts */ 2 144 4 arg_length fixed bin (21), /* length of arg (i) */ 2 145 3 arg_string char (ls_process_request_arg_string_length refer (login_server_process_request.arg_string_length)); 2 146 2 147 dcl ls_process_request_n_args fixed bin; 2 148 dcl ls_process_request_arg_string_length fixed bin (21); 2 149 2 150 dcl LS_PROCESS_REQUEST_VERSION_1 char (8) internal static options (constant) initial ("lspr0001"); 2 151 2 152 2 153 2 154 /* "list" request: list the user's disconnected processes, if any */ 2 155 2 156 dcl 1 login_server_list_request aligned based (ls_request_ptr), 2 157 2 header like ls_request_header, /* request_type = LS_LIST_REQUEST */ 2 158 2 handle bit (72); 2 159 2 160 dcl LS_LIST_REQUEST_VERSION_1 char (8) internal static options (constant) initial ("lslr0001"); 2 161 2 162 2 163 2 164 /* "dial" request: find a process to accept a dial */ 2 165 2 166 /* Note: because a dial request may or may not have been preceded 2 167* by a validate request/response, the initializer_handle may be null. 2 168**/ 2 169 2 170 dcl 1 login_server_dial_request aligned based (ls_request_ptr), 2 171 2 header like ls_request_header, /* request_type = LS_DIAL_REQUEST */ 2 172 2 initializer_handle bit (72), /* as provided in validate_response (if any) */ 2 173 2 terminate_event_channel fixed bin (71), /* event channel to wake up login server when master process terminates */ 2 174 2 dial_qualifier char (22), 2 175 2 person_id char (22), /* null if not specified */ 2 176 2 project_id char (9), /* likewise */ 2 177 2 user_person_id char (22), /* if -user was specified, otherwise "" */ 2 178 2 user_project_id char (9); /* likewise */ 2 179 2 180 dcl LS_DIAL_REQUEST_VERSION_1 char (8) internal static options (constant) initial ("lsdr0001"); 2 181 2 182 2 183 2 184 /* "disconnect" request: report that a login channel has disconnected */ 2 185 /* Note: this message is sent if the connection is broken either during the login dialogue 2 186* or later on when the process was using it */ 2 187 2 188 dcl 1 login_server_disconnect_request aligned based (ls_request_ptr), 2 189 2 header like ls_request_header, /* request_type = LS_DISCONNECT_REQUEST */ 2 190 2 handle bit (72), /* from original validate_response */ 2 191 2 process_id bit (36); /* ""b if no process established */ 2 192 2 193 dcl LS_DISCONNECT_REQUEST_VERSION_1 char (8) internal static options (constant) initial ("lsdc0001"); 2 194 2 195 2 196 2 197 /* "logout" request: indicates that user entered the "logout" request, ending the dialogue; does not require any response */ 2 198 2 199 dcl 1 login_server_logout_request aligned based (ls_request_ptr), 2 200 2 header like ls_request_header, /* request_type = LS_LOGOUT_REQUEST */ 2 201 2 handle bit (72); 2 202 2 203 dcl LS_LOGOUT_REQUEST_VERSION_1 char (8) internal static options (constant) initial ("lslg0001"); 2 204 2 205 2 206 2 207 /* "operator" request: sign the user on as an operator, the result of either 2 208* "login -operator" or "dial system". Note that in the latter case, there may 2 209* not have been a validate request (if the -user control argument wasn't specified), 2 210* in which case initializer_handle is null, and the person_id and project_id 2 211* are blank. 2 212**/ 2 213 2 214 dcl 1 login_server_operator_request aligned based (ls_request_ptr), 2 215 2 header like ls_request_header, /* request_type = LS_OPERATOR_REQUEST */ 2 216 2 initializer_handle bit (72) aligned, /* as provided in validate_response (if any) */ 2 217 2 terminate_event_channel fixed bin (71), /* event channel for wakeup when connection is dropped */ 2 218 2 person_id char (22), /* likewise */ 2 219 2 project_id char (9), /* likewise */ 2 220 2 virtual_channel char (32); /* if -virtual_channel specified, otherwise "" */ 2 221 2 222 dcl LOGIN_SERVER_OPERATOR_REQUEST_VERSION_1 char (8) internal static options (constant) initial ("lsor0001"); 2 223 2 224 2 225 2 226 /* Response types */ 2 227 2 228 dcl (LS_UNKNOWN_RESPONSE initial (100), /* unknown response type. */ 2 229 LS_VALIDATE_RESPONSE initial (101), /* response to validation request */ 2 230 LS_PROCESS_RESPONSE initial (102), /* response to process request */ 2 231 LS_LIST_RESPONSE initial (103), /* response to list request */ 2 232 LS_DIAL_RESPONSE initial (104), /* response to dial request */ 2 233 LS_TERMINATION_RESPONSE initial (105), /* to notify server of a logout */ 2 234 LS_NEW_PROC_RESPONSE initial (106), /* to notify server of process termination */ 2 235 LS_OPERATOR_RESPONSE initial (107)) /* response to operator request */ 2 236 fixed bin internal static options (constant); 2 237 2 238 dcl LS_RESPONSE_TYPES (100:107) char (10) internal static options (constant) initial 2 239 ( 2 240 "UNKNOWN", 2 241 "validate", 2 242 "process", 2 243 "list", 2 244 "dial", 2 245 "terminate", 2 246 "new_proc", 2 247 "operator"); 2 248 2 249 /* NOTE: the server_handle is not included in the response structures because 2 250* it is provided in the user_message_ structures */ 2 251 2 252 2 253 2 254 dcl ls_response_ptr pointer; 2 255 2 256 /* common header for all responses */ 2 257 2 258 dcl 1 login_server_response_header aligned based (ls_response_ptr), 2 259 2 message_type fixed bin, 2 260 2 header_pad bit (36), /* force doubleword alignment */ 2 261 2 version char (8); 2 262 2 263 2 264 2 265 /* "validate" response: indicate whether user_id/password is valid */ 2 266 2 267 dcl 1 login_server_validate_response aligned based (ls_response_ptr), 2 268 2 header like login_server_response_header, /* message_type = LS_VALIDATE_RESPONSE */ 2 269 2 handle bit (72), /* to be provided by the server in subsequent */ 2 270 /* messages for the same connection */ 2 271 2 authorization bit (72), /* default if none was supplied */ 2 272 2 authorization_range (2) bit (72), /* authorization range permitted for this user */ 2 273 2 status_code fixed bin (35), /* 0 iff user is validated */ 2 274 2 person_id char (22), /* primary name from the PNT */ 2 275 2 project_id char (9), /* primary name from the PNT or PDT */ 2 276 2 n_disconnected_processes fixed bin, /* number of disconnected processes for specified user */ 2 277 2 validate_pad fixed bin, 2 278 2 previous_login_info, /* for printing login message */ 2 279 3 time fixed bin (71), 2 280 3 terminal_type char (32), 2 281 3 terminal_id char (4), 2 282 2 incorrect_passwords fixed bin, /* number of times password given incorrectly */ 2 283 2 last_incorrect_password, /* where it came from */ 2 284 3 time fixed bin (71), 2 285 3 terminal_type char (32), 2 286 3 terminal_id char (4), 2 287 2 password_interval fixed bin, /* limit (in days) for password use or change */ 2 288 2 flags, 2 289 3 disconnect bit (1) unaligned, /* if "1"b, close the connection immediately */ 2 290 3 password_changed bit (1) unal, /* "1"b => changed password */ 2 291 3 default_auth_changed bit (1) unal, /* "1"b => changed default authorization */ 2 292 3 default_proj_changed bit (1) unal, /* "1"b => changed default project */ 2 293 3 password_expired bit (1) unal, /* "1"b => password not changed recently enough */ 2 294 3 password_unused_too_long bit (1) unal, /* "1"b => password hasn't been used recently */ 2 295 3 pad bit (30) unaligned; 2 296 2 297 dcl LS_VALIDATE_RESPONSE_VERSION_1 char (8) internal static options (constant) initial ("lsvs0001"); 2 298 2 299 2 300 2 301 /* "process" response: responds to request to create or connect */ 2 302 2 303 dcl 1 login_server_process_response aligned based (ls_response_ptr), 2 304 2 fixed_part, 2 305 3 header like login_server_response_header, /* message_type = LS_PROCESS_RESPONSE */ 2 306 3 status_code fixed bin (35), /* 0 iff process was created or requested process exists */ 2 307 3 process_id bit (36), 2 308 3 new_handle bit (72), /* changed if reconnecting, etc. to preexisting process, all 0 otherwise */ 2 309 3 authorization bit (72), /* authorization of created or existing process */ 2 310 3 process_group_id char (32), /* Person.Project.tag */ 2 311 3 process_number fixed bin, /* as in, "Your disconnected process #2..." */ 2 312 3 n_disconnected_processes fixed bin, /* valid even if code ^= 0, e.g., if request was ambiguous */ 2 313 3 start_event_channel fixed bin (71), /* event channel to wake up user process on */ 2 314 3 login_instance fixed bin, /* "This is your Nth interactive login" */ 2 315 3 accounting_info, /* for destroyed process, if any */ 2 316 4 cpu_usage fixed bin (71), 2 317 4 cost float bin, 2 318 3 flags, /* except for disconnect and logout, invalid if status_code ^= 0 */ 2 319 4 disconnect bit (1) unaligned, /* "1"b => break the connection immediately */ 2 320 4 logout bit (1) unaligned, /* "1"b => restart login sequence */ 2 321 4 created bit (1) unaligned, /* "1"b => new process created */ 2 322 4 connected bit (1) unaligned, /* "1"b => connected to old process */ 2 323 4 new_proc bit (1) unaligned, /* "1"b => connected after new_proc */ 2 324 4 destroyed bit (1) unaligned, /* "1"b => process destroyed */ 2 325 4 anonymous bit (1) unaligned, /* "1"b => anonymous user ("enter" or "enterp") */ 2 326 4 already_logged_in bit (1) unaligned, /* "1"b => user can't log in because he already is */ 2 327 4 message_coordinator bit (1) unaligned, /* "1"b => this connection is going to be used by the message coordinator */ 2 328 4 brief bit (1) unaligned, /* "1"b => brief user attribute from PDT */ 2 329 4 pad bit (26) unaligned, 2 330 3 initial_ring fixed bin, /* ring in which process was created */ 2 331 3 already_logged_in_info, /* relevant if already_logged_in flag is "1"b */ 2 332 4 connection_name char (32), 2 333 4 terminal_type char (32), 2 334 4 terminal_id char (4), 2 335 2 accounting_message_struc, /* character string assembled by initializer giving error or warnings about the user's account */ 2 336 3 accounting_message_length fixed bin, 2 337 3 accounting_message char (ls_process_response_accounting_message_length refer (login_server_process_response.accounting_message_length)); 2 338 2 339 dcl ls_process_response_accounting_message_length fixed bin; 2 340 2 341 dcl LOGIN_SERVER_PROCESS_RESPONSE_VERSION_1 char (8) internal static options (constant) initial ("lsps0001"); 2 342 2 343 2 344 2 345 /* "list" response: used if create request specified "list" command */ 2 346 2 347 dcl 1 login_server_list_response aligned based (ls_response_ptr), 2 348 2 header like login_server_response_header, /* message_type = LS_LIST_RESPONSE */ 2 349 2 n_processes fixed bin, /* number of disconnected processes (might be 0) */ 2 350 2 pad_header fixed bin, 2 351 2 process_info (login_server_list_response_n_processes refer (login_server_list_response.n_processes)), 2 352 3 creation_time fixed bin (71), 2 353 3 authorization bit (72), 2 354 3 initial_ring fixed bin, 2 355 3 pad_process_info fixed bin, 2 356 3 connection_info like user_connection_info; 2 357 2 358 dcl login_server_list_response_n_processes fixed bin; 2 359 2 360 dcl LOGIN_SERVER_LIST_RESPONSE_VERSION_1 char (8) internal static options (constant) initial ("lslr0001"); 2 361 2 362 2 363 2 364 /* "dial" response: response to dial request */ 2 365 2 366 dcl 1 login_server_dial_response aligned based (ls_response_ptr), 2 367 2 header like login_server_response_header, /* message_type = LS_DIAL_RESPONSE */ 2 368 2 status_code fixed bin (35), /* 0 iff dial server was found and all is OK */ 2 369 2 process_id bit (36), /* of dial server */ 2 370 2 process_group_id char (32), /* likewise */ 2 371 2 authorization bit (72), /* likewise, to make sure connection is usable */ 2 372 2 start_event_channel fixed bin (71), /* event channel to wake up user process on */ 2 373 2 process_ring fixed bin, /* initial ring of dial server */ 2 374 2 flags, 2 375 3 disconnect bit (1) unaligned, /* "1"b => break connection immediately */ 2 376 3 pad bit (35) unaligned; 2 377 2 378 dcl LOGIN_SERVER_DIAL_RESPONSE_VERSION_1 char (8) internal static options (constant) initial ("lsds0001"); 2 379 2 380 2 381 2 382 /* "termination" response: (not a response to anything): notify server that a 2 383* process terminated other than by logout */ 2 384 2 385 dcl 1 login_server_termination_response aligned based (ls_response_ptr), 2 386 2 header like login_server_response_header, /* message_type = LS_TERMINATION_RESPONSE */ 2 387 2 accounting_info, /* for printing in logout message */ 2 388 3 cpu_usage fixed bin (71), 2 389 3 cost float bin, 2 390 3 pad bit (33) unaligned, 2 391 2 process_id bit (36), /* of the logged-out process */ 2 392 2 process_group_id char (32), 2 393 2 status_code fixed bin (35), /* e.g., to indicate reason for fatal error */ 2 394 2 flags, 2 395 3 logout bit (1) aligned, /* no new process coming */ 2 396 3 automatic_logout bit (1) unaligned, 2 397 3 hold bit (1) unaligned, 2 398 3 brief bit (1) unaligned, 2 399 3 new_proc bit (1) unaligned, /* user-requested new process */ 2 400 3 fatal_error bit (1) unaligned, /* process died unexpectedly */ 2 401 3 fpe_caused_logout bit (1) unaligned, /* fatal error doesn't generate new process */ 2 402 3 fpe_loop bit (1) unaligned, /* fatal error loop: too many in too short a time */ 2 403 3 fpe_during_init bit (1) unaligned, /* fatal error during process initialization */ 2 404 3 offer_help bit (1) unaligned, /* print a message offering "help" */ 2 405 3 pad bit (27) unaligned; 2 406 2 407 dcl LOGIN_SERVER_TERMINATION_RESPONSE_VERSION_1 char (8) internal static options (constant) initial ("lstr0001"); 2 408 2 409 2 410 2 411 /* "new_proc" response: (not actually a response to anything) -- describes a 2 412* new process (after a termination_response) */ 2 413 2 414 dcl 1 login_server_new_proc_response aligned based (ls_response_ptr), 2 415 2 header like login_server_response_header, /* message_type = LS_NEW_PROC_RESPONSE */ 2 416 2 new_authorization bit (72), /* in case of new_proc -auth */ 2 417 2 new_start_event_channel fixed bin (71), /* event channel for starting new process */ 2 418 2 new_process_id bit (36); /* process_id of newly-created process */ 2 419 2 420 dcl LOGIN_SERVER_NEW_PROC_RESPONSE_VERSION_1 char (8) internal static options (constant) initial ("lsnp0001"); 2 421 2 422 2 423 2 424 /* "operator" response: indicates success or failure of operator request */ 2 425 2 426 dcl 1 login_server_operator_response aligned based (ls_response_ptr), 2 427 2 header like login_server_response_header, /* message_type = LS_OPERATOR_RESPONSE */ 2 428 2 status_code fixed bin (35), /* indicates success or failure */ 2 429 2 process_id bit (36), /* process ID of the message coordinator */ 2 430 2 process_group_id char (32), /* Person.Project.tag */ 2 431 2 event_channel fixed bin (71), /* event channel over which to send connect/disconnect wakeups */ 2 432 2 ring fixed bin, /* ring of message coordinator */ 2 433 2 flags, 2 434 3 disconnect bit (1) unaligned, /* "1" => break the connection immediately */ 2 435 3 mbz bit (35) unaligned; 2 436 2 437 2 438 dcl LOGIN_SERVER_OPERATOR_RESPONSE_VERSION_1 char (8) internal static options (constant) initial ("lsos0001"); 2 439 2 440 2 441 /* format of reply message sent to acknowledge receipt of a request */ 2 442 2 443 dcl ls_reply_message_ptr pointer; 2 444 2 445 dcl 1 ls_reply_message aligned based (ls_reply_message_ptr), 2 446 2 code fixed bin (35), 2 447 2 flags, 2 448 3 request_invalid bit (1) unaligned, /* "1"b => could not process request */ 2 449 3 response_sent bit (1) unaligned, /* "1"b => there is a response message */ 2 450 3 as_error_code bit (1) unaligned, /* "1"b => code is from as_error_table_ */ 2 451 3 do_not_reply bit (1) unaligned, /* "1"b => special flag for AS to prevent any reply from being sent to login server */ 2 452 3 mbz bit (32) unaligned; 2 453 2 454 /* The following are values used to identify the various requests internally; those from CREATE_REQ on 2 455* can appear as "command_type" in ls_process_requests. */ 2 456 2 457 dcl (LOGIN_REQ initial (1), 2 458 ENTER_REQ initial (2), 2 459 ENTERP_REQ initial (3), 2 460 CREATE_REQ initial (4), 2 461 DESTROY_REQ initial (5), 2 462 CONNECT_REQ initial (6), 2 463 NEW_PROC_REQ initial (7), 2 464 LIST_REQ initial (8)) 2 465 fixed bin internal static options (constant); 2 466 2 467 /* The following are the possible values for login_server_validate_request.network_connection_type. 2 468* They are used by the initializer to select a default process overseer and an instance tag. 2 469**/ 2 470 2 471 dcl (NETWORK_CONNECTION_LOGIN initial (1), 2 472 NETWORK_CONNECTION_DSA_FILE_TRANSFER initial (2)) 2 473 fixed bin internal static options (constant); 2 474 2 475 /* END INCLUDE FILE ... login_server_messages.incl.pl1 */ 134 135 /* BEGIN: ls_request_server_info.incl.pl1 * * * * * */ 3 2 3 3 /****^ HISTORY COMMENTS: 3 4* 1) change(86-04-05,Swenson), approve(87-07-14,MCR7737), 3 5* audit(87-07-14,Parisek), install(87-08-04,MR12.1-1056): 3 6* Initial coding. 3 7* END HISTORY COMMENTS */ 3 8 3 9 /* format: style4,indattr */ 3 10 3 11 dcl ls_request_server_info_ptr ptr automatic; 3 12 dcl 1 ls_request_server_info structure aligned 3 13 based (ls_request_server_info_ptr), 3 14 2 version char (8), 3 15 2 reply_ptr ptr, 3 16 2 flags, 3 17 3 initialized bit (1) unaligned, 3 18 3 pad1 bit (35) unaligned, 3 19 2 request_ms, 3 20 3 dirname char (168) unaligned, 3 21 3 entryname char (32) unaligned, 3 22 3 index fixed bin, 3 23 2 request_info, /* only valid while executing a request */ 3 24 3 sender_process_id bit (36) aligned; 3 25 3 26 dcl LS_REQUEST_SERVER_INFO_VERSION_1 char (8) initial ("lsrsi001") internal static options (constant); 3 27 3 28 /* END OF: ls_request_server_info.incl.pl1 * * * * * */ 135 136 /* BEGIN INCLUDE FILE sys_log_constants.incl.pl1 ... 82-09-24 E. N. Kittlitz */ 4 2 4 3 4 4 /****^ HISTORY COMMENTS: 4 5* 1) change(87-04-22,GDixon), approve(87-06-10,MCR7708), 4 6* audit(87-06-02,Parisek), install(87-08-04,MR12.1-1056): 4 7* Added sl_info structure and associated named constants for use in calling 4 8* sys_log_$general. 4 9* END HISTORY COMMENTS */ 4 10 4 11 4 12 /* format: style4 */ 4 13 4 14 dcl ( 4 15 SL_TYPE_CRASH init (-3), /* type message with banner & kill system */ 4 16 SL_TYPE_BEEP init (-2), /* type message with banner */ 4 17 SL_TYPE init (-1), /* type message */ 4 18 SL_LOG_SILENT init (0), /* log message */ 4 19 SL_LOG init (1), /* log & type message */ 4 20 SL_LOG_BEEP init (2), /* log & type message with banner */ 4 21 SL_LOG_CRASH init (3) /* log & type message with banner & kill system */ 4 22 ) fixed bin internal static options (constant); 4 23 4 24 dcl 1 sl_info aligned automatic, 4 25 2 version char(8), /* structure version */ 4 26 2 arg_list_ptr ptr, /* arg_list with values */ 4 27 2 loc, 4 28 3 (mode, severity, code, caller, data, class, ioa_msg) fixed bin, 4 29 /* These flags control where the corresponding data item is found.*/ 4 30 /* -1: data appears in the corresponding structure element below */ 4 31 /* 0: data is not present anywhere */ 4 32 /* +N: data is Nth item in argument list pointed to by */ 4 33 /* sl_info.arg_list_ptr. Upon return, data copied into */ 4 34 /* corresponding structure element. */ 4 35 /* if data = +N: */ 4 36 /* argN is data_ptr, argN+1 is data_len */ 4 37 /* if ioa_msg = +N: */ 4 38 /* argN+1, ... argLAST are arguments substituted into the */ 4 39 /* ioa_msg control string. The formatted msg is returned. */ 4 40 2 flags, 4 41 3 ioa_msg_is_error_code bit(1) unal, /* ioa_ctl is error code. */ 4 42 3 flags_pad bit(35) unal, 4 43 2 mode fixed bin, /* as-mode, command-mode */ 4 44 2 severity fixed bin, /* error severity */ 4 45 2 code fixed bin(35), /* error table code */ 4 46 2 caller char(65) varying, /* caller refname$entryname*/ 4 47 2 data, /* binary data ptr/length */ 4 48 3 data_ptr ptr, 4 49 3 data_lth fixed bin(21), 4 50 2 class char(10) varying, /* binary data class */ 4 51 2 ioa_msg char(500) varying; /* formatted message text */ 4 52 4 53 /* * * * * * * * * * * * * * * * * * * * * * * * * * */ 4 54 /* */ 4 55 /* If data values (eg, sl_info.caller) are passed in the argument list, */ 4 56 /* their data types should be as shown in the structure above, except that */ 4 57 /* character strings should be char(*) nonvarying. */ 4 58 /* */ 4 59 /* * * * * * * * * * * * * * * * * * * * * * * * * * */ 4 60 4 61 /* value for sl_info.version */ 4 62 dcl SL_INFO_version_1 char (8) int static options(constant) init("sl_info1"); 4 63 4 64 /* values for sl_info.mode */ 4 65 dcl (SL_INFO_as_mode init(1), 4 66 SL_INFO_command_mode init(2)) fixed bin int static options(constant); 4 67 4 68 /* values for sl_info.loc.(severity code caller data class ioa_ctl arg) */ 4 69 dcl (SL_INFO_arg_given_in_structure init(-1), 4 70 SL_INFO_arg_not_given init(0)) fixed bin int static options(constant); 4 71 4 72 4 73 /* * * * * * * * * * * * * * * * * * * * * * * * * * */ 4 74 /* */ 4 75 /* The following static structures are commonly used in the Login Server */ 4 76 /* user control software. */ 4 77 /* */ 4 78 /* * * * * * * * * * * * * * * * * * * * * * * * * * */ 4 79 4 80 /* Syntax: call Abort (severity, code, ioa_ctl, args); */ 4 81 4 82 dcl 1 sl_info_sev_code_msg aligned int static options(constant), 4 83 2 version char(8) init ("sl_info1"), 4 84 2 arg_list_ptr ptr init (null), 4 85 2 loc, 4 86 3 (mode init (-1), 4 87 severity init ( 1), 4 88 code init ( 2), 4 89 caller init (-1), 4 90 data init ( 0), 4 91 class init ( 0), 4 92 ioa_msg init ( 3)) fixed bin, 4 93 2 flags, 4 94 3 ioa_msg_is_error_code bit(1) unal init ("0"b), 4 95 3 flags_pad bit(35) unal init ("0"b), 4 96 2 mode fixed bin init ( 1), 4 97 2 severity fixed bin init ( 0), 4 98 2 code fixed bin(35) init ( 0), 4 99 2 caller char(65) varying init (""), 4 100 2 data, 4 101 3 data_ptr ptr init (null), 4 102 3 data_lth fixed bin(21) init ( 0), 4 103 2 class char(10) varying init (""), 4 104 2 ioa_msg char(500) varying init (""); 4 105 4 106 /* Syntax: call Abort (severity, ioa_ctl, args); */ 4 107 4 108 dcl 1 sl_info_sev_msg aligned int static options(constant), 4 109 2 version char(8) init ("sl_info1"), 4 110 2 arg_list_ptr ptr init (null), 4 111 2 loc, 4 112 3 (mode init (-1), 4 113 severity init ( 1), 4 114 code init ( 0), 4 115 caller init (-1), 4 116 data init ( 0), 4 117 class init ( 0), 4 118 ioa_msg init ( 2)) fixed bin, 4 119 2 flags, 4 120 3 ioa_msg_is_error_code bit(1) unal init ("0"b), 4 121 3 flags_pad bit(35) unal init ("0"b), 4 122 2 mode fixed bin init ( 1), 4 123 2 severity fixed bin init ( 0), 4 124 2 code fixed bin(35) init ( 0), 4 125 2 caller char(65) varying init (""), 4 126 2 data, 4 127 3 data_ptr ptr init (null), 4 128 3 data_lth fixed bin(21) init ( 0), 4 129 2 class char(10) varying init (""), 4 130 2 ioa_msg char(500) varying init (""); 4 131 4 132 /* Syntax: call Abort (severity, ioa_ctl_as_error_code, args); */ 4 133 4 134 dcl 1 sl_info_sev_coded_msg aligned int static options(constant), 4 135 2 version char(8) init ("sl_info1"), 4 136 2 arg_list_ptr ptr init (null), 4 137 2 loc, 4 138 3 (mode init (-1), 4 139 severity init ( 1), 4 140 code init ( 0), 4 141 caller init (-1), 4 142 data init ( 0), 4 143 class init ( 0), 4 144 ioa_msg init ( 2)) fixed bin, 4 145 2 flags, 4 146 3 ioa_msg_is_error_code bit(1) unal init ("1"b), 4 147 3 flags_pad bit(35) unal init ("0"b), 4 148 2 mode fixed bin init ( 1), 4 149 2 severity fixed bin init ( 0), 4 150 2 code fixed bin(35) init ( 0), 4 151 2 caller char(65) varying init (""), 4 152 2 data, 4 153 3 data_ptr ptr init (null), 4 154 3 data_lth fixed bin(21) init ( 0), 4 155 2 class char(10) varying init (""), 4 156 2 ioa_msg char(500) varying init (""); 4 157 4 158 4 159 /* Syntax: call Abort (severity, code, error_return_label, ioa_ctl, args); */ 4 160 4 161 dcl 1 sl_info_sev_code_label_msg aligned int static options(constant), 4 162 2 version char(8) init ("sl_info1"), 4 163 2 arg_list_ptr ptr init (null), 4 164 2 loc, 4 165 3 (mode init (-1), 4 166 severity init ( 1), 4 167 code init ( 2), 4 168 caller init (-1), 4 169 data init ( 0), 4 170 class init ( 0), 4 171 ioa_msg init ( 4)) fixed bin, 4 172 2 flags, 4 173 3 ioa_msg_is_error_code bit(1) unal init ("0"b), 4 174 3 flags_pad bit(35) unal init ("0"b), 4 175 2 mode fixed bin init ( 1), 4 176 2 severity fixed bin init ( 0), 4 177 2 code fixed bin(35) init ( 0), 4 178 2 caller char(65) varying init (""), 4 179 2 data, 4 180 3 data_ptr ptr init (null), 4 181 3 data_lth fixed bin(21) init ( 0), 4 182 2 class char(10) varying init (""), 4 183 2 ioa_msg char(500) varying init (""); 4 184 4 185 /* Syntax: call Log_error (code, ioa_ctl, args); */ 4 186 4 187 dcl 1 sl_info_code_msg aligned int static options(constant), 4 188 2 version char(8) init ("sl_info1"), 4 189 2 arg_list_ptr ptr init (null), 4 190 2 loc, 4 191 3 (mode init (-1), 4 192 severity init (-1), 4 193 code init ( 1), 4 194 caller init (-1), 4 195 data init ( 0), 4 196 class init ( 0), 4 197 ioa_msg init ( 2)) fixed bin, 4 198 2 flags, 4 199 3 ioa_msg_is_error_code bit(1) unal init ("0"b), 4 200 3 flags_pad bit(35) unal init ("0"b), 4 201 2 mode fixed bin init ( 1), 4 202 2 severity fixed bin init ( 0), 4 203 2 code fixed bin(35) init ( 0), 4 204 2 caller char(65) varying init (""), 4 205 2 data, 4 206 3 data_ptr ptr init (null), 4 207 3 data_lth fixed bin(21) init ( 0), 4 208 2 class char(10) varying init (""), 4 209 2 ioa_msg char(500) varying init (""); 4 210 4 211 4 212 /* Syntax: call Trace (ioa_ctl, args); */ 4 213 4 214 dcl 1 sl_info_msg aligned int static options(constant), 4 215 2 version char(8) init ("sl_info1"), 4 216 2 arg_list_ptr ptr init (null), 4 217 2 loc, 4 218 3 (mode init (-1), 4 219 severity init (-1), 4 220 code init ( 0), 4 221 caller init (-1), 4 222 data init ( 0), 4 223 class init ( 0), 4 224 ioa_msg init ( 1)) fixed bin, 4 225 2 flags, 4 226 3 ioa_msg_is_error_code bit(1) unal init ("0"b), 4 227 3 flags_pad bit(35) unal init ("0"b), 4 228 2 mode fixed bin init ( 1), 4 229 2 severity fixed bin init ( 0), 4 230 2 code fixed bin(35) init ( 0), 4 231 2 caller char(65) varying init (""), 4 232 2 data, 4 233 3 data_ptr ptr init (null), 4 234 3 data_lth fixed bin(21) init ( 0), 4 235 2 class char(10) varying init (""), 4 236 2 ioa_msg char(500) varying init (""); 4 237 4 238 /* END INCLUDE FILE sys_log_constants.incl.pl1 */ 136 137 /* BEGIN INCLUDE FILE ... user_attributes.incl.pl1 TAC 10/79 */ 5 2 5 3 5 4 /****^ HISTORY COMMENTS: 5 5* 1) change(86-12-11,Brunelle), approve(87-07-13,MCR7741), 5 6* audit(87-04-19,GDixon), install(87-08-04,MR12.1-1056): 5 7* Add incl for abs_attributes.incl.pl1 to automatically include absentee 5 8* attribute switches. 5 9* 2) change(87-04-19,GDixon), approve(87-07-13,MCR7741), 5 10* audit(87-07-16,Brunelle), install(87-08-04,MR12.1-1056): 5 11* A) Add USER_ATTRIBUTE_NAMES arrays. attribute_names.incl.pl1 can thereby 5 12* be deleted. 5 13* B) Add constants identifying attributes that can be changed by user at 5 14* login, etc. 5 15* END HISTORY COMMENTS */ 5 16 5 17 5 18 /* Modified 82-01-03 E. N. Kittlitz. to declare a complete level-1 structure */ 5 19 5 20 /* format: style4 */ 5 21 dcl 1 user_attributes aligned based, /* the user user_attributes */ 5 22 (2 administrator bit (1), /* 1 system administrator privileges */ 5 23 2 primary_line bit (1), /* 2 user has primary-line privileges */ 5 24 2 nobump bit (1), /* 2 user cannot be bumped */ 5 25 2 guaranteed_login bit (1), /* 4 user has guaranteed login privileges */ 5 26 2 anonymous bit (1), /* 5 used only in SAT. project may have anon.users */ 5 27 2 nopreempt bit (1), /* 6 used only in PDT. user not preemptable by others 5 28* . of same project (distinct from "nobump") */ 5 29 2 nolist bit (1), /* 7 don't list user on "who" */ 5 30 2 dialok bit (1), /* 8 user may have multiple consoles */ 5 31 2 multip bit (1), /* 9 user may have several processes */ 5 32 2 bumping bit (1), /* 10 in SAT. Can users in project bump each other? */ 5 33 2 brief bit (1), /* 11 no login or logout message */ 5 34 2 vinitproc bit (1), /* 12 user may change initial procedure */ 5 35 2 vhomedir bit (1), /* 13 user may change homedir */ 5 36 2 nostartup bit (1), /* 14 user does not want start_up.ec */ 5 37 2 sb_ok bit (1), /* 15 user may be standby */ 5 38 2 pm_ok bit (1), /* 16 user may be primary */ 5 39 2 eo_ok bit (1), /* 17 user may be edit_only */ 5 40 2 daemon bit (1), /* 18 user may login as daemon */ 5 41 2 vdim bit (1), /* 19 * OBSOLETE * user may change outer mdle */ 5 42 2 no_warning bit (1), /* 20 no warning message */ 5 43 2 igroup bit (1), /* 21 in SAT: this project may give its users individual groups 5 44* . in PDT: this user has an individual load control group */ 5 45 2 save_pdir bit (1), /* 22 save pdir after fatal process error */ 5 46 2 disconnect_ok bit (1), /* 23 ok to save user's disconnected processes */ 5 47 2 save_on_disconnect bit (1), /* 24 save them unless -nosave login arg is given */ 5 48 2 pad bit (12)) unaligned; 5 49 5 50 dcl USER_ATTRIBUTE_NAMES (0:24) char (20) int static options (constant) init 5 51 ("none", /* 0 */ 5 52 "administrator", /* 1 */ 5 53 "primary_line", /* 2 */ 5 54 "nobump", /* 3 */ 5 55 "guaranteed_login", /* 4 */ 5 56 "anonymous", /* 5 */ 5 57 "nopreempt", /* 6 */ 5 58 "nolist", /* 7 */ 5 59 "dialok", /* 8 */ 5 60 "multip", /* 9 */ 5 61 "bumping", /* 10 */ 5 62 "brief", /* 11 */ 5 63 "vinitproc", /* 12 */ 5 64 "vhomedir", /* 13 */ 5 65 "nostartup", /* 14 */ 5 66 "no_secondary", /* 15 */ 5 67 "no_prime", /* 16 */ 5 68 "no_eo", /* 17 */ 5 69 "daemon", /* 18 */ 5 70 "", /* 19 vdim OBSOLETE */ 5 71 "no_warning", /* 20 */ 5 72 "igroup", /* 21 */ 5 73 "save_pdir", /* 22 */ 5 74 "disconnect_ok", /* 23 */ 5 75 "save_on_disconnect"); /* 24 */ 5 76 5 77 dcl ALT_USER_ATTRIBUTE_NAMES (0:24) char (20) int static options (constant) init 5 78 ("null", /* 0 */ 5 79 "admin", /* 1 */ 5 80 "", "", /* 2 - 3 */ 5 81 "guar", /* 4 */ 5 82 "anon", /* 5 */ 5 83 "", "", /* 6 - 7 */ 5 84 "dial", /* 8 */ 5 85 "multi_login", /* 9 */ 5 86 "preempting", /* 10 */ 5 87 "", /* 11 */ 5 88 "v_process_overseer", /* 12 */ 5 89 "v_home_dir", /* 13 */ 5 90 "no_start_up", /* 14 */ 5 91 "no_sec", /* 15 */ 5 92 "no_primary", /* 16 */ 5 93 "no_edit_only", /* 17 */ 5 94 "op_login", /* 18 */ 5 95 "", /* 19 */ 5 96 "nowarn", /* 20 */ 5 97 "", "", "", /* 21 - 23 */ 5 98 "save"); /* 24 */ 5 99 5 100 dcl USER_ATTRIBUTES_always_allowed bit (36) aligned int static 5 101 options(constant) init("000000000010000000010000000000000000"b); 5 102 /* SAT/PDT attributes not needed for user to give (brief, no_warning) */ 5 103 5 104 dcl USER_ATTRIBUTES_default_in_pdt bit (36) aligned int static 5 105 options(constant) init("000000000010000000010000000000000000"b); 5 106 /* PDT value for (brief, no_warning) is default */ 5 107 5 108 dcl USER_ATTRIBUTES_settable_by_user bit (36) aligned int static 5 109 options(constant) init("000100000110010000010000000000000000"b); 5 110 /* user MIGHT set (bump, ns, brief, guar, no_warning) */ 5 111 6 1 /* BEGIN INCLUDE FILE ... user_abs_attributes.incl.pl1 */ 6 2 6 3 /* * * * * * * * * * * * * * * * * * * * * * * * * * */ 6 4 /* */ 6 5 /* This include file describes the attributes of an absentee job. It is */ 6 6 /* used by user_table_entry.incl.pl1, abs_message_format.incl.pl1 */ 6 7 /* and PIT.incl.pl1. */ 6 8 /* */ 6 9 /* * * * * * * * * * * * * * * * * * * * * * * * * * */ 6 10 6 11 /****^ HISTORY COMMENTS: 6 12* 1) change(86-12-08,GDixon), approve(87-07-13,MCR7741), 6 13* audit(87-07-16,Brunelle), install(87-08-04,MR12.1-1056): 6 14* Separated abs_attributes from the request structure 6 15* (abs_message_format.incl.pl1) so that the identical structure could be 6 16* used in the ute structure (user_table_entry.incl.pl1). 6 17* 2) change(87-04-19,GDixon), approve(87-07-13,MCR7741), 6 18* audit(87-07-16,Brunelle), install(87-08-04,MR12.1-1056): 6 19* Added ABS_ATTRIBUTE_NAMES array. 6 20* 3) change(87-11-11,Parisek), approve(88-02-11,MCR7849), 6 21* audit(88-03-22,Lippard), install(88-07-13,MR12.2-1047): 6 22* Added the no_start_up flag. SCP6367 6 23* END HISTORY COMMENTS */ 6 24 6 25 dcl 1 user_abs_attributes aligned based, 6 26 2 restartable bit (1) unaligned, /* 1 if request may be started over from the beginning */ 6 27 2 user_deferred_until_time bit (1) unaligned, /* 1 if request was specified as deferred */ 6 28 2 proxy bit (1) unaligned, /* 1 if request submitted for someone else */ 6 29 2 set_bit_cnt bit (1) unaligned, /* 1 if should set bit count after every write call */ 6 30 2 time_in_gmt bit (1) unaligned, /* 1 if deferred_time is in GMT */ 6 31 2 user_deferred_indefinitely bit (1) unaligned, /* 1 if operator is to say when to run it */ 6 32 2 secondary_ok bit (1) unaligned, /* 1 if ok to log in as secondary foreground user */ 6 33 2 truncate_absout bit (1) unaligned, /* 1 if .absout is to be truncated */ 6 34 2 restarted bit (1) unaligned, /* 1 if job is restarted */ 6 35 2 no_start_up bit (1) unaligned, /* 1 if requested -ns */ 6 36 2 attributes_pad bit (26) unaligned; 6 37 6 38 dcl ABS_ATTRIBUTE_NAMES (10) char (28) varying int static options(constant) init( 6 39 "restartable", 6 40 "user_deferred_until_time", 6 41 "proxy", 6 42 "set_bit_cnt", 6 43 "time_in_gmt", 6 44 "user_deferred_indefinitely", 6 45 "secondary_ok", 6 46 "truncate_absout", 6 47 "restarted", 6 48 "no_start_up"); 6 49 6 50 /* END INCLUDE FILE ... user_abs_attributes.incl.pl1 */ 6 51 5 112 5 113 5 114 /* END INCLUDE FILE ... user_attributes.incl.pl1 */ 137 138 /* BEGIN INCLUDE FILE ... user_table_entry.incl.pl1 */ 7 2 7 3 /* * * * * * * * * * * * * * * * * * * * * * * * * * */ 7 4 /* */ 7 5 /* This include file requires that the user include */ 7 6 /* user_attributes.incl.pl1 as well. It also includes */ 7 7 /* abs_attributes.incl.pl1 itself. */ 7 8 /* */ 7 9 /* This include file must be included to use absentee_user_table.incl.pl1, */ 7 10 /* answer_table.incl.pl1, and daemon_user_table.incl.pl1. */ 7 11 /* */ 7 12 /* * * * * * * * * * * * * * * * * * * * * * * * * * */ 7 13 7 14 /****^ HISTORY COMMENTS: 7 15* 1) change(81-12-21,Gilcrease), approve(86-03-27,MCR7370), 7 16* audit(86-06-23,Lippard), install(86-06-30,MR12.0-1082): 7 17* This comment for hcom. 7 18* 81-12-21 E. N. Kittlitz. derived from abs_user_tab.incl.pl1, 7 19* anstbl.incl.pl1, and dutbl.incl.pl1. 7 20* 82-01-02 E. N. Kittlitz. user_attributes.incl.pl1 changes 7 21* 84-04-04 BIM added privileged_dial_server and dial_server_ring 7 22* 84-07-12 BIM added min_process_authorization 7 23* 84-12-31 Keith Loepere added pdir_dir_quota 7 24* 85-01-16 by E. Swenson to add ute.session_uid 7 25* 2) change(85-11-16,Swenson), approve(87-07-13,MCR7737), 7 26* audit(87-04-14,GDixon), install(87-08-04,MR12.1-1056): 7 27* Added fields for DSA login server support. 7 28* 3) change(86-03-27,Gilcrease), approve(86-03-27,MCR7370), 7 29* audit(86-06-23,Lippard), install(86-06-30,MR12.0-1082): 7 30* Add truncate_absout and restarted bit for -truncate absout, SCP6297. 7 31* 4) change(86-04-09,Herbst), approve(87-07-13,MCR7697), 7 32* audit(87-04-14,GDixon), install(87-08-04,MR12.1-1056): 7 33* Added disconnection_rel_minutes. 7 34* 5) change(86-12-08,GDixon), approve(87-07-13,MCR7741), 7 35* audit(87-07-16,Brunelle), install(87-08-04,MR12.1-1056): 7 36* Changed structure under ute.abs_attributes to use like structure in 7 37* abs_attributes.incl.pl1. This allows the same attributes to be used 7 38* in abs_message_format.incl.pl1 and pit.incl.pl1 as well as this include 7 39* file. 7 40* 6) change(87-04-14,GDixon), approve(87-07-13,MCR7741), 7 41* audit(87-07-16,Brunelle), install(87-08-04,MR12.1-1056): 7 42* Move constants for ute.pw_flags.mask_ctl from answer_table.incl.pl1. 7 43* 7) change(87-04-16,GDixon), approve(87-07-13,MCR7741), 7 44* audit(87-07-16,Brunelle), install(87-08-04,MR12.1-1056): 7 45* A) Global reorganization to locate things by type of data. 7 46* B) Eliminate ute.uflags.logged_in. 7 47* 8) change(87-05-10,GDixon), approve(87-07-13,MCR7741), 7 48* audit(87-07-16,Brunelle), install(87-08-04,MR12.1-1056): 7 49* A) Reduced overlength person and project fields to proper length. 7 50* B) Adjusted dialed-console section to begin on even word boundary. 7 51* 9) change(87-05-13,GDixon), approve(87-07-13,MCR7741), 7 52* audit(87-07-16,Brunelle), install(87-08-04,MR12.1-1056): 7 53* Add ute.line_type. 7 54* 10) change(87-11-19,Parisek), approve(88-02-11,MCR7849), 7 55* audit(88-02-23,Lippard), install(88-07-13,MR12.2-1047): 7 56* Added the lowest_ring element. Used the upper half of ute.highest_ring 7 57* for the storage. SCP6367 7 58* END HISTORY COMMENTS */ 7 59 7 60 /* format: style4 */ 7 61 7 62 /* * * * * * * * * * * * * * * * * * * * * * * * * * */ 7 63 /* */ 7 64 /* Each of the named sections below defines a type of data. Typing comes */ 7 65 /* from data associated with the ute entry itself, with the person, with */ 7 66 /* login argument data, from the main user of the data (eg, dialup_, */ 7 67 /* load_ctl_, login server). Each section begins on a double-word boundary */ 7 68 /* and is an even number of words long. The total structure is 300 decimal */ 7 69 /* words long. */ 7 70 /* */ 7 71 /* * * * * * * * * * * * * * * * * * * * * * * * * * */ 7 72 7 73 7 74 dcl UTE_version_4 fixed bin internal static options (constant) init (4); 7 75 7 76 dcl utep pointer automatic init (null); 7 77 7 78 dcl 1 ute based (utep) aligned, /* individual entry in one of the user control tables */ 7 79 7 80 /* Variables which give state of this entry */ 7 81 2 active fixed bin, /* state of entry. 0=>free. see dialup_values.incl.pl1 */ 7 82 2 process_type fixed bin, /* 1=interactive, 2=absentee, 3=daemon */ 7 83 2 ute_index fixed bin, /* index of ute in (anstbl autbl dutbl).entry array */ 7 84 2 next_free fixed bin, /* points to previous free entry */ 7 85 7 86 /* Information user gave about person_id associated with this entry. */ 7 87 2 person char (24) unal, /* user's name */ 7 88 2 project char (12) unal, /* project of absentee user */ 7 89 2 tag char (1) unal, /* instance tag - someday will be generated */ 7 90 2 tag_pad bit (27) unal, 7 91 2 anonymous fixed bin, /* 1 if anonymous, otherwise 0 */ 7 92 2 login_flags, /* flags for login data */ 7 93 3 cpw bit (1) unal, /* flag for wish to change password */ 7 94 3 generate_pw bit (1) unal, /* flag meaning -generate_pw (-gpw) was used. */ 7 95 3 special_pw unal, /* dial or slave */ 7 96 4 dial_pw bit (1) unal, /* true if dial -user */ 7 97 4 slave_pw bit (1) unal, /* true if slave -user */ 7 98 3 cdp bit (1) unal, /* flag for wish to change default project */ 7 99 3 cda bit (1) unal, /* flag to change default authorization */ 7 100 3 auth_given bit (1) unal, /* flag to mean -authorization was used. */ 7 101 3 noprint bit (1) unal, /* used at logout. inhibits printing. */ 7 102 3 operator bit (1) unaligned, /* user specified -operator on login command line */ 7 103 3 pw_pad bit (25) unal, /* spare parts */ 7 104 3 mask_ctl bit (2) unal, /* bits controlling pw mask. See constants, below */ 7 105 /* Must remain last in pw_flags so it does not */ 7 106 /* appear in PW_FLAG_VALUES array below. */ 7 107 2 generated_pw char (8) unal, /* user must type this as new password */ 7 108 2 old_password char (8) unal, /* must match user's previous password (value scrambled) */ 7 109 2 process_authorization bit (72), /* access_authorization of this process */ 7 110 7 111 /* Information user gave about process associated with this entry. */ 7 112 2 outer_module char (32) unal, /* Name of console dim */ 7 113 2 home_dir char (64) unal, /* initial home directory */ 7 114 2 init_proc char (64) unal, /* name of login responder */ 7 115 2 ip_len fixed bin (17) unal, /* length of initproc string */ 7 116 2 ss_len fixed bin (17) unal, /* length of subsystem string */ 7 117 2 ur_at like user_attributes aligned, /* bits on means attributes given by user */ 7 118 2 at like user_attributes aligned, /* bits on means attribute is on */ 7 119 2 initial_ring fixed bin, /* ring process will be started in */ 7 120 2 arg_count fixed bin, /* number of arguments to absentee control segment */ 7 121 2 ln_args fixed bin, /* length of string containing arguments */ 7 122 2 arg_lengths_ptr ptr, /* pointer to array of argument lengths */ 7 123 2 args_ptr ptr, /* pointer to arguments to absentee control segment */ 7 124 7 125 /* Most of the following information is relevant only to absentee processes */ 7 126 2 input_seg char (168) unal, /* pathname of absentee control segment */ 7 127 2 output_seg char (168) unal, /* pathname of absentee output file */ 7 128 2 request_id fixed bin (71), /* time request was entered - used as uid of request */ 7 129 2 reservation_id fixed bin (71), /* nonzero if job has a resource reservation */ 7 130 2 message_id bit (72), /* message segment id assoc with absentee request */ 7 131 2 deferred_time fixed bin (71), /* time at which absentee process should be created */ 7 132 2 max_cpu_time fixed bin (35), /* maximum number of seconds this process can run */ 7 133 2 queue fixed bin, /* -1=daemon;0=interactive or foreground;>0=queue no. 7 134* (but see uflags.adjust_abs_q_no). */ 7 135 2 real_queue fixed bin, /* real queue number; ute.queue gets fudged sometimes */ 7 136 2 abs_attributes aligned like user_abs_attributes, /* include abs_attributes.incl.pl1 */ 7 137 2 abs_flags, 7 138 3 abs_run bit (1) unal, /* on if job was started by abs run command */ 7 139 3 notify bit (1) unal, /* on if user wants notification at login and logout */ 7 140 3 abs_flags_pad bit (34) unal, 7 141 2 abs_group char (8) unal, /* original group before load_ctl_ moves it to absentee group */ 7 142 2 sender char (32) unal, /* name of RJE station that job is from */ 7 143 2 proxy_person char (28) unal, /* name of user who actually entered the request, if proxy */ 7 144 2 proxy_project char (9) unal, 7 145 2 proxy_project_pad char (3) unal, 7 146 2 abs_pad fixed bin, 7 147 7 148 /* Information about process actually created */ 7 149 2 proc_id bit (36), /* process id of absentee process */ 7 150 2 session_uid fixed bin (35), /* Unique authentication session id */ 7 151 2 process_authorization_range (2) bit (72) aligned, 7 152 2 audit bit (36), /* audit flags for user */ 7 153 2 lot_size fixed bin, /* Size of linkage offset table */ 7 154 2 kst_size fixed bin, /* Size of process known segment table */ 7 155 2 cls_size fixed bin, /* Size of process combined linkage */ 7 156 2 sus_channel fixed bin (71), /* event channel on which suspended process is blocked */ 7 157 2 lowest_ring fixed bin (17) unal, /* lowest ring permitted */ 7 158 2 highest_ring fixed bin (17) unal, /* highest ring permitted */ 7 159 2 pdir_lvix fixed bin (17) unal, /* index in disk table of lv where pdir is */ 7 160 2 pdir_quota fixed bin (17) unal, /* process directory quota */ 7 161 2 pdir_dir_quota fixed bin (17) unal, /* process directory quota for dirs */ 7 162 2 pdir_pad fixed bin(17) unal, 7 163 2 process_pad fixed bin, 7 164 7 165 /* Information about primary terminal associated with this entry */ 7 166 2 tty_name char (32) unal, /* absentee=>"abs1", etc. daemon=>"bk", etc. */ 7 167 2 terminal_type char (32) unaligned, /* terminal type */ 7 168 2 line_type fixed bin, /* line type */ 7 169 2 tty_id_code char (4) unal, /* "none" for absentee */ 7 170 2 network_connection_type fixed bin, /* see net_event_message.incl.pl1 */ 7 171 2 channel ptr unal, /* points to CDT entry for user, if any */ 7 172 7 173 /* Variables useful for dialed terminals */ 7 174 2 ndialed_consoles fixed bin, /* if master, number of slaves */ 7 175 2 dial_qualifier char (22) unal, /* first argument to dial command */ 7 176 2 dial_server_ring fixed bin (3) unsigned unaligned, /* dial server intends to attach dialing in channels at this ring. */ 7 177 2 dial_server_flags, 7 178 3 registered_dial_server bit (1) unal, /* process is a registered dial server */ 7 179 3 privileged_dial_server bit (1) unal, /* "1"b -> serves range of AIM classes */ 7 180 3 dial_server_flags_pad bit (13) unal, /* fill out the word */ 7 181 2 dial_ev_chn fixed bin (71), /* if master, control event channel */ 7 182 7 183 /* Information about usage/accounting. Device usage meters are in a 7 184* separate segment, "devtab" */ 7 185 2 pdtep ptr, /* ptr to user's pdt entry, where usage meters live */ 7 186 2 cpu_this_process fixed bin (71), /* cpu used so far this process */ 7 187 2 cpu_usage fixed bin (71), /* total cpu time used in this session */ 7 188 2 mem_usage fixed bin (71), /* memory usage for previous processes in session */ 7 189 2 mem_this_process fixed bin (71), /* memory usage at last update */ 7 190 2 last_update_time fixed bin (71), /* time of last account update */ 7 191 2 session_cost float bin, /* dollar cost of session, for printing in logout messages */ 7 192 2 ndevices fixed bin, /* Count of attached devices */ 7 193 2 device_head fixed bin, /* Table index of head of device chain */ 7 194 2 device_tail fixed bin, /* Table index of tail of device chain */ 7 195 2 rs_number fixed bin (6) unsigned unal, /* rate structure number */ 7 196 2 rs_number_pad bit(30) unal, 7 197 2 usage_pad fixed bin, 7 198 7 199 /* Information for dialup_ (control variables). */ 7 200 2 event fixed bin (71), /* event associated with channel or user manager */ 7 201 2 uprojp ptr, /* ptr to user project sat entry */ 7 202 2 login_time fixed bin (71), /* time when absentee user approved by lg_ctl_ */ 7 203 2 cant_bump_until fixed bin (71), /* bump-protection clock */ 7 204 2 recent_fatal_error_time fixed bin (71), /* time of first error in the suspected loop */ 7 205 2 recent_fatal_error_count fixed bin, /* counter to detect fatal process error loops */ 7 206 2 failure_reason fixed bin, /* why login refused 1=lg_ctl, 2=act_ctl, 3=load_ctl */ 7 207 2 count fixed bin, /* counter for logins and dialups */ 7 208 2 n_processes fixed bin, /* number of processes created in this session */ 7 209 2 lock_value fixed bin, /* number of locks set for this entry */ 7 210 2 login_result fixed bin, /* 0=logged in;1=hopeless,hang him up;2=allow another attempt */ 7 211 2 login_code char (8) unal, /* login command from LOGIN line */ 7 212 2 preempted fixed bin, /* if ^= 0 user preempted (never for abs) */ 7 213 2 destroy_flag fixed bin, /* >8 when awaiting destroy */ 7 214 2 logout_type char (4) unal, /* type of logout */ 7 215 2 logout_index fixed bin, /* to save logout handler index while waiting for termsgnl */ 7 216 2 disconnection_rel_minutes fixed bin (17) unal, /* disconnected this many minutes after login_time */ 7 217 2 next_disconnected_ate_index fixed bin (17) unal, /* thread of list of user's disconnected processes */ 7 218 2 work_class fixed bin, /* work class used by priority scheduler */ 7 219 2 group char (8) unal, /* party group identifier */ 7 220 2 whotabx fixed bin, /* index of user's entry in whotab */ 7 221 7 222 2 uflags, /* Miscellaneous flags */ 7 223 3 dont_call_init_admin bit (1) unal, /* Call overseer directly */ 7 224 3 ip_given bit (1) unal, /* user gave an initproc arg on login line */ 7 225 3 ss_given bit (1) unal, /* initial_procedure contains a subsystem name */ 7 226 3 lvs_attached bit (1) unal, /* set and used by the lv_request_ procedure */ 7 227 3 send_initial_string bit (1) unal, /* initial string should be sent after login line read */ 7 228 3 adjust_abs_q_no bit (1) unal, /* this is an absentee job; user_profile.queue is NOT true Q # */ 7 229 3 foreground_secondary_ok bit (1) unal, /* ok to login foreground absentee job as secondary */ 7 230 3 foreground_job bit (1) unal, /* job was originally from foreground queue */ 7 231 3 sus_sent bit (1) unal, /* sus_ ips signal has been sent to process */ 7 232 3 suspended bit (1) unal, /* process has responded to sus_ signal */ 7 233 3 ignore_cpulimit bit (1) unal, /* process is released, but timer can't be turned off */ 7 234 3 deferral_logged bit (1) unal, /* abs job deferral has already been logged once */ 7 235 3 save_if_disconnected bit (1) unal, /* user wants process preserved across hangups */ 7 236 3 disconnected bit (1) unal, /* process is disconnected from terminal */ 7 237 3 disconnected_list bit (1) unal, /* this ate is on a list of disconnected processes */ 7 238 3 proc_create_ok bit (1) unal, /* lg_ctl_ has set the process creation variables */ 7 239 3 activity_can_unbump bit (1) unal, /* only bump pending is for inactivity */ 7 240 3 fpe_causes_logout bit (1) unal, /* "1"b means don't try to new_proc after fatal process error */ 7 241 3 user_specified_immediate bit (1) unal, /* "1"b -> don't wait around for process destruction. */ 7 242 3 uflags_pad bit (17) unal, 7 243 7 244 /* Information used by load_ctl_ for the process */ 7 245 2 user_weight fixed bin, /* usually 10 - used in load control */ 7 246 2 standby_line fixed bin, /* 0=user has primary line, 1=standby user */ 7 247 2 bump_grace fixed bin (71), /* bump grace in microseconds */ 7 248 7 249 7 250 /* Information for login server */ 7 251 2 login_server_info, 7 252 3 our_handle bit (72) aligned, /* how LS refers to us. */ 7 253 3 his_handle bit (72) aligned, /* how we talk to LS */ 7 254 3 termination_event_channel fixed bin (71), /* for process termination notifications to the LS */ 7 255 3 response_event_channel fixed bin (71), /* for other communications with the LS */ 7 256 3 process_id bit (36) aligned, /* process_id of login server */ 7 257 2 ls_pad (5) fixed bin; /* pad to 300 decimal words */ 7 258 7 259 /* values for ute.process_type */ 7 260 7 261 dcl (PT_INTERACTIVE initial (1), 7 262 PT_ABSENTEE initial (2), 7 263 PT_DAEMON initial (3)) fixed bin internal static options (constant); 7 264 7 265 dcl PROCESS_TYPE_NAMES (0:3) char(12) varying int static options(constant) init( 7 266 "INVALID-TYPE", 7 267 "interactive", 7 268 "absentee", 7 269 "daemon"); 7 270 7 271 dcl TABLE_NAMES (0:3) char(20) int static options(constant) init( 7 272 "UNKNOWN-TABLE", 7 273 "answer_table", 7 274 "absentee_user_table", 7 275 "daemon_user_table"); 7 276 7 277 7 278 /* values for ute.pw_flags.mask_ctl */ 7 279 7 280 dcl (DO_MASK init ("00"b), 7 281 DONT_MASK init ("01"b), 7 282 DERIVE_MASK init ("10"b)) bit (2) internal static options (constant); 7 283 7 284 dcl MASK_CTL_NAMES (0:3) char(12) varying int static options(constant) init( 7 285 "do_mask", "dont_mask", "derive_mask", ""); 7 286 7 287 7 288 /* names for ute.pw_flags */ 7 289 7 290 dcl PW_FLAG_NAMES (9) char (12) varying int static options(constant) init( 7 291 "cpw", 7 292 "generate_pw", 7 293 "dial_pw", 7 294 "slave_pw", 7 295 "cdp", 7 296 "cda", 7 297 "auth_given", 7 298 "noprint", 7 299 "operator"); 7 300 7 301 /* names for ute.uflags */ 7 302 7 303 dcl UFLAG_NAMES (19) char (24) varying int static options (constant) init ( 7 304 "dont_call_init_admin", 7 305 "ip_given", 7 306 "ss_given", 7 307 "lvs_attached", 7 308 "send_initial_string", 7 309 "adjust_abs_q_no", 7 310 "foreground_secondary_ok", 7 311 "foreground_job", 7 312 "sus_sent", 7 313 "suspended", 7 314 "ignore_cpulimit", 7 315 "deferral_logged", 7 316 "save_if_disconnected", 7 317 "disconnected", 7 318 "disconnected_list", 7 319 "proc_create_ok", 7 320 "activity_can_unbump", 7 321 "fpe_causes_logout", 7 322 "user_specified_immediate"); 7 323 7 324 /* names for ute.abs_flags */ 7 325 7 326 dcl ABS_FLAG_NAMES (2) char (8) varying int static options (constant) init ( 7 327 "abs_run", 7 328 "notify"); 7 329 7 330 /* names of ute.dial_server_flags */ 7 331 7 332 dcl DIAL_SERVER_FLAG_NAMES (2) char (12) varying int static options (constant) init ( 7 333 "registered", 7 334 "privileged"); 7 335 7 336 /* values of ute.login_result */ 7 337 7 338 dcl LOGIN_RESULT_VALUES (0:2) char(24) varying int static options(constant) init( 7 339 "logged in", 7 340 "login failed, hangup", 7 341 "login failed, try again"); 7 342 7 343 /* END INCLUDE FILE ... user_table_entry.incl.pl1 */ 138 139 140 end uc_ls_destroy_request_; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 07/13/88 0938.2 uc_ls_destroy_request_.pl1 >special_ldd>install>MR12.2-1047>uc_ls_destroy_request_.pl1 133 1 08/06/87 0913.4 dialup_values.incl.pl1 >ldd>include>dialup_values.incl.pl1 134 2 08/06/87 0913.4 login_server_messages.incl.pl1 >ldd>include>login_server_messages.incl.pl1 135 3 08/06/87 0913.5 ls_request_server_info.incl.pl1 >ldd>include>ls_request_server_info.incl.pl1 136 4 08/06/87 0913.5 sys_log_constants.incl.pl1 >ldd>include>sys_log_constants.incl.pl1 137 5 08/06/87 0913.6 user_attributes.incl.pl1 >ldd>include>user_attributes.incl.pl1 5-112 6 07/13/88 0900.1 user_abs_attributes.incl.pl1 >special_ldd>install>MR12.2-1047>user_abs_attributes.incl.pl1 138 7 07/13/88 0903.2 user_table_entry.incl.pl1 >special_ldd>install>MR12.2-1047>user_table_entry.incl.pl1 NAMES DECLARED IN THIS COMPILATION. IDENTIFIER OFFSET LOC STORAGE CLASS DATA TYPE ATTRIBUTES AND REFERENCES (* indicates a set context) NAMES DECLARED BY DECLARE STATEMENT. ME 000250 constant char(22) initial packed unaligned dcl 68 ref 125 PT_DESTROY_REQUEST 000247 constant fixed bin(17,0) initial dcl 1-106 set ref 100* P_code parameter fixed bin(35,0) dcl 54 set ref 40 104* P_ls_ipc_reply_ptr parameter pointer dcl 53 ref 40 80 93 P_ls_request_lth parameter fixed bin(18,0) dcl 50 set ref 40 83* P_ls_request_ptr parameter pointer dcl 49 ref 40 79 P_ls_request_server_info_ptr parameter pointer dcl 48 ref 40 78 P_ls_response_lth parameter fixed bin(18,0) dcl 52 set ref 40 83* 94* P_ls_response_ptr parameter pointer dcl 51 set ref 40 83* SL_LOG_SILENT constant fixed bin(17,0) initial dcl 4-14 ref 124 TRUE constant bit(1) initial dcl 69 ref 93 WAIT_DESTROY_REQUEST constant fixed bin(17,0) initial dcl 1-25 ref 96 addr builtin function dcl 73 ref 126 126 arg_list_ptr 2 000110 automatic pointer level 2 dcl 4-24 set ref 123* asu_$send_term_signal 000010 constant entry external dcl 62 ref 100 caller 17 000110 automatic varying char(65) level 2 dcl 4-24 set ref 125* code 000100 automatic fixed bin(35,0) dcl 58 in procedure "uc_ls_destroy_request_" set ref 81* 83* 86 86* 104 127* 128 code 16 000110 automatic fixed bin(35,0) level 2 in structure "sl_info" dcl 4-24 in procedure "uc_ls_destroy_request_" set ref 127 cu_$arg_list_ptr 000016 constant entry external dcl 119 ref 123 destroy_flag 421 based fixed bin(17,0) level 2 dcl 7-78 set ref 96* do_not_reply 1(03) based bit(1) level 3 packed packed unaligned dcl 2-445 set ref 93* dpg_ 000012 constant entry external dcl 63 ref 98 100 fixed_part based structure level 2 dcl 2-103 flags 1 based structure level 2 dcl 2-445 immediate 70(02) based bit(1) level 4 packed packed unaligned dcl 2-103 ref 98 login_server_process_request based structure level 1 dcl 2-103 login_server_response_header based structure level 1 dcl 2-258 logout_type 422 based char(4) level 2 packed packed unaligned dcl 7-78 set ref 95* ls_reply_message based structure level 1 dcl 2-445 ls_reply_message_ptr 000104 automatic pointer dcl 2-443 set ref 80* 83* ls_request_header based structure level 1 dcl 2-54 ls_request_ptr 000102 automatic pointer dcl 2-50 set ref 79* 83* 86 86 98 ls_request_server_info_ptr 000106 automatic pointer dcl 3-11 set ref 78* 83* null builtin function dcl 73 ref 7-76 other_flags 70 based structure level 3 dcl 2-103 person_id 42 based char(22) level 3 dcl 2-103 set ref 86* project_id 50 based char(9) level 3 dcl 2-103 set ref 86* severity 15 000110 automatic fixed bin(17,0) level 2 dcl 4-24 set ref 124* sl_info 000110 automatic structure level 1 dcl 4-24 set ref 122* 126 126 sl_info_code_msg 000000 constant structure level 1 dcl 4-187 ref 122 sys_log_$general 000020 constant entry external dcl 120 ref 126 uc_setup_process_connect_ 000014 constant entry external dcl 64 ref 83 user_abs_attributes based structure level 1 dcl 6-25 user_attributes based structure level 1 dcl 5-21 user_connection_info based structure level 1 dcl 2-65 ute based structure level 1 dcl 7-78 utep 000360 automatic pointer initial dcl 7-76 set ref 83* 95 96 98* 100* 100* 7-76* NAMES DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. ABS_ATTRIBUTE_NAMES internal static varying char(28) initial array dcl 6-38 ABS_FLAG_NAMES internal static varying char(8) initial array dcl 7-326 ACTIVE_VALUES internal static char(18) initial array dcl 1-86 ALT_USER_ATTRIBUTE_NAMES internal static char(20) initial array packed unaligned dcl 5-77 CONNECT_REQ internal static fixed bin(17,0) initial dcl 2-457 CREATE_REQ internal static fixed bin(17,0) initial dcl 2-457 DERIVE_MASK internal static bit(2) initial packed unaligned dcl 7-280 DESTROY_REQ internal static fixed bin(17,0) initial dcl 2-457 DIAL_SERVER_FLAG_NAMES internal static varying char(12) initial array dcl 7-332 DONT_MASK internal static bit(2) initial packed unaligned dcl 7-280 DO_MASK internal static bit(2) initial packed unaligned dcl 7-280 ENTERP_REQ internal static fixed bin(17,0) initial dcl 2-457 ENTER_REQ internal static fixed bin(17,0) initial dcl 2-457 LIST_REQ internal static fixed bin(17,0) initial dcl 2-457 LOGIN_REQ internal static fixed bin(17,0) initial dcl 2-457 LOGIN_RESULT_VALUES internal static varying char(24) initial array dcl 7-338 LOGIN_SERVER_DIAL_RESPONSE_VERSION_1 internal static char(8) initial packed unaligned dcl 2-378 LOGIN_SERVER_LIST_RESPONSE_VERSION_1 internal static char(8) initial packed unaligned dcl 2-360 LOGIN_SERVER_NEW_PROC_RESPONSE_VERSION_1 internal static char(8) initial packed unaligned dcl 2-420 LOGIN_SERVER_OPERATOR_REQUEST_VERSION_1 internal static char(8) initial packed unaligned dcl 2-222 LOGIN_SERVER_OPERATOR_RESPONSE_VERSION_1 internal static char(8) initial packed unaligned dcl 2-438 LOGIN_SERVER_PROCESS_RESPONSE_VERSION_1 internal static char(8) initial packed unaligned dcl 2-341 LOGIN_SERVER_TERMINATION_RESPONSE_VERSION_1 internal static char(8) initial packed unaligned dcl 2-407 LS_DIAL_REQUEST internal static fixed bin(17,0) initial dcl 2-31 LS_DIAL_REQUEST_VERSION_1 internal static char(8) initial packed unaligned dcl 2-180 LS_DIAL_RESPONSE internal static fixed bin(17,0) initial dcl 2-228 LS_DISCONNECT_REQUEST internal static fixed bin(17,0) initial dcl 2-31 LS_DISCONNECT_REQUEST_VERSION_1 internal static char(8) initial packed unaligned dcl 2-193 LS_LIST_REQUEST internal static fixed bin(17,0) initial dcl 2-31 LS_LIST_REQUEST_VERSION_1 internal static char(8) initial packed unaligned dcl 2-160 LS_LIST_RESPONSE internal static fixed bin(17,0) initial dcl 2-228 LS_LOGOUT_REQUEST internal static fixed bin(17,0) initial dcl 2-31 LS_LOGOUT_REQUEST_VERSION_1 internal static char(8) initial packed unaligned dcl 2-203 LS_NEW_PROC_RESPONSE internal static fixed bin(17,0) initial dcl 2-228 LS_OPERATOR_REQUEST internal static fixed bin(17,0) initial dcl 2-31 LS_OPERATOR_RESPONSE internal static fixed bin(17,0) initial dcl 2-228 LS_PROCESS_REQUEST internal static fixed bin(17,0) initial dcl 2-31 LS_PROCESS_REQUEST_VERSION_1 internal static char(8) initial packed unaligned dcl 2-150 LS_PROCESS_RESPONSE internal static fixed bin(17,0) initial dcl 2-228 LS_REQUEST_HEADER_VERSION_1 internal static char(8) initial packed unaligned dcl 2-63 LS_REQUEST_SERVER_INFO_VERSION_1 internal static char(8) initial packed unaligned dcl 3-26 LS_REQUEST_TYPES internal static char(10) initial array packed unaligned dcl 2-40 LS_RESPONSE_TYPES internal static char(10) initial array packed unaligned dcl 2-238 LS_TERMINATION_RESPONSE internal static fixed bin(17,0) initial dcl 2-228 LS_UNKNOWN_RESPONSE internal static fixed bin(17,0) initial dcl 2-228 LS_VALIDATE_REQUEST internal static fixed bin(17,0) initial dcl 2-31 LS_VALIDATE_REQUEST_VERSION_1 internal static char(8) initial packed unaligned dcl 2-97 LS_VALIDATE_RESPONSE internal static fixed bin(17,0) initial dcl 2-228 LS_VALIDATE_RESPONSE_VERSION_1 internal static char(8) initial packed unaligned dcl 2-297 MASK_CTL_NAMES internal static varying char(12) initial array dcl 7-284 NETWORK_CONNECTION_DSA_FILE_TRANSFER internal static fixed bin(17,0) initial dcl 2-471 NETWORK_CONNECTION_LOGIN internal static fixed bin(17,0) initial dcl 2-471 NEW_PROC_REQ internal static fixed bin(17,0) initial dcl 2-457 NOW_DIALED internal static fixed bin(17,0) initial dcl 1-76 NOW_DIALED_OUT internal static fixed bin(17,0) initial dcl 1-76 NOW_DIALING internal static fixed bin(17,0) initial dcl 1-76 NOW_FREE internal static fixed bin(17,0) initial dcl 1-76 NOW_HAS_PROCESS internal static fixed bin(17,0) initial dcl 1-76 NOW_HUNG_UP internal static fixed bin(17,0) initial dcl 1-76 NOW_LISTENING internal static fixed bin(17,0) initial dcl 1-76 NOW_LOGGED_IN internal static fixed bin(17,0) initial dcl 1-76 PREEMPT_BUMPED internal static fixed bin(17,0) initial dcl 1-132 PREEMPT_BUMPED_NO_TERM internal static fixed bin(17,0) initial dcl 1-132 PREEMPT_LOAD_CTL internal static fixed bin(17,0) initial dcl 1-132 PREEMPT_TERMSGNL_RECEIVED internal static fixed bin(17,0) initial dcl 1-132 PREEMPT_TERM_SENT internal static fixed bin(17,0) initial dcl 1-132 PREEMPT_UNBUMP internal static fixed bin(17,0) initial dcl 1-132 PREEMPT_UNBUMP_IGNORE_ALARM internal static fixed bin(17,0) initial dcl 1-132 PREEMPT_VALUES internal static varying char(28) initial array dcl 1-142 PROCESS_TYPE_NAMES internal static varying char(12) initial array dcl 7-265 PT_ABSENTEE internal static fixed bin(17,0) initial dcl 7-261 PT_ALARM internal static fixed bin(17,0) initial dcl 1-106 PT_BUMP internal static fixed bin(17,0) initial dcl 1-106 PT_DAEMON internal static fixed bin(17,0) initial dcl 7-261 PT_DETACH internal static fixed bin(17,0) initial dcl 1-106 PT_FPE internal static fixed bin(17,0) initial dcl 1-106 PT_HANGUP internal static fixed bin(17,0) initial dcl 1-106 PT_INTERACTIVE internal static fixed bin(17,0) initial dcl 7-261 PT_LOGOUT internal static fixed bin(17,0) initial dcl 1-106 PT_NEW_PROC_AUTH internal static fixed bin(17,0) initial dcl 1-106 PT_NEW_PROC_REQUEST internal static fixed bin(17,0) initial dcl 1-106 PT_OPERATOR_TERMINATE internal static fixed bin(17,0) initial dcl 1-106 PT_SHUTDOWN internal static fixed bin(17,0) initial dcl 1-106 PT_UNBUMP internal static fixed bin(17,0) initial dcl 1-106 PW_FLAG_NAMES internal static varying char(12) initial array dcl 7-290 SL_INFO_arg_given_in_structure internal static fixed bin(17,0) initial dcl 4-69 SL_INFO_arg_not_given internal static fixed bin(17,0) initial dcl 4-69 SL_INFO_as_mode internal static fixed bin(17,0) initial dcl 4-65 SL_INFO_command_mode internal static fixed bin(17,0) initial dcl 4-65 SL_INFO_version_1 internal static char(8) initial packed unaligned dcl 4-62 SL_LOG internal static fixed bin(17,0) initial dcl 4-14 SL_LOG_BEEP internal static fixed bin(17,0) initial dcl 4-14 SL_LOG_CRASH internal static fixed bin(17,0) initial dcl 4-14 SL_TYPE internal static fixed bin(17,0) initial dcl 4-14 SL_TYPE_BEEP internal static fixed bin(17,0) initial dcl 4-14 SL_TYPE_CRASH internal static fixed bin(17,0) initial dcl 4-14 STATE_VALUES internal static char(15) initial array dcl 1-70 TABLE_NAMES internal static char(20) initial array packed unaligned dcl 7-271 TAG_ABSENTEE internal static char(1) initial packed unaligned dcl 1-93 TAG_DAEMON internal static char(1) initial packed unaligned dcl 1-93 TAG_INTERACTIVE internal static char(1) initial packed unaligned dcl 1-93 TAG_PROXY internal static char(1) initial packed unaligned dcl 1-93 TAG_UFT internal static char(1) initial packed unaligned dcl 1-93 TRA_VEC_VALUES internal static char(32) initial array dcl 1-54 TTY_DIALED internal static fixed bin(17,0) initial dcl 1-64 TTY_HUNG internal static fixed bin(17,0) initial dcl 1-64 TTY_KNOWN internal static fixed bin(17,0) initial dcl 1-64 TTY_MASKED internal static fixed bin(17,0) initial dcl 1-64 UFLAG_NAMES internal static varying char(24) initial array dcl 7-303 USER_ATTRIBUTES_always_allowed internal static bit(36) initial dcl 5-100 USER_ATTRIBUTES_default_in_pdt internal static bit(36) initial dcl 5-104 USER_ATTRIBUTES_settable_by_user internal static bit(36) initial dcl 5-108 USER_ATTRIBUTE_NAMES internal static char(20) initial array packed unaligned dcl 5-50 UTE_version_4 internal static fixed bin(17,0) initial dcl 7-74 WAIT_ANSWERBACK internal static fixed bin(17,0) initial dcl 1-25 WAIT_BEFORE_HANGUP internal static fixed bin(17,0) initial dcl 1-25 WAIT_CONNECT_REQUEST internal static fixed bin(17,0) initial dcl 1-25 WAIT_DELETE_CHANNEL internal static fixed bin(17,0) initial dcl 1-25 WAIT_DETACH internal static fixed bin(17,0) initial dcl 1-25 WAIT_DIALUP internal static fixed bin(17,0) initial dcl 1-25 WAIT_DIAL_OUT internal static fixed bin(17,0) initial dcl 1-25 WAIT_DIAL_RELEASE internal static fixed bin(17,0) initial dcl 1-25 WAIT_DISCARD_WAKEUPS internal static fixed bin(17,0) initial dcl 1-25 WAIT_FIN_PRIV_ATTACH internal static fixed bin(17,0) initial dcl 1-25 WAIT_FIN_TANDD_ATTACH internal static fixed bin(17,0) initial dcl 1-25 WAIT_GREETING_MSG internal static fixed bin(17,0) initial dcl 1-25 WAIT_HANGUP internal static fixed bin(17,0) initial dcl 1-25 WAIT_LOGIN_ARGS internal static fixed bin(17,0) initial dcl 1-25 WAIT_LOGIN_LINE internal static fixed bin(17,0) initial dcl 1-25 WAIT_LOGOUT internal static fixed bin(17,0) initial dcl 1-25 WAIT_LOGOUT_HOLD internal static fixed bin(17,0) initial dcl 1-25 WAIT_LOGOUT_SIG internal static fixed bin(17,0) initial dcl 1-25 WAIT_NEW_PASSWORD internal static fixed bin(17,0) initial dcl 1-25 WAIT_NEW_PROC internal static fixed bin(17,0) initial dcl 1-25 WAIT_NEW_PROC_REQUEST internal static fixed bin(17,0) initial dcl 1-25 WAIT_OLD_PASSWORD internal static fixed bin(17,0) initial dcl 1-25 WAIT_PASSWORD internal static fixed bin(17,0) initial dcl 1-25 WAIT_REMOVE internal static fixed bin(17,0) initial dcl 1-25 WAIT_SLAVE_REQUEST internal static fixed bin(17,0) initial dcl 1-25 WAIT_TANDD_HANGUP internal static fixed bin(17,0) initial dcl 1-25 login_server_dial_request based structure level 1 dcl 2-170 login_server_dial_response based structure level 1 dcl 2-366 login_server_disconnect_request based structure level 1 dcl 2-188 login_server_list_request based structure level 1 dcl 2-156 login_server_list_response based structure level 1 dcl 2-347 login_server_list_response_n_processes automatic fixed bin(17,0) dcl 2-358 login_server_logout_request based structure level 1 dcl 2-199 login_server_new_proc_response based structure level 1 dcl 2-414 login_server_operator_request based structure level 1 dcl 2-214 login_server_operator_response based structure level 1 dcl 2-426 login_server_process_response based structure level 1 dcl 2-303 login_server_termination_response based structure level 1 dcl 2-385 login_server_validate_request based structure level 1 dcl 2-76 login_server_validate_response based structure level 1 dcl 2-267 ls_process_request_arg_string_length automatic fixed bin(21,0) dcl 2-148 ls_process_request_n_args automatic fixed bin(17,0) dcl 2-147 ls_process_response_accounting_message_length automatic fixed bin(17,0) dcl 2-339 ls_request_server_info based structure level 1 dcl 3-12 ls_response_ptr automatic pointer dcl 2-254 sl_info_msg internal static structure level 1 dcl 4-214 sl_info_sev_code_label_msg internal static structure level 1 dcl 4-161 sl_info_sev_code_msg internal static structure level 1 dcl 4-82 sl_info_sev_coded_msg internal static structure level 1 dcl 4-134 sl_info_sev_msg internal static structure level 1 dcl 4-108 NAMES DECLARED BY EXPLICIT CONTEXT. Abort 000525 constant entry internal dcl 116 ref 86 RETURN 000520 constant label dcl 104 ref 128 uc_ls_destroy_request_ 000320 constant entry external dcl 40 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 702 724 575 712 Length 1266 575 22 325 105 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME uc_ls_destroy_request_ 284 external procedure is an external procedure. Abort 70 internal procedure is declared options(variable). STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME uc_ls_destroy_request_ 000100 code uc_ls_destroy_request_ 000102 ls_request_ptr uc_ls_destroy_request_ 000104 ls_reply_message_ptr uc_ls_destroy_request_ 000106 ls_request_server_info_ptr uc_ls_destroy_request_ 000110 sl_info uc_ls_destroy_request_ 000360 utep uc_ls_destroy_request_ THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out_desc call_ext_out call_int_this_desc return_mac tra_ext_1 ext_entry int_entry THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. asu_$send_term_signal cu_$arg_list_ptr dpg_ sys_log_$general uc_setup_process_connect_ NO EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 40 000312 7 76 000325 78 000327 79 000333 80 000336 81 000341 83 000342 86 000366 93 000420 94 000425 95 000426 96 000431 98 000433 100 000463 104 000520 106 000523 116 000524 122 000532 123 000536 124 000544 125 000547 126 000554 127 000565 128 000570 130 000574 ----------------------------------------------------------- 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