summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/sudo
diff options
context:
space:
mode:
authorAndrei Dinu <andrei.adrianx.dinu@intel.com>2013-06-07 17:52:53 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-06-11 15:38:02 +0100
commit7c1a5555508c55a3888b9c906f5a59e61799dbed (patch)
treec4930b70c2f07673e135c16cf9f69f7854dd66d3 /meta/recipes-extended/sudo
parent55316357e39b1abf1cfa4c935bfc53cf317f37ec (diff)
downloadpoky-7c1a5555508c55a3888b9c906f5a59e61799dbed.tar.gz
sudo : upgrade to 1.8.6p8
upgrade from 1.8.6p7 -> 1.8.6p8 - removed crypt.patch because it was contained upstream (From OE-Core rev: 198e0db0e840dd3ac719d0c2ea980e08bf1f3442) Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/sudo')
-rw-r--r--meta/recipes-extended/sudo/files/crypt.patch100
-rw-r--r--meta/recipes-extended/sudo/sudo_1.8.6p8.bb (renamed from meta/recipes-extended/sudo/sudo_1.8.6p7.bb)5
2 files changed, 2 insertions, 103 deletions
diff --git a/meta/recipes-extended/sudo/files/crypt.patch b/meta/recipes-extended/sudo/files/crypt.patch
deleted file mode 100644
index d0622d372c..0000000000
--- a/meta/recipes-extended/sudo/files/crypt.patch
+++ /dev/null
@@ -1,100 +0,0 @@
1Upstream-Status: Backport
2Signed-off-by: Ross Burton <ross.burton@intel.com>
3
4# HG changeset patch
5# User Todd C. Miller <Todd.Miller@courtesan.com>
6# Date 1365700240 14400
7# Node ID 887b9df243df5254e56c467a016f1b0a7a8507dd
8# Parent fd7eda53cdd76aaf8336800c61005ae93de95ac7
9Check for crypt() returning NULL. Traditionally, crypt() never returned
10NULL but newer versions of eglibc have a crypt() that does. Bug #598
11
12diff -r fd7eda53cdd7 -r 887b9df243df plugins/sudoers/auth/passwd.c
13--- a/plugins/sudoers/auth/passwd.c Thu Apr 11 09:09:53 2013 -0400
14+++ b/plugins/sudoers/auth/passwd.c Thu Apr 11 13:10:40 2013 -0400
15@@ -68,15 +68,15 @@
16 char sav, *epass;
17 char *pw_epasswd = auth->data;
18 size_t pw_len;
19- int error;
20+ int matched = 0;
21 debug_decl(sudo_passwd_verify, SUDO_DEBUG_AUTH)
22
23 pw_len = strlen(pw_epasswd);
24
25 #ifdef HAVE_GETAUTHUID
26 /* Ultrix shadow passwords may use crypt16() */
27- error = strcmp(pw_epasswd, (char *) crypt16(pass, pw_epasswd));
28- if (!error)
29+ epass = (char *) crypt16(pass, pw_epasswd);
30+ if (epass != NULL && strcmp(pw_epasswd, epass) == 0)
31 debug_return_int(AUTH_SUCCESS);
32 #endif /* HAVE_GETAUTHUID */
33
34@@ -95,12 +95,14 @@
35 */
36 epass = (char *) crypt(pass, pw_epasswd);
37 pass[8] = sav;
38- if (HAS_AGEINFO(pw_epasswd, pw_len) && strlen(epass) == DESLEN)
39- error = strncmp(pw_epasswd, epass, DESLEN);
40- else
41- error = strcmp(pw_epasswd, epass);
42+ if (epass != NULL) {
43+ if (HAS_AGEINFO(pw_epasswd, pw_len) && strlen(epass) == DESLEN)
44+ matched = !strncmp(pw_epasswd, epass, DESLEN);
45+ else
46+ matched = !strcmp(pw_epasswd, epass);
47+ }
48
49- debug_return_int(error ? AUTH_FAILURE : AUTH_SUCCESS);
50+ debug_return_int(matched ? AUTH_SUCCESS : AUTH_FAILURE);
51 }
52
53 int
54diff -r fd7eda53cdd7 -r 887b9df243df plugins/sudoers/auth/secureware.c
55--- a/plugins/sudoers/auth/secureware.c Thu Apr 11 09:09:53 2013 -0400
56+++ b/plugins/sudoers/auth/secureware.c Thu Apr 11 13:10:40 2013 -0400
57@@ -73,30 +73,28 @@
58 sudo_secureware_verify(struct passwd *pw, char *pass, sudo_auth *auth)
59 {
60 char *pw_epasswd = auth->data;
61+ char *epass = NULL;
62 debug_decl(sudo_secureware_verify, SUDO_DEBUG_AUTH)
63 #ifdef __alpha
64 {
65 extern int crypt_type;
66
67-# ifdef HAVE_DISPCRYPT
68- if (strcmp(pw_epasswd, dispcrypt(pass, pw_epasswd, crypt_type)) == 0)
69- debug_return_int(AUTH_SUCCESS);
70-# else
71- if (crypt_type == AUTH_CRYPT_BIGCRYPT) {
72- if (strcmp(pw_epasswd, bigcrypt(pass, pw_epasswd)) == 0)
73- debug_return_int(AUTH_SUCCESS);
74- } else if (crypt_type == AUTH_CRYPT_CRYPT16) {
75- if (strcmp(pw_epasswd, crypt(pass, pw_epasswd)) == 0)
76- debug_return_int(AUTH_SUCCESS);
77- }
78+# ifdef HAVE_DISPCRYPT
79+ epass = dispcrypt(pass, pw_epasswd, crypt_type);
80+# else
81+ if (crypt_type == AUTH_CRYPT_BIGCRYPT)
82+ epass = bigcrypt(pass, pw_epasswd);
83+ else if (crypt_type == AUTH_CRYPT_CRYPT16)
84+ epass = crypt(pass, pw_epasswd);
85 }
86-# endif /* HAVE_DISPCRYPT */
87+# endif /* HAVE_DISPCRYPT */
88 #elif defined(HAVE_BIGCRYPT)
89- if (strcmp(pw_epasswd, bigcrypt(pass, pw_epasswd)) == 0)
90- debug_return_int(AUTH_SUCCESS);
91+ epass = bigcrypt(pass, pw_epasswd);
92 #endif /* __alpha */
93
94- debug_return_int(AUTH_FAILURE);
95+ if (epass != NULL && strcmp(pw_epasswd, epass) == 0)
96+ debug_return_int(AUTH_SUCCESS);
97+ debug_return_int(AUTH_FAILURE);
98 }
99
100 int
diff --git a/meta/recipes-extended/sudo/sudo_1.8.6p7.bb b/meta/recipes-extended/sudo/sudo_1.8.6p8.bb
index 7198fd3c14..00602c00a3 100644
--- a/meta/recipes-extended/sudo/sudo_1.8.6p7.bb
+++ b/meta/recipes-extended/sudo/sudo_1.8.6p8.bb
@@ -4,13 +4,12 @@ PR = "r0"
4 4
5SRC_URI = "http://ftp.sudo.ws/sudo/dist/sudo-${PV}.tar.gz \ 5SRC_URI = "http://ftp.sudo.ws/sudo/dist/sudo-${PV}.tar.gz \
6 file://libtool.patch \ 6 file://libtool.patch \
7 file://crypt.patch \
8 ${@base_contains('DISTRO_FEATURES', 'pam', '${PAM_SRC_URI}', '', d)}" 7 ${@base_contains('DISTRO_FEATURES', 'pam', '${PAM_SRC_URI}', '', d)}"
9 8
10PAM_SRC_URI = "file://sudo.pam" 9PAM_SRC_URI = "file://sudo.pam"
11 10
12SRC_URI[md5sum] = "126abfa2e841139e774d4c67d80f0e5b" 11SRC_URI[md5sum] = "6dac48c73c8e0932980efcddafa569af"
13SRC_URI[sha256sum] = "301089edb22356f59d097f6abbe1303f03927a38691b02959d618546c2125036" 12SRC_URI[sha256sum] = "c0baaa87f59153967b650a0dde2f7d4147d358fa15f3fdabb47e84d0282fe625"
14 13
15DEPENDS += " ${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}" 14DEPENDS += " ${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}"
16RDEPENDS_${PN} += " ${@base_contains('DISTRO_FEATURES', 'pam', 'pam-plugin-limits pam-plugin-keyinit', '', d)}" 15RDEPENDS_${PN} += " ${@base_contains('DISTRO_FEATURES', 'pam', 'pam-plugin-limits pam-plugin-keyinit', '', d)}"