1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-01 13:09:50 +00:00

dropbear: Upgrade from 0.52 to 0.53.1

(From OE-Core rev: f1710d09e447b0f71a55b4ef24673c6388a045ad)

Signed-off-by: Mei Lei <lei.mei@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Mei Lei
2011-09-30 09:25:30 +08:00
committed by Richard Purdie
parent dcd82f7ed4
commit ff7f503620
7 changed files with 49 additions and 18 deletions
+1
View File
@@ -13,6 +13,7 @@ DEPENDS += "${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}"
SRC_URI = "http://matt.ucc.asn.au/dropbear/releases/dropbear-${PV}.tar.gz \ SRC_URI = "http://matt.ucc.asn.au/dropbear/releases/dropbear-${PV}.tar.gz \
file://urandom-xauth-changes-to-options.h.patch \ file://urandom-xauth-changes-to-options.h.patch \
file://dropbear-0.53.1-static_build_fix.patch \
file://configure.patch \ file://configure.patch \
file://fix-2kb-keys.patch \ file://fix-2kb-keys.patch \
file://allow-nopw.patch;apply=no \ file://allow-nopw.patch;apply=no \
@@ -1,18 +1,18 @@
Upstream-Status: Inappropriate [embedded specific] Upstream-Status: Inappropriate [embedded specific]
diff --git a/svr-auth.c b/svr-auth.c diff --git a/svr-auth.c b/svr-auth.c
index 5da0aa7..4de4964 100644 index 87e3c5e..3e78c1a 100644
--- a/svr-auth.c --- a/svr-auth.c
+++ b/svr-auth.c +++ b/svr-auth.c
@@ -249,6 +249,7 @@ static int checkusername(unsigned char *username, unsigned int userlen) { @@ -250,6 +250,7 @@ static int checkusername(unsigned char *username, unsigned int userlen) {
} }
/* check for an empty password */ /* check for an empty password */
+#ifdef DISALLOW_EMPTY_PW +#ifdef DISALLOW_EMPTY_PW
if (ses.authstate.pw_passwd[0] == '\0') { if (ses.authstate.pw_passwd[0] == '\0') {
TRACE(("leave checkusername: empty pword")) TRACE(("leave checkusername: empty pword"))
dropbear_log(LOG_WARNING, "user '%s' has blank password, rejected", dropbear_log(LOG_WARNING, "User '%s' has blank password, rejected",
@@ -256,6 +257,7 @@ static int checkusername(unsigned char *username, unsigned int userlen) { @@ -257,6 +258,7 @@ static int checkusername(unsigned char *username, unsigned int userlen) {
send_msg_userauth_failure(0, 1); send_msg_userauth_failure(0, 1);
return DROPBEAR_FAILURE; return DROPBEAR_FAILURE;
} }
@@ -21,7 +21,7 @@ index 5da0aa7..4de4964 100644
TRACE(("shell is %s", ses.authstate.pw_shell)) TRACE(("shell is %s", ses.authstate.pw_shell))
diff --git a/svr-authpasswd.c b/svr-authpasswd.c diff --git a/svr-authpasswd.c b/svr-authpasswd.c
index 53550a2..7b896bd 100644 index a29fd63..6a3c7e9 100644
--- a/svr-authpasswd.c --- a/svr-authpasswd.c
+++ b/svr-authpasswd.c +++ b/svr-authpasswd.c
@@ -64,9 +64,13 @@ void svr_auth_password() { @@ -64,9 +64,13 @@ void svr_auth_password() {
@@ -29,11 +29,11 @@ index 53550a2..7b896bd 100644
* in auth.c */ * in auth.c */
if (passwdcrypt[0] == '\0') { if (passwdcrypt[0] == '\0') {
+#ifdef DISALLOW_EMPTY_PASSWD +#ifdef DISALLOW_EMPTY_PASSWD
dropbear_log(LOG_WARNING, "user '%s' has blank password, rejected", dropbear_log(LOG_WARNING, "User '%s' has blank password, rejected",
ses.authstate.pw_name); ses.authstate.pw_name);
send_msg_userauth_failure(0, 1); send_msg_userauth_failure(0, 1);
+#else +#else
+ send_msg_userauth_success(); + send_msg_userauth_success();
+#endif +#endif
return; return;
} }
@@ -0,0 +1,29 @@
Upstream-Status: Inappropriate [Pending]
Get this patch from buildroot maillist.
dropbear: fix static build
The latest release 0.53.1 change: lcrypt needs to be before object files for static linking
the -lcrypt is missing during the link
svr-authpasswd.o: In function `svr_auth_password':
svr-authpasswd.c:(.text+0xfc): undefined reference to `crypt'
collect2: ld returned 1 exit status
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj at jcrosoft.com>
Signed-off-by: Mei Lei <lei.mei@intel.com>
diff --git a/Makefile.in b/Makefile.in
index 8d81647..0b9b769 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -77,7 +77,7 @@ STRIP=@STRIP@
INSTALL=@INSTALL@
CPPFLAGS=@CPPFLAGS@
CFLAGS+=-I. -I$(srcdir) $(CPPFLAGS) @CFLAGS@
-LIBS+=@LIBS@
+LIBS+=@CRYPTLIB@ @LIBS@
LDFLAGS=@LDFLAGS@
EXEEXT=@EXEEXT@
@@ -1,13 +1,14 @@
Upstream-Status: Inappropriate [configuration] Upstream-Status: Inappropriate [configuration]
diff -Nurd dropbear-0.45/options.h dropbear-0.45.patched/options.h diff --git a/options.h b/options.h
--- dropbear-0.45/options.h 2005-03-06 20:27:02.000000000 -0800 index d309ab4..7fbe97b 100644
+++ dropbear-0.45.patched/options.h 2005-03-08 15:25:09.368742090 -0800 --- a/options.h
@@ -167,7 +167,7 @@ +++ b/options.h
@@ -236,7 +236,7 @@ much traffic. */
/* The command to invoke for xauth when using X11 forwarding. /* The command to invoke for xauth when using X11 forwarding.
* "-q" for quiet */ * "-q" for quiet */
#ifndef XAUTH_COMMAND #ifndef XAUTH_COMMAND
-#define XAUTH_COMMAND "/usr/X11R6/bin/xauth -q" -#define XAUTH_COMMAND "/usr/bin/X11/xauth -q"
+#define XAUTH_COMMAND "xauth -q" +#define XAUTH_COMMAND "xauth -q"
#endif #endif
@@ -1,6 +0,0 @@
require dropbear.inc
SRC_URI[md5sum] = "1c69ec674481d7745452f68f2ea5597e"
SRC_URI[sha256sum] = "e3a2ca49ed85ce562240c0ac06e2f72826d7e52a83e80d91c067c8b97bf5c108"
PR = "r3"
@@ -0,0 +1,6 @@
require dropbear.inc
SRC_URI[md5sum] = "6b8d901859d9b8a18e2f6bfe0a892a03"
SRC_URI[sha256sum] = "192538ca2a9ee778f12a2e8ddb6f098fa85dcb6457adc1cb40dd94b3c28f4df6"
PR = "r0"