Fix formatting of Flask AVC audit messages so that existing
policy tools can parse them. After applying,
'xm dmesg | audit2allow' yields the expected result.
Signed-off-by: Stephen D. Smalley <sds@xxxxxxxxxxxxx>
Signed-off-by: George S. Coker, II <gscoker@xxxxxxxxxxxxxx>
---
xen/xsm/flask/avc.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/xen/xsm/flask/avc.c b/xen/xsm/flask/avc.c
--- a/xen/xsm/flask/avc.c
+++ b/xen/xsm/flask/avc.c
@@ -226,8 +226,8 @@
printk(" tcontext=%s", scontext);
xfree(scontext);
}
- printk("\n");
- printk("tclass=%s", class_to_string[tclass]);
+
+ printk(" tclass=%s", class_to_string[tclass]);
}
/**
@@ -560,12 +560,10 @@
if ( a && a->d )
d = a->d;
if ( d )
- printk("domid=%d", d->domain_id);
+ printk("domid=%d ", d->domain_id);
- printk("\n");
avc_dump_query(ssid, tsid, tclass);
printk("\n");
-
}
/**
--
Stephen Smalley
National Security Agency
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|