<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test2/usr.bin/netstat/inet.c, branch releng/11.2</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test2/atom?h=releng%2F11.2</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test2/atom?h=releng%2F11.2'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/'/>
<updated>2017-03-18T22:04:20Z</updated>
<entry>
<title>MFC r304572 (by bz):</title>
<updated>2017-03-18T22:04:20Z</updated>
<author>
<name>Andrey V. Elsukov</name>
<email>ae@FreeBSD.org</email>
</author>
<published>2017-03-18T22:04:20Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=8e5a48ff55c7fcb7102b97764044039118a176a4'/>
<id>urn:sha1:8e5a48ff55c7fcb7102b97764044039118a176a4</id>
<content type='text'>
  Remove the kernel optoion for IPSEC_FILTERTUNNEL, which was deprecated
  more than 7 years ago in favour of a sysctl in r192648.

MFC r305122:
  Remove redundant sanity checks from ipsec[46]_common_input_cb().

  This check already has been done in the each protocol callback.

MFC r309144,309174,309201 (by fabient):
  IPsec RFC6479 support for replay window sizes up to 2^32 - 32 packets.

  Since the previous algorithm, based on bit shifting, does not scale
  with large replay windows, the algorithm used here is based on
  RFC 6479: IPsec Anti-Replay Algorithm without Bit Shifting.
  The replay window will be fast to be updated, but will cost as many bits
  in RAM as its size.

  The previous implementation did not provide a lock on the replay window,
  which may lead to replay issues.

  Obtained from:	emeric.poupon@stormshield.eu
  Sponsored by:	Stormshield
  Differential Revision:	https://reviews.freebsd.org/D8468

MFC r309143,309146 (by fabient):
  In a dual processor system (2*6 cores) during IPSec throughput tests,
  we see a lot of contention on the arc4 lock, used to generate the IV
  of the ESP output packets.

  The idea of this patch is to split this mutex in order to reduce the
  contention on this lock.

  Update r309143 to prevent false sharing.

  Reviewed by:	delphij, markm, ache
  Approved by:	so
  Obtained from: emeric.poupon@stormshield.eu
  Sponsored by:	Stormshield
  Differential Revision:	https://reviews.freebsd.org/D8130

MFC r313330:
  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 &lt;netipsec/ipsec_support.h&gt;
    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.

  Obtained from:	Yandex LLC
  Relnotes:	yes
  Sponsored by:	Yandex LLC
  Differential Revision:	https://reviews.freebsd.org/D9352

MFC r313331:
  Add removed headers into the ObsoleteFiles.inc.

MFC r313561 (by glebius):
  Move tcp_fields_to_net() static inline into tcp_var.h, just below its
  friend tcp_fields_to_host(). There is third party code that also uses
  this inline.

MFC r313697:
  Remove IPsec related PCB code from SCTP.

  The inpcb structure has inp_sp pointer that is initialized by
  ipsec_init_pcbpolicy() function. This pointer keeps strorage for IPsec
  security policies associated with a specific socket.
  An application can use IP_IPSEC_POLICY and IPV6_IPSEC_POLICY socket
  options to configure these security policies. Then ip[6]_output()
  uses inpcb pointer to specify that an outgoing packet is associated
  with some socket. And IPSEC_OUTPUT() method can use a security policy
  stored in the inp_sp. For inbound packet the protocol-specific input
  routine uses IPSEC_CHECK_POLICY() method to check that a packet conforms
  to inbound security policy configured in the inpcb.

  SCTP protocol doesn't specify inpcb for ip[6]_output() when it sends
  packets. Thus IPSEC_OUTPUT() method does not consider such packets as
  associated with some socket and can not apply security policies
  from inpcb, even if they are configured. Since IPSEC_CHECK_POLICY()
  method is called from protocol-specific input routine, it can specify
  inpcb pointer and associated with socket inbound policy will be
  checked. But there are two problems:
  1. Such check is asymmetric, becasue we can not apply security policy
  from inpcb for outgoing packet.
  2. IPSEC_CHECK_POLICY() expects that caller holds INPCB lock and
  access to inp_sp is protected. But for SCTP this is not correct,
  becasue SCTP uses own locks to protect inpcb.

  To fix these problems remove IPsec related PCB code from SCTP.
  This imply that IP_IPSEC_POLICY and IPV6_IPSEC_POLICY socket options
  will be not applicable to SCTP sockets. To be able correctly check
  inbound security policies for SCTP, mark its protocol header with
  the PR_LASTHDR flag.

  Differential Revision:	https://reviews.freebsd.org/D9538

MFC r313746:
  Add missing check to fix the build with IPSEC_SUPPORT and without MAC.

MFC r313805:
  Fix LINT build for powerpc.

  Build kernel modules support only when both IPSEC and TCP_SIGNATURE
  are not defined.

