Github messages for voidlinux
 help / color / mirror / Atom feed
From: travankor <travankor@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] pam_rundir: fix conditional and set the user gid for the dir.
Date: Fri, 25 Feb 2022 15:47:27 +0100	[thread overview]
Message-ID: <20220225144727.NgOd3f2GnupTuRAHz3vJw4A7n-FRYCHupqN1uGJW5TI@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-35212@inbox.vuxu.org>

[-- Attachment #1: Type: text/plain, Size: 1239 bytes --]

There is an updated pull request by travankor against master on the void-packages repository

https://github.com/travankor/void-packages pam_rundir
https://github.com/void-linux/void-packages/pull/35212

pam_rundir: fix conditional and set the user gid for the dir.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration)
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!-- 
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->

A patch file from https://github.com/void-linux/void-packages/pull/35212.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-pam_rundir-35212.patch --]
[-- Type: text/x-diff, Size: 3257 bytes --]

From c5cbbeb906e5ac70ee3467e539daa4a3d6412d6c Mon Sep 17 00:00:00 2001
From: travankor <travankor@tuta.io>
Date: Thu, 20 Jan 2022 10:41:10 -0700
Subject: [PATCH] pam_rundir: fix conditional and set the user gid for the dir.

---
 srcpkgs/pam_rundir/patches/fix.patch     |  1 -
 srcpkgs/pam_rundir/patches/fix2.patch    | 15 ++++++++++++++
 srcpkgs/pam_rundir/patches/setegid.patch | 26 ++++++++++++++++++++++++
 srcpkgs/pam_rundir/template              |  2 +-
 4 files changed, 42 insertions(+), 2 deletions(-)
 create mode 100644 srcpkgs/pam_rundir/patches/fix2.patch
 create mode 100644 srcpkgs/pam_rundir/patches/setegid.patch

diff --git a/srcpkgs/pam_rundir/patches/fix.patch b/srcpkgs/pam_rundir/patches/fix.patch
index 3ef75edfea60..252267584934 100644
--- a/srcpkgs/pam_rundir/patches/fix.patch
+++ b/srcpkgs/pam_rundir/patches/fix.patch
@@ -37,4 +37,3 @@
 +            prctl (PR_SET_SECUREBITS, (unsigned long) secbits);
          close (fd); /* also unlocks */
      }
- 
diff --git a/srcpkgs/pam_rundir/patches/fix2.patch b/srcpkgs/pam_rundir/patches/fix2.patch
new file mode 100644
index 000000000000..99e5e02658be
--- /dev/null
+++ b/srcpkgs/pam_rundir/patches/fix2.patch
@@ -0,0 +1,15 @@
+from https://github.com/jjk-jacky/pam_rundir/pull/5
+
+diff --git a/pam_rundir.c b/pam_rundir.c
+index 2d2c201..67c7ca6 100644
+--- a/pam_rundir.c
++++ b/pam_rundir.c
+@@ -197,7 +197,7 @@ write_counter (int fd, int count)
+             r = write (fd, buf + w, l - w);
+             if (r < 0)
+             {
+-                if (errno = EINTR)
++                if (errno == EINTR)
+                     continue;
+                 if (w > 0)
+                     emergency_invalidate_counter (fd);
diff --git a/srcpkgs/pam_rundir/patches/setegid.patch b/srcpkgs/pam_rundir/patches/setegid.patch
new file mode 100644
index 000000000000..3c573cd41a53
--- /dev/null
+++ b/srcpkgs/pam_rundir/patches/setegid.patch
@@ -0,0 +1,26 @@
+backport of https://github.com/jjk-jacky/pam_rundir/pull/8
+
+diff --git a/pam_rundir.c b/pam_rundir.c
+index d36584d..f92c73e 100644
+--- a/pam_rundir.c
++++ b/pam_rundir.c
+@@ -404,8 +404,8 @@
+         secbits = prctl (PR_GET_SECUREBITS);
+         if (secbits != -1)
+             prctl (PR_SET_SECUREBITS, (unsigned long) secbits | SECBIT_NO_SETUID_FIXUP);
+-        /* set euid so if we do create the dir, it is own by the user */
+-        if (seteuid (pw->pw_uid) < 0)
++        /* set euid and egid so if we do create the dir, it is owned by the user */
++        if (seteuid (pw->pw_uid) < 0 || setegid (pw->pw_gid) < 0)
+         {
+             r = -1;
+             goto done;
+@@ -422,7 +422,7 @@
+             pam_putenv (pamh, buf);
+         }
+         /* restore */
+-        if (seteuid (0) < 0)
++        if (seteuid (0) < 0 || setegid (0) < 0)
+         {
+             r = -1;
+             goto done;
diff --git a/srcpkgs/pam_rundir/template b/srcpkgs/pam_rundir/template
index f08238ddb5fd..080be5afca30 100644
--- a/srcpkgs/pam_rundir/template
+++ b/srcpkgs/pam_rundir/template
@@ -1,7 +1,7 @@
 # Template file for 'pam_rundir'
 pkgname=pam_rundir
 version=1.0.0
-revision=5
+revision=6
 build_style=configure
 configure_args="--prefix=/usr --with-parentdir=/run/user"
 makedepends="pam-devel"

  parent reply	other threads:[~2022-02-25 14:47 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-23 22:00 [PR PATCH] " travankor
2022-02-25 11:55 ` [PR REVIEW] " Piraty
2022-02-25 13:49 ` [PR PATCH] [Updated] " travankor
2022-02-25 14:47 ` travankor [this message]
2022-02-26  0:33 ` [PR PATCH] [Merged]: " Piraty
2022-02-26 13:25 ` eoli3n
2022-02-26 21:55 ` Piraty
2022-02-27 17:12 ` eoli3n
2022-02-28 12:55 ` travankor

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=20220225144727.NgOd3f2GnupTuRAHz3vJw4A7n-FRYCHupqN1uGJW5TI@z \
    --to=travankor@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /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).