All of lore.kernel.org
 help / color / mirror / Atom feed
* avc:  granted null messages
@ 2007-12-18 21:49 Stephen Smalley
  2007-12-18 23:46 ` Eamon Walsh
  0 siblings, 1 reply; 8+ messages in thread
From: Stephen Smalley @ 2007-12-18 21:49 UTC (permalink / raw)
  To: selinux; +Cc: Eamon Walsh, James Morris, Eric Paris

If a (buggy) caller passes a requested permission value of zero to
avc_has_perm, it correctly returns a permission denial (if enforcing),
but avc_audit will report it as a granted message with a "null" access
vector (also if enforcing) due to the way in which avc_audit checks for
the denied case.  This was reported for nscd in
https://bugzilla.redhat.com/show_bug.cgi?id=352601,
but applies to both the libselinux AVC and the kernel AVC.

In permissive mode, avc_has_perm permits the operation, and avc_audit
reports nothing at all.

So the question is how do we want to handle this case?

It is a bug in the caller, but making it a BUG_ON() in the kernel and an
assert() in libselinux doesn't seem very graceful, especially if in
permissive mode.

We could easily adjust avc_audit() to report it as a denied message with
a 'null' access vector, although running audit2allow on that output will
yield a broken policy module.

-- 
Stephen Smalley
National Security Agency


--
This message was distributed to subscribers of the selinux mailing list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: avc:  granted null messages
  2007-12-18 21:49 avc: granted null messages Stephen Smalley
@ 2007-12-18 23:46 ` Eamon Walsh
  2007-12-19  0:09   ` James Morris
  0 siblings, 1 reply; 8+ messages in thread
From: Eamon Walsh @ 2007-12-18 23:46 UTC (permalink / raw)
  To: Stephen Smalley; +Cc: selinux, James Morris, Eric Paris

Stephen Smalley wrote:
> If a (buggy) caller passes a requested permission value of zero to
> avc_has_perm, it correctly returns a permission denial (if enforcing),
>   

Now I'm questioning why we don't just return success.  Doesn't everyone 
have permission to do nothing?  It seems odd to think that a process 
could receive "granted" for a set of permissions A, but "denied" for a 
subset of A.


> but avc_audit will report it as a granted message with a "null" access
> vector (also if enforcing) due to the way in which avc_audit checks for
> the denied case.  This was reported for nscd in
> https://bugzilla.redhat.com/show_bug.cgi?id=352601,
> but applies to both the libselinux AVC and the kernel AVC.
>
> In permissive mode, avc_has_perm permits the operation, and avc_audit
> reports nothing at all.
>
> So the question is how do we want to handle this case?
>
> It is a bug in the caller, but making it a BUG_ON() in the kernel and an
> assert() in libselinux doesn't seem very graceful, especially if in
> permissive mode.
>
> We could easily adjust avc_audit() to report it as a denied message with
> a 'null' access vector, although running audit2allow on that output will
> yield a broken policy module.
>
>   


-- 
Eamon Walsh <ewalsh@tycho.nsa.gov>
National Security Agency


--
This message was distributed to subscribers of the selinux mailing list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: avc:  granted null messages
  2007-12-18 23:46 ` Eamon Walsh
@ 2007-12-19  0:09   ` James Morris
  2007-12-19 16:15     ` Stephen Smalley
  0 siblings, 1 reply; 8+ messages in thread
From: James Morris @ 2007-12-19  0:09 UTC (permalink / raw)
  To: Eamon Walsh; +Cc: Stephen Smalley, selinux, Eric Paris

On Tue, 18 Dec 2007, Eamon Walsh wrote:

> Stephen Smalley wrote:
> > If a (buggy) caller passes a requested permission value of zero to
> > avc_has_perm, it correctly returns a permission denial (if enforcing),
> >   
> 
> Now I'm questioning why we don't just return success.  Doesn't everyone have
> permission to do nothing?  It seems odd to think that a process could receive
> "granted" for a set of permissions A, but "denied" for a subset of A.

