xref: /titanic_50/usr/src/lib/libbsm/common/adt.xml (revision 7a38c0bebc3357184955f1e85e519c3b81e9da85)
1c0c79a3fStz204579<?xml version="1.0" standalone="yes"?>
2c0c79a3fStz204579<!DOCTYPE specification SYSTEM "audit.dtd">
3c0c79a3fStz204579<!--
4c0c79a3fStz204579 CDDL HEADER START
5c0c79a3fStz204579
6c0c79a3fStz204579 The contents of this file are subject to the terms of the
7c0c79a3fStz204579 Common Development and Distribution License (the "License").
8c0c79a3fStz204579 You may not use this file except in compliance with the License.
9c0c79a3fStz204579
10c0c79a3fStz204579 You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
11c0c79a3fStz204579 or http://www.opensolaris.org/os/licensing.
12c0c79a3fStz204579 See the License for the specific language governing permissions
13c0c79a3fStz204579 and limitations under the License.
14c0c79a3fStz204579
15c0c79a3fStz204579 When distributing Covered Code, include this CDDL HEADER in each
16c0c79a3fStz204579 file and include the License file at usr/src/OPENSOLARIS.LICENSE.
17c0c79a3fStz204579 If applicable, add the following below this CDDL HEADER, with the
18c0c79a3fStz204579 fields enclosed by brackets "[]" replaced with your own identifying
19c0c79a3fStz204579 information: Portions Copyright [yyyy] [name of copyright owner]
20c0c79a3fStz204579
21c0c79a3fStz204579 CDDL HEADER END
22c0c79a3fStz204579
23c0c79a3fStz204579Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
24c0c79a3fStz204579Use is subject to license terms.
25c0c79a3fStz204579
26c0c79a3fStz204579  ident	"%Z%%M%	%I%	%E% SMI"
27c0c79a3fStz204579-->
28c0c79a3fStz204579
29c0c79a3fStz204579<specification>
30c0c79a3fStz204579
31c0c79a3fStz204579<!-- comments are displayed to stderr if debug is on -->
32c0c79a3fStz204579<debug set="off"/>
33c0c79a3fStz204579
34c0c79a3fStz204579    <!-- The order of events is arbitrary EXCEPT generic events must
35c0c79a3fStz204579	 precede their instances -->
36c0c79a3fStz204579       <!-- The order of entries within an event determine the order
37c0c79a3fStz204579            data is defined in the external API -->
38c0c79a3fStz204579	    <!-- The order of internal / external is arbitrary -->
39c0c79a3fStz204579
40c0c79a3fStz204579<!--
41c0c79a3fStz204579	tags:
42c0c79a3fStz204579			The following top level tags are defined:
43c0c79a3fStz204579			<event> <token> <msg_list> <debug>
44c0c79a3fStz204579
45c0c79a3fStz204579	event		defines an audit record
46c0c79a3fStz204579			- id is the record id from audit_uevents.h
47c0c79a3fStz204579			- reorder="yes" or "no".  (default is "no").
48c0c79a3fStz204579			  if "yes" then the order of the tokens to be
49c0c79a3fStz204579			  output does not match the order of the data
50c0c79a3fStz204579			  input.  (see order attribute of <entry>)
51c0c79a3fStz204579			- header defines the header file to contain the external
52c0c79a3fStz204579			  definitions for this event type.  The header file
53c0c79a3fStz204579			  name is adt_event_N.h, where N is the value supplied
54c0c79a3fStz204579			  header="0" is for "stable" events, > 0 for new ones.
55c0c79a3fStz204579			  with this attribute. (header="1").
56c0c79a3fStz204579			- idNo is the number associated with the external
57c0c79a3fStz204579			  name of this event. (For AUE_login, ADT_login is
58c0c79a3fStz204579			  the external name and idNo is the value for
59c0c79a3fStz204579			  ADT_login.)
60c0c79a3fStz204579			- omit is by default 'no' (i.e., don't omit) and can be
61c0c79a3fStz204579			  'always' or 'JNI'.  In the latter case, C interface
62c0c79a3fStz204579			  code is generated but neither Java nor JNI code is.
63c0c79a3fStz204579			- included text is just a comment
64c0c79a3fStz204579			Within an event block, the following tags are defined:
65*7a38c0beStz204579			<entry>, <debug>, <altname>, <title>, <program>, <see>
66c0c79a3fStz204579
67c0c79a3fStz204579	altname		defines the internal name of an audit record; if
68c0c79a3fStz204579			omitted, the internal name is the same as the
69c0c79a3fStz204579			external name.
70c0c79a3fStz204579
71*7a38c0beStz204579	title,		these tags are used by bsmrecord build to create
72*7a38c0beStz204579	program,	audit_record_attr database from adt events.
73*7a38c0beStz204579	see		Following example demonstrates their semantics:
74*7a38c0beStz204579
75*7a38c0beStz204579			bsmrecord -p passwd
76*7a38c0beStz204579			passwd		<-   <title>
77*7a38c0beStz204579			  program     various              See passwd(1)
78*7a38c0beStz204579			  		^-   <program>		^-   <see>
79*7a38c0beStz204579			  event ID    6163                 AUE_passwd
80*7a38c0beStz204579			  class       lo                   (0x00001000)
81*7a38c0beStz204579			      header
82*7a38c0beStz204579			      subject
83*7a38c0beStz204579			      [text]                       username...
84*7a38c0beStz204579			      					^-   <comment>
85*7a38c0beStz204579			      return
86*7a38c0beStz204579
87c0c79a3fStz204579	entry		defines the correspondence between the data
88c0c79a3fStz204579			supplied by the caller and the token to be
89c0c79a3fStz204579			output.
90c0c79a3fStz204579			- id is the data name that shows up in the structures
91c0c79a3fStz204579			  of adt_event.h  If it is a comma separated list,
92c0c79a3fStz204579			  it is the list of names of data to be associated
93c0c79a3fStz204579			  with one output token.  (See <external>, below)
94c0c79a3fStz204579			Within an entry block, the following tags are defined:
95*7a38c0beStz204579			<internal>, <external>, <debug>, <comment>
96c0c79a3fStz204579
97c0c79a3fStz204579	internal	defines the token to be generated.
98c0c79a3fStz204579			- token is a name that must also be defined with
99c0c79a3fStz204579			  a <token> tag elsewhere in this file.  (order is
100c0c79a3fStz204579			  not important).
101c0c79a3fStz204579			- order="some number" determines the order of the
102c0c79a3fStz204579			  tokens to be output, starting with 1.  The subject
103c0c79a3fStz204579			  token is normally order="1".  The use is to insure
104c0c79a3fStz204579			  that the order of fields listed in adt_event.h does
105c0c79a3fStz204579			  not change when we arbitrarily change the order of
106c0c79a3fStz204579			  tokens.  If the <event reorder="yes"> is not set,
107c0c79a3fStz204579			  order is ignored.
108c0c79a3fStz204579			- format is a printf-like string that will be used
109c0c79a3fStz204579			  in to format the data supplied by the user.
110c0c79a3fStz204579
111c0c79a3fStz204579	external	defines the data to be supplied for creating the
112c0c79a3fStz204579			token defined via <internal>
113c0c79a3fStz204579			- opt is one of four values:  "required", "optional",
114c0c79a3fStz204579			  "obsolete", or "none".  The first two values
115c0c79a3fStz204579			  indicate that this token's data must or may
116c0c79a3fStz204579			  be supplied by the user; the third value is
117c0c79a3fStz204579			  equivalent to "optional" but shows in the
118c0c79a3fStz204579			  comment that this field is no longer used;
119c0c79a3fStz204579			  the forth value indicates that this token
120c0c79a3fStz204579			  does not require any user-supplied data.  If
121c0c79a3fStz204579			  data is required, then a token is always
122c0c79a3fStz204579			  output, while optional data is output only
123c0c79a3fStz204579			  if data is supplied.
124c0c79a3fStz204579			- type describes the C data type to be associated
125c0c79a3fStz204579			  with the <entry id="dataName">.  The following
126c0c79a3fStz204579			  data types are representative:
127c0c79a3fStz204579
128c0c79a3fStz204579				au_asid_t (uint32_t)
129c0c79a3fStz204579				char
130c0c79a3fStz204579				char * (blank is optional)
131c0c79a3fStz204579				char ** (blank is optional)
132c0c79a3fStz204579				uint_t, int, int32_t, uid_t, gid_t
133c0c79a3fStz204579				uid_t *, gid_t *
134c0c79a3fStz204579				long, ulong_t
135c0c79a3fStz204579				m_label_t *
136c0c79a3fStz204579				pid_t
137c0c79a3fStz204579				priv_set_t *
138c0c79a3fStz204579				uint16_t, unit32_t, uint64_t
139c0c79a3fStz204579				uint32_t *, uint32_t[], uint64_t *
140c0c79a3fStz204579				msg  (not a C type, see below)
141c0c79a3fStz204579
142c0c79a3fStz204579			Below is what Tony said.  Above seems to be
143c0c79a3fStz204579			what is implemented
144c0c79a3fStz204579				char
145c0c79a3fStz204579				char * (blank is optional)
146c0c79a3fStz204579				char ** (blank is optional)
147c0c79a3fStz204579				int, uid_t, gid_t
148c0c79a3fStz204579				int *, uid_t *, gid_t *
149c0c79a3fStz204579				msg  (not a C type, see below)
150c0c79a3fStz204579				time_t
151c0c79a3fStz204579				uint, uint *
152c0c79a3fStz204579
153c0c79a3fStz204579			  The msg type refers to an enumerated type
154c0c79a3fStz204579			  that must be defined via a <msg> description
155c0c79a3fStz204579			  else where in this file. The syntax is
156c0c79a3fStz204579			  special.  Example: <external opt="optional"
157c0c79a3fStz204579			  type="msg login_text"/> "login_text" is the
158c0c79a3fStz204579			  id of a <msg_list> descriptor given
159c0c79a3fStz204579			  elsewhere in this file.
160c0c79a3fStz204579
161c0c79a3fStz204579			If the <entry> id is a list, the type must also
162c0c79a3fStz204579			be a comma-separated list, where the types are
163c0c79a3fStz204579			in the same order as the id's.
164c0c79a3fStz204579			If the type is an array, its length must be given
165c0c79a3fStz204579			explicitly.
166c0c79a3fStz204579
167*7a38c0beStz204579	comment		Used by bsmrecord build to generate audit_record_attr.
168*7a38c0beStz204579			Comment is explanation note printed with token type.
169*7a38c0beStz204579			See example above for other tags related to bsmrecord.
170*7a38c0beStz204579
171c0c79a3fStz204579	token		Define allowed token names.
172c0c79a3fStz204579			- id is the name of token; this name is used
173c0c79a3fStz204579			as an <internal> id.
174c0c79a3fStz204579			- usage is an optional value.  At present, only
175c0c79a3fStz204579			  "TSOL" is defined; it means that this data is
176c0c79a3fStz204579			  to be used only in Trusted Solaris implementations.
177c0c79a3fStz204579
178c0c79a3fStz204579	msg_list	Define a set of text strings.
179c0c79a3fStz204579			- id is the name to be used for this group of text
180c0c79a3fStz204579			  strings in adt_event.h
181c0c79a3fStz204579			- header is as defined for <event>
182c0c79a3fStz204579			Within a msg_list block, <msg> and <debug> are defined.
183c0c79a3fStz204579			The order of <msg> tags in a msg_list is reflected
184c0c79a3fStz204579			directly in adt_event.h
185c0c79a3fStz204579
186c0c79a3fStz204579	msg		Define one string.
187c0c79a3fStz204579			- id is the name to be used in the enum describing
188c0c79a3fStz204579			  this set of strings.  Convention:  use upper case.
189c0c79a3fStz204579			The content (text between <msg> and </msg>) is the
190c0c79a3fStz204579			actual string.  Extra white space, including line
191c0c79a3fStz204579			feeds, is ignored.  If empty, no output token
192c0c79a3fStz204579			is generated unless the <external> opt attribute is
193c0c79a3fStz204579			set to "required", in which case a blank text token
194c0c79a3fStz204579			is generated.
195c0c79a3fStz204579			Within a msg block, <debug> is defined, but has not been
196c0c79a3fStz204579			tested and may have no effect.
197c0c79a3fStz204579
198c0c79a3fStz204579	debug		This turns on/off debug messages during the processing
199c0c79a3fStz204579			of the xml data.  It affects the block within which it
200c0c79a3fStz204579			is defined.
201c0c79a3fStz204579			- set may have one of two values:  "on" or "off".  If
202c0c79a3fStz204579			  set is omitted, the debug state for the current block
203c0c79a3fStz204579			  is toggled.
204c0c79a3fStz204579			The use of the <debug> tag does not affect the output
205c0c79a3fStz204579			of data to the various files created, but does generate
206c0c79a3fStz204579			potentially large amounts of output to stderr.
207c0c79a3fStz204579
208c0c79a3fStz204579-->
209c0c79a3fStz204579<!--        template for an event record definition
210c0c79a3fStz204579
211c0c79a3fStz204579    <event id="" header="0" idNo="">
212c0c79a3fStz204579	<entry id="subject">
213c0c79a3fStz204579	    <internal token="subject"/>
214c0c79a3fStz204579	    <external opt="none"/>
215c0c79a3fStz204579	</entry>
216c0c79a3fStz204579	<entry id="">
217c0c79a3fStz204579	    <internal token=""/>
218c0c79a3fStz204579	    <external opt="" type="" />
219c0c79a3fStz204579	</entry>
220c0c79a3fStz204579	<entry id="return">
221c0c79a3fStz204579	    <internal token="return"/>
222c0c79a3fStz204579	    <external opt="none"/>
223c0c79a3fStz204579	</entry>
224c0c79a3fStz204579    </event>
225c0c79a3fStz204579
226c0c79a3fStz204579    Generic events must precede Instance events; within each
227c0c79a3fStz204579    group, please group the AUE_* by area and event idNo-s in order,
228c0c79a3fStz204579    gaps in idNo-s are OK.
229c0c79a3fStz204579    N.B. Renumbering idNo-s requires recompilation of consumers.  See
230c0c79a3fStz204579    the contracts for whom to notify if/when this happens.
231c0c79a3fStz204579-->
232c0c79a3fStz204579
233c0c79a3fStz204579<!-- generic events  -->
234c0c79a3fStz204579
235c0c79a3fStz204579    <!--
236c0c79a3fStz204579	'omit="always"' means that this record type is not reflected
237c0c79a3fStz204579	in the generated header and table files.
238c0c79a3fStz204579     -->
239c0c79a3fStz204579
240c0c79a3fStz204579    <event id="AUE_generic_basic" type="generic" omit="always">
241c0c79a3fStz204579	<!--
242c0c79a3fStz204579
243c0c79a3fStz204579	This is a template for the event types that have no tokens
244c0c79a3fStz204579	other than the header and return. There is no allowed_type
245c0c79a3fStz204579	list because the template is not externally visible due to the
246c0c79a3fStz204579	omit="always".
247c0c79a3fStz204579
248c0c79a3fStz204579	-->
249c0c79a3fStz204579	<entry id="subject">
250c0c79a3fStz204579	    <internal token="subject"/>
251c0c79a3fStz204579	    <external opt="none"/>
252c0c79a3fStz204579	</entry>
253c0c79a3fStz204579	<entry id="return">
254c0c79a3fStz204579	    <internal token="return"/>
255c0c79a3fStz204579	    <external opt="none"/>
256c0c79a3fStz204579	</entry>
257c0c79a3fStz204579    </event>
258c0c79a3fStz204579
259c0c79a3fStz204579    <event id="AUE_generic_login" type="generic" omit="always">
260c0c79a3fStz204579	<!--
261c0c79a3fStz204579
262c0c79a3fStz204579	This is a template for the various login event types
263c0c79a3fStz204579	AUE_login, AUE_ftp, etc which match this template.  There is
264c0c79a3fStz204579	no allowed_type list because the template is not externally
265c0c79a3fStz204579	visible due to the omit="always".
266c0c79a3fStz204579
267c0c79a3fStz204579	-->
268c0c79a3fStz204579	<entry id="subject">
269c0c79a3fStz204579	    <internal token="subject"/>
270c0c79a3fStz204579	    <external opt="none"/>
271c0c79a3fStz204579	</entry>
272c0c79a3fStz204579
273c0c79a3fStz204579	<!--	This field is still in use for SMC until it is cleaned up,
274c0c79a3fStz204579		it must remain, see login_text msg list at the end of the
275c0c79a3fStz204579		file.
276c0c79a3fStz204579	-->
277c0c79a3fStz204579	<entry id="message">
278c0c79a3fStz204579	    <internal token="text"/>
279c0c79a3fStz204579	    <external opt="optional" type="msg login_text"/>
280c0c79a3fStz204579	    <comment>error message</comment>
281c0c79a3fStz204579	</entry>
282c0c79a3fStz204579	<entry id="return">
283c0c79a3fStz204579	    <internal token="return"/>
284c0c79a3fStz204579	    <external opt="none"/>
285c0c79a3fStz204579	</entry>
286c0c79a3fStz204579    </event>
287c0c79a3fStz204579
288c0c79a3fStz204579<!-- generic SMC events  -->
289c0c79a3fStz204579
290c0c79a3fStz204579    <event id="AUE_generic_SMC_add" type="generic" omit="always">
291c0c79a3fStz204579	<entry id="subject">
292c0c79a3fStz204579	    <internal token="subject"/>
293c0c79a3fStz204579	    <external opt="none"/>
294c0c79a3fStz204579	</entry>
295c0c79a3fStz204579	<entry id="object_name">
296c0c79a3fStz204579	    <internal token="text"/>
297c0c79a3fStz204579	    <external opt="required" type="char *"/>
298c0c79a3fStz204579	    <comment>object name</comment>
299c0c79a3fStz204579	</entry>
300c0c79a3fStz204579	<entry id="domain">
301c0c79a3fStz204579	    <internal token="text"/>
302c0c79a3fStz204579	    <external opt="optional" type="char *"/>
303c0c79a3fStz204579	    <comment>domain</comment>
304c0c79a3fStz204579	</entry>
305c0c79a3fStz204579	<entry id="name_service">
306c0c79a3fStz204579	    <internal token="text"/>
307c0c79a3fStz204579	    <external opt="required" type="char *"/>
308c0c79a3fStz204579	    <comment>name_service</comment>
309c0c79a3fStz204579	</entry>
310c0c79a3fStz204579	<entry id="auth_used">
311c0c79a3fStz204579	    <internal token="uauth"/>
312c0c79a3fStz204579	    <external opt="optional" type="char *"/>
313c0c79a3fStz204579	    <comment>authorization used</comment>
314c0c79a3fStz204579	</entry>
315c0c79a3fStz204579	<!--
316c0c79a3fStz204579	  This should really be its own token type, not "text"
317c0c79a3fStz204579	-->
318c0c79a3fStz204579	<entry id="initial_values">
319c0c79a3fStz204579	    <internal token="text"/>
320c0c79a3fStz204579	    <external opt="required" type="char *"/>
321c0c79a3fStz204579	    <comment>initial values</comment>
322c0c79a3fStz204579	</entry>
323c0c79a3fStz204579	<entry id="return">
324c0c79a3fStz204579	    <internal token="return"/>
325c0c79a3fStz204579	    <external opt="none"/>
326c0c79a3fStz204579	</entry>
327c0c79a3fStz204579    </event>
328c0c79a3fStz204579
329c0c79a3fStz204579    <event id="AUE_generic_SMC_delete" type="generic" omit="always">
330c0c79a3fStz204579	<entry id="subject">
331c0c79a3fStz204579	    <internal token="subject"/>
332c0c79a3fStz204579	    <external opt="none"/>
333c0c79a3fStz204579	</entry>
334c0c79a3fStz204579	<entry id="object_name">
335c0c79a3fStz204579	    <internal token="text"/>
336c0c79a3fStz204579	    <external opt="required" type="char *"/>
337c0c79a3fStz204579	    <comment>object name</comment>
338c0c79a3fStz204579	</entry>
339c0c79a3fStz204579	<entry id="domain">
340c0c79a3fStz204579	    <internal token="text"/>
341c0c79a3fStz204579	    <external opt="optional" type="char *"/>
342c0c79a3fStz204579	    <comment>domain</comment>
343c0c79a3fStz204579	</entry>
344c0c79a3fStz204579	<entry id="name_service">
345c0c79a3fStz204579	    <internal token="text"/>
346c0c79a3fStz204579	    <external opt="required" type="char *"/>
347c0c79a3fStz204579	    <comment>name_service</comment>
348c0c79a3fStz204579	</entry>
349c0c79a3fStz204579	<entry id="auth_used">
350c0c79a3fStz204579	    <internal token="uauth"/>
351c0c79a3fStz204579	    <external opt="optional" type="char *"/>
352c0c79a3fStz204579	    <comment>authorization used</comment>
353c0c79a3fStz204579	</entry>
354c0c79a3fStz204579	<entry id="delete_values">
355c0c79a3fStz204579	    <internal token="text"/>
356c0c79a3fStz204579	    <external opt="required" type="char *"/>
357c0c79a3fStz204579	    <comment>deleted values</comment>
358c0c79a3fStz204579	</entry>
359c0c79a3fStz204579	<entry id="return">
360c0c79a3fStz204579	    <internal token="return"/>
361c0c79a3fStz204579	    <external opt="none"/>
362c0c79a3fStz204579	</entry>
363c0c79a3fStz204579    </event>
364c0c79a3fStz204579
365c0c79a3fStz204579    <event id="AUE_generic_SMC_modify" type="generic" omit="always">
366c0c79a3fStz204579	<entry id="subject">
367c0c79a3fStz204579	    <internal token="subject"/>
368c0c79a3fStz204579	    <external opt="none"/>
369c0c79a3fStz204579	</entry>
370c0c79a3fStz204579	<entry id="object_name">
371c0c79a3fStz204579	    <internal token="text"/>
372c0c79a3fStz204579	    <external opt="required" type="char *"/>
373c0c79a3fStz204579	    <comment>object name</comment>
374c0c79a3fStz204579	</entry>
375c0c79a3fStz204579	<entry id="domain">
376c0c79a3fStz204579	    <internal token="text"/>
377c0c79a3fStz204579	    <external opt="optional" type="char *"/>
378c0c79a3fStz204579	    <comment>domain</comment>
379c0c79a3fStz204579	</entry>
380c0c79a3fStz204579	<entry id="name_service">
381c0c79a3fStz204579	    <internal token="text"/>
382c0c79a3fStz204579	    <external opt="required" type="char *"/>
383c0c79a3fStz204579	    <comment>name_service</comment>
384c0c79a3fStz204579	</entry>
385c0c79a3fStz204579	<entry id="auth_used">
386c0c79a3fStz204579	    <internal token="uauth"/>
387c0c79a3fStz204579	    <external opt="optional" type="char *"/>
388c0c79a3fStz204579	    <comment>authorization used</comment>
389c0c79a3fStz204579	</entry>
390c0c79a3fStz204579	<entry id="changed_values">
391c0c79a3fStz204579	    <internal token="text"/>
392c0c79a3fStz204579	    <external opt="required" type="char *"/>
393c0c79a3fStz204579	    <comment>changed values</comment>
394c0c79a3fStz204579	</entry>
395c0c79a3fStz204579	<entry id="return">
396c0c79a3fStz204579	    <internal token="return"/>
397c0c79a3fStz204579	    <external opt="none"/>
398c0c79a3fStz204579	</entry>
399c0c79a3fStz204579    </event>
400c0c79a3fStz204579
401c0c79a3fStz204579<!-- instances -->
402c0c79a3fStz204579
403c0c79a3fStz204579<!--
404c0c79a3fStz204579	Java needed for SMC events.  Since the SMC events grow less
405c0c79a3fStz204579	often than the C related events.  They come first.  It
406c0c79a3fStz204579	would be nice to reorder the idNo-s, but that's an ABI
407c0c79a3fStz204579	change and should rev libbsm version no.  If reordered
408c0c79a3fStz204579	start with 1 and eliminate the comment at the end about
409c0c79a3fStz204579	the highest idNo.
410c0c79a3fStz204579-->
411c0c79a3fStz204579    <event id="AUE_admin_authenticate" instance_of="AUE_generic_login"
412c0c79a3fStz204579	header="0" idNo="3">
413c0c79a3fStz204579	<title>Admin Server Authentication</title>
414c0c79a3fStz204579	<program>admin (various)</program>
415c0c79a3fStz204579	<see>SMC, WBEM, or AdminSuite</see>
416c0c79a3fStz204579    </event>
417c0c79a3fStz204579
418c0c79a3fStz204579    <event id="AUE_filesystem_add" instance_of="AUE_generic_SMC_add"
419c0c79a3fStz204579	header="0" idNo="4">
420c0c79a3fStz204579	<title>SMC: filesystem add</title>
421c0c79a3fStz204579	<program>SMC server</program>
422c0c79a3fStz204579    </event>
423c0c79a3fStz204579    <event id="AUE_filesystem_delete" instance_of="AUE_generic_SMC_delete"
424c0c79a3fStz204579	header="0" idNo="5">
425c0c79a3fStz204579	<title>SMC: filesystem delete</title>
426c0c79a3fStz204579	<program>SMC server</program>
427c0c79a3fStz204579    </event>
428c0c79a3fStz204579    <event id="AUE_filesystem_modify" instance_of="AUE_generic_SMC_modify"
429c0c79a3fStz204579	header="0" idNo="6">
430c0c79a3fStz204579	<title>SMC: filesystem modify</title>
431c0c79a3fStz204579	<program>SMC server</program>
432c0c79a3fStz204579    </event>
433c0c79a3fStz204579
434c0c79a3fStz204579    <event id="AUE_network_add" instance_of="AUE_generic_SMC_add"
435c0c79a3fStz204579	header="0" idNo="7">
436c0c79a3fStz204579	<title>SMC: network add</title>
437c0c79a3fStz204579	<program>SMC server</program>
438c0c79a3fStz204579    </event>
439c0c79a3fStz204579    <event id="AUE_network_delete" instance_of="AUE_generic_SMC_delete"
440c0c79a3fStz204579	header="0" idNo="8">
441c0c79a3fStz204579	<title>SMC: network delete</title>
442c0c79a3fStz204579	<program>SMC server</program>
443c0c79a3fStz204579    </event>
444c0c79a3fStz204579    <event id="AUE_network_modify" instance_of="AUE_generic_SMC_modify"
445c0c79a3fStz204579	header="0" idNo="9">
446c0c79a3fStz204579	<title>SMC: network modify</title>
447c0c79a3fStz204579	<program>SMC server</program>
448c0c79a3fStz204579    </event>
449c0c79a3fStz204579
450c0c79a3fStz204579    <event id="AUE_printer_add" instance_of="AUE_generic_SMC_add"
451c0c79a3fStz204579	header="0" idNo="10">
452c0c79a3fStz204579	<title>SMC: printer add</title>
453c0c79a3fStz204579	<program>SMC server</program>
454c0c79a3fStz204579    </event>
455c0c79a3fStz204579    <event id="AUE_printer_delete" instance_of="AUE_generic_SMC_delete"
456c0c79a3fStz204579	header="0" idNo="11">
457c0c79a3fStz204579	<title>SMC: printer delete</title>
458c0c79a3fStz204579	<program>SMC server</program>
459c0c79a3fStz204579    </event>
460c0c79a3fStz204579    <event id="AUE_printer_modify" instance_of="AUE_generic_SMC_modify"
461c0c79a3fStz204579	header="0" idNo="12">
462c0c79a3fStz204579	<title>SMC: printer modify</title>
463c0c79a3fStz204579	<program>SMC server</program>
464c0c79a3fStz204579    </event>
465c0c79a3fStz204579
466c0c79a3fStz204579<!--
467c0c79a3fStz204579	This is SMC; it's also used in su and should probably be used in
468c0c79a3fStz204579	desktop role login.  If we fix the SMC to not record NO_MSG here,
469c0c79a3fStz204579	we can fix to record failed user.  See su.c and AUE_su.
470c0c79a3fStz204579-->
471c0c79a3fStz204579    <event id="AUE_role_login" instance_of="AUE_generic_login"
472c0c79a3fStz204579	header="0" idNo="13">
473c0c79a3fStz204579	<title>RBAC: role login</title>
474c0c79a3fStz204579	<program>SMC server</program>
475c0c79a3fStz204579	<program>/usr/bin/su</program>
476c0c79a3fStz204579    </event>
477c0c79a3fStz204579
478c0c79a3fStz204579    <event id="AUE_scheduledjob_add" instance_of="AUE_generic_SMC_add"
479c0c79a3fStz204579	header="0" idNo="14">
480c0c79a3fStz204579	<title>SMC: scheduled job add</title>
481c0c79a3fStz204579	<program>SMC server</program>
482c0c79a3fStz204579    </event>
483c0c79a3fStz204579    <event id="AUE_scheduledjob_delete" instance_of="AUE_generic_SMC_delete"
484c0c79a3fStz204579	header="0" idNo="15">
485c0c79a3fStz204579	<title>SMC: scheduled job delete</title>
486c0c79a3fStz204579	<program>SMC server</program>
487c0c79a3fStz204579    </event>
488c0c79a3fStz204579    <event id="AUE_scheduledjob_modify" instance_of="AUE_generic_SMC_modify"
489c0c79a3fStz204579	header="0" idNo="16">
490c0c79a3fStz204579	<title>SMC: scheduled job modify</title>
491c0c79a3fStz204579	<program>SMC server</program>
492c0c79a3fStz204579    </event>
493c0c79a3fStz204579
494c0c79a3fStz204579    <event id="AUE_serialport_add" instance_of="AUE_generic_SMC_add"
495c0c79a3fStz204579	header="0" idNo="17">
496c0c79a3fStz204579	<title>SMC: serial port add</title>
497c0c79a3fStz204579	<program>SMC server</program>
498c0c79a3fStz204579    </event>
499c0c79a3fStz204579    <event id="AUE_serialport_delete" instance_of="AUE_generic_SMC_delete"
500c0c79a3fStz204579	header="0" idNo="18">
501c0c79a3fStz204579	<title>SMC: serial port delete</title>
502c0c79a3fStz204579	<program>SMC server</program>
503c0c79a3fStz204579    </event>
504c0c79a3fStz204579    <event id="AUE_serialport_modify" instance_of="AUE_generic_SMC_modify"
505c0c79a3fStz204579	header="0" idNo="19">
506c0c79a3fStz204579	<title>SMC: serial port modify</title>
507c0c79a3fStz204579	<program>SMC server</program>
508c0c79a3fStz204579    </event>
509c0c79a3fStz204579
510c0c79a3fStz204579<!-- This is SMC; should this also be used elsewhere? -->
511c0c79a3fStz204579    <event id="AUE_uauth" header="0" idNo="20">
512c0c79a3fStz204579    	<title>SMC: Use of Authorization</title>
513c0c79a3fStz204579	<program>SMC server</program>
514c0c79a3fStz204579	<entry id="subject">
515c0c79a3fStz204579	    <internal token="subject"/>
516c0c79a3fStz204579	    <external opt="none"/>
517c0c79a3fStz204579	</entry>
518c0c79a3fStz204579	<entry id="auth_used">
519c0c79a3fStz204579	    <internal token="uauth"/>
520c0c79a3fStz204579	    <external opt="required" type="char *"/>
521c0c79a3fStz204579	    <comment>authorization used</comment>
522c0c79a3fStz204579	</entry>
523c0c79a3fStz204579	<entry id="objectname">
524c0c79a3fStz204579	    <internal token="text"/>
525c0c79a3fStz204579	    <external opt="required" type="char *"/>
526c0c79a3fStz204579	    <comment>object name</comment>
527c0c79a3fStz204579	</entry>
528c0c79a3fStz204579	<entry id="return">
529c0c79a3fStz204579	    <internal token="return"/>
530c0c79a3fStz204579	    <external opt="none"/>
531c0c79a3fStz204579	</entry>
532c0c79a3fStz204579    </event>
533c0c79a3fStz204579
534c0c79a3fStz204579    <event id="AUE_usermgr_add" instance_of="AUE_generic_SMC_add"
535c0c79a3fStz204579	header="0" idNo="21">
536c0c79a3fStz204579	<title>SMC: User Manager add</title>
537c0c79a3fStz204579	<program>SMC server</program>
538c0c79a3fStz204579    </event>
539c0c79a3fStz204579    <event id="AUE_usermgr_delete" instance_of="AUE_generic_SMC_delete"
540c0c79a3fStz204579	header="0" idNo="22">
541c0c79a3fStz204579	<title>SMC: User Manager delete</title>
542c0c79a3fStz204579	<program>SMC server</program>
543c0c79a3fStz204579    </event>
544c0c79a3fStz204579    <event id="AUE_usermgr_modify" instance_of="AUE_generic_SMC_modify"
545c0c79a3fStz204579	header="0" idNo="23">
546c0c79a3fStz204579	<title>SMC: User Manager modify</title>
547c0c79a3fStz204579	<program>SMC server</program>
548c0c79a3fStz204579    </event>
549c0c79a3fStz204579<!-- end of Java needed for SMC events -->
550c0c79a3fStz204579<!--
551c0c79a3fStz204579    while not used by SMC logout is used by Lockhart
552c0c79a3fStz204579-->
553c0c79a3fStz204579    <event id="AUE_logout" header="0" idNo="1">
554c0c79a3fStz204579    	<title>login: logout</title>
555c0c79a3fStz204579	<program>various</program>
556c0c79a3fStz204579	<see>login(1)</see>
557c0c79a3fStz204579	<entry id="subject">
558c0c79a3fStz204579	    <internal token="subject"/>
559c0c79a3fStz204579	    <external opt="none"/>
560c0c79a3fStz204579	</entry>
561c0c79a3fStz204579<!--
562c0c79a3fStz204579    not used by C code, used by Lockhart,
563c0c79a3fStz204579    get them to change and remove
564c0c79a3fStz204579    event.user_name("logout " + session.getUserName());
565c0c79a3fStz204579    from /ws/lockhart-nv-gate/src/bundled/app/webmgt/lib/services/
566c0c79a3fStz204579    com/sun/management/services/audit/SolarisAuditEvent_Logout.java
567c0c79a3fStz204579-->
568c0c79a3fStz204579	<entry id="user_name">
569c0c79a3fStz204579	    <internal token="text" format="logout %s"/>
570c0c79a3fStz204579	    <external opt="optional" type="char *"/>
571c0c79a3fStz204579	    <comment>"logout" username</comment>
572c0c79a3fStz204579	</entry>
573c0c79a3fStz204579	<entry id="return">
574c0c79a3fStz204579	    <internal token="return"/>
575c0c79a3fStz204579	    <external opt="none"/>
576c0c79a3fStz204579	</entry>
577c0c79a3fStz204579    </event>
578c0c79a3fStz204579
579c0c79a3fStz204579
580c0c79a3fStz204579<!-- C Only events -->
581c0c79a3fStz204579    <event id="AUE_init_solaris" header="0" idNo="32" omit="JNI">
582c0c79a3fStz204579    	<title>init</title>
583c0c79a3fStz204579	<program>/sbin/init</program>
584c0c79a3fStz204579	<program>/usr/sbin/init</program>
585c0c79a3fStz204579	<program>/usr/sbin/shutdown</program>
586c0c79a3fStz204579	<entry id="subject">
587c0c79a3fStz204579	    <internal token="subject"/>
588c0c79a3fStz204579	    <external opt="none"/>
589c0c79a3fStz204579	</entry>
590c0c79a3fStz204579	<entry id="info">
591c0c79a3fStz204579	    <internal token="text"/>
592c0c79a3fStz204579	    <external opt="optional" type="char *"/>
593c0c79a3fStz204579	    <comment>init level or zone name</comment>
594c0c79a3fStz204579	</entry>
595c0c79a3fStz204579	<entry id="return">
596c0c79a3fStz204579	    <internal token="return"/>
597c0c79a3fStz204579	    <external opt="none"/>
598c0c79a3fStz204579	</entry>
599c0c79a3fStz204579    </event>
600c0c79a3fStz204579
601c0c79a3fStz204579    <event id="AUE_login" instance_of="AUE_generic_login" header="0"
602c0c79a3fStz204579	idNo="25" omit="JNI">
603c0c79a3fStz204579	<title>terminal login</title>
604c0c79a3fStz204579	<program>/usr/sbin/login</program>
605c0c79a3fStz204579	<program>/usr/dt/bin/dtlogin</program>
606c0c79a3fStz204579	<see>login(1)</see>
607c0c79a3fStz204579	<see>dtlogin</see>
608c0c79a3fStz204579    </event>
609c0c79a3fStz204579    <event id="AUE_rlogin" instance_of="AUE_generic_login" header="0"
610c0c79a3fStz204579	idNo="28" omit="JNI">
611c0c79a3fStz204579	<title>rlogin</title>
612c0c79a3fStz204579	<program>/usr/sbin/login</program>
613c0c79a3fStz204579	<see>login(1) - rlogin</see>
614c0c79a3fStz204579    </event>
615c0c79a3fStz204579    <event id="AUE_telnet" instance_of="AUE_generic_login" header="0"
616c0c79a3fStz204579	idNo="29" omit="JNI">
617c0c79a3fStz204579	<title>telnet login</title>
618c0c79a3fStz204579	<program>/usr/sbin/login</program>
619c0c79a3fStz204579	<see>login(1) - telnet</see>
620c0c79a3fStz204579    </event>
621c0c79a3fStz204579    <event id="AUE_ssh" instance_of="AUE_generic_login" header="0"
622c0c79a3fStz204579	idNo="2" omit="JNI">
623c0c79a3fStz204579	<program>/usr/lib/ssh/sshd</program>
624c0c79a3fStz204579    </event>
625c0c79a3fStz204579
626c0c79a3fStz204579    <event id="AUE_zlogin" header="0" idNo="38" omit="JNI">
627c0c79a3fStz204579    	<title>zone login</title>
628c0c79a3fStz204579	<program>/usr/sbin/login</program>
629c0c79a3fStz204579	<see>zlogin(1)</see>
630c0c79a3fStz204579	<entry id="subject">
631c0c79a3fStz204579	    <internal token="subject"/>
632c0c79a3fStz204579	    <external opt="none"/>
633c0c79a3fStz204579	</entry>
634c0c79a3fStz204579	<entry id="message">
635c0c79a3fStz204579	    <internal token="text"/>
636c0c79a3fStz204579	    <external opt="optional" type="char *"/>
637c0c79a3fStz204579	    <comment>error message</comment>
638c0c79a3fStz204579	</entry>
639c0c79a3fStz204579	<entry id="return">
640c0c79a3fStz204579	    <internal token="return"/>
641c0c79a3fStz204579	    <external opt="none"/>
642c0c79a3fStz204579	</entry>
643c0c79a3fStz204579    </event>
644c0c79a3fStz204579
645c0c79a3fStz204579    <event id="AUE_su" header="0" idNo="30" omit="JNI">
646c0c79a3fStz204579    	<title>su</title>
647c0c79a3fStz204579	<program>/usr/bin/su</program>
648c0c79a3fStz204579	<see>su(1M)</see>
649c0c79a3fStz204579	<entry id="subject">
650c0c79a3fStz204579	    <internal token="subject"/>
651c0c79a3fStz204579	    <external opt="none"/>
652c0c79a3fStz204579	</entry>
653c0c79a3fStz204579<!--
654c0c79a3fStz204579	should be changed to "fail_user" and su.c updated
655c0c79a3fStz204579	However, the jni stuff is broken, so for now it's "message"
656c0c79a3fStz204579-->
657c0c79a3fStz204579	<entry id="message">
658c0c79a3fStz204579	    <internal token="text"/>
659c0c79a3fStz204579	    <external opt="optional" type="char *"/>
660c0c79a3fStz204579	    <comment>"user name" of failed new user/role</comment>
661c0c79a3fStz204579	</entry>
662c0c79a3fStz204579	<entry id="return">
663c0c79a3fStz204579	    <internal token="return"/>
664c0c79a3fStz204579	    <external opt="none"/>
665c0c79a3fStz204579	</entry>
666c0c79a3fStz204579    </event>
667c0c79a3fStz204579
668c0c79a3fStz204579    <event id="AUE_passwd" header="0" idNo="27" omit="JNI">
669c0c79a3fStz204579    	<title>passwd</title>
670c0c79a3fStz204579	<program>various</program>
671c0c79a3fStz204579	<see>passwd(1)</see>
672c0c79a3fStz204579	<entry id="subject">
673c0c79a3fStz204579	    <internal token="subject"/>
674c0c79a3fStz204579	    <external opt="none"/>
675c0c79a3fStz204579	</entry>
676c0c79a3fStz204579	<entry id="username">
677c0c79a3fStz204579	    <internal token="text"/>
678c0c79a3fStz204579	    <external opt="optional" type="char *"/>
679*7a38c0beStz204579	    <comment>username if different than caller</comment>
680c0c79a3fStz204579	</entry>
681c0c79a3fStz204579	<entry id="return">
682c0c79a3fStz204579	    <internal token="return"/>
683c0c79a3fStz204579	    <external opt="none"/>
684c0c79a3fStz204579	</entry>
685c0c79a3fStz204579    </event>
686c0c79a3fStz204579
687c0c79a3fStz204579    <event id="AUE_screenlock" instance_of="AUE_generic_basic" header="0"
688c0c79a3fStz204579	idNo="26" omit="JNI">
689c0c79a3fStz204579	<program>desktop screen lock</program>
690c0c79a3fStz204579    </event>
691c0c79a3fStz204579    <event id="AUE_screenunlock" instance_of="AUE_generic_basic" header="0"
692c0c79a3fStz204579	idNo="31" omit="JNI">
693c0c79a3fStz204579	<program>desktop screen unlock</program>
694c0c79a3fStz204579    </event>
695c0c79a3fStz204579
696c0c79a3fStz204579    <!--
697c0c79a3fStz204579	AUE_prof_cmd is not supportable for Java due to the structure of
698c0c79a3fStz204579	the priv token.  When and if a Java program needs to generate
699c0c79a3fStz204579	a priv token, we'll need to look at the data format in the
700c0c79a3fStz204579	Java code and provide an appropriate java and jni implementation.
701c0c79a3fStz204579    -->
702c0c79a3fStz204579
703c0c79a3fStz204579    <event id="AUE_prof_cmd" header="0" idNo="24" omit="JNI">
704c0c79a3fStz204579    	<title>pfexec</title>
705c0c79a3fStz204579	<program>/usr/bin/pfexec</program>
706c0c79a3fStz204579	<see>pfexec(1)</see>
707c0c79a3fStz204579	<entry id="subject">
708c0c79a3fStz204579	    <internal token="subject"/>
709c0c79a3fStz204579	    <external opt="none"/>
710c0c79a3fStz204579	</entry>
711c0c79a3fStz204579	<entry id="cwdpath">
712c0c79a3fStz204579	    <internal token="path"/>
713c0c79a3fStz204579	    <external opt="required" type="char*"/>
714c0c79a3fStz204579	    <comment>working directory</comment>
715c0c79a3fStz204579	</entry>
716c0c79a3fStz204579	<entry id="cmdpath">
717c0c79a3fStz204579	    <internal token="path"/>
718c0c79a3fStz204579	    <external opt="required" type="char*"/>
719c0c79a3fStz204579	    <comment>command pathname</comment>
720c0c79a3fStz204579	</entry>
721c0c79a3fStz204579	<entry id="argc,argv,envp">
722c0c79a3fStz204579	    <internal token="command"/>
723c0c79a3fStz204579	    <external opt="required" type="int,char**,char**"/>
724c0c79a3fStz204579	</entry>
725c0c79a3fStz204579	<entry id="proc_auid,proc_euid,proc_egid,proc_ruid,proc_rgid,proc_pid,proc_sid,proc_termid">
726c0c79a3fStz204579	    <internal token="process"/>
727c0c79a3fStz204579	    <external opt="required"
728c0c79a3fStz204579		type="uid_t,uid_t,gid_t,uid_t,gid_t,pid_t,au_asid_t,termid*"/>
729c0c79a3fStz204579	</entry>
730c0c79a3fStz204579	<entry id="limit_set">
731c0c79a3fStz204579	    <internal token="priv_limit"/>
732c0c79a3fStz204579	    <external opt="optional" type="priv_set_t*"/>
733c0c79a3fStz204579 	</entry>
734c0c79a3fStz204579	<entry id="inherit_set">
735c0c79a3fStz204579	    <internal token="priv_inherit"/>
736c0c79a3fStz204579	    <external opt="optional" type="priv_set_t*"/>
737c0c79a3fStz204579	</entry>
738c0c79a3fStz204579	<entry id="return">
739c0c79a3fStz204579	    <internal token="return"/>
740c0c79a3fStz204579	    <external opt="none"/>
741c0c79a3fStz204579	</entry>
742c0c79a3fStz204579    </event>
743c0c79a3fStz204579
744c0c79a3fStz204579    <event id="AUE_inetd_connect" header="0" idNo="34" omit="JNI">
745c0c79a3fStz204579    	<title>inetd</title>
746c0c79a3fStz204579	<program>/usr/sbin/inetd</program>
747c0c79a3fStz204579	<entry id="subject">
748c0c79a3fStz204579	    <internal token="subject"/>
749c0c79a3fStz204579	    <external opt="none"/>
750c0c79a3fStz204579	</entry>
751c0c79a3fStz204579	<entry id="service_name">
752c0c79a3fStz204579	    <internal token="text"/>
753c0c79a3fStz204579	    <external opt="optional" type="char *"/>
754c0c79a3fStz204579	    <comment>service name</comment>
755c0c79a3fStz204579	</entry>
756c0c79a3fStz204579	<entry id="ip_type,ip_remote_port,ip_local_port,ip_adr">
757c0c79a3fStz204579	    <internal token="tid"/>
758c0c79a3fStz204579	    <external opt="required"
759c0c79a3fStz204579		type="uint32_t,uint16_t,uint16_t,uint32_t[4]"/>
760c0c79a3fStz204579	    <comment>client address</comment>
761c0c79a3fStz204579	</entry>
762c0c79a3fStz204579	<entry id="cmd">
763c0c79a3fStz204579	    <internal token="command_1"/>
764c0c79a3fStz204579	    <external opt="required" type="char *"/>
765c0c79a3fStz204579	    <comment>inetd command</comment>
766c0c79a3fStz204579	</entry>
767c0c79a3fStz204579	<entry id="privileges">
768c0c79a3fStz204579	    <internal token="priv_effective"/>
769c0c79a3fStz204579	    <external opt="required" type="priv_set_t *"/>
770c0c79a3fStz204579	</entry>
771c0c79a3fStz204579	<entry id="return">
772c0c79a3fStz204579	    <internal token="return"/>
773c0c79a3fStz204579	    <external opt="none"/>
774c0c79a3fStz204579	</entry>
775c0c79a3fStz204579    </event>
776c0c79a3fStz204579
777c0c79a3fStz204579    <event id="AUE_inetd_ratelimit" header="0" idNo="35" omit="JNI">
778c0c79a3fStz204579    	<title>inetd</title>
779c0c79a3fStz204579	<program>/usr/sbin/inetd</program>
780c0c79a3fStz204579	<entry id="subject">
781c0c79a3fStz204579	    <internal token="subject"/>
782c0c79a3fStz204579	    <external opt="none"/>
783c0c79a3fStz204579	</entry>
784c0c79a3fStz204579	<entry id="service_name">
785c0c79a3fStz204579	    <internal token="text"/>
786c0c79a3fStz204579	    <external opt="optional" type="char *"/>
787c0c79a3fStz204579	    <comment>service name</comment>
788c0c79a3fStz204579	</entry>
789c0c79a3fStz204579	<entry id="limit">
790c0c79a3fStz204579	    <internal token="text"/>
791c0c79a3fStz204579	    <external opt="required" type="char *"/>
792c0c79a3fStz204579	    <comment>limit value</comment>
793c0c79a3fStz204579	</entry>
794c0c79a3fStz204579	<entry id="return">
795c0c79a3fStz204579	    <internal token="return"/>
796c0c79a3fStz204579	    <external opt="none"/>
797c0c79a3fStz204579	</entry>
798c0c79a3fStz204579    </event>
799c0c79a3fStz204579
800c0c79a3fStz204579    <event id="AUE_inetd_copylimit" header="0" idNo="36" omit="JNI">
801c0c79a3fStz204579    	<title>inetd</title>
802c0c79a3fStz204579	<program>/usr/sbin/inetd</program>
803c0c79a3fStz204579	<entry id="subject">
804c0c79a3fStz204579	    <internal token="subject"/>
805c0c79a3fStz204579	    <external opt="none"/>
806c0c79a3fStz204579	</entry>
807c0c79a3fStz204579	<entry id="service_name">
808c0c79a3fStz204579	    <internal token="text"/>
809c0c79a3fStz204579	    <external opt="optional" type="char *"/>
810c0c79a3fStz204579	    <comment>service name</comment>
811c0c79a3fStz204579	</entry>
812c0c79a3fStz204579	<entry id="limit">
813c0c79a3fStz204579	    <internal token="text"/>
814c0c79a3fStz204579	    <external opt="required" type="char *"/>
815c0c79a3fStz204579	    <comment>limit value</comment>
816c0c79a3fStz204579	</entry>
817c0c79a3fStz204579	<entry id="return">
818c0c79a3fStz204579	    <internal token="return"/>
819c0c79a3fStz204579	    <external opt="none"/>
820c0c79a3fStz204579	</entry>
821c0c79a3fStz204579    </event>
822c0c79a3fStz204579
823c0c79a3fStz204579    <event id="AUE_inetd_failrate" header="0" idNo="37" omit="JNI">
824c0c79a3fStz204579    	<title>inetd</title>
825c0c79a3fStz204579	<program>/usr/sbin/inetd</program>
826c0c79a3fStz204579	<entry id="subject">
827c0c79a3fStz204579	    <internal token="subject"/>
828c0c79a3fStz204579	    <external opt="none"/>
829c0c79a3fStz204579	</entry>
830c0c79a3fStz204579	<entry id="service_name">
831c0c79a3fStz204579	    <internal token="text"/>
832c0c79a3fStz204579	    <external opt="optional" type="char *"/>
833c0c79a3fStz204579	    <comment>service name</comment>
834c0c79a3fStz204579	</entry>
835c0c79a3fStz204579	<entry id="values">
836c0c79a3fStz204579	    <internal token="text"/>
837c0c79a3fStz204579	    <external opt="required" type="char *"/>
838c0c79a3fStz204579	    <comment>limit value, interval</comment>
839c0c79a3fStz204579	</entry>
840c0c79a3fStz204579	<entry id="return">
841c0c79a3fStz204579	    <internal token="return"/>
842c0c79a3fStz204579	    <external opt="none"/>
843c0c79a3fStz204579	</entry>
844c0c79a3fStz204579    </event>
845c0c79a3fStz204579
846c0c79a3fStz204579    <event id="AUE_zone_state" header="0" idNo="33" omit="JNI">
847c0c79a3fStz204579	<entry id="subject">
848c0c79a3fStz204579	    <internal token="subject"/>
849c0c79a3fStz204579	    <external opt="none"/>
850c0c79a3fStz204579	</entry>
851c0c79a3fStz204579	<entry id="new_state">
852c0c79a3fStz204579	    <internal token="text"/>
853c0c79a3fStz204579	    <external opt="required" type="char *"/>
854c0c79a3fStz204579	    <comment>New zone state</comment>
855c0c79a3fStz204579	</entry>
856c0c79a3fStz204579	<entry id="zonename">
857c0c79a3fStz204579	    <internal token="zonename"/>
858c0c79a3fStz204579	    <external opt="required" type="char *"/>
859c0c79a3fStz204579	    <comment>zone name</comment>
860c0c79a3fStz204579	</entry>
861c0c79a3fStz204579	<entry id="return">
862c0c79a3fStz204579	    <internal token="return"/>
863c0c79a3fStz204579	    <external opt="none"/>
864c0c79a3fStz204579	</entry>
865c0c79a3fStz204579    </event>
866c0c79a3fStz204579
867c0c79a3fStz204579    <event id="AUE_su_logout" instance_of="AUE_generic_basic"
868c0c79a3fStz204579	header="0" idNo="39" omit="JNI">
869c0c79a3fStz204579	<title>su</title>
870c0c79a3fStz204579	<program>/usr/bin/su</program>
871c0c79a3fStz204579	<see>su(1M)</see>
872c0c79a3fStz204579    </event>
873c0c79a3fStz204579
874c0c79a3fStz204579    <event id="AUE_role_logout" instance_of="AUE_generic_basic"
875c0c79a3fStz204579	header="0" idNo="40" omit="JNI">
876c0c79a3fStz204579	<title>su</title>
877c0c79a3fStz204579	<program>/usr/bin/su</program>
878c0c79a3fStz204579	<see>su(1M)</see>
879c0c79a3fStz204579    </event>
880c0c79a3fStz204579
881c0c79a3fStz204579    <event id="AUE_newgrp_login" header="0" idNo="41" omit="JNI">
882c0c79a3fStz204579    	<program>newgrp</program>
883c0c79a3fStz204579	<entry id="subject">
884c0c79a3fStz204579	    <internal token="subject"/>
885c0c79a3fStz204579	    <external opt="none"/>
886c0c79a3fStz204579	</entry>
887c0c79a3fStz204579	<entry id="groupname">
888c0c79a3fStz204579	    <internal  token="text"/>
889c0c79a3fStz204579	    <external opt="required"  type="char *"/>
890c0c79a3fStz204579	    <comment>group name</comment>
891c0c79a3fStz204579	</entry>
892c0c79a3fStz204579	<entry id="return">
893c0c79a3fStz204579	    <internal token="return"/>
894c0c79a3fStz204579	    <external opt="none"/>
895c0c79a3fStz204579	</entry>
896c0c79a3fStz204579    </event>
897c0c79a3fStz204579
898c0c79a3fStz204579    <event id="AUE_generic_mountable" type="generic" omit="always">
899c0c79a3fStz204579	<!--
900c0c79a3fStz204579
901c0c79a3fStz204579	User device mounting related functions
902c0c79a3fStz204579
903c0c79a3fStz204579	-->
904c0c79a3fStz204579	<entry id="subject">
905c0c79a3fStz204579	    <internal token="subject"/>
906c0c79a3fStz204579	    <external opt="none"/>
907c0c79a3fStz204579	</entry>
908c0c79a3fStz204579	<entry id="auth_used">
909c0c79a3fStz204579	    <internal token="uauth"/>
910c0c79a3fStz204579	    <external opt="required" type="char *"/>
911c0c79a3fStz204579	    <comment>authorization used</comment>
912c0c79a3fStz204579	</entry>
913c0c79a3fStz204579	<entry id="mount_point">
914c0c79a3fStz204579	    <internal token="path"/>
915c0c79a3fStz204579	    <external opt="required" type="char *"/>
916c0c79a3fStz204579	    <comment>mount point</comment>
917c0c79a3fStz204579	</entry>
918c0c79a3fStz204579	<entry id="device">
919c0c79a3fStz204579	    <internal token="path"/>
920c0c79a3fStz204579	    <external opt="required" type="char *"/>
921c0c79a3fStz204579	    <comment>device</comment>
922c0c79a3fStz204579	</entry>
923c0c79a3fStz204579	<entry id="options">
924c0c79a3fStz204579	    <internal token="text"/>
925c0c79a3fStz204579	    <external opt="optional" type="char *"/>
926c0c79a3fStz204579	    <comment>options</comment>
927c0c79a3fStz204579	</entry>
928c0c79a3fStz204579	<entry id="return">
929c0c79a3fStz204579	    <internal token="return"/>
930c0c79a3fStz204579	    <external opt="none"/>
931c0c79a3fStz204579	</entry>
932c0c79a3fStz204579    </event>
933c0c79a3fStz204579
934c0c79a3fStz204579    <event id="AUE_attach" instance_of="AUE_generic_mountable"
935c0c79a3fStz204579	header="0" idNo="42" omit="JNI">
936c0c79a3fStz204579	<program>hald</program>
937c0c79a3fStz204579    </event>
938c0c79a3fStz204579    <event id="AUE_detach" instance_of="AUE_generic_mountable"
939c0c79a3fStz204579	header="0" idNo="43" omit="JNI">
940c0c79a3fStz204579	<program>hald</program>
941c0c79a3fStz204579    </event>
942c0c79a3fStz204579    <event id="AUE_remove" header="0" idNo="44" omit="JNI">
943c0c79a3fStz204579	<program>hald</program>
944c0c79a3fStz204579	<entry id="subject">
945c0c79a3fStz204579	    <internal token="subject"/>
946c0c79a3fStz204579	    <external opt="none"/>
947c0c79a3fStz204579	</entry>
948c0c79a3fStz204579	<entry id="auth_used">
949c0c79a3fStz204579	    <internal token="uauth"/>
950c0c79a3fStz204579	    <external opt="required" type="char *"/>
951c0c79a3fStz204579	    <comment>authorization used</comment>
952c0c79a3fStz204579	</entry>
953c0c79a3fStz204579	<entry id="mount_point">
954c0c79a3fStz204579	    <internal token="path"/>
955c0c79a3fStz204579	    <external opt="optional" type="char *"/>
956c0c79a3fStz204579	    <comment>mount point</comment>
957c0c79a3fStz204579	</entry>
958c0c79a3fStz204579	<entry id="device">
959c0c79a3fStz204579	    <internal token="path"/>
960c0c79a3fStz204579	    <external opt="required" type="char *"/>
961c0c79a3fStz204579	    <comment>device</comment>
962c0c79a3fStz204579	</entry>
963c0c79a3fStz204579	<entry id="return">
964c0c79a3fStz204579	    <internal token="return"/>
965c0c79a3fStz204579	    <external opt="none"/>
966c0c79a3fStz204579	</entry>
967c0c79a3fStz204579    </event>
968c0c79a3fStz204579
969c0c79a3fStz204579    <event id="AUE_pool_import" header="0" idNo="45" omit="JNI">
970c0c79a3fStz204579    	<program>hald</program>
971c0c79a3fStz204579	<entry id="subject">
972c0c79a3fStz204579	    <internal token="subject"/>
973c0c79a3fStz204579	    <external opt="none"/>
974c0c79a3fStz204579	</entry>
975c0c79a3fStz204579	<entry id="auth_used">
976c0c79a3fStz204579	    <internal token="uauth"/>
977c0c79a3fStz204579	    <external opt="required" type="char *"/>
978c0c79a3fStz204579	    <comment>authorization used</comment>
979c0c79a3fStz204579	</entry>
980c0c79a3fStz204579	<entry id="pool">
981c0c79a3fStz204579	    <internal token="text"/>
982c0c79a3fStz204579	    <external opt="required" type="char *"/>
983c0c79a3fStz204579	    <comment>pool</comment>
984c0c79a3fStz204579	</entry>
985c0c79a3fStz204579	<entry id="device">
986c0c79a3fStz204579	    <internal token="path"/>
987c0c79a3fStz204579	    <external opt="required" type="char *"/>
988c0c79a3fStz204579	    <comment>device</comment>
989c0c79a3fStz204579	</entry>
990c0c79a3fStz204579	<entry id="return">
991c0c79a3fStz204579	    <internal token="return"/>
992c0c79a3fStz204579	    <external opt="none"/>
993c0c79a3fStz204579	</entry>
994c0c79a3fStz204579    </event>
995c0c79a3fStz204579    <event id="AUE_pool_export" header="0" idNo="46" omit="JNI">
996c0c79a3fStz204579    	<program>hald</program>
997c0c79a3fStz204579	<entry id="subject">
998c0c79a3fStz204579	    <internal token="subject"/>
999c0c79a3fStz204579	    <external opt="none"/>
1000c0c79a3fStz204579	</entry>
1001c0c79a3fStz204579	<entry id="auth_used">
1002c0c79a3fStz204579	    <internal token="uauth"/>
1003c0c79a3fStz204579	    <external opt="required" type="char *"/>
1004c0c79a3fStz204579	    <comment>authorization used</comment>
1005c0c79a3fStz204579	</entry>
1006c0c79a3fStz204579	<entry id="pool">
1007c0c79a3fStz204579	    <internal token="text"/>
1008c0c79a3fStz204579	    <external opt="required" type="char *"/>
1009c0c79a3fStz204579	    <comment>pool</comment>
1010c0c79a3fStz204579	</entry>
1011c0c79a3fStz204579	<entry id="device">
1012c0c79a3fStz204579	    <internal token="path"/>
1013c0c79a3fStz204579	    <external opt="required" type="char *"/>
1014c0c79a3fStz204579	    <comment>device</comment>
1015c0c79a3fStz204579	</entry>
1016c0c79a3fStz204579	<entry id="return">
1017c0c79a3fStz204579	    <internal token="return"/>
1018c0c79a3fStz204579	    <external opt="none"/>
1019c0c79a3fStz204579	</entry>
1020c0c79a3fStz204579    </event>
1021c0c79a3fStz204579
1022c0c79a3fStz204579<!-- dladm security objected events -->
1023c0c79a3fStz204579    <event id="AUE_dladm_generic" type="generic" omit="always">
1024c0c79a3fStz204579	<entry id="subject">
1025c0c79a3fStz204579	    <internal token="subject"/>
1026c0c79a3fStz204579	    <external opt="none"/>
1027c0c79a3fStz204579	</entry>
1028c0c79a3fStz204579	<entry id="auth_used">
1029c0c79a3fStz204579	    <internal token="uauth"/>
1030c0c79a3fStz204579	    <external opt="required" type="char *"/>
1031c0c79a3fStz204579	    <comment>authorization used</comment>
1032c0c79a3fStz204579	</entry>
1033c0c79a3fStz204579	<entry id="obj_class">
1034c0c79a3fStz204579	    <internal token="text"/>
1035c0c79a3fStz204579	    <external opt="required" type="char *"/>
1036c0c79a3fStz204579	    <comment>object class name</comment>
1037c0c79a3fStz204579	</entry>
1038c0c79a3fStz204579	<entry id="obj_name">
1039c0c79a3fStz204579	    <internal token="text"/>
1040c0c79a3fStz204579	    <external opt="required" type="char *"/>
1041c0c79a3fStz204579	    <comment>object name</comment>
1042c0c79a3fStz204579	</entry>
1043c0c79a3fStz204579	<entry id="return">
1044c0c79a3fStz204579	    <internal token="return"/>
1045c0c79a3fStz204579	    <external opt="none"/>
1046c0c79a3fStz204579	</entry>
1047c0c79a3fStz204579    </event>
1048c0c79a3fStz204579
1049c0c79a3fStz204579    <event id="AUE_dladm_create_secobj" instance_of="AUE_dladm_generic"
1050c0c79a3fStz204579	header="0" idNo="47" omit="JNI">
1051c0c79a3fStz204579	<title>create wifi security object</title>
1052c0c79a3fStz204579	<program>/usr/sbin/dladm</program>
1053c0c79a3fStz204579	<see>dladm(1M)</see>
1054c0c79a3fStz204579    </event>
1055c0c79a3fStz204579    <event id="AUE_dladm_delete_secobj" instance_of="AUE_dladm_generic"
1056c0c79a3fStz204579	header="0" idNo="48" omit="JNI">
1057c0c79a3fStz204579	<title>delete wifi security object</title>
1058c0c79a3fStz204579	<program>/usr/sbin/dladm</program>
1059c0c79a3fStz204579	<see>dladm(1M)</see>
1060c0c79a3fStz204579    </event>
1061c0c79a3fStz204579
1062c0c79a3fStz204579<!-- Trusted eXtensions (TX) events -->
1063c0c79a3fStz204579
1064c0c79a3fStz204579    <!-- labeld events -->
1065c0c79a3fStz204579    <event id="AUE_file_relabel" header="0" idNo="49" omit="JNI">
1066c0c79a3fStz204579    	<title>relabel file from one zone to another</title>
1067c0c79a3fStz204579	<program>setlabel(1)</program>
1068c0c79a3fStz204579	<see>setflabel(3TSOL)</see>
1069c0c79a3fStz204579	<entry id="subject">
1070c0c79a3fStz204579	    <internal token="subject"/>
1071c0c79a3fStz204579	    <external opt="none"/>
1072c0c79a3fStz204579	</entry>
1073c0c79a3fStz204579	<entry id="auth_used">
1074c0c79a3fStz204579	    <internal token="uauth"/>
1075c0c79a3fStz204579	    <external opt="required" type="char *"/>
1076c0c79a3fStz204579	    <comment>authorization used</comment>
1077c0c79a3fStz204579	</entry>
1078c0c79a3fStz204579	<entry id="file">
1079c0c79a3fStz204579	    <internal token="path"/>
1080c0c79a3fStz204579	    <external opt="required" type="char *"/>
1081c0c79a3fStz204579	    <comment>file relabeled</comment>
1082c0c79a3fStz204579	</entry>
1083c0c79a3fStz204579	<entry id="src_label">
1084c0c79a3fStz204579	    <internal token="label"/>
1085c0c79a3fStz204579	    <external opt="required" type="m_label_t *"/>
1086c0c79a3fStz204579	    <comment>original label</comment>
1087c0c79a3fStz204579	</entry>
1088c0c79a3fStz204579	<entry id="dst_label">
1089c0c79a3fStz204579	    <internal token="label"/>
1090c0c79a3fStz204579	    <external opt="required" type="m_label_t *"/>
1091c0c79a3fStz204579	    <comment>new label</comment>
1092c0c79a3fStz204579	</entry>
1093c0c79a3fStz204579	<entry id="return">
1094c0c79a3fStz204579	    <internal token="return"/>
1095c0c79a3fStz204579	    <external opt="none"/>
1096c0c79a3fStz204579	</entry>
1097c0c79a3fStz204579    </event>
1098c0c79a3fStz204579
1099c0c79a3fStz204579    <event id="AUE_file_copy" header="0" idNo="50" omit="JNI">
1100c0c79a3fStz204579    	<title>copy file to another zone</title>
1101c0c79a3fStz204579	<program>dtfile(1X)</program>
1102c0c79a3fStz204579	<entry id="subject">
1103c0c79a3fStz204579	    <internal token="subject"/>
1104c0c79a3fStz204579	    <external opt="none"/>
1105c0c79a3fStz204579	</entry>
1106c0c79a3fStz204579	<entry id="auth_used">
1107c0c79a3fStz204579	    <internal token="uauth"/>
1108c0c79a3fStz204579	    <external opt="required" type="char *"/>
1109c0c79a3fStz204579	    <comment>authorization used</comment>
1110c0c79a3fStz204579	</entry>
1111c0c79a3fStz204579	<entry id="src_file">
1112c0c79a3fStz204579	    <internal token="path"/>
1113c0c79a3fStz204579	    <external opt="required" type="char *"/>
1114c0c79a3fStz204579	    <comment>source file</comment>
1115c0c79a3fStz204579	</entry>
1116c0c79a3fStz204579	<entry id="src_label">
1117c0c79a3fStz204579	    <internal token="label"/>
1118c0c79a3fStz204579	    <external opt="required" type="m_label_t *"/>
1119c0c79a3fStz204579	    <comment>source label</comment>
1120c0c79a3fStz204579	</entry>
1121c0c79a3fStz204579	<entry id="dst_file">
1122c0c79a3fStz204579	    <internal token="path"/>
1123c0c79a3fStz204579	    <external opt="required" type="char *"/>
1124c0c79a3fStz204579	    <comment>destination directory</comment>
1125c0c79a3fStz204579	</entry>
1126c0c79a3fStz204579	<entry id="dst_label">
1127c0c79a3fStz204579	    <internal token="label"/>
1128c0c79a3fStz204579	    <external opt="required" type="m_label_t *"/>
1129c0c79a3fStz204579	    <comment>destination label</comment>
1130c0c79a3fStz204579	</entry>
1131c0c79a3fStz204579	<entry id="return">
1132c0c79a3fStz204579	    <internal token="return"/>
1133c0c79a3fStz204579	    <external opt="none"/>
1134c0c79a3fStz204579	</entry>
1135c0c79a3fStz204579    </event>
1136c0c79a3fStz204579
1137c0c79a3fStz204579<!-- add new events here with the next higher idNo -->
1138c0c79a3fStz204579<!-- Highest idNo is 50, so next is 51, then fix this comment -->
1139c0c79a3fStz204579<!-- end of C Only events -->
1140c0c79a3fStz204579
1141c0c79a3fStz204579
1142c0c79a3fStz204579<!--
1143c0c79a3fStz204579     token definitions are partially implemented.  All they do for now
1144c0c79a3fStz204579     is create a list of defined token names.  In the future they may
1145c0c79a3fStz204579     become a way of describing token structure.
1146c0c79a3fStz204579-->
1147c0c79a3fStz204579
1148c0c79a3fStz204579    <token id="acl">
1149c0c79a3fStz204579    </token>
1150c0c79a3fStz204579    <token id="arbitrary">
1151c0c79a3fStz204579    </token>
1152c0c79a3fStz204579    <token id="arg">
1153c0c79a3fStz204579    </token>
1154c0c79a3fStz204579    <token id="attr">
1155c0c79a3fStz204579    </token>
1156c0c79a3fStz204579    <token id="command">
1157c0c79a3fStz204579    </token>
1158c0c79a3fStz204579    <token id="command_1">
1159c0c79a3fStz204579    </token>
1160c0c79a3fStz204579    <token id="date">
1161c0c79a3fStz204579    </token>
1162c0c79a3fStz204579    <token id="exec_args">
1163c0c79a3fStz204579    </token>
1164c0c79a3fStz204579    <token id="exec_env">
1165c0c79a3fStz204579    </token>
1166c0c79a3fStz204579    <token id="exit">
1167c0c79a3fStz204579    </token>
1168c0c79a3fStz204579    <token id="file">
1169c0c79a3fStz204579    </token>
1170c0c79a3fStz204579    <token id="fmri">
1171c0c79a3fStz204579    </token>
1172c0c79a3fStz204579    <token id="groups">
1173c0c79a3fStz204579    </token>
1174c0c79a3fStz204579    <token id="in_addr">
1175c0c79a3fStz204579    </token>
1176c0c79a3fStz204579    <token id="ipc">
1177c0c79a3fStz204579    </token>
1178c0c79a3fStz204579    <token id="ipc_perm">
1179c0c79a3fStz204579    </token>
1180c0c79a3fStz204579    <token id="label">
1181c0c79a3fStz204579    </token>
1182c0c79a3fStz204579    <token id="newgroups">
1183c0c79a3fStz204579    </token>
1184c0c79a3fStz204579    <token id="opaque">
1185c0c79a3fStz204579    </token>
1186c0c79a3fStz204579    <token id="path">
1187c0c79a3fStz204579    </token>
1188c0c79a3fStz204579    <!-- pseudo token; path list generates 0 or more path tokens -->
1189c0c79a3fStz204579    <token id="path_list">
1190c0c79a3fStz204579    </token>
1191c0c79a3fStz204579    <token id="tid">
1192c0c79a3fStz204579    </token>
1193c0c79a3fStz204579
1194c0c79a3fStz204579    <!--
1195c0c79a3fStz204579	privilege token is implemented as one of the pseudo tokens
1196c0c79a3fStz204579	priv_limit, priv_effective, or priv_inherit
1197c0c79a3fStz204579
1198c0c79a3fStz204579    <token id="privilege">
1199c0c79a3fStz204579    </token>
1200c0c79a3fStz204579    -->
1201c0c79a3fStz204579    <token id="priv_effective">
1202c0c79a3fStz204579    </token>
1203c0c79a3fStz204579    <token id="priv_inherit">
1204c0c79a3fStz204579    </token>
1205c0c79a3fStz204579    <token id="priv_limit">
1206c0c79a3fStz204579    </token>
1207c0c79a3fStz204579    <token id="process">
1208c0c79a3fStz204579    </token>
1209c0c79a3fStz204579    <token id="return">
1210c0c79a3fStz204579    </token>
1211c0c79a3fStz204579    <token id="seq">
1212c0c79a3fStz204579    </token>
1213c0c79a3fStz204579    <token id="socket">
1214c0c79a3fStz204579    </token>
1215c0c79a3fStz204579    <token id="socket-inet">
1216c0c79a3fStz204579    </token>
1217c0c79a3fStz204579    <token id="subject">
1218c0c79a3fStz204579    </token>
1219c0c79a3fStz204579    <token id="text">
1220c0c79a3fStz204579    </token>
1221c0c79a3fStz204579    <token id="uauth">
1222c0c79a3fStz204579    </token>
1223c0c79a3fStz204579    <token id="zonename">
1224c0c79a3fStz204579    </token>
1225c0c79a3fStz204579
1226c0c79a3fStz204579<!--
1227c0c79a3fStz204579    error value list for return values with success/fail code of fail.
1228c0c79a3fStz204579    These values start at 1000 so praudit can tell the difference
1229c0c79a3fStz204579    between the libbsm/common/audit_*.c broken error values and
1230c0c79a3fStz204579    the new adt_ error value list.  It is public so that praudit
1231c0c79a3fStz204579    can find it.
1232c0c79a3fStz204579
1233c0c79a3fStz204579    praudit outputs "failure" %s" for these strings, so there is
1234c0c79a3fStz204579    no need to use words such as "failed" in the message.
1235c0c79a3fStz204579
1236c0c79a3fStz204579    ** Add to the end only to maintain validity across versions of
1237c0c79a3fStz204579    the audit log. **
1238c0c79a3fStz204579-->
1239c0c79a3fStz204579
1240c0c79a3fStz204579    <msg_list id="fail_value" header="0" start="1000" public="true">
1241c0c79a3fStz204579	<msg id="PW_ATTR">Attribute update</msg>
1242c0c79a3fStz204579	<msg id="PW">Password update</msg>
1243c0c79a3fStz204579	<msg id="USERNAME">bad username</msg>
1244c0c79a3fStz204579	<msg id="AUTH">authorization failed</msg>
1245c0c79a3fStz204579	<msg id="UID">bad uid</msg>
1246c0c79a3fStz204579	<msg id="UNKNOWN">unknown failure</msg>
1247c0c79a3fStz204579	<msg id="EXPIRED">password expired</msg>
1248c0c79a3fStz204579	<msg id="ACCOUNT_LOCKED">Account is locked</msg>
1249c0c79a3fStz204579	<msg id="BAD_DIALUP">Bad dial up</msg>
1250c0c79a3fStz204579	<msg id="BAD_ID">Invalid ID</msg>
1251c0c79a3fStz204579	<msg id="BAD_PW">Invalid password</msg>
1252c0c79a3fStz204579	<msg id="CONSOLE">Not on console</msg>
1253c0c79a3fStz204579	<msg id="MAX_TRIES">Too many failed attempts</msg>
1254c0c79a3fStz204579	<msg id="PROTOCOL_FAILURE">Protocol failure</msg>
1255c0c79a3fStz204579	<msg id="EXCLUDED_USER">Excluded user</msg>
1256c0c79a3fStz204579	<msg id="ANON_USER">No anonymous</msg>
1257c0c79a3fStz204579	<msg id="BAD_CMD">Invalid command</msg>
1258c0c79a3fStz204579	<msg id="BAD_TTY">Standard input not a tty line</msg>
1259c0c79a3fStz204579	<msg id="PROGRAM">Program failure</msg>
1260c0c79a3fStz204579	<msg id="CHDIR_FAILED">chdir to home directory</msg>
1261c0c79a3fStz204579	<msg id="INPUT_OVERFLOW">Input line too long.</msg>
1262c0c79a3fStz204579	<msg id="DEVICE_PERM">login device override</msg>
1263c0c79a3fStz204579	<msg id="AUTH_BYPASS">authorization bypass</msg>
1264c0c79a3fStz204579	<msg id="LOGIN_DISABLED">login disabled</msg>
1265c0c79a3fStz204579    </msg_list>
1266c0c79a3fStz204579
1267c0c79a3fStz204579<!--
1268c0c79a3fStz204579	The following empty list is used for PAM errors; the "start"
1269c0c79a3fStz204579	value is used by praudit to know to use the PAM infrastructure
1270c0c79a3fStz204579	for generating error strings
1271c0c79a3fStz204579-->
1272c0c79a3fStz204579    <msg_list id="fail_pam" header="0" start="2000" public="true">
1273c0c79a3fStz204579    </msg_list>
1274c0c79a3fStz204579
1275c0c79a3fStz204579<!--
1276c0c79a3fStz204579     This is still in use by SMC.  See AUE_generic_login.  When
1277c0c79a3fStz204579     either SMC is fixed to stop using this, or SMC goes away.
1278c0c79a3fStz204579     REMOVE this stuff and the corresponding AUE_generic_login
1279c0c79a3fStz204579     message field.
1280c0c79a3fStz204579
1281c0c79a3fStz204579     Message list for the various authentication events, such
1282c0c79a3fStz204579     as AUE_login and AUE_admin_authenticate.  Add new entries
1283c0c79a3fStz204579     at the end.  The order of msg_list entries and the order
1284c0c79a3fStz204579     of msg entries both affect the names in adt.h and the value
1285c0c79a3fStz204579     of the associated enumerated types.
1286c0c79a3fStz204579
1287c0c79a3fStz204579     Each of these messages except NO_MSG is also in the failure_attribute
1288c0c79a3fStz204579     list; the difference is that the messages below use a text token
1289c0c79a3fStz204579     in the audit record, while the failure_attribute messages are
1290c0c79a3fStz204579     associated with the return value of the return token.
1291c0c79a3fStz204579
1292c0c79a3fStz204579     This list is deprecated; please don't use text tokens for error
1293c0c79a3fStz204579     messages.
1294c0c79a3fStz204579-->
1295c0c79a3fStz204579
1296c0c79a3fStz204579    <msg_list id="login_text" header="0" deprecated="true">
1297c0c79a3fStz204579	<msg id="NO_MSG"></msg>
1298c0c79a3fStz204579	<msg id="ACCOUNT_LOCKED">Account is locked</msg>
1299c0c79a3fStz204579	<msg id="BAD_DIALUP">Bad dial up</msg>
1300c0c79a3fStz204579	<msg id="BAD_ID">Invalid ID</msg>
1301c0c79a3fStz204579	<msg id="BAD_PW">Invalid password</msg>
1302c0c79a3fStz204579	<msg id="CONSOLE">Not on console</msg>
1303c0c79a3fStz204579	<msg id="MAX_TRIES">Too many failed attempts</msg>
1304c0c79a3fStz204579	<msg id="PROTOCOL_FAILURE">Protocol failure</msg>
1305c0c79a3fStz204579	<msg id="EXCLUDED_USER">Excluded user</msg>
1306c0c79a3fStz204579	<msg id="ANON_USER">No anonymous</msg>
1307c0c79a3fStz204579    </msg_list>
1308c0c79a3fStz204579
1309c0c79a3fStz204579</specification>
1310