Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 157305
b: refs/heads/master
c: ed5215a
h: refs/heads/master
i:
  157303: 010765b
v: v3
  • Loading branch information
Thomas Liu authored and James Morris committed Jul 9, 2009
1 parent 66fdff5 commit 90c7582
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ac7242142b03421c96b0a2f8d99f146d075614c2
refs/heads/master: ed5215a21460f63d6bdc118cb55a9e6d1b433f35
4 changes: 2 additions & 2 deletions trunk/include/linux/lsm_audit.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ struct common_audit_data {
} key_struct;
#endif
} u;
const char *function;
/* this union contains LSM specific data */
union {
/* SMACK data */
struct smack_audit_data {
const char *function;
char *subject;
char *object;
char *request;
Expand Down Expand Up @@ -104,7 +104,7 @@ int ipv6_skb_to_auditdata(struct sk_buff *skb,
/* Initialize an LSM audit data structure. */
#define COMMON_AUDIT_DATA_INIT(_d, _t) \
{ memset((_d), 0, sizeof(struct common_audit_data)); \
(_d)->type = LSM_AUDIT_DATA_##_t; (_d)->function = __func__; }
(_d)->type = LSM_AUDIT_DATA_##_t; }

void common_lsm_audit(struct common_audit_data *a);

Expand Down
2 changes: 1 addition & 1 deletion trunk/security/smack/smack.h
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ static inline void smk_ad_init(struct smk_audit_info *a, const char *func,
{
memset(a, 0, sizeof(*a));
a->a.type = type;
a->a.function = func;
a->a.lsm_priv.smack_audit_data.function = func;
}

static inline void smk_ad_setfield_u_tsk(struct smk_audit_info *a,
Expand Down
7 changes: 4 additions & 3 deletions trunk/security/smack/smack_access.c
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,8 @@ static void smack_log_callback(struct audit_buffer *ab, void *a)
{
struct common_audit_data *ad = a;
struct smack_audit_data *sad = &ad->lsm_priv.smack_audit_data;
audit_log_format(ab, "lsm=SMACK fn=%s action=%s", ad->function,
audit_log_format(ab, "lsm=SMACK fn=%s action=%s",
ad->lsm_priv.smack_audit_data.function,
sad->result ? "denied" : "granted");
audit_log_format(ab, " subject=");
audit_log_untrustedstring(ab, sad->subject);
Expand Down Expand Up @@ -274,8 +275,8 @@ void smack_log(char *subject_label, char *object_label, int request,
if (result == 0 && (log_policy & SMACK_AUDIT_ACCEPT) == 0)
return;

if (a->function == NULL)
a->function = "unknown";
if (a->lsm_priv.smack_audit_data.function == NULL)
a->lsm_priv.smack_audit_data.function = "unknown";

/* end preparing the audit data */
sad = &a->lsm_priv.smack_audit_data;
Expand Down

0 comments on commit 90c7582

Please sign in to comment.