Given that the caller is buggy, we don't really know what it's trying to 
do, so denying access seems prudent.

Can we get the audit log to produce something unparseable by audit2allow, 
as we don't _want_ policy being generated in response to a buggy caller ?

> 
> 
> > but avc_audit will report it as a granted message with a "null" access
> > vector (also if enforcing) due to the way in which avc_audit checks for
> > the denied case.  This was reported for nscd in
> > https://bugzilla.redhat.com/show_bug.cgi?id=352601,
> > but applies to both the libselinux AVC and the kernel AVC.
> >
> > In permissive mode, avc_has_perm permits the operation, and avc_audit
> > reports nothing at all.
> >
> > So the question is how do we want to handle this case?
> >
> > It is a bug in the caller, but making it a BUG_ON() in the kernel and an
> > assert() in libselinux doesn't seem very graceful, especially if in
> > permissive mode.
> >
> > We could easily adjust avc_audit() to report it as a denied message with
> > a 'null' access vector, although running audit2allow on that output will
> > yield a broken policy module.
> >
> >   
> 
> 
> 

-- 
James Morris
<jmorris@namei.org>

--
This message was distributed to subscribers of the selinux mailing list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: avc:  granted null messages
  2007-12-19  0:09   ` James Morris
@ 2007-12-19 16:15     ` Stephen Smalley
  2007-12-19 16:36       ` Stephen Smalley
  0 siblings, 1 reply; 8+ messages in thread
From: Stephen Smalley @ 2007-12-19 16:15 UTC (permalink / raw)
  To: James Morris; +Cc: Eamon Walsh, selinux, Eric Paris

On Wed, 2007-12-19 at 11:09 +1100, James Morris wrote:
> On Tue, 18 Dec 2007, Eamon Walsh wrote:
> 
> > Stephen Smalley wrote:
> > > If a (buggy) caller passes a requested permission value of zero to
> > > avc_has_perm, it correctly returns a permission denial (if enforcing),
> > >   
> > 
> > Now I'm questioning why we don't just return success.  Doesn't everyone have
> > permission to do nothing?  It seems odd to think that a process could receive
> > "granted" for a set of permissions A, but "denied" for a subset of A.
> 
> Given that the caller is buggy, we don't really know what it's trying to 
> do, so denying access seems prudent.
> 
> Can we get the audit log to produce something unparseable by audit2allow, 
> as we don't _want_ policy being generated in response to a buggy caller ?

At present, it generates no avc message in permissive (avc_audit entered
with requested == 0 and result == 0) and a misleading avc message in
enforcing (avc_audit entered with requested == 0 and result < 0),
neither of which will generate any policy.

If we change it to consistently generate an:
	avc:  denied null for scontext=...
then audit2allow would try to create an allow rule like:
	allow a_t b_t:class null;
which would compile but fail when one tries to insert the module, since
null is not a defined permission in the base policy.

I don't think we want to generate an unparseable avc message, whatever
that might mean, as that too could potentially break audit2allow and in
a less understandable way, and we want these failures to be noticeable,
just not immediately fatal to the system (ala BUG_ON or assert).

> > 
> > 
> > > but avc_audit will report it as a granted message with a "null" access
> > > vector (also if enforcing) due to the way in which avc_audit checks for
> > > the denied case.  This was reported for nscd in
> > > https://bugzilla.redhat.com/show_bug.cgi?id=352601,
> > > but applies to both the libselinux AVC and the kernel AVC.
> > >
> > > In permissive mode, avc_has_perm permits the operation, and avc_audit
> > > reports nothing at all.
> > >
> > > So the question is how do we want to handle this case?
> > >
> > > It is a bug in the caller, but making it a BUG_ON() in the kernel and an
> > > assert() in libselinux doesn't seem very graceful, especially if in
> > > permissive mode.
> > >
> > > We could easily adjust avc_audit() to report it as a denied message with
> > > a 'null' access vector, although running audit2allow on that output will
> > > yield a broken policy module.
> > >
> > >   
> > 
> > 
> > 
> 
-- 
Stephen Smalley
National Security Agency


--
This message was distributed to subscribers of the selinux mailing list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: avc:  granted null messages
  2007-12-19 16:15     ` Stephen Smalley