MFC r313922:
  For translated packets do not adjust UDP checksum if it is zero.

  In case when decrypted and decapsulated packet is an UDP datagram,
  check that its checksum is not zero before doing incremental checksum
  adjustment.

MFC r314339:
  Document that the size of AH ICV for HMAC-SHA2-NNN should be half of
  NNN bits as described in RFC4868.

  PR:		215978

MFC r314812:
  Introduce the concept of IPsec security policies scope.

  Currently are defined three scopes: global, ifnet, and pcb.
  Generic security policies that IKE daemon can add via PF_KEY interface
  or an administrator creates with setkey(8) utility have GLOBAL scope.
  Such policies can be applied by the kernel to outgoing packets and checked
  agains inbound packets after IPsec processing.
  Security policies created by if_ipsec(4) interfaces have IFNET scope.
  Such policies are applied to packets that are passed through if_ipsec(4)
  interface.
  And security policies created by application using setsockopt()
  IP_IPSEC_POLICY option have PCB scope. Such policies are applied to
  packets related to specific socket. Currently there is no way to list
  PCB policies via setkey(8) utility.

  Modify setkey(8) and libipsec(3) to be able distinguish the scope of
  security policies in the `setkey -DP` listing. Add two optional flags:
  '-t' to list only policies related to virtual *tunneling* interfaces,
  i.e. policies with IFNET scope, and '-g' to list only policies with GLOBAL
  scope. By default policies from all scopes are listed.

  To implement this PF_KEY's sadb_x_policy structure was modified.
  sadb_x_policy_reserved field is used to pass the policy scope from the
  kernel to userland. SADB_SPDDUMP message extended to support filtering
  by scope: sadb_msg_satype field is used to specify bit mask of requested
  scopes.

  For IFNET policies the sadb_x_policy_priority field of struct sadb_x_policy
  is used to pass if_ipsec's interface if_index to the userland. For GLOBAL
  policies sadb_x_policy_priority is used only to manage order of security
  policies in the SPDB. For IFNET policies it is not used, so it can be used
  to keep if_index.

  After this change the output of `setkey -DP` now looks like:
  # setkey -DPt
  0.0.0.0/0[any] 0.0.0.0/0[any] any
  	in ipsec
  	esp/tunnel/87.250.242.144-87.250.242.145/unique:145
  	spid=7 seq=3 pid=58025 scope=ifnet ifname=ipsec0
  	refcnt=1
  # setkey -DPg
  ::/0 ::/0 icmp6 135,0
  	out none
  	spid=5 seq=1 pid=872 scope=global
  	refcnt=1

  Obtained from:	Yandex LLC
  Sponsored by:	Yandex LLC
  Differential Revision:	https://reviews.freebsd.org/D9805

PR:		212018
Relnotes:	yes
Sponsored by:	Yandex LLC
</content>
</entry>
<entry>
<title>MFC r310698:</title>
<updated>2017-01-27T02:35:05Z</updated>
<author>
<name>Marcelo Araujo</name>
<email>araujo@FreeBSD.org</email>
</author>
<published>2017-01-27T02:35:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=614e84dead62cf0b493235e052700a433b6fb918'/>
<id>urn:sha1:614e84dead62cf0b493235e052700a433b6fb918</id>
<content type='text'>
Print hostcache usage counts with TCP statistics.

PR:		196252
Submitted by:	Anton Yuzhaninov &lt;citrin+pr@citrin.ru&gt;
MFC after:	3 weeks.
</content>
</entry>
<entry>
<title>MFC r311392:</title>
<updated>2017-01-08T07:25:22Z</updated>
<author>
<name>Xin LI</name>
<email>delphij@FreeBSD.org</email>
</author>
<published>2017-01-08T07:25:22Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=e31d2a78ae5b846a7791c187c44f60a895f95421'/>
<id>urn:sha1:e31d2a78ae5b846a7791c187c44f60a895f95421</id>
<content type='text'>
Use strlcpy and snprintf in netstat(1).

Expand inet6name() line buffer to NI_MAXHOST and use strlcpy/snprintf
in various places.

Reported by:	Anton Yuzhaninov &lt;citrin citrin ru&gt;
</content>
</entry>
<entry>
<title>MFC r302904:</title>
<updated>2016-07-24T14:50:16Z</updated>
<author>
<name>Michael Tuexen</name>
<email>tuexen@FreeBSD.org</email>
</author>
<published>2016-07-24T14:50:16Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=0a91ab2b4e0e1a468bf9ddf40b1197c9af8616ee'/>
<id>urn:sha1:0a91ab2b4e0e1a468bf9ddf40b1197c9af8616ee</id>
<content type='text'>
Fix a bug which results in a core dump when running netstat with
the -W option and having a listening SCTP socket.
The bug was introduced in r279122 when adding support for libxo.

