2020-08-11 23:48:33 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=libselinux
|
2021-03-06 20:02:37 +00:00
|
|
|
PKG_VERSION:=3.2
|
|
|
|
PKG_RELEASE:=1
|
2020-08-11 23:48:33 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2021-03-06 20:02:37 +00:00
|
|
|
PKG_SOURCE_URL:=https://github.com/SELinuxProject/selinux/releases/download/3.2
|
|
|
|
PKG_HASH:=df758ef1d9d4811051dd901ea6b029ae334ffd7c671c128beb16bce1e25ac161
|
2020-08-11 23:48:33 +00:00
|
|
|
HOST_BUILD_DEPENDS:=libsepol/host pcre/host
|
|
|
|
|
2020-09-21 12:47:57 +00:00
|
|
|
PKG_LICENSE:=libselinux-1.0
|
|
|
|
PKG_LICENSE_FILES:=LICENSE
|
2020-08-11 23:48:33 +00:00
|
|
|
PKG_MAINTAINER:=Thomas Petazzoni <thomas.petazzoni@bootlin.com>
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2020-08-14 01:41:39 +00:00
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
2020-08-11 23:48:33 +00:00
|
|
|
|
2020-09-21 12:47:57 +00:00
|
|
|
LIBSELINUX_UTILS := \
|
|
|
|
avcstat \
|
|
|
|
compute_av \
|
|
|
|
compute_create \
|
|
|
|
compute_member \
|
|
|
|
compute_relabel \
|
|
|
|
getconlist \
|
|
|
|
getdefaultcon \
|
|
|
|
getenforce \
|
|
|
|
getfilecon \
|
|
|
|
getpidcon \
|
|
|
|
getsebool \
|
|
|
|
getseuser \
|
|
|
|
matchpathcon \
|
|
|
|
policyvers \
|
|
|
|
sefcontext_compile \
|
|
|
|
selabel_digest \
|
|
|
|
selabel_get_digests_all_partial_matches \
|
|
|
|
selabel_lookup \
|
|
|
|
selabel_lookup_best_match \
|
|
|
|
selabel_partial_match \
|
|
|
|
selinux_check_access \
|
|
|
|
selinux_check_securetty_context \
|
|
|
|
selinuxenabled \
|
|
|
|
selinuxexeccon \
|
|
|
|
setenforce \
|
|
|
|
setfilecon \
|
|
|
|
togglesebool \
|
|
|
|
validatetrans
|
|
|
|
|
|
|
|
LIBSELINUX_ALTS := \
|
|
|
|
getenforce \
|
|
|
|
getsebool \
|
|
|
|
matchpathcon \
|
|
|
|
selinuxenabled \
|
|
|
|
setenforce
|
|
|
|
|
|
|
|
$(eval $(foreach a,$(LIBSELINUX_ALTS),ALTS_$(a):=300:/usr/sbin/$(a):/usr/sbin/libselinux-$(a)$(newline)))
|
|
|
|
|
|
|
|
define Package/libselinux/Default
|
|
|
|
TITLE:=Runtime SELinux library
|
|
|
|
URL:=http://selinuxproject.org/page/Main_Page
|
|
|
|
endef
|
|
|
|
|
2020-08-11 23:48:33 +00:00
|
|
|
define Package/libselinux
|
2020-09-21 12:47:57 +00:00
|
|
|
$(call Package/libselinux/Default)
|
2020-08-11 23:48:33 +00:00
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
2020-10-31 00:06:53 +00:00
|
|
|
DEPENDS:=+libsepol +libpcre +USE_MUSL:musl-fts
|
2020-08-11 23:48:33 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libselinux/description
|
|
|
|
libselinux is the runtime SELinux library that provides
|
|
|
|
interfaces (e.g. library functions for the SELinux kernel
|
|
|
|
APIs like getcon(), other support functions like
|
|
|
|
getseuserbyname()) to SELinux-aware applications. libselinux
|
|
|
|
may use the shared libsepol to manipulate the binary policy
|
|
|
|
if necessary (e.g. to downgrade the policy format to an
|
|
|
|
older version supported by the kernel) when loading policy.
|
|
|
|
endef
|
|
|
|
|
2020-09-21 12:47:57 +00:00
|
|
|
define GenUtilPkg
|
|
|
|
define Package/$(1)
|
|
|
|
$(call Package/libselinux/Default)
|
|
|
|
TITLE+= $(2) utility
|
|
|
|
SECTION:=utils
|
|
|
|
DEPENDS:=+libselinux
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
SUBMENU:=libselinux tools
|
|
|
|
ALTERNATIVES:=$(ALTS_$(2))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/$(1)/description
|
|
|
|
libselinux version of the $(2) utility.
|
|
|
|
endef
|
2020-09-04 01:49:23 +00:00
|
|
|
endef
|
2020-08-11 23:48:33 +00:00
|
|
|
|
2020-09-21 12:47:57 +00:00
|
|
|
$(foreach a,$(LIBSELINUX_UTILS),$(eval $(call GenUtilPkg,libselinux-$(a),$(a))))
|
|
|
|
|
2020-08-11 23:48:33 +00:00
|
|
|
# Needed to link libselinux utilities, which link against
|
|
|
|
# libselinux.so, which indirectly depends on libpcre.so, installed in
|
|
|
|
# $(STAGING_DIR_HOSTPKG).
|
|
|
|
HOST_LDFLAGS += -Wl,-rpath="$(STAGING_DIR_HOSTPKG)/lib"
|
|
|
|
|
|
|
|
HOST_MAKE_FLAGS += \
|
|
|
|
PREFIX=$(STAGING_DIR_HOSTPKG) \
|
|
|
|
SHLIBDIR=$(STAGING_DIR_HOSTPKG)/lib
|
|
|
|
|
2020-10-31 00:06:53 +00:00
|
|
|
ifeq ($(CONFIG_USE_MUSL),y)
|
|
|
|
MAKE_FLAGS += FTS_LDLIBS=-lfts
|
|
|
|
endif
|
|
|
|
|
2020-08-11 23:48:33 +00:00
|
|
|
MAKE_FLAGS += \
|
|
|
|
SHLIBDIR=/usr/lib \
|
2020-08-13 18:04:34 +00:00
|
|
|
OS=Linux
|
2020-08-11 23:48:33 +00:00
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(call Build/Compile/Default,all)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Install
|
|
|
|
$(call Build/Install/Default,install)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/usr/lib/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
|
|
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libselinux.pc $(1)/usr/lib/pkgconfig/
|
|
|
|
$(SED) 's,/usr/include,$$$${prefix}/include,g' $(1)/usr/lib/pkgconfig/libselinux.pc
|
|
|
|
$(SED) 's,/usr/lib,$$$${exec_prefix}/lib,g' $(1)/usr/lib/pkgconfig/libselinux.pc
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libselinux/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libselinux.so.* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
2020-09-21 12:47:57 +00:00
|
|
|
define BuildUtil
|
|
|
|
define Package/$(1)/install
|
|
|
|
$(INSTALL_DIR) $$(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/$(2) $$(1)/usr/sbin/$(if $(ALTS_$(2)),libselinux-$(2),$(2))
|
|
|
|
endef
|
|
|
|
|
|
|
|
$$(eval $$(call BuildPackage,$(1)))
|
2020-09-04 01:49:23 +00:00
|
|
|
endef
|
|
|
|
|
2020-08-11 23:48:33 +00:00
|
|
|
$(eval $(call HostBuild))
|
|
|
|
$(eval $(call BuildPackage,libselinux))
|
2020-09-21 12:47:57 +00:00
|
|
|
$(foreach a,$(LIBSELINUX_UTILS),$(eval $(call BuildUtil,libselinux-$(a),$(a))))
|