@ 2007-12-19 16:36       ` Stephen Smalley
  2007-12-20 22:20         ` Eamon Walsh
  0 siblings, 1 reply; 8+ messages in thread
From: Stephen Smalley @ 2007-12-19 16:36 UTC (permalink / raw)
  To: James Morris; +Cc: Eamon Walsh, selinux, Eric Paris

On Wed, 2007-12-19 at 11:15 -0500, Stephen Smalley wrote:
> On Wed, 2007-12-19 at 11:09 +1100, James Morris wrote:
> > On Tue, 18 Dec 2007, Eamon Walsh wrote:
> > 
> > > Stephen Smalley wrote:
> > > > If a (buggy) caller passes a requested permission value of zero to
> > > > avc_has_perm, it correctly returns a permission denial (if enforcing),
> > > >   
> > > 
> > > Now I'm questioning why we don't just return success.  Doesn't everyone have
> > > permission to do nothing?  It seems odd to think that a process could receive
> > > "granted" for a set of permissions A, but "denied" for a subset of A.
> > 
> > Given that the caller is buggy, we don't really know what it's trying to 
> > do, so denying access seems prudent.
> > 
> > Can we get the audit log to produce something unparseable by audit2allow, 
> > as we don't _want_ policy being generated in response to a buggy caller ?
> 
> At present, it generates no avc message in permissive (avc_audit entered
> with requested == 0 and result == 0) and a misleading avc message in
> enforcing (avc_audit entered with requested == 0 and result < 0),
> neither of which will generate any policy.
> 
> If we change it to consistently generate an:
> 	avc:  denied null for scontext=...
> then audit2allow would try to create an allow rule like:
> 	allow a_t b_t:class null;
> which would compile but fail when one tries to insert the module, since
> null is not a defined permission in the base policy.
> 
> I don't think we want to generate an unparseable avc message, whatever
> that might mean, as that too could potentially break audit2allow and in
> a less understandable way, and we want these failures to be noticeable,
> just not immediately fatal to the system (ala BUG_ON or assert).

Oh, the other reason to keep it in the existing format is to ensure that
setroubleshoot picks up on it, since users are now trained to look for
its alerts rather than inspecting the audit log for SELinux denials.

> > > 
> > > 
> > > > but avc_audit will report it as a granted message with a "null" access
> > > > vector (also if enforcing) due to the way in which avc_audit checks for
> > > > the denied case.  This was reported for nscd in
> > > > https://bugzilla.redhat.com/show_bug.cgi?id=352601,
> > > > but applies to both the libselinux AVC and the kernel AVC.
> > > >
> > > > In permissive mode, avc_has_perm permits the operation, and avc_audit
> > > > reports nothing at all.
> > > >
> > > > So the question is how do we want to handle this case?
> > > >
> > > > It is a bug in the caller, but making it a BUG_ON() in the kernel and an
> > > > assert() in libselinux doesn't seem very graceful, especially if in
> > > > permissive mode.
> > > >
> > > > We could easily adjust avc_audit() to report it as a denied message with
> > > > a 'null' access vector, although running audit2allow on that output will
> > > > yield a broken policy module.
> > > >
> > > >   
> > > 
> > > 
> > > 
> > 
-- 
Stephen Smalley
National Security Agency


