1AUDIT_LOG_SEMANAGE_MESSAGE(3) Linux Audit API AUDIT_LOG_SEMANAGE_MESSAGE(3)
2
3
4
6 audit_log_semanage_message - log a semanage message
7
9 #include <libaudit.h>
10
11 int audit_log_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_ROLE_ASSIGN/REMOVE for changing any SE Linux user or role attributes.
25 pgname - program's name
26 op - operation. "adding-user", "adding-role", "deleting-user", "deleting-role"
27 name - user's account. If not available use NULL.
28 id - uid that the operation is being performed on. This is used only when name 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
40
42 It returns the sequence number which is > 0 on success or <= 0 on
43 error.
44
45
47 This function returns -1 on failure. Examine errno for more info.
48
49
51 audit_log_user_message(3), audit_log_acct_message(3),
52 audit_log_user_avc_message(3), audit_log_user_comm_message(3).
53
54
56 Steve Grubb
57
58
59
60Red Hat Jan 2012 AUDIT_LOG_SEMANAGE_MESSAGE(3)