1AUDIT_LOG_USER_SEMANAGE_MESSAGE(3L)inux Audit AAPUIDIT_LOG_USER_SEMANAGE_MESSAGE(3)
2
3
4
6 audit_log_user_semanage_message - log a semanage message
7
9 #include <libaudit.h>
10
11 int audit_log_user_semanage_message(int audit_fd, int type, const char
12 *pgname, const char *op, const char *name, unsigned int id, const char
13 *new_seuser, const char *new_role, const char *new_range, const char
14 *old_seuser, const char *old_role, const char *old_range, const char
15 *host, const char *addr, const char *tty, int result)
16
17
19 This function will log a message to the audit system using a predefined
20 message format. It should be used for all SE linux user and role manip‐
21 ulation operations. The function parameters are as follows:
22
23 audit_fd - The fd returned by audit_open
24 type - type of message: AUDIT_USER_ROLE_CHANGE for changing any SE Linux user or role attributes.
25 pgname - program's name
26 op - operation. "adding user", "changing finger info", "deleting group"
27 name - user's account or group name. If not available use NULL.
28 id - uid or gid that the operation is being performed on. This is used only when user is NULL.
29 new_seuser - the new seuser that the login user is getting
30 new_role - the new_role that the login user is getting
31 new_range - the new mls range that the login user is getting
32 old_seuser - the old seuser that the login usr had
33 old_role - the old role that the login user had
34 old_range - the old mls range that the login usr had
35 host - The hostname if known
36 addr - The network address of the user
37 tty - The tty of the user
38 result - 1 is "success" and 0 is "failed"
39
41 It returns the sequence number which is > 0 on success or <= 0 on
42 error.
43
44
46 This function returns -1 on failure. Examine errno for more info.
47
48
50 audit_log_user_message(3), audit_log_acct_message(3),
51 audit_log_user_avc_message(3), audit_log_user_comm_message(3).
52
53
55 Steve Grubb
56
57
58
59Red Hat Oct 2006 AUDIT_LOG_USER_SEMANAGE_MESSAGE(3)