--
This message was distributed to subscribers of the selinux mailing list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: avc:  granted null messages
  2007-12-19 16:36       ` Stephen Smalley
@ 2007-12-20 22:20         ` Eamon Walsh
  2007-12-20 22:42           ` Stephen Smalley
  0 siblings, 1 reply; 8+ messages in thread
From: Eamon Walsh @ 2007-12-20 22:20 UTC (permalink / raw)
  To: Stephen Smalley; +Cc: James Morris, selinux, Eric Paris

Stephen Smalley wrote:
> On Wed, 2007-12-19 at 11:15 -0500, Stephen Smalley wrote:
>   
>> On Wed, 2007-12-19 at 11:09 +1100, James Morris wrote:
>>     
>>> On Tue, 18 Dec 2007, Eamon Walsh wrote:
>>>
>>>       
>>>> Stephen Smalley wrote:
>>>>         
>>>>> If a (buggy) caller passes a requested permission value of zero to
>>>>> avc_has_perm, it correctly returns a permission denial (if enforcing),
>>>>>   
>>>>>           
>>>> Now I'm questioning why we don't just return success.  Doesn't everyone have
>>>> permission to do nothing?  It seems odd to think that a process could receive
>>>> "granted" for a set of permissions A, but "denied" for a subset of A.
>>>>         
>>> Given that the caller is buggy, we don't really know what it's trying to 
>>> do, so denying access seems prudent.
>>>
>>> Can we get the audit log to produce something unparseable by audit2allow, 
>>> as we don't _want_ policy being generated in response to a buggy caller ?
>>>       
>> At present, it generates no avc message in permissive (avc_audit entered
>> with requested == 0 and result == 0) and a misleading avc message in
>> enforcing (avc_audit entered with requested == 0 and result < 0),
>> neither of which will generate any policy.
>>
>> If we change it to consistently generate an:
>> 	avc:  denied null for scontext=...
>> then audit2allow would try to create an allow rule like:
>> 	allow a_t b_t:class null;
>> which would compile but fail when one tries to insert the module, since
>> null is not a defined permission in the base policy.
>>
>> I don't think we want to generate an unparseable avc message, whatever
>> that might mean, as that too could potentially break audit2allow and in
>> a less understandable way, and we want these failures to be noticeable,
>> just not immediately fatal to the system (ala BUG_ON or assert).
>>     
>
> Oh, the other reason to keep it in the existing format is to ensure that
> setroubleshoot picks up on it, since users are now trained to look for
> its alerts rather than inspecting the audit log for SELinux denials.
>   

How about the following:

Index: libselinux/src/avc.c
===================================================================
--- libselinux/src/avc.c	(revision 2708)
+++ libselinux/src/avc.c	(working copy)
@@ -756,12 +756,19 @@
 
 	denied = requested & ~avd->allowed;
 	if (denied) {
+		/* Permissions were denied */
 		audited = denied;
 		if (!(audited & avd->auditdeny))
 			return;
+	} else if (!requested) {
+		/* Request was made with "null" permission vector */
+		audited = requested;
+		denied = 1;
 	} else if (result) {
+		/* Another error besides a denial occurred */
 		audited = denied = requested;
 	} else {
+		/* Permissions were granted */
 		audited = requested;
 		if (!(audited & avd->auditallow))
 			return;


-- 
Eamon Walsh <ewalsh@tycho.nsa.gov>
National Security Agency


--
This message was distributed to subscribers of the selinux mailing list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: avc:  granted null messages
  2007-12-20 22:20         ` Eamon Walsh
@ 2007-12-20 22:42           ` Stephen Smalley
  2007-12-20 23:31             ` Eamon Walsh
  0 siblings, 1 reply; 8+ messages in thread
From: Stephen Smalley @ 2007-12-20 22:42 UTC (permalink / raw)
  To: Eamon Walsh; +Cc: James Morris, selinux, Eric Paris

