Accepting request 1058151 from Base:System
- Add shadow-fix-print-login-timeout.patch: Fix printing full login timeout message See gh/shadow-maint/shadow#621 See gh/shadow-maint/shadow#606 OBS-URL: https://build.opensuse.org/request/show/1058151 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/shadow?expand=0&rev=54
This commit is contained in:
commit
b27c231a63
41
shadow-fix-print-login-timeout.patch
Normal file
41
shadow-fix-print-login-timeout.patch
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
From 670cae834827a8f794e6f7464fa57790d911b63c Mon Sep 17 00:00:00 2001
|
||||||
|
From: SoumyaWind <121475834+SoumyaWind@users.noreply.github.com>
|
||||||
|
Date: Tue, 27 Dec 2022 17:40:17 +0530
|
||||||
|
Subject: [PATCH] shadow: Fix can not print full login timeout message
|
||||||
|
|
||||||
|
Login timed out message prints only first few bytes when write is immediately followed by exit.
|
||||||
|
Calling exit from new handler provides enough time to display full message.
|
||||||
|
---
|
||||||
|
src/login.c | 8 +++++++-
|
||||||
|
1 file changed, 7 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/src/login.c b/src/login.c
|
||||||
|
index 116e2cb3..c55f4de0 100644
|
||||||
|
--- a/src/login.c
|
||||||
|
+++ b/src/login.c
|
||||||
|
@@ -120,6 +120,7 @@ static void get_pam_user (char **ptr_pam_user);
|
||||||
|
|
||||||
|
static void init_env (void);
|
||||||
|
static void alarm_handler (int);
|
||||||
|
+static void exit_handler (int);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* usage - print login command usage and exit
|
||||||
|
@@ -391,11 +392,16 @@ static void init_env (void)
|
||||||
|
#endif /* !USE_PAM */
|
||||||
|
}
|
||||||
|
|
||||||
|
+static void exit_handler (unused int sig)
|
||||||
|
+{
|
||||||
|
+ _exit (0);
|
||||||
|
+}
|
||||||
|
|
||||||
|
static void alarm_handler (unused int sig)
|
||||||
|
{
|
||||||
|
write (STDERR_FILENO, tmsg, strlen (tmsg));
|
||||||
|
- _exit (0);
|
||||||
|
+ signal(SIGALRM, exit_handler);
|
||||||
|
+ alarm(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifdef USE_PAM
|
@ -1,8 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 13 08:21:46 UTC 2023 - Michael Vetter <mvetter@suse.com>
|
||||||
|
|
||||||
|
- Add shadow-fix-print-login-timeout.patch:
|
||||||
|
Fix printing full login timeout message
|
||||||
|
See gh/shadow-maint/shadow#621
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Dec 16 10:04:44 UTC 2022 - Michael Vetter <mvetter@suse.com>
|
Fri Dec 16 10:04:44 UTC 2022 - Michael Vetter <mvetter@suse.com>
|
||||||
|
|
||||||
- bsc#1205502: Fix useradd audit event logging of ID field
|
- bsc#1205502: Fix useradd audit event logging of ID field
|
||||||
* Add shadow-audit-no-id.patch
|
* Add shadow-audit-no-id.patch
|
||||||
|
See gh/shadow-maint/shadow#606
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 8 21:15:44 UTC 2022 - Michael Vetter <mvetter@suse.com>
|
Tue Nov 8 21:15:44 UTC 2022 - Michael Vetter <mvetter@suse.com>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package shadow
|
# spec file for package shadow
|
||||||
#
|
#
|
||||||
# Copyright (c) 2022 SUSE LLC
|
# Copyright (c) 2023 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -53,12 +53,14 @@ Patch4: shadow-util-linux.patch
|
|||||||
Patch5: shadow-login_defs-comments.patch
|
Patch5: shadow-login_defs-comments.patch
|
||||||
# PATCH-FEATURE-SUSE shadow-login_defs-suse.patch kukuk@suse.com -- Customize login.defs.
|
# PATCH-FEATURE-SUSE shadow-login_defs-suse.patch kukuk@suse.com -- Customize login.defs.
|
||||||
Patch6: shadow-login_defs-suse.patch
|
Patch6: shadow-login_defs-suse.patch
|
||||||
# PATCH-FEATURE-SUSE Copy also skeleton files from /usr/etc/skel (boo#1173321)
|
# PATCH-FEATURE-SUSE Copy also skeleton files from /usr/etc/skel (boo#1173321) (gh/shadow-maint/shadow#591)
|
||||||
Patch7: useradd-userkeleton.patch
|
Patch7: useradd-userkeleton.patch
|
||||||
# PATCH-FIX-SUSE disable_new_audit_function.patch adam.majer@suse.de -- Disable newer libaudit functionality for older distributions.
|
# PATCH-FIX-SUSE disable_new_audit_function.patch adam.majer@suse.de -- Disable newer libaudit functionality for older distributions.
|
||||||
Patch8: disable_new_audit_function.patch
|
Patch8: disable_new_audit_function.patch
|
||||||
# PATCH-FIX-UPSTREAM shadow-audit-no-id.patch mvetter@suse.com -- Fix useradd audit event logging of ID field (bsc#1205502) (gh/shadow-maint/shadow#606)
|
# PATCH-FIX-UPSTREAM shadow-audit-no-id.patch mvetter@suse.com -- Fix useradd audit event logging of ID field (bsc#1205502) (gh/shadow-maint/shadow#606)
|
||||||
Patch9: shadow-audit-no-id.patch
|
Patch9: shadow-audit-no-id.patch
|
||||||
|
# PATCH-FIX-UPSTREAM shadow-fix-print-login-timeout.patch mvetter@suse.com -- Fix print full login timeout message (gh/shadow-maint/shadow#621)
|
||||||
|
Patch10: https://github.com/shadow-maint/shadow/commit/670cae834827a8f794e6f7464fa57790d911b63c.patch#/shadow-fix-print-login-timeout.patch
|
||||||
BuildRequires: audit-devel > 2.3
|
BuildRequires: audit-devel > 2.3
|
||||||
BuildRequires: autoconf
|
BuildRequires: autoconf
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
@ -129,6 +131,7 @@ Development files for libsubid4.
|
|||||||
%patch8 -p1
|
%patch8 -p1
|
||||||
%endif
|
%endif
|
||||||
%patch9 -p1
|
%patch9 -p1
|
||||||
|
%patch10 -p1
|
||||||
|
|
||||||
iconv -f ISO88591 -t utf-8 doc/HOWTO > doc/HOWTO.utf8
|
iconv -f ISO88591 -t utf-8 doc/HOWTO > doc/HOWTO.utf8
|
||||||
mv -v doc/HOWTO.utf8 doc/HOWTO
|
mv -v doc/HOWTO.utf8 doc/HOWTO
|
||||||
|
Loading…
Reference in New Issue
Block a user