MFC r302907:
When calling netstat -Laptcp the local address values are not aligned
with the corresponding entry in the table header. r295136
increased the value width from 14 to 32 without the corresponding
change to the table header. This commit adds the change to the table
header width.

MFC r302917:
Ensure that the -a, -W, -L options for SCTP behave similar
as for TCP.

MFC r302928:
Address a potential memory leak found a the clang static code analyzer
running on the userland stack.

MFC r302930:
Don't free a data chunk twice.
Found by the clang static code analyzer running for the userland stack.

MFC r302935:
Deal with a portential memory allocation failure, which was reported
by the clang static code analyzer.
Joint work with rrs@.

MFC r302942:
Add missing sctps_reasmusrmsgs counter.
Joint work with rrs@.

MFC r302945:
Don't duplicate code for SCTP, just use the ones used for UDP and TCP.
This fixes a bug with link local addresses. This will require and
upcoming change in the kernel to bring SCTP to the same behaviour
as UDP and TCP.

MFC r302949:
Fix the PR-SCTP behaviour.
This is done by rrs@.

MFC r302950:
Add a constant required by RFC 7496.

MFC r303024:
netstat and sockstat expect the IPv6 link local addresses to
have an embedded scope. So don't recover.

MFC r303025:
Use correct order of conditions to avoid NULL deref.

MFC r303073:
Fix a bug in deferred stream reset processing which results
in using a length field before it is set.
Thanks to Taylor Brandstetter for reporting the issue and
providing a fix.

Approved by:	re (kib)
</content>
</entry>
<entry>
<title>Use NULL instead of 0 for pointers.</title>
<updated>2016-04-18T05:46:18Z</updated>
<author>
<name>Marcelo Araujo</name>
<email>araujo@FreeBSD.org</email>
</author>
<published>2016-04-18T05:46:18Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=ef1cb629d8bba9c9ae46948c26cc751ff55acd80'/>
<id>urn:sha1:ef1cb629d8bba9c9ae46948c26cc751ff55acd80</id>
<content type='text'>
Also malloc will return NULL if it cannot allocate memory.

MFC after:	2 weeks.
</content>
</entry>
<entry>
<title>Print running TCP connection counts with TCP statistics.</title>
<updated>2016-03-15T00:19:30Z</updated>
<author>
<name>Gleb Smirnoff</name>
<email>glebius@FreeBSD.org</email>
</author>
<published>2016-03-15T00:19:30Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=dbfd87087bf7ea38323ee5aa24e26483eea30117'/>
<id>urn:sha1:dbfd87087bf7ea38323ee5aa24e26483eea30117</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Increase max allowed backlog for listen sockets</title>
<updated>2016-02-02T05:57:59Z</updated>
<author>
<name>Alfred Perlstein</name>
<email>alfred@FreeBSD.org</email>
</author>
<published>2016-02-02T05:57:59Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=7325dfbb59e38848a70546ab4c6a09d7b676fea7'/>
<id>urn:sha1:7325dfbb59e38848a70546ab4c6a09d7b676fea7</id>
<content type='text'>
from short to int.

PR: 203922
Submitted by: White Knight &lt;white_knight@2ch.net&gt;
MFC After: 4 weeks
</content>
</entry>
<entry>
<title>Fix udp entry of `netstat -TW'.</title>
<updated>2015-11-25T11:20:54Z</updated>
<author>
<name>Hajimu UMEMOTO</name>
<email>ume@FreeBSD.org</email>
</author>
<published>2015-11-25T11:20:54Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=0eaa116e1ee6f93e03662501f1233f95d2419ce1'/>
<id>urn:sha1:0eaa116e1ee6f93e03662501f1233f95d2419ce1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Correct alignment of the addresses in the `netstat -aW' output.</title>
<updated>2015-11-24T14:25:40Z</updated>
<author>
<name>Hajimu UMEMOTO</name>
<email>ume@FreeBSD.org</email>
</author>
<published>2015-11-24T14:25:40Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=046aad399a48d3166ad00f02b5e589ccda1ffd27'/>
<id>urn:sha1:046aad399a48d3166ad00f02b5e589ccda1ffd27</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use a common subroutine to fetch and zero protocol stats instead of</title>
<updated>2015-09-11T04:37:01Z</updated>
<author>
<name>Mark Johnston</name>
<email>markj@FreeBSD.org</email>
</author>
<published>2015-09-11T04:37:01Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=9eddb899d909fd8e9392e9de6b152b0999f57153'/>
<id>urn:sha1:9eddb899d909fd8e9392e9de6b152b0999f57153</id>
<content type='text'>
duplicating roughly similar code for each protocol.

MFC after:	2 weeks
</content>
</entry>
</feed>
