freebsd-dev/sbin/Makefile

99 lines
1.4 KiB
Makefile
Raw Normal View History

# @(#)Makefile 8.5 (Berkeley) 3/31/94
1999-08-28 00:22:10 +00:00
# $FreeBSD$
.include <src.opts.mk>
SUBDIR=adjkerntz \
1998-09-15 10:25:04 +00:00
camcontrol \
1998-08-30 20:28:50 +00:00
clri \
comcontrol \
2001-10-23 20:37:07 +00:00
conscontrol \
ddb \
devfs \
devmatch \
dhclient \
1998-08-30 20:28:50 +00:00
dmesg \
dump \
dumpfs \
dumpon \
etherswitchcfg \
2003-08-14 18:55:57 +00:00
ffsinfo \
1998-08-30 20:28:50 +00:00
fsck \
fsck_ffs \
2001-07-09 11:06:21 +00:00
fsck_msdosfs \
1998-08-30 20:28:50 +00:00
fsdb \
fsirand \
gbde \
geom \
ggate \
growfs \
gvinum \
1998-08-30 20:28:50 +00:00
ifconfig \
init \
kldconfig \
1998-08-30 20:28:50 +00:00
kldload \
kldstat \
kldunload \
ldconfig \
1998-08-30 20:28:50 +00:00
md5 \
2000-12-28 20:59:35 +00:00
mdconfig \
2001-06-18 23:47:18 +00:00
mdmfs \
1998-08-30 20:28:50 +00:00
mknod \
mksnap_ffs \
1998-08-30 20:28:50 +00:00
mount \
mount_cd9660 \
mount_fusefs \
mount_msdosfs \
1998-08-30 20:28:50 +00:00
mount_nfs \
mount_nullfs \
mount_udf \
mount_unionfs \
1998-08-30 20:28:50 +00:00
newfs \
newfs_msdos \
nfsiod \
1998-08-30 20:28:50 +00:00
nos-tun \
New pfil(9) KPI together with newborn pfil API and control utility. The KPI have been reviewed and cleansed of features that were planned back 20 years ago and never implemented. The pfil(9) internals have been made opaque to protocols with only returned types and function declarations exposed. The KPI is made more strict, but at the same time more extensible, as kernel uses same command structures that userland ioctl uses. In nutshell [KA]PI is about declaring filtering points, declaring filters and linking and unlinking them together. New [KA]PI makes it possible to reconfigure pfil(9) configuration: change order of hooks, rehook filter from one filtering point to a different one, disconnect a hook on output leaving it on input only, prepend/append a filter to existing list of filters. Now it possible for a single packet filter to provide multiple rulesets that may be linked to different points. Think of per-interface ACLs in Cisco or Juniper. None of existing packet filters yet support that, however limited usage is already possible, e.g. default ruleset can be moved to single interface, as soon as interface would pride their filtering points. Another future feature is possiblity to create pfil heads, that provide not an mbuf pointer but just a memory pointer with length. That would allow filtering at very early stages of a packet lifecycle, e.g. when packet has just been received by a NIC and no mbuf was yet allocated. Differential Revision: https://reviews.freebsd.org/D18951
2019-01-31 23:01:03 +00:00
pfilctl \
1998-08-30 20:28:50 +00:00
ping \
rcorder \
1998-08-30 20:28:50 +00:00
reboot \
recoverdisk \
resolvconf \
1998-08-30 20:28:50 +00:00
restore \
route \
savecore \
setkey \
1998-08-30 20:28:50 +00:00
shutdown \
spppcontrol \
swapon \
2001-10-25 07:55:43 +00:00
sysctl \
1998-08-30 20:28:50 +00:00
tunefs \
2013-12-01 09:52:38 +00:00
umount
SUBDIR.${MK_CCD}+= ccdconfig
SUBDIR.${MK_CXX}+= devd
SUBDIR.${MK_HAST}+= hastctl
SUBDIR.${MK_HAST}+= hastd
SUBDIR.${MK_INET6}+= ping6
SUBDIR.${MK_INET6}+= rtsol
SUBDIR.${MK_IPFILTER}+= ipf
SUBDIR.${MK_IPFW}+= ipfw
SUBDIR.${MK_IPFW}+= natd
SUBDIR.${MK_ISCSI}+= iscontrol
SUBDIR.${MK_NVME}+= nvmecontrol
Add support for encrypted kernel crash dumps. Changes include modifications in kernel crash dump routines, dumpon(8) and savecore(8). A new tool called decryptcore(8) was added. A new DIOCSKERNELDUMP I/O control was added to send a kernel crash dump configuration in the diocskerneldump_arg structure to the kernel. The old DIOCSKERNELDUMP I/O control was renamed to DIOCSKERNELDUMP_FREEBSD11 for backward ABI compatibility. dumpon(8) generates an one-time random symmetric key and encrypts it using an RSA public key in capability mode. Currently only AES-256-CBC is supported but EKCD was designed to implement support for other algorithms in the future. The public key is chosen using the -k flag. The dumpon rc(8) script can do this automatically during startup using the dumppubkey rc.conf(5) variable. Once the keys are calculated dumpon sends them to the kernel via DIOCSKERNELDUMP I/O control. When the kernel receives the DIOCSKERNELDUMP I/O control it generates a random IV and sets up the key schedule for the specified algorithm. Each time the kernel tries to write a crash dump to the dump device, the IV is replaced by a SHA-256 hash of the previous value. This is intended to make a possible differential cryptanalysis harder since it is possible to write multiple crash dumps without reboot by repeating the following commands: # sysctl debug.kdb.enter=1 db> call doadump(0) db> continue # savecore A kernel dump key consists of an algorithm identifier, an IV and an encrypted symmetric key. The kernel dump key size is included in a kernel dump header. The size is an unsigned 32-bit integer and it is aligned to a block size. The header structure has 512 bytes to match the block size so it was required to make a panic string 4 bytes shorter to add a new field to the header structure. If the kernel dump key size in the header is nonzero it is assumed that the kernel dump key is placed after the first header on the dump device and the core dump is encrypted. Separate functions were implemented to write the kernel dump header and the kernel dump key as they need to be unencrypted. The dump_write function encrypts data if the kernel was compiled with the EKCD option. Encrypted kernel textdumps are not supported due to the way they are constructed which makes it impossible to use the CBC mode for encryption. It should be also noted that textdumps don't contain sensitive data by design as a user decides what information should be dumped. savecore(8) writes the kernel dump key to a key.# file if its size in the header is nonzero. # is the number of the current core dump. decryptcore(8) decrypts the core dump using a private RSA key and the kernel dump key. This is performed by a child process in capability mode. If the decryption was not successful the parent process removes a partially decrypted core dump. Description on how to encrypt crash dumps was added to the decryptcore(8), dumpon(8), rc.conf(5) and savecore(8) manual pages. EKCD was tested on amd64 using bhyve and i386, mipsel and sparc64 using QEMU. The feature still has to be tested on arm and arm64 as it wasn't possible to run FreeBSD due to the problems with QEMU emulation and lack of hardware. Designed by: def, pjd Reviewed by: cem, oshogbo, pjd Partial review: delphij, emaste, jhb, kib Approved by: pjd (mentor) Differential Revision: https://reviews.freebsd.org/D4712
2016-12-10 16:20:39 +00:00
SUBDIR.${MK_OPENSSL}+= decryptcore
SUBDIR.${MK_PF}+= pfctl
SUBDIR.${MK_PF}+= pflogd
SUBDIR.${MK_QUOTAS}+= quotacheck
SUBDIR.${MK_ROUTED}+= routed
SUBDIR.${MK_VERIEXEC}+= veriexec
SUBDIR.${MK_ZFS}+= bectl
SUBDIR.${MK_ZFS}+= zfsbootcfg
SUBDIR.${MK_TESTS}+= tests
.include <bsd.arch.inc.mk>
SUBDIR_PARALLEL=
.include <bsd.subdir.mk>