From patchwork Mon Mar 24 11:47:50 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 333032 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 8D4EF14008B for ; Mon, 24 Mar 2014 22:48:10 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 2B00C8AA19; Mon, 24 Mar 2014 11:48:09 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id jeAACGQqCrX8; Mon, 24 Mar 2014 11:48:07 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id EB4348A5AC; Mon, 24 Mar 2014 11:48:06 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 28D031C1079 for ; Mon, 24 Mar 2014 11:48:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 234358A5AC for ; Mon, 24 Mar 2014 11:48:06 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2PhdKnZ4ANPO for ; Mon, 24 Mar 2014 11:48:04 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id 9A94089B20 for ; Mon, 24 Mar 2014 11:48:04 +0000 (UTC) Received: from asgard (host107.181-14-143.telecom.net.ar [181.14.143.107]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.8/8.14.8) with ESMTP id s2OBluE3020733 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 24 Mar 2014 11:47:59 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1395661681; bh=IcGJR8rQkBNHUg5XQYCKqcpi1VAW2jVMg4dPiqj5c+w=; h=From:To:Cc:Subject:Date; b=ptV06QpsFfLErDtaet7N7o4wP7Xtw27p4G201pRzXHHhzpx4WCcWSOW0JXSh7Z5oy SpgtzkCVZ5dF2aCyNJWK5yp3mBZmlhGGfht8m7elzT3r0mYpNpsFWyRhzABlE3vZ2Q wwjtXlsvkSswwMUaK71CHtTaJvZOJskS1+79ZOO0= Received: by asgard (sSMTP sendmail emulation); Mon, 24 Mar 2014 08:47:50 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Mon, 24 Mar 2014 08:47:50 -0300 Message-Id: <1395661670-26641-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.3.2 X-Virus-Scanned: clamav-milter 0.98.1 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] openssh: security bump to version 6.6p1 X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Fixes CVE-2014-2532. SUSv3 deprecation already handled upstream. Signed-off-by: Gustavo Zacarias --- package/openssh/openssh.mk | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/package/openssh/openssh.mk b/package/openssh/openssh.mk index f5f334e..e35ea10 100644 --- a/package/openssh/openssh.mk +++ b/package/openssh/openssh.mk @@ -4,7 +4,7 @@ # ################################################################################ -OPENSSH_VERSION = 6.5p1 +OPENSSH_VERSION = 6.6p1 OPENSSH_SITE = http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable OPENSSH_CONF_ENV = LD="$(TARGET_CC)" LDFLAGS="$(TARGET_CFLAGS)" OPENSSH_CONF_OPT = --disable-lastlog --disable-utmp \ @@ -30,14 +30,4 @@ define OPENSSH_INSTALL_INIT_SYSV $(TARGET_DIR)/etc/init.d/S50sshd endef -# Replace deprecated bcopy/bzero with memset/memcpy -define OPENSSH_REPLACE_SUSV3_DEPRECATED - for src in `find $(@D) -name \*.c`; do \ - $(SED) "s/bzero(\(.*,\)/memset(\1 0, /" $${src} ;\ - $(SED) "s/bcopy(\(.*,\) \(.*,\)/memcpy(\2 \1/" $${src} ;\ - done -endef - -OPENSSH_POST_PATCH_HOOKS += OPENSSH_REPLACE_SUSV3_DEPRECATED - $(eval $(autotools-package))