- Update to 4.15.1:
* Fix a bug that caused spurious error messages about unknown login.defs configuration options #967 * Adding checks for fd omission #964 * Use temporary stat buffer #974 * Fix wrong french translation #975 - Drop shadow-4.15.0-fix-definition.patch OBS-URL: https://build.opensuse.org/package/show/Base:System/shadow?expand=0&rev=174
This commit is contained in:
parent
0f42921987
commit
57303d29a0
@ -1,134 +0,0 @@
|
|||||||
From ead55e9ba8958504e23e29545f90c4dd925c7462 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Serge Hallyn <serge@hallyn.com>
|
|
||||||
Date: Wed, 20 Mar 2024 17:39:46 -0500
|
|
||||||
Subject: [PATCH] getdef: avoid spurious error messages about unknown
|
|
||||||
configuration options
|
|
||||||
|
|
||||||
def_find can return NULL for unset, not just unknown, config options. So
|
|
||||||
move the decision of whether to log an error message about an unknown config
|
|
||||||
option back into def_find, which knows the difference. Only putdef_str()
|
|
||||||
will pass a char* srcfile to def_find, so only calls from putdef_str will
|
|
||||||
cause the message, which was the original intent of fa68441bc4be8.
|
|
||||||
|
|
||||||
closes #967
|
|
||||||
|
|
||||||
fixes: fa68441bc4be8 ("Improve the login.defs unknown item error message")
|
|
||||||
Signed-off-by: Serge Hallyn <serge@hallyn.com>
|
|
||||||
---
|
|
||||||
lib/getdef.c | 30 ++++++++++++++++--------------
|
|
||||||
1 file changed, 16 insertions(+), 14 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/lib/getdef.c b/lib/getdef.c
|
|
||||||
index 4d4d4e194..ef2ae1f08 100644
|
|
||||||
--- a/lib/getdef.c
|
|
||||||
+++ b/lib/getdef.c
|
|
||||||
@@ -176,7 +176,7 @@ static const char* def_fname = LOGINDEFS; /* login config defs file */
|
|
||||||
static bool def_loaded = false; /* are defs already loaded? */
|
|
||||||
|
|
||||||
/* local function prototypes */
|
|
||||||
-static /*@observer@*/ /*@null@*/struct itemdef *def_find (const char *);
|
|
||||||
+static /*@observer@*/ /*@null@*/struct itemdef *def_find (const char *, const char *);
|
|
||||||
static void def_load (void);
|
|
||||||
|
|
||||||
|
|
||||||
@@ -195,7 +195,7 @@ static void def_load (void);
|
|
||||||
def_load ();
|
|
||||||
}
|
|
||||||
|
|
||||||
- d = def_find (item);
|
|
||||||
+ d = def_find (item, NULL);
|
|
||||||
return (NULL == d) ? NULL : d->value;
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -214,7 +214,7 @@ bool getdef_bool (const char *item)
|
|
||||||
def_load ();
|
|
||||||
}
|
|
||||||
|
|
||||||
- d = def_find (item);
|
|
||||||
+ d = def_find (item, NULL);
|
|
||||||
if ((NULL == d) || (NULL == d->value)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
@@ -240,7 +240,7 @@ int getdef_num (const char *item, int dflt)
|
|
||||||
def_load ();
|
|
||||||
}
|
|
||||||
|
|
||||||
- d = def_find (item);
|
|
||||||
+ d = def_find (item, NULL);
|
|
||||||
if ((NULL == d) || (NULL == d->value)) {
|
|
||||||
return dflt;
|
|
||||||
}
|
|
||||||
@@ -275,7 +275,7 @@ unsigned int getdef_unum (const char *item, unsigned int dflt)
|
|
||||||
def_load ();
|
|
||||||
}
|
|
||||||
|
|
||||||
- d = def_find (item);
|
|
||||||
+ d = def_find (item, NULL);
|
|
||||||
if ((NULL == d) || (NULL == d->value)) {
|
|
||||||
return dflt;
|
|
||||||
}
|
|
||||||
@@ -310,7 +310,7 @@ long getdef_long (const char *item, long dflt)
|
|
||||||
def_load ();
|
|
||||||
}
|
|
||||||
|
|
||||||
- d = def_find (item);
|
|
||||||
+ d = def_find (item, NULL);
|
|
||||||
if ((NULL == d) || (NULL == d->value)) {
|
|
||||||
return dflt;
|
|
||||||
}
|
|
||||||
@@ -342,7 +342,7 @@ unsigned long getdef_ulong (const char *item, unsigned long dflt)
|
|
||||||
def_load ();
|
|
||||||
}
|
|
||||||
|
|
||||||
- d = def_find (item);
|
|
||||||
+ d = def_find (item, NULL);
|
|
||||||
if ((NULL == d) || (NULL == d->value)) {
|
|
||||||
return dflt;
|
|
||||||
}
|
|
||||||
@@ -375,12 +375,9 @@ int putdef_str (const char *name, const char *value, const char *srcfile)
|
|
||||||
* Locate the slot to save the value. If this parameter
|
|
||||||
* is unknown then "def_find" will print an err message.
|
|
||||||
*/
|
|
||||||
- d = def_find (name);
|
|
||||||
- if (NULL == d) {
|
|
||||||
- if (NULL != srcfile)
|
|
||||||
- SYSLOG ((LOG_CRIT, "shadow: unknown configuration item '%s' in '%s'", name, srcfile));
|
|
||||||
+ d = def_find (name, srcfile);
|
|
||||||
+ if (NULL == d)
|
|
||||||
return -1;
|
|
||||||
- }
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Save off the value.
|
|
||||||
@@ -404,9 +401,12 @@ int putdef_str (const char *name, const char *value, const char *srcfile)
|
|
||||||
*
|
|
||||||
* Search through a table of configurable items to locate the
|
|
||||||
* specified configuration option.
|
|
||||||
+ *
|
|
||||||
+ * If srcfile is not NULL, and the item is not found, then report an error saying
|
|
||||||
+ * the unknown item was used in this file.
|
|
||||||
*/
|
|
||||||
|
|
||||||
-static /*@observer@*/ /*@null@*/struct itemdef *def_find (const char *name)
|
|
||||||
+static /*@observer@*/ /*@null@*/struct itemdef *def_find (const char *name, const char *srcfile)
|
|
||||||
{
|
|
||||||
struct itemdef *ptr;
|
|
||||||
|
|
||||||
@@ -432,6 +432,8 @@ static /*@observer@*/ /*@null@*/struct itemdef *def_find (const char *name)
|
|
||||||
fprintf (shadow_logfd,
|
|
||||||
_("configuration error - unknown item '%s' (notify administrator)\n"),
|
|
||||||
name);
|
|
||||||
+ if (srcfile != NULL)
|
|
||||||
+ SYSLOG ((LOG_CRIT, "shadow: unknown configuration item '%s' in '%s'", name, srcfile));
|
|
||||||
|
|
||||||
out:
|
|
||||||
return NULL;
|
|
||||||
@@ -610,7 +612,7 @@ int main (int argc, char **argv)
|
|
||||||
def_load ();
|
|
||||||
|
|
||||||
for (i = 0; i < NUMDEFS; ++i) {
|
|
||||||
- d = def_find (def_table[i].name);
|
|
||||||
+ d = def_find (def_table[i].name, NULL);
|
|
||||||
if (NULL == d) {
|
|
||||||
printf ("error - lookup '%s' failed\n",
|
|
||||||
def_table[i].name);
|
|
BIN
shadow-4.15.0.tar.xz
(Stored with Git LFS)
BIN
shadow-4.15.0.tar.xz
(Stored with Git LFS)
Binary file not shown.
@ -1,16 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
|
|
||||||
iQIzBAABCgAdFiEEflbiwT+nfOMVWa3JfcJMNsM0HSAFAmXrjOcACgkQfcJMNsM0
|
|
||||||
HSC+Xg/8DIzBlPlkuvgmKSQbTV2AsRDrGxRSSks36hAsi/uBNhpIi5RI5OftN9S2
|
|
||||||
PuuY+nfja8K1zbOt8IyUx8dLmBFbN5U3u53mb0W0hI2RQFn3G18Pg4CurzBktA6P
|
|
||||||
tQ23wr2YnWfjbq6k7ed8keAKh0CTxe+hy7IYpYww+RImxAuYOYgSoRn7qBbcFMkI
|
|
||||||
WUbg5dku4ijy+2N1llxjOX7hIKaYN+BlKBIxAiku4IBmxdRyVrKi5njmiFEQh8PG
|
|
||||||
53ZLW6lIy8Q2GJxZA+A/xEm+sZnaMuVTIKlQJouHTEYwhQ882PPm1lnFBFvoMPsk
|
|
||||||
mAXoUj4otJcXWnJbMgkFYv0BFWKKUpMdhT61miwGywOY8d60D9V85AnUjwRk8EOD
|
|
||||||
7pSGiVECZGEQsSaFXWDboYhNZZ7VlvpTUkMEphNfj7xENnGbr7BlgQEEPNpFwkUL
|
|
||||||
zNwIV30bP1qLwZD/MowjKfB5uc9MYt8Q7dP5IZNwqJv+WIRBQjr9LA3iGLxc3YfH
|
|
||||||
DlYLP8pLjmd0+4HuHdtlc2b8QSY5kLQKYy12MnvGL77EGUq76bjGVtgrE9AWy9V4
|
|
||||||
PRlS91lAdRqCCqAvWQ5wQx5lJwAED5uxAl64GEdyvHzGTkbFaH5DqTJBLd6v7Jyj
|
|
||||||
UTP+RxIAVrV+lCYy5TWwemeSlZkO/F0T/Lkk2wU/9S4rSltOkT4=
|
|
||||||
=fkei
|
|
||||||
-----END PGP SIGNATURE-----
|
|
BIN
shadow-4.15.1.tar.xz
(Stored with Git LFS)
Normal file
BIN
shadow-4.15.1.tar.xz
(Stored with Git LFS)
Normal file
Binary file not shown.
16
shadow-4.15.1.tar.xz.asc
Normal file
16
shadow-4.15.1.tar.xz.asc
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iQIzBAABCgAdFiEEflbiwT+nfOMVWa3JfcJMNsM0HSAFAmX/ahcACgkQfcJMNsM0
|
||||||
|
HSBW5BAAwtMZjHRGfS7R7SnydwSaW7sDP+QOl1108a6rDk0vuu5jCqCcenN66Bwb
|
||||||
|
CfR9wmFXUtnnfVSj+z/ESsZOdp1gBkEj6updIQXHK+V2AKmCfe2U7Nuci5Yk1I2E
|
||||||
|
6bBAIETHV1YijZMTHSeMWQEmqmOXbF6xhHjbKscqBA4KvnasFuE6hn3Omw/TNCSg
|
||||||
|
uwVxapgtUv3RJ/nkQq4OIODKgyeQA4r4LkAQLbtAYmUnEhDQqeEa7tsIJATFYKNK
|
||||||
|
7xDyZrqRHb8Rzd9pKRJtYTkYOD18hmOr/vZidZPBhZ0Am1QaYsiRbjuxc9iF/AeE
|
||||||
|
pI+WeGKmAvHG1F6hRmjiLmH4gsozL9tZ7OGDWGSrVDGeraIiEYRguwdy6Fe96v0V
|
||||||
|
EkwhtcwIl9z8Elo6bIHPiSweOH+e00yHTiBqnkdwpFuOahWsNvcXTigKAEv6KAfR
|
||||||
|
bp1BacPRFuO5tgb2/S+Miyb+Fzim5E7Ch77fH2ggtHRNtqff/PqlznX0CchtAplE
|
||||||
|
pgI/BGNlnpCecnS/vu8M+SFuES34kh+pz7x4hWL2JICsTVZnJz2SB1tL+Z6p0y0G
|
||||||
|
Jt78+LdoJ4U6SKl2s+42RVqrvR0QU01IbWDEFdaQ2lkK1ecGQWNfoOYwzweJiG2M
|
||||||
|
RNfUX179KTEbQ4edhY2GmiZif8JUbp+amv9u5qUPrS3ZEgwrYUw=
|
||||||
|
=1W4Z
|
||||||
|
-----END PGP SIGNATURE-----
|
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 24 09:06:48 UTC 2024 - Michael Vetter <mvetter@suse.com>
|
||||||
|
|
||||||
|
- Update to 4.15.1:
|
||||||
|
* Fix a bug that caused spurious error messages about unknown
|
||||||
|
login.defs configuration options #967
|
||||||
|
* Adding checks for fd omission #964
|
||||||
|
* Use temporary stat buffer #974
|
||||||
|
* Fix wrong french translation #975
|
||||||
|
- Drop shadow-4.15.0-fix-definition.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 21 06:37:27 UTC 2024 - Michael Vetter <mvetter@suse.com>
|
Thu Mar 21 06:37:27 UTC 2024 - Michael Vetter <mvetter@suse.com>
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
%define no_config 1
|
%define no_config 1
|
||||||
%endif
|
%endif
|
||||||
Name: shadow
|
Name: shadow
|
||||||
Version: 4.15.0
|
Version: 4.15.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Utilities to Manage User and Group Accounts
|
Summary: Utilities to Manage User and Group Accounts
|
||||||
License: BSD-3-Clause AND GPL-2.0-or-later
|
License: BSD-3-Clause AND GPL-2.0-or-later
|
||||||
@ -48,8 +48,6 @@ Patch3: shadow-login_defs-comments.patch
|
|||||||
Patch4: shadow-login_defs-suse.patch
|
Patch4: shadow-login_defs-suse.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.
|
||||||
Patch5: disable_new_audit_function.patch
|
Patch5: disable_new_audit_function.patch
|
||||||
# PATCH-FIX-UPSTREAM mvetter@suse.com -- Fix config options gh/shadow-maint/shadow#967
|
|
||||||
Patch6: shadow-4.15.0-fix-definition.patch
|
|
||||||
BuildRequires: audit-devel > 2.3
|
BuildRequires: audit-devel > 2.3
|
||||||
BuildRequires: autoconf
|
BuildRequires: autoconf
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
@ -118,7 +116,6 @@ Development files for libsubid4.
|
|||||||
%if 0%{?suse_version} < 1330
|
%if 0%{?suse_version} < 1330
|
||||||
%patch -P 5 -p1
|
%patch -P 5 -p1
|
||||||
%endif
|
%endif
|
||||||
%patch -P 6 -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