4147a3c54a
FORTIFY_SOURCE feature of libssp, thus checking the size of arguments to various string and memory copy and set functions (as well as a few system calls and other miscellany) where known at function entry. RedHat has evidently built all "core system packages" with this option for some time. This option should be used at the top of Makefiles (or Makefile.inc where this is used for subdirectories) but after any setting of LIB. This is only useful for userland code, and cannot be used in libc or in any code which includes the libc internals, because it overrides certain libc functions with macros. Some effort has been made to make USE_FORT=yes work correctly for a full-system build by having the bsd.sys.mk logic disable the feature where it should not be used (libc, libssp iteself, the kernel) but no attempt has been made to build the entire system with USE_FORT and doing so will doubtless expose numerous bugs and misfeatures. Adjust the system build so that all programs and libraries that are setuid, directly handle network data (including serial comm data), perform authentication, or appear likely to have (or have a history of having) data-driven bugs (e.g. file(1)) are built with USE_FORT=yes by default, with the exception of libc, which cannot use USE_FORT and thus uses only USE_SSP by default. Tested on i386 with no ill results; USE_FORT=no per-directory or in a system build will disable if desired.
115 lines
2.6 KiB
Makefile
115 lines
2.6 KiB
Makefile
# $NetBSD: Makefile,v 1.25 2007/05/28 12:06:29 tls Exp $
|
|
|
|
NOMAN= # defined
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
USE_FORT?= yes # cryptographic software
|
|
|
|
# RCSid:
|
|
# $Id: Makefile,v 1.25 2007/05/28 12:06:29 tls Exp $
|
|
#
|
|
# @(#) Copyright (c) 1995 Simon J. Gerraty
|
|
#
|
|
# This file is provided in the hope that it will
|
|
# be of use. There is absolutely NO WARRANTY.
|
|
# Permission to copy, redistribute or otherwise
|
|
# use this file is hereby granted provided that
|
|
# the above copyright notice and this notice are
|
|
# left intact.
|
|
#
|
|
# Please send copies of changes and bug-fixes to:
|
|
# sjg@quick.com.au
|
|
#
|
|
|
|
# XXX There's a bit of work to do before we can enable warnings.
|
|
WARNS=0
|
|
|
|
PROG= openssl
|
|
|
|
SRCS= openssl.c
|
|
SRCS+= apps.c ecparam.c ec.c
|
|
SRCS+= s_cb.c s_socket.c
|
|
SRCS+= app_rand.c
|
|
SRCS+= verify.c asn1pars.c req.c dgst.c dh.c dhparam.c enc.c passwd.c gendh.c errstr.c ca.c \
|
|
pkcs7.c crl2p7.c crl.c \
|
|
rsa.c rsautl.c dsa.c dsaparam.c \
|
|
x509.c genrsa.c gendsa.c prime.c s_server.c s_client.c speed.c \
|
|
s_time.c version.c sess_id.c \
|
|
ciphers.c nseq.c pkcs12.c pkcs8.c spkac.c smime.c rand.c engine.c ocsp.c
|
|
|
|
CPPFLAGS+= -DMONOLITH -DUSE_SSL -I${OPENSSLSRC}
|
|
|
|
# with normal OpenSSL, OPENSSL_NO_{IDEA,MDC2,RC5} changes ABI due to change in
|
|
# struct/union. we nuked all of them in our header files and it is now safe.
|
|
.if ${MKCRYPTO_IDEA} == "no"
|
|
CPPFLAGS+= -DOPENSSL_NO_IDEA
|
|
.else
|
|
LDADD+= -lcrypto_idea
|
|
DPADD+= ${LIBCRYPTO_IDEA}
|
|
.endif
|
|
.if ${MKCRYPTO_MDC2} == "no"
|
|
CPPFLAGS+= -DOPENSSL_NO_MDC2
|
|
.else
|
|
LDADD+= -lcrypto_mdc2
|
|
DPADD+= ${LIBCRYPTO_MDC2}
|
|
.endif
|
|
.if ${MKCRYPTO_RC5} == "no"
|
|
CPPFLAGS+= -DOPENSSL_NO_RC5
|
|
.else
|
|
LDADD+= -lcrypto_rc5
|
|
DPADD+= ${LIBCRYPTO_RC5}
|
|
.endif
|
|
|
|
# this must be _after_ the libcrypto_rc5/libcrypto_idea entries.
|
|
LDADD+= -lssl -lcrypto -lcrypt
|
|
DPADD+= ${LIBSSL} ${LIBCRYPTO} ${LIBCRYPT}
|
|
|
|
CRYPTODIST= ${NETBSDSRCDIR}/crypto/dist
|
|
.include "${NETBSDSRCDIR}/crypto/Makefile.openssl"
|
|
.PATH: ${OPENSSLSRC}/apps
|
|
|
|
#LINKS= openssl verify \
|
|
# openssl asn1pars \
|
|
# openssl req \
|
|
# openssl dgst \
|
|
# openssl dh \
|
|
# openssl dhparam \
|
|
# openssl enc \
|
|
# openssl passwd \
|
|
# openssl gendh \
|
|
# openssl errstr \
|
|
# openssl ca \
|
|
# openssl crl \
|
|
# openssl rsa \
|
|
# openssl rsautl \
|
|
# openssl dsa \
|
|
# openssl dsaparam \
|
|
# openssl x509 \
|
|
# openssl genrsa \
|
|
# openssl gendsa \
|
|
# openssl s_server \
|
|
# openssl s_client \
|
|
# openssl speed \
|
|
# openssl s_time \
|
|
# openssl version \
|
|
# openssl pkcs7 \
|
|
# openssl crl2pkcs7 \
|
|
# openssl sess_id \
|
|
# openssl ciphers \
|
|
# openssl nseq \
|
|
# openssl pkcs12 \
|
|
# openssl pkcs8 \
|
|
# openssl spkac \
|
|
# openssl smime \
|
|
# openssl rand \
|
|
# openssl engine \
|
|
# openssl ocsp
|
|
|
|
.if ${MKSHARE} != "no"
|
|
FILES= CA.sh CA.pl openssl.cnf
|
|
FILESDIR=/usr/share/examples/openssl
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|