Merge projects/ipsec into head/.
authorae <ae@FreeBSD.org>
Mon, 6 Feb 2017 08:49:57 +0000 (08:49 +0000)
committerae <ae@FreeBSD.org>
Mon, 6 Feb 2017 08:49:57 +0000 (08:49 +0000)
commit0fb6ad528e5c3b098a7410f8f804d39fcd21ee10
tree1414e21902027eab50c7a3241e4b14dac39d42e9
parent9eb72f4508119b15c215f8b719077febde28628b
Merge projects/ipsec into head/.

 Small summary
 -------------

o Almost all IPsec releated code was moved into sys/netipsec.
o New kernel modules added: ipsec.ko and tcpmd5.ko. New kernel
  option IPSEC_SUPPORT added. It enables support for loading
  and unloading of ipsec.ko and tcpmd5.ko kernel modules.
o IPSEC_NAT_T option was removed. Now NAT-T support is enabled by
  default. The UDP_ENCAP_ESPINUDP_NON_IKE encapsulation type
  support was removed. Added TCP/UDP checksum handling for
  inbound packets that were decapsulated by transport mode SAs.
  setkey(8) modified to show run-time NAT-T configuration of SA.
o New network pseudo interface if_ipsec(4) added. For now it is
  build as part of ipsec.ko module (or with IPSEC kernel).
  It implements IPsec virtual tunnels to create route-based VPNs.
o The network stack now invokes IPsec functions using special
  methods. The only one header file <netipsec/ipsec_support.h>
  should be included to declare all the needed things to work
  with IPsec.
o All IPsec protocols handlers (ESP/AH/IPCOMP protosw) were removed.
  Now these protocols are handled directly via IPsec methods.
o TCP_SIGNATURE support was reworked to be more close to RFC.
o PF_KEY SADB was reworked:
  - now all security associations stored in the single SPI namespace,
    and all SAs MUST have unique SPI.
  - several hash tables added to speed up lookups in SADB.
  - SADB now uses rmlock to protect access, and concurrent threads
    can do SA lookups in the same time.
  - many PF_KEY message handlers were reworked to reflect changes
    in SADB.
  - SADB_UPDATE message was extended to support new PF_KEY headers:
    SADB_X_EXT_NEW_ADDRESS_SRC and SADB_X_EXT_NEW_ADDRESS_DST. They
    can be used by IKE daemon to change SA addresses.
o ipsecrequest and secpolicy structures were cardinally changed to
  avoid locking protection for ipsecrequest. Now we support
  only limited number (4) of bundled SAs, but they are supported
  for both INET and INET6.
o INPCB security policy cache was introduced. Each PCB now caches
  used security policies to avoid SP lookup for each packet.
o For inbound security policies added the mode, when the kernel does
  check for full history of applied IPsec transforms.
o References counting rules for security policies and security
  associations were changed. The proper SA locking added into xform
  code.
o xform code was also changed. Now it is possible to unregister xforms.
  tdb_xxx structures were changed and renamed to reflect changes in
  SADB/SPDB, and changed rules for locking and refcounting.

Reviewed by: gnn, wblock
Obtained from: Yandex LLC
Relnotes: yes
Sponsored by: Yandex LLC
Differential Revision: https://reviews.freebsd.org/D9352
81 files changed:
contrib/netcat/netcat.c
lib/libipsec/pfkey.c
lib/libipsec/pfkey_dump.c
sbin/ifconfig/Makefile
sbin/ifconfig/ifipsec.c [new file with mode: 0644]
sbin/setkey/setkey.8
share/man/man4/Makefile
share/man/man4/if_ipsec.4 [new file with mode: 0644]
share/man/man4/ipsec.4
share/man/man4/tcp.4
share/man/man4/udp.4
sys/conf/NOTES
sys/conf/files
sys/conf/files.amd64
sys/conf/files.arm
sys/conf/files.arm64
sys/conf/files.i386
sys/conf/files.mips
sys/conf/files.powerpc
sys/conf/files.riscv
sys/conf/files.sparc64
sys/conf/kern.opts.mk
sys/conf/options
sys/modules/Makefile
sys/modules/ipsec/Makefile [new file with mode: 0644]
sys/modules/tcp/tcpmd5/Makefile [new file with mode: 0644]
sys/net/if_ipsec.c [new file with mode: 0644]
sys/net/if_ipsec.h [new file with mode: 0644]
sys/net/pfkeyv2.h
sys/netinet/in_pcb.c
sys/netinet/in_proto.c
sys/netinet/ip_input.c
sys/netinet/ip_ipsec.c [deleted file]
sys/netinet/ip_ipsec.h [deleted file]
sys/netinet/ip_output.c
sys/netinet/raw_ip.c
sys/netinet/sctp_input.c
sys/netinet/sctp_os_bsd.h
sys/netinet/sctp_pcb.c
sys/netinet/tcp_input.c
sys/netinet/tcp_output.c
sys/netinet/tcp_stacks/fastpath.c
sys/netinet/tcp_subr.c
sys/netinet/tcp_syncache.c
sys/netinet/tcp_usrreq.c
sys/netinet/tcp_var.h
sys/netinet/udp.h
sys/netinet/udp_usrreq.c
sys/netinet6/in6.h
sys/netinet6/in6_proto.c
sys/netinet6/ip6_forward.c
sys/netinet6/ip6_input.c
sys/netinet6/ip6_ipsec.c [deleted file]
sys/netinet6/ip6_ipsec.h [deleted file]
sys/netinet6/ip6_output.c
sys/netinet6/raw_ip6.c
sys/netinet6/sctp6_usrreq.c
sys/netinet6/udp6_usrreq.c
sys/netipsec/ipsec.c
sys/netipsec/ipsec.h
sys/netipsec/ipsec6.h
sys/netipsec/ipsec_input.c
sys/netipsec/ipsec_mbuf.c
sys/netipsec/ipsec_mod.c [new file with mode: 0644]
sys/netipsec/ipsec_output.c
sys/netipsec/ipsec_pcb.c [new file with mode: 0644]
sys/netipsec/ipsec_support.h [new file with mode: 0644]
sys/netipsec/key.c
sys/netipsec/key.h
sys/netipsec/key_debug.c
sys/netipsec/key_debug.h
sys/netipsec/keydb.h
sys/netipsec/keysock.c
sys/netipsec/subr_ipsec.c [new file with mode: 0644]
sys/netipsec/udpencap.c [new file with mode: 0644]
sys/netipsec/xform.h
sys/netipsec/xform_ah.c
sys/netipsec/xform_esp.c
sys/netipsec/xform_ipcomp.c
sys/netipsec/xform_tcp.c
usr.bin/netstat/inet.c