mirror of https://github.com/wolfSSL/wolfssh.git
fix: make SBOM reflect real config and cover all build types
- Include AM_CPPFLAGS and config.h in the options snapshot so the configured feature set (WOLFSSH_SCP/SFTP/NO_WOLFSSH_SERVER/...) appears in the SBOM instead of being empty. - Discover static (.a), Mach-O (.dylib) and Windows (.dll/.lib) artifacts, not just a versioned .so. - Set SOURCE_DATE_EPOCH from the last git commit for reproducible output. - Clean staging tree and temp defines file via trap even on failure. - Record wolfssl as an SBOM dependency (--dep-wolfssl), version auto-detected from WOLFSSL_DIR/wolfssl/version.h. - configure.ac: detect git; drop unused version-info split + comment. Signed-off-by: Sameeh Jubran <sameeh@wolfssl.com>pull/1201/head
parent
b79c3e8e89
commit
c34fdf155b
95
Makefile.am
95
Makefile.am
|
|
@ -86,8 +86,37 @@ SBOM_SPDX = wolfssh-$(PACKAGE_VERSION).spdx.json
|
||||||
SBOM_SPDX_TV = wolfssh-$(PACKAGE_VERSION).spdx
|
SBOM_SPDX_TV = wolfssh-$(PACKAGE_VERSION).spdx
|
||||||
sbomdir = $(datadir)/doc/$(PACKAGE)
|
sbomdir = $(datadir)/doc/$(PACKAGE)
|
||||||
|
|
||||||
|
# Shared-library / Mach-O basenames in priority order (versioned first) so
|
||||||
|
# `make sbom` finds the built artifact on ELF, Mach-O, and PE targets. Static
|
||||||
|
# (.a) and Windows (.dll/.lib) variants are appended at the call-site because
|
||||||
|
# their prefixes differ.
|
||||||
|
WOLFSSH_LIB_DSO_BASENAMES = \
|
||||||
|
libwolfssh.so.[0-9]* \
|
||||||
|
libwolfssh.so \
|
||||||
|
libwolfssh.[0-9]*.dylib \
|
||||||
|
libwolfssh.dylib
|
||||||
|
|
||||||
.PHONY: sbom install-sbom uninstall-sbom
|
.PHONY: sbom install-sbom uninstall-sbom
|
||||||
|
|
||||||
|
# Stage a `make install` into a private tree, discover the installed library
|
||||||
|
# artifact (shared or static, ELF/Mach-O/PE), hash it, capture the configured
|
||||||
|
# build macros, generate SPDX+CDX, validate the SPDX, then convert to
|
||||||
|
# tag-value. The staging tree and temp defines file are removed
|
||||||
|
# unconditionally via `trap`, even on failure. Honors SOURCE_DATE_EPOCH for
|
||||||
|
# reproducible builds (set to the last git commit time when unset and a git
|
||||||
|
# tree is available), matching wolfssl's `make sbom`.
|
||||||
|
#
|
||||||
|
# User-overridable variables:
|
||||||
|
# WOLFSSL_DIR Path to a wolfssl source tree containing
|
||||||
|
# scripts/gen-sbom (required).
|
||||||
|
# SBOM_LICENSE_OVERRIDE SPDX expression to use instead of the licence ID
|
||||||
|
# parsed from LICENSING (e.g. commercial licensees:
|
||||||
|
# LicenseRef-wolfSSL-Commercial).
|
||||||
|
# SBOM_LICENSE_TEXT Path to the licence text for any LicenseRef-* used
|
||||||
|
# in SBOM_LICENSE_OVERRIDE (required by SPDX 2.3).
|
||||||
|
# SBOM_WOLFSSL_VERSION Version string recorded for the wolfssl dependency.
|
||||||
|
# Auto-detected from WOLFSSL_DIR/wolfssl/version.h or
|
||||||
|
# pkg-config when unset.
|
||||||
sbom:
|
sbom:
|
||||||
@if test -z "$(PYTHON3)"; then \
|
@if test -z "$(PYTHON3)"; then \
|
||||||
echo ""; \
|
echo ""; \
|
||||||
|
|
@ -116,25 +145,67 @@ sbom:
|
||||||
echo ""; \
|
echo ""; \
|
||||||
exit 1; \
|
exit 1; \
|
||||||
fi
|
fi
|
||||||
rm -rf $(abs_builddir)/_sbom_staging $(abs_builddir)/_sbom_defines.h
|
@rm -rf $(abs_builddir)/_sbom_staging
|
||||||
$(MAKE) install DESTDIR=$(abs_builddir)/_sbom_staging
|
|
||||||
$(CC) -dM -E -I$(srcdir) $(CPPFLAGS) -x c /dev/null \
|
|
||||||
> $(abs_builddir)/_sbom_defines.h
|
|
||||||
@set -e; \
|
@set -e; \
|
||||||
_so=$$(ls $(abs_builddir)/_sbom_staging$(libdir)/libwolfssh.so.[0-9]*.[0-9]*.[0-9]* 2>/dev/null | head -1); \
|
_defines=`mktemp $(abs_builddir)/_sbom_defines.XXXXXX`; \
|
||||||
test -n "$$_so" || { echo "ERROR: libwolfssh.so not found in staging dir" >&2; exit 1; }; \
|
trap 'rm -rf $(abs_builddir)/_sbom_staging "$$_defines"' EXIT INT TERM HUP; \
|
||||||
|
$(MAKE) install DESTDIR=$(abs_builddir)/_sbom_staging; \
|
||||||
|
sbom_lib=""; \
|
||||||
|
for lib in \
|
||||||
|
$(addprefix "$(abs_builddir)/_sbom_staging$(libdir)"/,$(WOLFSSH_LIB_DSO_BASENAMES)) \
|
||||||
|
"$(abs_builddir)/_sbom_staging$(libdir)"/libwolfssh.dll \
|
||||||
|
"$(abs_builddir)/_sbom_staging$(libdir)"/libwolfssh.dll.a \
|
||||||
|
"$(abs_builddir)/_sbom_staging$(libdir)"/libwolfssh.lib \
|
||||||
|
"$(abs_builddir)/_sbom_staging$(libdir)"/wolfssh.lib \
|
||||||
|
"$(abs_builddir)/_sbom_staging$(libdir)"/libwolfssh.a; do \
|
||||||
|
if test -f "$$lib"; then sbom_lib="$$lib"; break; fi; \
|
||||||
|
done; \
|
||||||
|
if test -z "$$sbom_lib"; then \
|
||||||
|
echo ""; \
|
||||||
|
echo "ERROR: No installed wolfSSH library artifact found for SBOM."; \
|
||||||
|
echo " Searched in $(abs_builddir)/_sbom_staging$(libdir)"; \
|
||||||
|
echo " (configure with --enable-shared or --enable-static)"; \
|
||||||
|
echo ""; \
|
||||||
|
exit 1; \
|
||||||
|
fi; \
|
||||||
|
echo "SBOM: hashing $$sbom_lib"; \
|
||||||
|
$(CC) -dM -E $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
||||||
|
$(if $(wildcard $(abs_builddir)/config.h),-include $(abs_builddir)/config.h) \
|
||||||
|
-x c /dev/null > "$$_defines"; \
|
||||||
|
wolfssl_ver="$(SBOM_WOLFSSL_VERSION)"; \
|
||||||
|
if test -z "$$wolfssl_ver" && test -f "$(WOLFSSL_DIR)/wolfssl/version.h"; then \
|
||||||
|
wolfssl_ver=`sed -n 's/.*LIBWOLFSSL_VERSION_STRING[ \t]*"\([^"]*\)".*/\1/p' \
|
||||||
|
"$(WOLFSSL_DIR)/wolfssl/version.h"`; \
|
||||||
|
fi; \
|
||||||
|
if test -z "$${SOURCE_DATE_EPOCH:-}" && test -n "$(GIT)" && \
|
||||||
|
$(GIT) -C "$(srcdir)" rev-parse --git-dir >/dev/null 2>&1; then \
|
||||||
|
sde=`$(GIT) -C "$(srcdir)" log -1 --format=%ct 2>/dev/null`; \
|
||||||
|
if test -n "$$sde"; then SOURCE_DATE_EPOCH="$$sde"; export SOURCE_DATE_EPOCH; fi; \
|
||||||
|
fi; \
|
||||||
|
dep_args=""; \
|
||||||
|
if $(PYTHON3) $(WOLFSSL_DIR)/scripts/gen-sbom --help 2>/dev/null \
|
||||||
|
| $(GREP) -q -- '--dep-wolfssl'; then \
|
||||||
|
dep_args="--dep-wolfssl yes"; \
|
||||||
|
if test -n "$$wolfssl_ver"; then \
|
||||||
|
dep_args="$$dep_args --dep-version wolfssl=$$wolfssl_ver"; \
|
||||||
|
fi; \
|
||||||
|
else \
|
||||||
|
echo "NOTE: this gen-sbom has no --dep-wolfssl; the SBOM will not list"; \
|
||||||
|
echo " wolfssl as a dependency component. Point WOLFSSL_DIR at a"; \
|
||||||
|
echo " wolfSSL tree whose scripts/gen-sbom supports it to enable it."; \
|
||||||
|
fi; \
|
||||||
$(PYTHON3) $(WOLFSSL_DIR)/scripts/gen-sbom \
|
$(PYTHON3) $(WOLFSSL_DIR)/scripts/gen-sbom \
|
||||||
--name wolfssh \
|
--name wolfssh \
|
||||||
--version $(PACKAGE_VERSION) \
|
--version $(PACKAGE_VERSION) \
|
||||||
--supplier "wolfSSL Inc." \
|
--supplier "wolfSSL Inc." \
|
||||||
--license-file $(srcdir)/LICENSING \
|
--license-file $(srcdir)/LICENSING \
|
||||||
--options-h $(abs_builddir)/_sbom_defines.h \
|
--options-h "$$_defines" \
|
||||||
--lib "$$_so" \
|
--lib "$$sbom_lib" \
|
||||||
$(if $(SBOM_LICENSE_OVERRIDE),--license-override $(SBOM_LICENSE_OVERRIDE)) \
|
$$dep_args \
|
||||||
$(if $(SBOM_LICENSE_TEXT),--license-text $(SBOM_LICENSE_TEXT)) \
|
$(if $(SBOM_LICENSE_OVERRIDE),--license-override '$(SBOM_LICENSE_OVERRIDE)') \
|
||||||
|
$(if $(SBOM_LICENSE_TEXT),--license-text '$(SBOM_LICENSE_TEXT)') \
|
||||||
--cdx-out $(abs_builddir)/$(SBOM_CDX) \
|
--cdx-out $(abs_builddir)/$(SBOM_CDX) \
|
||||||
--spdx-out $(abs_builddir)/$(SBOM_SPDX)
|
--spdx-out $(abs_builddir)/$(SBOM_SPDX); \
|
||||||
rm -rf $(abs_builddir)/_sbom_staging $(abs_builddir)/_sbom_defines.h
|
|
||||||
$(PYSPDXTOOLS) --infile $(abs_builddir)/$(SBOM_SPDX) \
|
$(PYSPDXTOOLS) --infile $(abs_builddir)/$(SBOM_SPDX) \
|
||||||
--outfile $(abs_builddir)/$(SBOM_SPDX_TV)
|
--outfile $(abs_builddir)/$(SBOM_SPDX_TV)
|
||||||
|
|
||||||
|
|
|
||||||
23
configure.ac
23
configure.ac
|
|
@ -18,21 +18,7 @@ AC_ARG_PROGRAM
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
AC_CONFIG_HEADERS([config.h])
|
AC_CONFIG_HEADERS([config.h])
|
||||||
|
|
||||||
# The three numbers in the libwolfssh.so.*.*.* file name.
|
WOLFSSH_LIBRARY_VERSION=20:0:2
|
||||||
|
|
||||||
# increment if interfaces have been removed or changed
|
|
||||||
WOLFSSH_LIBRARY_VERSION_FIRST=20
|
|
||||||
|
|
||||||
# increment if interfaces have been added
|
|
||||||
# set to zero if WOLFSSH_LIBRARY_VERSION_FIRST is incremented
|
|
||||||
WOLFSSH_LIBRARY_VERSION_SECOND=0
|
|
||||||
|
|
||||||
# increment if source code has changed
|
|
||||||
# set to zero if WOLFSSH_LIBRARY_VERSION_FIRST is incremented or
|
|
||||||
# WOLFSSH_LIBRARY_VERSION_SECOND is incremented
|
|
||||||
WOLFSSH_LIBRARY_VERSION_THIRD=2
|
|
||||||
|
|
||||||
WOLFSSH_LIBRARY_VERSION=${WOLFSSH_LIBRARY_VERSION_FIRST}:${WOLFSSH_LIBRARY_VERSION_SECOND}:${WOLFSSH_LIBRARY_VERSION_THIRD}
|
|
||||||
# | | |
|
# | | |
|
||||||
# +-----+ | +----+
|
# +-----+ | +----+
|
||||||
# | | |
|
# | | |
|
||||||
|
|
@ -46,9 +32,6 @@ WOLFSSH_LIBRARY_VERSION=${WOLFSSH_LIBRARY_VERSION_FIRST}:${WOLFSSH_LIBRARY_VERSI
|
||||||
# +- increment if interfaces have been added, removed
|
# +- increment if interfaces have been added, removed
|
||||||
# or changed
|
# or changed
|
||||||
AC_SUBST([WOLFSSH_LIBRARY_VERSION])
|
AC_SUBST([WOLFSSH_LIBRARY_VERSION])
|
||||||
AC_SUBST([WOLFSSH_LIBRARY_VERSION_FIRST])
|
|
||||||
AC_SUBST([WOLFSSH_LIBRARY_VERSION_SECOND])
|
|
||||||
AC_SUBST([WOLFSSH_LIBRARY_VERSION_THIRD])
|
|
||||||
|
|
||||||
LT_PREREQ([2.4.3])
|
LT_PREREQ([2.4.3])
|
||||||
LT_INIT([disable-static win32-dll])
|
LT_INIT([disable-static win32-dll])
|
||||||
|
|
@ -410,8 +393,12 @@ AC_SUBST([AM_CPPFLAGS])
|
||||||
AC_SUBST([AM_CFLAGS])
|
AC_SUBST([AM_CFLAGS])
|
||||||
AC_SUBST([AM_LDFLAGS])
|
AC_SUBST([AM_LDFLAGS])
|
||||||
|
|
||||||
|
# Tools used by the SBOM targets (see Makefile.am `make sbom`). GIT is used
|
||||||
|
# only to derive SOURCE_DATE_EPOCH for reproducible SBOM output; all three are
|
||||||
|
# optional and the target reports a clear error when a required one is missing.
|
||||||
AC_PATH_PROG([PYTHON3], [python3])
|
AC_PATH_PROG([PYTHON3], [python3])
|
||||||
AC_PATH_PROG([PYSPDXTOOLS], [pyspdxtools])
|
AC_PATH_PROG([PYSPDXTOOLS], [pyspdxtools])
|
||||||
|
AC_PATH_PROG([GIT], [git])
|
||||||
|
|
||||||
# FINAL
|
# FINAL
|
||||||
AC_CONFIG_FILES([Makefile wolfssh/version.h])
|
AC_CONFIG_FILES([Makefile wolfssh/version.h])
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue