All of lore.kernel.org
 help / color / mirror / Atom feed
* Rawhide kernel is reporting
@ 2007-12-31 16:46 Daniel J Walsh
  2007-12-31 16:49 ` Eric Paris
  0 siblings, 1 reply; 4+ messages in thread
From: Daniel J Walsh @ 2007-12-31 16:46 UTC (permalink / raw)
  To: Eric Paris, Stephen Smalley, SE Linux

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

SELinux: policy loaded with handle_unknown=allow


Have no idea what this means.

Dan
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.8 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org

iEYEARECAAYFAkd5HPYACgkQrlYvE4MpobOkCACfT4kNc5CYsw4rtEDokk5RdXwO
0/YAn0RbSbhQaEY7ytMcLWKIvQrt7qj5
=JH78
-----END PGP SIGNATURE-----

--
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] 4+ messages in thread

* Re: Rawhide kernel is reporting
  2007-12-31 16:46 Rawhide kernel is reporting Daniel J Walsh
@ 2007-12-31 16:49 ` Eric Paris
  2007-12-31 17:02   ` Eric Paris
  0 siblings, 1 reply; 4+ messages in thread
From: Eric Paris @ 2007-12-31 16:49 UTC (permalink / raw)
  To: Daniel J Walsh; +Cc: Stephen Smalley, SE Linux

It means that if you kernel has defined classes and permissions which
the policy doesn't know about those security checks will be 'allowed'.
Aka if you update your kernel and not your policy 'hopefully' it won't
break stuff.

-Eric

On Mon, 2007-12-31 at 11:46 -0500, Daniel J Walsh wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> SELinux: policy loaded with handle_unknown=allow
> 
> 
> Have no idea what this means.
> 
> Dan
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.8 (GNU/Linux)
> Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org
> 
> iEYEARECAAYFAkd5HPYACgkQrlYvE4MpobOkCACfT4kNc5CYsw4rtEDokk5RdXwO
> 0/YAn0RbSbhQaEY7ytMcLWKIvQrt7qj5
> =JH78
> -----END PGP SIGNATURE-----


--
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] 4+ messages in thread

* Re: Rawhide kernel is reporting
  2007-12-31 16:49 ` Eric Paris
@ 2007-12-31 17:02   ` Eric Paris
  2008-01-07 20:08     ` Stephen Smalley
  0 siblings, 1 reply; 4+ messages in thread
From: Eric Paris @ 2007-12-31 17:02 UTC (permalink / raw)
  To: Eric Paris; +Cc: Daniel J Walsh, Stephen Smalley, SE Linux

Stephen do you have any thoughts on me stealing another flag to
specify maybe 'has_unknown'?  Then we can only print a message if
there is an unknown permission?  I could probably also to the printing
in the validate_classes loop and not have to carry a flag.

dwlash also suggested

SELinux: policy loaded with allowing unknown accesses.

probably a bit less cryptic.  If we like the idea of not printing the
message except when relevant I'll make both changes...

-Eric

On 12/31/07, Eric Paris <eparis@redhat.com> wrote:
> It means that if you kernel has defined classes and permissions which
> the policy doesn't know about those security checks will be 'allowed'.
> Aka if you update your kernel and not your policy 'hopefully' it won't
> break stuff.
>
> -Eric
>
> On Mon, 2007-12-31 at 11:46 -0500, Daniel J Walsh wrote:
> > -----BEGIN PGP SIGNED MESSAGE-----
> > Hash: SHA1
> >
> > SELinux: policy loaded with handle_unknown=allow
> >
> >
> > Have no idea what this means.
> >
> > Dan
> > -----BEGIN PGP SIGNATURE-----
> > Version: GnuPG v1.4.8 (GNU/Linux)
> > Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org
> >
> > iEYEARECAAYFAkd5HPYACgkQrlYvE4MpobOkCACfT4kNc5CYsw4rtEDokk5RdXwO
> > 0/YAn0RbSbhQaEY7ytMcLWKIvQrt7qj5
> > =JH78
> > -----END PGP SIGNATURE-----
>
>
> --
> 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.
>

--
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] 4+ messages in thread

* Re: Rawhide kernel is reporting
  2007-12-31 17:02   ` Eric Paris
@ 2008-01-07 20:08     ` Stephen Smalley
  0 siblings, 0 replies; 4+ messages in thread
From: Stephen Smalley @ 2008-01-07 20:08 UTC (permalink / raw)
  To: Eric Paris; +Cc: Eric Paris, Daniel J Walsh, SE Linux


On Mon, 2007-12-31 at 12:02 -0500, Eric Paris wrote:
> Stephen do you have any thoughts on me stealing another flag to
> specify maybe 'has_unknown'?  Then we can only print a message if
> there is an unknown permission?  I could probably also to the printing
> in the validate_classes loop and not have to carry a flag.
> 
> dwlash also suggested
> 
> SELinux: policy loaded with allowing unknown accesses.
> 
> probably a bit less cryptic.  If we like the idea of not printing the
> message except when relevant I'll make both changes...

Moving the output to validate_classes and making it conditional on
whether or not any classes/perms were undefined seems reasonable.  I
don't think the above is less cryptic though.  Maybe "SELinux:  Missing
kernel classes or permissions from the loaded policy,
allowing/denying/rejecting".

> 
> -Eric
> 
> On 12/31/07, Eric Paris <eparis@redhat.com> wrote:
> > It means that if you kernel has defined classes and permissions which
> > the policy doesn't know about those security checks will be 'allowed'.
> > Aka if you update your kernel and not your policy 'hopefully' it won't
> > break stuff.
> >
> > -Eric
> >
> > On Mon, 2007-12-31 at 11:46 -0500, Daniel J Walsh wrote:
> > > -----BEGIN PGP SIGNED MESSAGE-----
> > > Hash: SHA1
> > >
> > > SELinux: policy loaded with handle_unknown=allow
> > >
> > >
> > > Have no idea what this means.
> > >
> > > Dan
> > > -----BEGIN PGP SIGNATURE-----
> > > Version: GnuPG v1.4.8 (GNU/Linux)
> > > Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org
> > >
> > > iEYEARECAAYFAkd5HPYACgkQrlYvE4MpobOkCACfT4kNc5CYsw4rtEDokk5RdXwO
> > > 0/YAn0RbSbhQaEY7ytMcLWKIvQrt7qj5
> > > =JH78
> > > -----END PGP SIGNATURE-----
> >
> >
> > --
> > 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.
> >
> 
> --
> 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.
-- 
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] 4+ messages in thread

end of thread, other threads:[~2008-01-07 20:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-31 16:46 Rawhide kernel is reporting Daniel J Walsh
2007-12-31 16:49 ` Eric Paris
2007-12-31 17:02   ` Eric Paris
2008-01-07 20:08     ` Stephen Smalley

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.