2008-07-24 05:24:52 +00:00
|
|
|
#
|
2020-09-01 19:13:28 +00:00
|
|
|
# Copyright (C) 2006-2020 OpenWrt.org
|
2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-03-21 08:12:49 +00:00
|
|
|
|
2005-03-06 03:53:29 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2005-04-14 07:08:14 +00:00
|
|
|
PKG_NAME:=dropbear
|
2020-11-14 12:04:43 +00:00
|
|
|
PKG_VERSION:=2020.81
|
2020-11-25 03:16:06 +00:00
|
|
|
PKG_RELEASE:=2
|
2005-03-21 08:12:49 +00:00
|
|
|
|
2011-11-25 00:53:19 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
2008-07-24 05:24:52 +00:00
|
|
|
PKG_SOURCE_URL:= \
|
2013-10-15 13:10:32 +00:00
|
|
|
http://matt.ucc.asn.au/dropbear/releases/ \
|
|
|
|
https://dropbear.nl/mirror/releases/
|
2020-11-14 12:04:43 +00:00
|
|
|
PKG_HASH:=48235d10b37775dbda59341ac0c4b239b82ad6318c31568b985730c788aac53b
|
2005-03-06 03:53:29 +00:00
|
|
|
|
2012-10-19 15:34:28 +00:00
|
|
|
PKG_LICENSE:=MIT
|
|
|
|
PKG_LICENSE_FILES:=LICENSE libtomcrypt/LICENSE libtommath/LICENSE
|
2017-09-28 02:55:46 +00:00
|
|
|
PKG_CPE_ID:=cpe:/a:matt_johnston:dropbear_ssh_server
|
2012-10-19 15:34:28 +00:00
|
|
|
|
2010-09-07 10:00:34 +00:00
|
|
|
PKG_BUILD_PARALLEL:=1
|
2019-10-27 13:56:27 +00:00
|
|
|
PKG_ASLR_PIE_REGULAR:=1
|
2014-08-21 11:29:04 +00:00
|
|
|
PKG_USE_MIPS16:=0
|
2019-03-25 18:40:38 +00:00
|
|
|
PKG_FIXUP:=autoreconf
|
2020-09-01 19:13:28 +00:00
|
|
|
PKG_FLAGS:=nonshared
|
2010-09-07 10:00:34 +00:00
|
|
|
|
2017-10-06 07:21:35 +00:00
|
|
|
PKG_CONFIG_DEPENDS:= \
|
2019-03-25 19:00:28 +00:00
|
|
|
CONFIG_TARGET_INIT_PATH CONFIG_DROPBEAR_ECC CONFIG_DROPBEAR_ECC_FULL \
|
2017-10-06 07:21:35 +00:00
|
|
|
CONFIG_DROPBEAR_CURVE25519 CONFIG_DROPBEAR_ZLIB \
|
2020-04-12 22:24:28 +00:00
|
|
|
CONFIG_DROPBEAR_ED25519 CONFIG_DROPBEAR_CHACHA20POLY1305 \
|
2019-04-18 02:20:19 +00:00
|
|
|
CONFIG_DROPBEAR_UTMP CONFIG_DROPBEAR_PUTUTLINE \
|
2020-11-25 03:14:30 +00:00
|
|
|
CONFIG_DROPBEAR_DBCLIENT CONFIG_DROPBEAR_SCP CONFIG_DROPBEAR_ASKPASS
|
2014-03-29 16:59:26 +00:00
|
|
|
|
2006-06-21 02:32:39 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2005-03-06 03:53:29 +00:00
|
|
|
|
2016-02-08 14:28:57 +00:00
|
|
|
ifneq ($(DUMP),1)
|
2016-12-25 15:40:05 +00:00
|
|
|
STAMP_CONFIGURED:=$(strip $(STAMP_CONFIGURED))_$(shell echo $(CONFIG_TARGET_INIT_PATH) | mkhash md5)
|
2016-02-08 14:28:57 +00:00
|
|
|
endif
|
|
|
|
|
2006-09-23 17:41:58 +00:00
|
|
|
define Package/dropbear/Default
|
|
|
|
URL:=http://matt.ucc.asn.au/dropbear/
|
|
|
|
endef
|
|
|
|
|
2014-03-29 16:59:26 +00:00
|
|
|
define Package/dropbear/config
|
|
|
|
source "$(SOURCE)/Config.in"
|
|
|
|
endef
|
|
|
|
|
2006-05-10 19:06:22 +00:00
|
|
|
define Package/dropbear
|
2006-09-23 17:41:58 +00:00
|
|
|
$(call Package/dropbear/Default)
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Base system
|
|
|
|
TITLE:=Small SSH2 client/server
|
2017-06-30 11:13:50 +00:00
|
|
|
DEPENDS:= +DROPBEAR_ZLIB:zlib
|
2020-08-15 10:10:22 +00:00
|
|
|
ALTERNATIVES:=
|
|
|
|
$(if $(CONFIG_DROPBEAR_SCP),ALTERNATIVES+= \
|
|
|
|
100:/usr/bin/scp:/usr/sbin/dropbear,)
|
2020-07-20 22:26:42 +00:00
|
|
|
$(if $(CONFIG_DROPBEAR_DBCLIENT),ALTERNATIVES+= \
|
|
|
|
100:/usr/bin/ssh:/usr/sbin/dropbear,)
|
2018-06-25 05:16:09 +00:00
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/dropbear/description
|
|
|
|
A small SSH2 server/client designed for small memory environments.
|
2006-05-10 19:06:22 +00:00
|
|
|
endef
|
2005-04-14 07:08:14 +00:00
|
|
|
|
2009-02-03 22:28:16 +00:00
|
|
|
define Package/dropbear/conffiles
|
2020-04-12 22:24:28 +00:00
|
|
|
$(if $(CONFIG_DROPBEAR_ED25519),/etc/dropbear/dropbear_ed25519_host_key)
|
2019-03-25 18:41:45 +00:00
|
|
|
$(if $(CONFIG_DROPBEAR_ECC),/etc/dropbear/dropbear_ecdsa_host_key)
|
2009-02-03 22:28:16 +00:00
|
|
|
/etc/dropbear/dropbear_rsa_host_key
|
2018-09-19 01:32:17 +00:00
|
|
|
/etc/config/dropbear
|
2009-02-03 22:28:16 +00:00
|
|
|
endef
|
|
|
|
|
2006-05-10 19:06:22 +00:00
|
|
|
define Package/dropbearconvert
|
2006-09-23 17:41:58 +00:00
|
|
|
$(call Package/dropbear/Default)
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
TITLE:=Utility for converting SSH keys
|
2020-01-01 07:58:34 +00:00
|
|
|
DEPENDS:= +DROPBEAR_ZLIB:zlib
|
2006-05-10 19:06:22 +00:00
|
|
|
endef
|
|
|
|
|
2007-02-25 23:34:57 +00:00
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--disable-pam \
|
|
|
|
--enable-openpty \
|
|
|
|
--enable-syslog \
|
|
|
|
--disable-lastlog \
|
2016-05-09 16:23:37 +00:00
|
|
|
--disable-utmpx \
|
2016-04-27 09:13:58 +00:00
|
|
|
$(if $(CONFIG_DROPBEAR_UTMP),,--disable-utmp) \
|
2007-02-25 23:34:57 +00:00
|
|
|
--disable-wtmp \
|
|
|
|
--disable-wtmpx \
|
|
|
|
--disable-loginfunc \
|
2016-04-27 09:13:58 +00:00
|
|
|
$(if $(CONFIG_DROPBEAR_PUTUTLINE),,--disable-pututline) \
|
2007-02-25 23:34:57 +00:00
|
|
|
--disable-pututxline \
|
2017-06-30 11:13:50 +00:00
|
|
|
$(if $(CONFIG_DROPBEAR_ZLIB),,--disable-zlib) \
|
2011-03-02 14:20:51 +00:00
|
|
|
--enable-bundled-libtom
|
2007-02-25 23:34:57 +00:00
|
|
|
|
2020-11-25 03:12:41 +00:00
|
|
|
##############################################################################
|
|
|
|
#
|
|
|
|
# option|value - add option to localoptions.h
|
|
|
|
# !!option|value - replace option in sysoptions.h
|
|
|
|
#
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
# remove protocol idented software version number:
|
|
|
|
# - LOCAL_IDENT
|
|
|
|
# disable legacy/unsafe methods and unused functionality:
|
|
|
|
# - INETD_MODE
|
|
|
|
# - DROPBEAR_CLI_NETCAT
|
|
|
|
# - DROPBEAR_DSS
|
|
|
|
# - DO_MOTD
|
|
|
|
DB_OPT_COMMON = \
|
|
|
|
DEFAULT_PATH|"$(TARGET_INIT_PATH)" \
|
|
|
|
!!LOCAL_IDENT|"SSH-2.0-dropbear" \
|
|
|
|
INETD_MODE|0 \
|
|
|
|
DROPBEAR_CLI_NETCAT|0 \
|
|
|
|
DROPBEAR_DSS|0 \
|
|
|
|
DO_MOTD|0 \
|
|
|
|
|
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
#
|
|
|
|
# option|config|enabled|disabled = add option to localoptions.h
|
|
|
|
# !!option|config|enabled|disabled = replace option in sysoptions.h
|
|
|
|
#
|
|
|
|
# option := (config) ? enabled : disabled
|
|
|
|
#
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
DB_OPT_CONFIG = \
|
|
|
|
DROPBEAR_CURVE25519|CONFIG_DROPBEAR_CURVE25519|1|0 \
|
|
|
|
DROPBEAR_ED25519|CONFIG_DROPBEAR_ED25519|1|0 \
|
|
|
|
DROPBEAR_CHACHA20POLY1305|CONFIG_DROPBEAR_CHACHA20POLY1305|1|0 \
|
|
|
|
DROPBEAR_ECDSA|CONFIG_DROPBEAR_ECC|1|0 \
|
|
|
|
DROPBEAR_ECDH|CONFIG_DROPBEAR_ECC|1|0 \
|
|
|
|
!!DROPBEAR_ECC_384|CONFIG_DROPBEAR_ECC_FULL|1|0 \
|
|
|
|
!!DROPBEAR_ECC_521|CONFIG_DROPBEAR_ECC_FULL|1|0 \
|
2020-11-25 03:14:30 +00:00
|
|
|
DROPBEAR_CLI_ASKPASS_HELPER|CONFIG_DROPBEAR_ASKPASS|1|0 \
|
2020-11-25 03:12:41 +00:00
|
|
|
|
|
|
|
|
2018-07-11 17:28:54 +00:00
|
|
|
TARGET_CFLAGS += -DARGTYPE=3 -ffunction-sections -fdata-sections -flto
|
|
|
|
TARGET_LDFLAGS += -Wl,--gc-sections -flto=jobserver
|
2011-02-13 16:54:44 +00:00
|
|
|
|
2020-11-25 04:33:25 +00:00
|
|
|
db_opt_add =echo '\#define $(1) $(2)' >> $(PKG_BUILD_DIR)/localoptions.h
|
|
|
|
db_opt_replace =$(ESED) 's,^(\#define $(1)) .*$$$$,\1 $(2),g' $(PKG_BUILD_DIR)/sysoptions.h
|
|
|
|
|
2020-11-25 03:12:41 +00:00
|
|
|
define Build/Configure/dropbear_headers
|
|
|
|
$(strip $(foreach s,$(DB_OPT_COMMON), \
|
|
|
|
$(if $(filter !!%,$(word 1,$(subst |, ,$(s)))), \
|
|
|
|
$(call db_opt_replace,$(patsubst !!%,%,$(word 1,$(subst |, ,$(s)))),$(word 2,$(subst |, ,$(s)))), \
|
|
|
|
$(call db_opt_add,$(word 1,$(subst |, ,$(s))),$(word 2,$(subst |, ,$(s)))) \
|
|
|
|
) ; \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(strip $(foreach s,$(DB_OPT_CONFIG), \
|
|
|
|
$(if $(filter !!%,$(word 1,$(subst |, ,$(s)))), \
|
|
|
|
$(call db_opt_replace,$(patsubst !!%,%,$(word 1,$(subst |, ,$(s)))),$(if $($(word 2,$(subst |, ,$(s)))),$(word 3,$(subst |, ,$(s))),$(word 4,$(subst |, ,$(s))))), \
|
|
|
|
$(call db_opt_add,$(word 1,$(subst |, ,$(s))),$(if $($(word 2,$(subst |, ,$(s)))),$(word 3,$(subst |, ,$(s))),$(word 4,$(subst |, ,$(s))))) \
|
|
|
|
) ; \
|
|
|
|
))
|
|
|
|
endef
|
|
|
|
|
2014-03-29 17:10:52 +00:00
|
|
|
define Build/Configure
|
2019-03-25 18:40:38 +00:00
|
|
|
: > $(PKG_BUILD_DIR)/localoptions.h
|
|
|
|
|
2014-03-29 17:10:52 +00:00
|
|
|
$(Build/Configure/Default)
|
|
|
|
|
2020-11-25 03:12:41 +00:00
|
|
|
$(Build/Configure/dropbear_headers)
|
2019-03-25 19:00:28 +00:00
|
|
|
|
2016-02-08 14:28:57 +00:00
|
|
|
# Enforce rebuild of svr-chansession.c
|
|
|
|
rm -f $(PKG_BUILD_DIR)/svr-chansession.o
|
2019-11-01 06:57:03 +00:00
|
|
|
|
|
|
|
# Rebuild them on config change
|
|
|
|
+$(MAKE) -C $(PKG_BUILD_DIR)/libtomcrypt clean
|
|
|
|
+$(MAKE) -C $(PKG_BUILD_DIR)/libtommath clean
|
2014-03-29 16:59:26 +00:00
|
|
|
endef
|
|
|
|
|
2006-05-11 17:33:51 +00:00
|
|
|
define Build/Compile
|
2012-09-23 09:50:01 +00:00
|
|
|
+$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
|
2006-08-04 05:30:27 +00:00
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
2020-08-15 10:10:22 +00:00
|
|
|
PROGRAMS="dropbear $(if $(CONFIG_DROPBEAR_DBCLIENT),dbclient,) dropbearkey $(if $(CONFIG_DROPBEAR_SCP),scp,)" \
|
2005-04-14 07:08:14 +00:00
|
|
|
MULTI=1 SCPPROGRESS=1
|
2012-09-23 09:50:01 +00:00
|
|
|
+$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
|
2006-08-04 05:30:27 +00:00
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
2006-01-31 13:33:25 +00:00
|
|
|
PROGRAMS="dropbearconvert"
|
2006-05-10 19:06:22 +00:00
|
|
|
endef
|
2008-07-24 05:24:52 +00:00
|
|
|
|
2006-05-10 19:06:22 +00:00
|
|
|
define Package/dropbear/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
2007-08-11 21:53:15 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/dropbearmulti $(1)/usr/sbin/dropbear
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2019-04-18 02:20:19 +00:00
|
|
|
$(if $(CONFIG_DROPBEAR_DBCLIENT),$(LN) ../sbin/dropbear $(1)/usr/bin/dbclient,)
|
2014-11-06 19:35:34 +00:00
|
|
|
$(LN) ../sbin/dropbear $(1)/usr/bin/dropbearkey
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/config
|
2018-09-19 01:32:17 +00:00
|
|
|
$(INSTALL_CONF) ./files/dropbear.config $(1)/etc/config/dropbear
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/dropbear.init $(1)/etc/init.d/dropbear
|
2008-08-16 06:35:14 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/opkg/info
|
2009-02-03 22:28:16 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/dropbear
|
2020-01-15 20:31:12 +00:00
|
|
|
$(INSTALL_DIR) $(1)/lib/preinit
|
|
|
|
$(INSTALL_DATA) ./files/dropbear.failsafe $(1)/lib/preinit/99_10_failsafe_dropbear
|
2020-04-12 22:24:28 +00:00
|
|
|
$(if $(CONFIG_DROPBEAR_ED25519),touch $(1)/etc/dropbear/dropbear_ed25519_host_key)
|
2019-03-25 18:41:45 +00:00
|
|
|
$(if $(CONFIG_DROPBEAR_ECC),touch $(1)/etc/dropbear/dropbear_ecdsa_host_key)
|
2009-02-03 22:28:16 +00:00
|
|
|
touch $(1)/etc/dropbear/dropbear_rsa_host_key
|
2006-05-10 19:06:22 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/dropbearconvert/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2007-08-11 21:53:15 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/dropbearconvert $(1)/usr/bin/dropbearconvert
|
2006-05-10 19:06:22 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,dropbear))
|
|
|
|
$(eval $(call BuildPackage,dropbearconvert))
|