On Thu, 2007-12-20 at 17:20 -0500, Eamon Walsh wrote:
> Stephen Smalley wrote:
> > On Wed, 2007-12-19 at 11:15 -0500, Stephen Smalley wrote:
> >   
> >> On Wed, 2007-12-19 at 11:09 +1100, James Morris wrote:
> >>     
> >>> On Tue, 18 Dec 2007, Eamon Walsh wrote:
> >>>
> >>>       
> >>>> Stephen Smalley wrote:
> >>>>         
> >>>>> If a (buggy) caller passes a requested permission value of zero to
> >>>>> avc_has_perm, it correctly returns a permission denial (if enforcing),
> >>>>>   
> >>>>>           
> >>>> Now I'm questioning why we don't just return success.  Doesn't everyone have
> >>>> permission to do nothing?  It seems odd to think that a process could receive
> >>>> "granted" for a set of permissions A, but "denied" for a subset of A.
> >>>>         
> >>> Given that the caller is buggy, we don't really know what it's trying to 
> >>> do, so denying access seems prudent.
> >>>
> >>> Can we get the audit log to produce something unparseable by audit2allow, 
> >>> as we don't _want_ policy being generated in response to a buggy caller ?
> >>>       
> >> At present, it generates no avc message in permissive (avc_audit entered
> >> with requested == 0 and result == 0) and a misleading avc message in
> >> enforcing (avc_audit entered with requested == 0 and result < 0),
> >> neither of which will generate any policy.
> >>
> >> If we change it to consistently generate an:
> >> 	avc:  denied null for scontext=...
> >> then audit2allow would try to create an allow rule like:
> >> 	allow a_t b_t:class null;
> >> which would compile but fail when one tries to insert the module, since
> >> null is not a defined permission in the base policy.
> >>
> >> I don't think we want to generate an unparseable avc message, whatever
> >> that might mean, as that too could potentially break audit2allow and in
> >> a less understandable way, and we want these failures to be noticeable,
> >> just not immediately fatal to the system (ala BUG_ON or assert).
> >>     
> >
> > Oh, the other reason to keep it in the existing format is to ensure that
> > setroubleshoot picks up on it, since users are now trained to look for
> > its alerts rather than inspecting the audit log for SELinux denials.
> >   
> 
> How about the following:
> 
> Index: libselinux/src/avc.c
> ===================================================================
> --- libselinux/src/avc.c	(revision 2708)
> +++ libselinux/src/avc.c	(working copy)
> @@ -756,12 +756,19 @@
>  
>  	denied = requested & ~avd->allowed;
>  	if (denied) {
> +		/* Permissions were denied */
>  		audited = denied;
>  		if (!(audited & avd->auditdeny))
>  			return;
> +	} else if (!requested) {
> +		/* Request was made with "null" permission vector */
> +		audited = requested;
> +		denied = 1;

That will yield a denied <randompermissionatbit1> message, since denied
is the actual access vector of denied permissions rather than a boolean.

>  	} else if (result) {
> +		/* Another error besides a denial occurred */
>  		audited = denied = requested;
>  	} else {
> +		/* Permissions were granted */
>  		audited = requested;
>  		if (!(audited & avd->auditallow))
>  			return;
> 

Possibly the following patch instead.
It should yield "avc:  denied null" in both permissive and enforcing
mode, I believe.

Index: libselinux/src/avc.c
===================================================================
--- libselinux/src/avc.c	(revision 2708)
+++ libselinux/src/avc.c	(working copy)
@@ -759,7 +759,7 @@
 		audited = denied;
 		if (!(audited & avd->auditdeny))
 			return;
-	} else if (result) {
+	} else if (!requested || result) {
 		audited = denied = requested;
 	} else {
 		audited = requested;
@@ -773,7 +773,7 @@
 	/* prevent overlapping buffer writes */
 	avc_get_lock(avc_log_lock);
 	snprintf(avc_audit_buf, AVC_AUDIT_BUFSIZE,
-		 "%s:  %s ", avc_prefix, denied ? "denied" : "granted");
+		 "%s:  %s ", avc_prefix, (denied || !requested) ? "denied" : "granted");
 	avc_dump_av(tclass, audited);
 	log_append(avc_audit_buf, " for ");
 

-- 
Stephen Smalley
National Security Agency


--
This message was distributed to subscribers of the selinux mailing list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: avc:  granted null messages
  2007-12-20 22:42           ` Stephen Smalley
@ 2007-12-20 23:31             ` Eamon Walsh
  0 siblings, 0 replies; 8+ messages in thread
From: Eamon Walsh @ 2007-12-20 23:31 UTC (permalink / raw)
  To: Stephen Smalley; +Cc: James Morris, selinux, Eric Paris

