selinux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Nicolas Iooss <nicolas.iooss@m4x.org>
To: Viktor Ashirov <vashirov@redhat.com>
Cc: selinux@vger.kernel.org
Subject: Re: [PATCH] python/restorecon: add force option
Date: Tue, 5 Feb 2019 08:17:17 +0100	[thread overview]
Message-ID: <CAJfZ7=nL4xQVP_QRipkE+upk5_cyguLaywoaeggTcoBT8DRvcg@mail.gmail.com> (raw)
In-Reply-To: <CAJfZ7==AqfrjxZ_7yBt6d_2VsiOQtBPOUgwinmXvfWx6k_2ZMQ@mail.gmail.com>

On Sun, Feb 3, 2019 at 11:08 AM Nicolas Iooss <nicolas.iooss@m4x.org> wrote:
>
> On Wed, Jan 30, 2019 at 2:33 PM Viktor Ashirov <vashirov@redhat.com> wrote:
> >
> > This adds 'force' keyword argument to selinux.restorecon() function
> > using SELINUX_RESTORECON_SET_SPECFILE_CTX flag.
> >
> > Signed-off-by: Viktor Ashirov <vashirov@redhat.com>
>
> Acked-by: Nicolas Iooss <nicolas.iooss@m4x.org>

Merged. Thanks!
Nicolas

> > ---
> >  libselinux/src/selinuxswig_python.i | 7 ++++++-
> >  1 file changed, 6 insertions(+), 1 deletion(-)
> >
> > diff --git a/libselinux/src/selinuxswig_python.i b/libselinux/src/selinuxswig_python.i
> > index 2af7c7e0..4c73bf92 100644
> > --- a/libselinux/src/selinuxswig_python.i
> > +++ b/libselinux/src/selinuxswig_python.i
> > @@ -20,7 +20,7 @@ DISABLED = -1
> >  PERMISSIVE = 0
> >  ENFORCING = 1
> >
> > -def restorecon(path, recursive=False, verbose=False):
> > +def restorecon(path, recursive=False, verbose=False, force=False):
> >      """ Restore SELinux context on a given path
> >
> >      Arguments:
> > @@ -29,6 +29,9 @@ def restorecon(path, recursive=False, verbose=False):
> >      Keyword arguments:
> >      recursive -- Change files and directories file labels recursively (default False)
> >      verbose -- Show changes in file labels (default False)
> > +    force -- Force reset of context to match file_context for customizable files,
> > +    and the default file context, changing the user, role, range portion  as well
> > +    as the type (default False)
> >      """
> >
> >      restorecon_flags = SELINUX_RESTORECON_IGNORE_DIGEST | SELINUX_RESTORECON_REALPATH
> > @@ -36,6 +39,8 @@ def restorecon(path, recursive=False, verbose=False):
> >          restorecon_flags |= SELINUX_RESTORECON_RECURSE
> >      if verbose:
> >          restorecon_flags |= SELINUX_RESTORECON_VERBOSE
> > +    if force:
> > +        restorecon_flags |= SELINUX_RESTORECON_SET_SPECFILE_CTX
> >      selinux_restorecon(os.path.expanduser(path), restorecon_flags)
> >
> >  def chcon(path, context, recursive=False):
> > --
> > 2.20.1
> >


      reply	other threads:[~2019-02-05  7:17 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-30 13:33 [PATCH] python/restorecon: add force option Viktor Ashirov
2019-02-03 10:08 ` Nicolas Iooss
2019-02-05  7:17   ` Nicolas Iooss [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAJfZ7=nL4xQVP_QRipkE+upk5_cyguLaywoaeggTcoBT8DRvcg@mail.gmail.com' \
    --to=nicolas.iooss@m4x.org \
    --cc=selinux@vger.kernel.org \
    --cc=vashirov@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).