Stephen Smalley wrote:
> On Thu, 2007-12-20 at 17:20 -0500, Eamon Walsh wrote:
>   
>> Stephen Smalley wrote:
>>     
>>> On Wed, 2007-12-19 at 11:15 -0500, Stephen Smalley wrote:
>>>   
>>>       
>>>> On Wed, 2007-12-19 at 11:09 +1100, James Morris wrote:
>>>>     
>>>>         
>>>>> On Tue, 18 Dec 2007, Eamon Walsh wrote:
>>>>>
>>>>>       
>>>>>           
>>>>>> Stephen Smalley wrote:
>>>>>>         
>>>>>>             
>>>>>>> If a (buggy) caller passes a requested permission value of zero to
>>>>>>> avc_has_perm, it correctly returns a permission denial (if enforcing),
>>>>>>>   
>>>>>>>           
>>>>>>>               
>>>>>> Now I'm questioning why we don't just return success.  Doesn't everyone have
>>>>>> permission to do nothing?  It seems odd to think that a process could receive
>>>>>> "granted" for a set of permissions A, but "denied" for a subset of A.
>>>>>>         
>>>>>>             
>>>>> Given that the caller is buggy, we don't really know what it's trying to 
>>>>> do, so denying access seems prudent.
>>>>>
>>>>> Can we get the audit log to produce something unparseable by audit2allow, 
>>>>> as we don't _want_ policy being generated in response to a buggy caller ?
>>>>>       
>>>>>           
>>>> At present, it generates no avc message in permissive (avc_audit entered
>>>> with requested == 0 and result == 0) and a misleading avc message in
>>>> enforcing (avc_audit entered with requested == 0 and result < 0),
>>>> neither of which will generate any policy.
>>>>
>>>> If we change it to consistently generate an:
>>>> 	avc:  denied null for scontext=...
>>>> then audit2allow would try to create an allow rule like:
>>>> 	allow a_t b_t:class null;
>>>> which would compile but fail when one tries to insert the module, since
>>>> null is not a defined permission in the base policy.
>>>>
>>>> I don't think we want to generate an unparseable avc message, whatever
>>>> that might mean, as that too could potentially break audit2allow and in
>>>> a less understandable way, and we want these failures to be noticeable,
>>>> just not immediately fatal to the system (ala BUG_ON or assert).
>>>>     
>>>>         
>>> Oh, the other reason to keep it in the existing format is to ensure that
>>> setroubleshoot picks up on it, since users are now trained to look for
>>> its alerts rather than inspecting the audit log for SELinux denials.
>>>   
>>>       
>> How about the following:
>>
>> Index: libselinux/src/avc.c
>> ===================================================================
>> --- libselinux/src/avc.c	(revision 2708)
>> +++ libselinux/src/avc.c	(working copy)
>> @@ -756,12 +756,19 @@
>>  
>>  	denied = requested & ~avd->allowed;
>>  	if (denied) {
>> +		/* Permissions were denied */
>>  		audited = denied;
>>  		if (!(audited & avd->auditdeny))
>>  			return;
>> +	} else if (!requested) {
>> +		/* Request was made with "null" permission vector */
>> +		audited = requested;
>> +		denied = 1;
>>     
>
> That will yield a denied <randompermissionatbit1> message, since denied
> is the actual access vector of denied permissions rather than a boolean.
>   

In fact, denied is only used as a boolean value after this point.  The 
"audited" value is used for the message.

But anyway, you can sign-off and merge your patch, ACK from me.



-- 
Eamon Walsh <ewalsh@tycho.nsa.gov>
National Security Agency


--
This message was distributed to subscribers of the selinux mailing list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2007-12-20 23:31 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-18 21:49 avc: granted null messages Stephen Smalley
2007-12-18 23:46 ` Eamon Walsh
2007-12-19  0:09   ` James Morris
2007-12-19 16:15     ` Stephen Smalley
2007-12-19 16:36       ` Stephen Smalley
2007-12-20 22:20         ` Eamon Walsh
2007-12-20 22:42           ` Stephen Smalley
2007-12-20 23:31             ` Eamon Walsh

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.