]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
5 years agoMFC r341511,r341512,r341513:
mmel [Fri, 14 Dec 2018 10:25:22 +0000 (10:25 +0000)]
MFC r341511,r341512,r341513:

  r341511:
    Fix style(9). Not a functional change.
  r341512:
    Implement arm64 version of __tls_get_addr().
  r341513:
    Tidy up arm64 reloc_jmpslots() implementation.
    - don't relocate jump slots multiple times (if LD_BIND_NOW is defined).
    - process only R_AARCH64_JUMP_SLOT here, other relocation types are
      handled by reloc_plt().

5 years agopfsync: Performance improvement
kp [Thu, 13 Dec 2018 20:00:16 +0000 (20:00 +0000)]
pfsync: Performance improvement

pfsync code is called for every new state, state update and state
deletion in pf. While pf itself can operate on multiple states at the
same time (on different cores, assuming the states hash to a different
hashrow), pfsync only had a single lock.
This greatly reduced throughput on multicore systems.

Address this by splitting the pfsync queues into buckets, based on the
state id. This ensures that updates for a given connection always end up
in the same bucket, which allows pfsync to still collapse multiple
updates into one, while allowing multiple cores to proceed at the same
time.

The number of buckets is tunable, but defaults to 2 x number of cpus.
Benchmarking has shown improvement, depending on hardware and setup, from ~30%
to ~100%.

Sponsored by: Orange Business Services

5 years agoMFC r340394: ipfw.8: Fix part of the SYNOPSIS documenting
eugen [Thu, 13 Dec 2018 10:55:48 +0000 (10:55 +0000)]
MFC r340394: ipfw.8: Fix part of the SYNOPSIS documenting
LIST OF RULES AND PREPROCESSING that is still referred
as last section of the SYNOPSIS later but was erroneously situated
in the section IN-KERNEL NAT.

5 years agoMFC r334648:
hselasky [Thu, 13 Dec 2018 10:33:17 +0000 (10:33 +0000)]
MFC r334648:
Add support for SIMCom SIM7600E.

PR: 226066
Sponsored by: MSI/FUNTORO

5 years agoMFC r341726
vmaffione [Thu, 13 Dec 2018 10:18:31 +0000 (10:18 +0000)]
MFC r341726

tools: netmap: pkt-gen: check packet length against interface MTU

Validate the value of the -l argument (packet length) against the MTU of the netmap port.
In case the netmap port does not refer to a physical interface (e.g. VALE port or pipe), then
the netmap buffer size is used as MTU.
This change also sets a better default value for the -M option, so that pkt-gen uses
the largest possible fragments in case of multi-slot packets.

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

5 years agoMFC r341624
vmaffione [Thu, 13 Dec 2018 10:17:32 +0000 (10:17 +0000)]
MFC r341624

netmap: netmap_transmit should honor bpf packet tap hook

This allows tcpdump to capture outbound kernel packets while
in netmap mode

Submitted by:   Marc de la Gueronniere <mdelagueronniere@verisign.com>
Reviewed by:    vmaffione
MFC after:      1 week
Sponsored by:   Verisign, Inc.
Differential Revision:  https://reviews.freebsd.org/D17896

5 years agoMFC r341516, r341589
vmaffione [Thu, 13 Dec 2018 10:13:29 +0000 (10:13 +0000)]
MFC r341516, r341589

netmap: align codebase to the current upstream (760279cfb2730a585)

Changelist:
  - Replace netmap passthrough host support with a more general
    mechanism to call TXSYNC/RXSYNC from an in-kernel event-loop.
    No kernel threads are used to use this feature: the application
    is required to spawn a thread (or a process) and issue a
    SYNC_KLOOP_START (NIOCCTRL) command in the thread body. The
    kernel loop is executed by the ioctl implementation, which returns
    to userspace only when a different thread calls SYNC_KLOOP_STOP
    or the netmap file descriptor is closed.
  - Update the if_ptnet driver to cope with the new data structures,
    and prune all the obsolete ptnetmap code.
  - Add support for "null" netmap ports, useful to allocate netmap_if,
    netmap_ring and netmap buffers to be used by specialized applications
    (e.g. hypervisors). TXSYNC/RXSYNC on these ports have no effect.
  - Various fixes and code refactoring.

Sponsored by:   Sunny Valley Networks
Differential Revision:  https://reviews.freebsd.org/D18015

5 years agoMFC r341650:
cy [Thu, 13 Dec 2018 03:12:15 +0000 (03:12 +0000)]
MFC r341650:

Remove an ugly Ultrix hack. Ultrix has been AWOL since the last ice
age, more to come.

5 years agoMFC r339873:
gjb [Wed, 12 Dec 2018 18:18:34 +0000 (18:18 +0000)]
MFC r339873:

 Set OPTIONS_UNSET in the argument list to env(1), and add
 AVAHI to the list.  This fixes the textproc/docproj build
 seemingly following FLAVORS being added.

 Specifically, the problem with the dependency chain here is:
 - textproc/docproj depends on print/cups, which sets AVAHI=on
   by default;
 - net/avahi-app depends on devel/gobject-introspection, which
   requires python3+;
 - graphics/netpbm depends on graphics/mesa-libs, which can
   only be built with python2.7;
 - textproc/docproj depends on a number of graphics ports for
   font rendering, etc.

Sponsored by: The FreeBSD Foundation

5 years agoMFC r341587:
hselasky [Wed, 12 Dec 2018 13:17:51 +0000 (13:17 +0000)]
MFC r341587:
mlx4/mlx5: Updated driver version to 3.5.0

Sponsored by:   Mellanox Technologies

5 years agoMFC r341585:
hselasky [Wed, 12 Dec 2018 13:13:50 +0000 (13:13 +0000)]
MFC r341585:
mlx5en: Improve configuration of HW LRO.

In order to enable HW LRO, both the "hw_lro" sysctl in the mlx5en(4) config
space must be set, and the ifconfig(8) LRO capability must be set. Any other
settings will disable HW LRO.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341584:
hselasky [Wed, 12 Dec 2018 13:12:30 +0000 (13:12 +0000)]
MFC r341584:
mlx5en: Count all transmitted and received bytes.

Add counter for all transmitted and received bytes. Currently only all
transmitted and received packets were counted. Fix description of RX LRO
counters while at it.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341583:
hselasky [Wed, 12 Dec 2018 13:11:08 +0000 (13:11 +0000)]
MFC r341583:
mlx5en: Statically allocate and free the channel structure(s).

By allocating the worst case size channel structure array
at attach time we can eliminate various NULL checks in the
fast path. And also reduce the chance for use-after-free
issues in the transmit fast path.

This change is also a requirement for implementing
backpressure support.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341582:
hselasky [Wed, 12 Dec 2018 13:05:45 +0000 (13:05 +0000)]
MFC r341582:
mlx5en: Fix race in mlx5e_ethtool_debug_stats().

Writing to the debug stats variable must be locked,
else serialization will be lost which might cause
various kernel panics due to creating and destroying
sysctls out of order.

Make sure the sysctl context is initialized after freeing
the sysctl nodes, else they can be freed twice.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341581:
hselasky [Wed, 12 Dec 2018 13:03:51 +0000 (13:03 +0000)]
MFC r341581:
mlx5en: Add support for IFM_10G_LR and IFM_40G_ER4 media types.

Inspect the ethernet compliance code to figure out actual cable type by reading
the PDDR module info register.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341579:
hselasky [Wed, 12 Dec 2018 13:00:56 +0000 (13:00 +0000)]
MFC r341579:
mlx5en: Fix for inlining issues in transmit path

1) Don't exceed the drivers own hardcoded TX inline limit.

The blueflame register size can be much greater than the hardcoded limit
for inlining. Make sure we don't exceed the drivers own limit, because this
also means that the maximum number of TX fragments becomes invalid and
then memory size assumptions in the TX path no longer hold up.

2) Make sure the mlx5_query_min_inline() function returns an error code.

3) Header inlining is required when using TSO.

4) Catch failure to compute inline header size for TSO.

5) Add support for UDP when computing inline header size.

6) Fix for inlining issues with regards to DSCP.

Make sure we inline 4 bytes beyond the ethernet and/or
VLAN header to workaround a hardware bug extracting
the DSCP field from the IPv4/v6 header.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341578 and r341655:
hselasky [Wed, 12 Dec 2018 12:58:05 +0000 (12:58 +0000)]
MFC r341578 and r341655:
mlx5en: Remove the DRBR and associated logic in the transmit path.

The hardware queues are deep enough currently and using the DRBR and associated
callbacks only leads to more task switching in the TX path. The is also a race
setting the queue_state which can lead to hung TX rings.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341577:
hselasky [Wed, 12 Dec 2018 12:55:53 +0000 (12:55 +0000)]
MFC r341577:
mlx5en: Implement support for bandwidth limiting in by ratio, ETS.

Add support for setting the bandwidth limit as a ratio rather than in bits per
second. The ratio must be an integer number between 1 and 100 inclusivly.

Implement the needed firmware commands and SYSCTLs through mlx5en(4).

Sponsored by:   Mellanox Technologies

5 years agoMFC r341576:
hselasky [Wed, 12 Dec 2018 12:54:43 +0000 (12:54 +0000)]
MFC r341576:
mlx5fpga: Add set and query connect/disconnect FPGA

Submitted by:   kib@
Sponsored by:   Mellanox Technologies

5 years agoMFC r341575:
hselasky [Wed, 12 Dec 2018 12:53:31 +0000 (12:53 +0000)]
MFC r341575:
mlx5fpga: IOCTL for FPGA temperature measurement

Submitted by:   kib@
Sponsored by:   Mellanox Technologies

5 years agoMFC r341574:
hselasky [Wed, 12 Dec 2018 12:52:30 +0000 (12:52 +0000)]
MFC r341574:
mlx5fpga: Support MorseQ board

Added and supported new enum "morseQ = 4" for fpga_id field

Submitted by:   kib@
Sponsored by:   Mellanox Technologies

5 years agoMFC r341573 amd r341643:
hselasky [Wed, 12 Dec 2018 12:50:23 +0000 (12:50 +0000)]
MFC r341573 amd r341643:
mlx5fpga_tools initial code import.

Submitted by:   kib@
Sponsored by:   Mellanox Technologies

5 years agoMFC r341572 and r341590:
hselasky [Wed, 12 Dec 2018 12:46:12 +0000 (12:46 +0000)]
MFC r341572 and r341590:
mlx5fpga: Initial code import.

Submitted by:   kib@
Sponsored by:   Mellanox Technologies

5 years agoMFC r341571:
hselasky [Wed, 12 Dec 2018 12:35:51 +0000 (12:35 +0000)]
MFC r341571:
mlx5ib: Set default active width and speed when querying port.

Make sure the active width and speed is set in case the
translate_eth_proto_oper() function doesn't recognize the
current port operation mask.

Linux commit:
7672ed33c4c15dbe9d56880683baaba4227cf940

Sponsored by:   Mellanox Technologies

5 years agoMFC r341570:
hselasky [Wed, 12 Dec 2018 12:34:35 +0000 (12:34 +0000)]
MFC r341570:
mlx5ib: Make sure the congestion work timer does not escape the drain procedure.

If the mlx5_ib_read_cong_stats() function was running when mlx5ib was unloaded,
because this function unconditionally restarts the timer, the timer can still
be pending after the delayed work has been cancelled. To fix this simply loop
on the delayed work cancel procedure as long as it returns non-zero.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341569:
hselasky [Wed, 12 Dec 2018 12:33:17 +0000 (12:33 +0000)]
MFC r341569:
mlx5ib: Fix null pointer dereference in mlx5_ib_create_srq

Although "create_srq_user" does overwrite "in.pas" on some paths, it
also contains at least one feasible path which does not overwrite it.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341568:
hselasky [Wed, 12 Dec 2018 12:32:14 +0000 (12:32 +0000)]
MFC r341568:
mlx5ib: Fix sign extension in mlx5_ib_query_device

"fw_rev_min(dev->mdev)" with type "unsigned short" (16 bits, unsigned) is
promoted in "fw_rev_min(dev->mdev) << 16" to type "int" (32 bits, signed), then
sign-extended to type "unsigned long" (64 bits, unsigned). If
"fw_rev_min(dev->mdev) << 16" is greater than 0x7FFFFFFF, the upper bits of the
result will all be 1.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341567:
hselasky [Wed, 12 Dec 2018 12:30:51 +0000 (12:30 +0000)]
MFC r341567:
mlx5: Fix driver version location

Driver description should be set by core and not by the Ethernet driver.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341566:
hselasky [Wed, 12 Dec 2018 12:29:28 +0000 (12:29 +0000)]
MFC r341566:
mlx5: Fixes to allow command polling mode to exist alongside event mode.

A command is either polling or event driven and the mode cannot change
during execution of a command. Make sure the event handler only handle
commands which are not polled. This is done by checking the command mode
in the command handler before completing commands.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341565:
hselasky [Wed, 12 Dec 2018 12:28:24 +0000 (12:28 +0000)]
MFC r341565:
mlx5: Fix wrong size allocation for QoS ETC TC register

The driver allocates wrong size (due to wrong struct name) when issuing
a query/set request to NIC's register.

Linux commit:
d14fcb8d877caf1b8d6bd65d444bf62b21f2070c

Sponsored by:   Mellanox Technologies

5 years agoMFC r341564:
hselasky [Wed, 12 Dec 2018 12:27:17 +0000 (12:27 +0000)]
MFC r341564:
mlx5: Add software tx_jumbo_packets counter

This counter will represent transmitted packets which has more than
1518 octets.
The NIC has multiple hardware counters for counting transmitted
packets larger than 1518 octets. Each counter counts the packets
in specific range.
We accumulate those counters to have a single counter.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341563:
hselasky [Wed, 12 Dec 2018 12:26:06 +0000 (12:26 +0000)]
MFC r341563:
mlx5: Implement support for configuring PCIe packet write ordering via a sysctl.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341562:
hselasky [Wed, 12 Dec 2018 12:25:07 +0000 (12:25 +0000)]
MFC r341562:
mlx5: Extend vector argument to u64.

Else the MLX5_TRIGGERED_CMD_COMP flag will be masked away.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341561:
hselasky [Wed, 12 Dec 2018 12:23:56 +0000 (12:23 +0000)]
MFC r341561:
mlx5: Add global control to disable firmware reset, for all mlx5 devices.

Submitted by:   kib@
Sponsored by:   Mellanox Technologies

5 years agoMFC r341560:
hselasky [Wed, 12 Dec 2018 12:22:40 +0000 (12:22 +0000)]
MFC r341560:
mlx5: Fix use-after-free in self-healing flow

When the mlx5 health mechanism detects a problem while the driver
is in the middle of init_one or remove_one, the driver needs to prevent
the health mechanism from scheduling future work; if future work
is scheduled, there is a problem with use-after-free: the system WQ
tries to run the work item (which has been freed) at the scheduled
future time.

Prevent this by disabling work item scheduling in the health mechanism
when the driver is in the middle of init_one() or remove_one().

Sponsored by:   Mellanox Technologies

5 years agoMFC r341559 and r341645:
hselasky [Wed, 12 Dec 2018 12:19:49 +0000 (12:19 +0000)]
MFC r341559 and r341645:
mlx5: Move hw.mlx5 node definition to mlx5_core.

Submitted by:   kib@
Sponsored by:   Mellanox Technologies

5 years agoMFC r341558:
hselasky [Wed, 12 Dec 2018 12:08:49 +0000 (12:08 +0000)]
MFC r341558:
mlx5: Convert some spaces into tabs and use device_printf() instead of printf().

Sponsored by:   Mellanox Technologies

5 years agoMFC r341557:
hselasky [Wed, 12 Dec 2018 12:07:39 +0000 (12:07 +0000)]
MFC r341557:
mlx5: Add SRQ fixes from Linux

Combine multiple fixes from Linux to SRQ.
Linux commits:
c73b791 IB/mlx5: Assign SRQ type earlier
0fd27a8 IB/mlx5: Fix out-of-bound access
c2b37f7 IB/mlx5: Fix integer overflows in mlx5_ib_create_srq
d63c467 RDMA/mlx5: Fix memory leak in mlx5_ib_create_srq() error path

Sponsored by:   Mellanox Technologies

5 years agoMFC r341556:
hselasky [Wed, 12 Dec 2018 12:06:25 +0000 (12:06 +0000)]
MFC r341556:
mlx5: Fix for potential memory leaks.

Make sure allocated data gets freed in error cases.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341555:
hselasky [Wed, 12 Dec 2018 12:04:56 +0000 (12:04 +0000)]
MFC r341555:
mlx5: Discard unused return values.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341554:
hselasky [Wed, 12 Dec 2018 12:02:06 +0000 (12:02 +0000)]
MFC r341554:
mlx5: Raise fatal IB event when sys error occurs

All other mlx5_events report the port number as 1 based, which is how FW
reports it in the port event EQE. Reporting 0 for this event causes
mlx5_ib to not raise a fatal event notification to registered clients
due to a seemingly invalid port.

All switch cases in mlx5_ib_event that go through the port check are
supposed to set the port now, so just do it once at variable
declaration.

Linux commit:
aba462134634b502d720e15b23154f21cfa277e5

Sponsored by:   Mellanox Technologies

5 years agoMFC r341553:
hselasky [Wed, 12 Dec 2018 12:00:51 +0000 (12:00 +0000)]
MFC r341553:
mlx5: Fix integer overflow while resizing CQ

The user can provide very large cqe_size which will cause to integer
overflow.

Linux commit:
28e9091e3119933c38933cb8fc48d5618eb784c8

Sponsored by:   Mellanox Technologies

5 years agoMFC r341552:
hselasky [Wed, 12 Dec 2018 11:57:27 +0000 (11:57 +0000)]
MFC r341552:
mlx4en: Optimise reception of small packets.

Copy small packets like TCP ACKs into a new mbuf
reusing the existing mbuf to receive a new ethernet
frame. This avoids wasting buffer space for
small sized packets.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341551:
hselasky [Wed, 12 Dec 2018 11:55:43 +0000 (11:55 +0000)]
MFC r341551:
mlx4: Make sure default VNET is set when adding a new interface.

Adding an interface might be done outside the device_attach() routine
and will then cause a panic, due to the VNET not being defined.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341550:
hselasky [Wed, 12 Dec 2018 11:54:27 +0000 (11:54 +0000)]
MFC r341550:
mlx4en: Remove duplicate statistics variable assignment.

The "priv->pkstats.rx_dropped" is written twice in a row.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341549:
hselasky [Wed, 12 Dec 2018 11:52:58 +0000 (11:52 +0000)]
MFC r341549:
mlx4en: Add support for receiving all data using one or more MCLBYTES sized mbufs.
Also when the MTU is greater than MCLBYTES.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341547:
hselasky [Wed, 12 Dec 2018 11:47:39 +0000 (11:47 +0000)]
MFC r341547:
mlx4en: Remove the DRBR and associated logic in the transmit path.

The hardware queues are deep enough currently and using the DRBR and associated
callbacks only leads to more task switching in the TX path. The is also a race
setting the queue_state which can lead to hung TX rings.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341546:
hselasky [Wed, 12 Dec 2018 11:45:06 +0000 (11:45 +0000)]
MFC r341546:
mlx4en: Add driver version to sysctl desc

Sponsored by:   Mellanox Technologies

5 years agoMFC r341545:
hselasky [Wed, 12 Dec 2018 11:43:49 +0000 (11:43 +0000)]
MFC r341545:
mlx4: Add board identifier and firmware version to sysctl

In last mlx4 update (r325841) we lost the sysctl to show the
firmware version for mlx4 devices.
Add both board identifier and firmware version under:
sys.device.mlx4_core0.hw sysctl node.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341544:
hselasky [Wed, 12 Dec 2018 11:42:38 +0000 (11:42 +0000)]
MFC r341544:
mlx4core: Add checks for invalid port numbers.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341543:
hselasky [Wed, 12 Dec 2018 11:41:33 +0000 (11:41 +0000)]
MFC r341543:
mlx4: Zero initialize device capabilities to avoid use of uninitialized fields.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341542:
hselasky [Wed, 12 Dec 2018 11:40:23 +0000 (11:40 +0000)]
MFC r341542:
mlx4core: Avoid multiplication overflow by casting multiplication.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341541:
hselasky [Wed, 12 Dec 2018 11:39:09 +0000 (11:39 +0000)]
MFC r341541:
opensm: Use precision specifier for scanf

If user input a string larger than the length of buffer, the stack
memory will be corrupted.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341540:
hselasky [Wed, 12 Dec 2018 11:38:00 +0000 (11:38 +0000)]
MFC r341540:
libibverbs: Fix memory leak in ibv_read_sysfs_file().

Testing packetdrill using valgrind resulted in finding a memory leak in
ibv_read_sysfs_file(). The attached patch fixes it.

Submitted by: tuexen@
Sponsored by:   Mellanox Technologies

5 years agoMFC r341539:
hselasky [Wed, 12 Dec 2018 11:36:03 +0000 (11:36 +0000)]
MFC r341539:
krping: Fix for memory leak in error case.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341538:
hselasky [Wed, 12 Dec 2018 11:35:00 +0000 (11:35 +0000)]
MFC r341538:
ipoib: Notify on modify QP failure only when relevant

Modify QP can fail and it can be acceptable, like when moving from RST to
ERR state, all the rest are not acceptable and a message to the log
should be printed.

The current code prints on all failures and many messages like:
"Failed to modify QP to ERROR state" appear, even when supported by the
state machine of the QP object.

Linux commit:
5dc78ad1904db597bdb4427f3ead437aae86f54c

MFC after:      1 week
Sponsored by:   Mellanox Technologies

5 years agoMFC r341537:
hselasky [Wed, 12 Dec 2018 11:33:14 +0000 (11:33 +0000)]
MFC r341537:
ipoib: increase the non-cm queue length

When a packet needs fragmentation, it might generate more than 3 fragments.
With the queue length 3, all fragments are generated faster than the
queue is drained, which effectively drops fourth and later fragments on
the floor.

Submitted by:   kib@
Sponsored by:   Mellanox Technologies

5 years agoMFC r341536:
hselasky [Wed, 12 Dec 2018 11:31:54 +0000 (11:31 +0000)]
MFC r341536:
ipoib: Don't do a light flush when MTU is unchanged.

When changing the MTU of ibX network interfaces, check that the MTU was really
changed before requesting an update of the multicast rules. Else we might go
into an infinite loop joining and leaving ibX multicast groups towards the
opensm master interface.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341535:
hselasky [Wed, 12 Dec 2018 11:30:21 +0000 (11:30 +0000)]
MFC r341535:
ipoib: correct setting MTU from inside ipoib(4).

It is not enough to set ifnet->if_mtu to change the interface MTU.
System saves the MTU for route in the radix tree, and route cache keeps
the interface MTU as well. Since addition of the multicast group causes
recalculation of MTU, even bringing the interface up changes MTU from
4042 to 1500, which makes the system configuration inconsistent. Worse,
ip_output() prefers route MTU over interface MTU, so large packets are
not fragmented and dropped on floor.

Fix it for ipoib(4) using the same approach (or hack) as was applied
for it_tun/if_tap in r339012.  Thanks to bz@ for giving the hint.

Submitted by:   kib@
Sponsored by:   Mellanox Technologies

5 years agoMFC r339012:
hselasky [Wed, 12 Dec 2018 11:29:21 +0000 (11:29 +0000)]
MFC r339012:
For changing the MTU on tun/tap devices, it should not matter whether it
is done via using ifconfig, which uses a SIOCSIFMTU ioctl() command, or
doing it using a TUNSIFINFO/TAPSIFINFO ioctl() command.
Without this patch, for IPv6 the new MTU is not used when creating routes.
Especially, when initiating TCP connections after increasing the MTU,
the old MTU is still used to compute the MSS.
Thanks to ae@ and bz@ for helping to improve the patch.

Reviewed by: ae@, bz@
Sponsored by: Netflix, Inc.
Differential Revision: https://reviews.freebsd.org/D17180

5 years agoMFC r341534:
hselasky [Wed, 12 Dec 2018 11:16:32 +0000 (11:16 +0000)]
MFC r341534:
ibcore: Fix clearing of bound device interface.

Binding to a loopback device is not allowed. Make sure the destination
device address is global by clearing the bound device interface.
Only do this conditionally, else link local addresses won't work.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341533:
hselasky [Wed, 12 Dec 2018 11:14:52 +0000 (11:14 +0000)]
MFC r341533:
ibcore: ip6_dev_find() needs to know the scope ID.

Else the wrong network device can be returned for link-local addresses.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341532:
hselasky [Wed, 12 Dec 2018 11:01:23 +0000 (11:01 +0000)]
MFC r341532:
ibcore: Fix sleeping in atomic when RoCE is used

A couple of places in the CM do

    spin_lock_irq(&cm_id_priv->lock);
    ...
    if (cm_alloc_response_msg(work->port, work->mad_recv_wc, &msg))

However when the underlying transport is RoCE, this leads to a sleeping function
being called with the lock held - the callchain is

    cm_alloc_response_msg() ->
      ib_create_ah_from_wc() ->
        ib_init_ah_from_wc() ->
          rdma_addr_find_l2_eth_by_grh() ->
            rdma_resolve_ip()

and rdma_resolve_ip() starts out by doing

    req = kzalloc(sizeof *req, GFP_KERNEL);

not to mention rdma_addr_find_l2_eth_by_grh() doing

    wait_for_completion(&ctx.comp);

to wait for the task that rdma_resolve_ip() queues up.

Fix this by moving the AH creation out of the lock.

Linux commit:
c76161181193985087cd716fdf69b5cb6cf9ee85

Sponsored by:   Mellanox Technologies

5 years agoMFC r341531:
hselasky [Wed, 12 Dec 2018 10:58:49 +0000 (10:58 +0000)]
MFC r341531:
ibcore: Add missing unref of netdevice.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341530:
hselasky [Wed, 12 Dec 2018 10:56:53 +0000 (10:56 +0000)]
MFC r341530:
ibcore: Fix loopback with rdma-cm.

Trying to validate loopback fails because rtalloc1() resolves system
local addresses to the loopback network interface, lo0. Fix this by
explicitly checking for loopback during validation of the source
and destination network address. If the source address belongs to
a local network interface and is equal to the destination address,
there is no need to run the destination address through rtalloc1().

Sponsored by:   Mellanox Technologies

5 years agoMFC r341529:
hselasky [Wed, 12 Dec 2018 10:54:41 +0000 (10:54 +0000)]
MFC r341529:
ibcore: Make sure all VNETs are scanned for VLAN interfaces.

The master network interface and the VLANs may reside in different VNETs.
Make sure that all VNETs are searched when scanning for GID entries.

Submitted by:   netapp
Sponsored by:   Mellanox Technologies

5 years agoMFC r341528:
hselasky [Wed, 12 Dec 2018 10:34:10 +0000 (10:34 +0000)]
MFC r341528:
ibcore: Always check return value from ib_init_ah_from_wc().

This prevents code from accepting RoCEv1 connections when
only ROCEv2 is enabled and vice versa.

Linux commit:
0c4386ec77cfcd0ccbdbe8c2e67dd3a49b2a4c7f

Sponsored by:   Mellanox Technologies

5 years agoMFC r341527:
hselasky [Wed, 12 Dec 2018 10:31:49 +0000 (10:31 +0000)]
MFC r341527:
ibcore: Add missing check for failure.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341526:
hselasky [Wed, 12 Dec 2018 10:29:48 +0000 (10:29 +0000)]
MFC r341526:
ibcore: Fix an array index check

The array ib_mad_mgmt_class_table.method_table has MAX_MGMT_CLASS
(80) elements. Hence compare the array index with that value instead
of with IB_MGMT_MAX_METHODS (128). This patch avoids that Coverity
reports the following:

Overrunning array class->method_table of 80 8-byte elements at element index 127
(byte offset 1016) using index convert_mgmt_class(mad_hdr->mgmt_class)
(which evaluates to 127).

Linux commit:
2fe2f378dd45847d2643638c07a7658822087836

Sponsored by:   Mellanox Technologies

5 years agoMFC r341525:
hselasky [Wed, 12 Dec 2018 10:26:49 +0000 (10:26 +0000)]
MFC r341525:
ibcore: Check ib_find_pkey() return value.

Linux commit:
d3a2418ee36a59bc02e9d454723f3175dcf4bfd9

Sponsored by:   Mellanox Technologies

5 years agoMFC r341524:
hselasky [Wed, 12 Dec 2018 10:24:43 +0000 (10:24 +0000)]
MFC r341524:
ibcore: Add support for IB_SPEED_HDR in sysfs rate printout.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341523:
hselasky [Wed, 12 Dec 2018 10:22:10 +0000 (10:22 +0000)]
MFC r341523:
ibcore: Don't access invalid port.

The port number in the listen_id_priv has been observed to be zero which
means no port has been selected. The current code lacks a check for invalid
port number.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341522:
hselasky [Wed, 12 Dec 2018 10:19:47 +0000 (10:19 +0000)]
MFC r341522:
ibcore: Discard unused error codes.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341521:
hselasky [Wed, 12 Dec 2018 10:17:36 +0000 (10:17 +0000)]
MFC r341521:
ibcore: Make sure GID index variable gets initialized.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341520:
hselasky [Wed, 12 Dec 2018 10:14:52 +0000 (10:14 +0000)]
MFC r341520:
linuxkpi: Really check if PCI is offline

Currently we always return false if for PCI offline query.
Try to read PCI config, if the return value if 0xffff probably the
PCI is offline.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341519:
hselasky [Wed, 12 Dec 2018 10:12:14 +0000 (10:12 +0000)]
MFC r341519:
linuxkpi: properly implement netif_carrier_ok().

Submitted by:   kib@
Sponsored by:   Mellanox Technologies

5 years agoMFC r341518:
hselasky [Wed, 12 Dec 2018 10:09:23 +0000 (10:09 +0000)]
MFC r341518:
linuxkpi: Fix for use-after-free when tearing down character devices.

Make sure we hold a reference on the character device for every opened file
to prevent the character device to be freed prematurely.

Sponsored by:   Mellanox Technologies

5 years agoMFC r341591:
hselasky [Wed, 12 Dec 2018 10:05:41 +0000 (10:05 +0000)]
MFC r341591:
Fix build of the atomic long LinuxKPI header file on some platforms.

Sponsored by: Mellanox Technologies

5 years agoMFC r341517 and r341592:
hselasky [Wed, 12 Dec 2018 10:01:40 +0000 (10:01 +0000)]
MFC r341517 and r341592:
linuxkpi: implement idr_is_empty() and ida_is_empty().

Submitted by:   kib@
Sponsored by:   Mellanox Technologies

5 years agoMFC r341469:
ae [Wed, 12 Dec 2018 08:59:06 +0000 (08:59 +0000)]
MFC r341469:
  Add assertion to check that named object has correct type.

5 years agoMFC: r339289: Resolve a hang in ZFS during vnode reclaimation
allanjude [Tue, 11 Dec 2018 19:34:25 +0000 (19:34 +0000)]
MFC: r339289: Resolve a hang in ZFS during vnode reclaimation

  This is caused by a deadlock between zil_commit() and zfs_zget()
  Add a way for zfs_zget() to break out of the retry loop in the common case

PR: 229614, 231117
Reported by: grembo, jhb, Andreas Sommer, others
Relnotes: yes
Sponsored by: Klara Systems

5 years agoAs part of the general cleanup of the ipfilter code, special cases
cy [Tue, 11 Dec 2018 01:49:06 +0000 (01:49 +0000)]
As part of the general cleanup of the ipfilter code, special cases
are committed separately to document fixing them separately from
the general cleanup. In this case we don't want to hide the utter
brokenness of what is being fixed.

Clean up a discombobulated block of #if's, with one block unreachable.
ip_fil.c is used in ipftest which is used to dry-run test ipfilter
rules in userspace without loading them in the kernel. The call to
(*ifp->if_output) matches that in the FreeBSD kernel.

Further testing and work will be required to make ipftest fully
functional.

5 years agoMFC r340322-r340324,r340327: periodic/etc/weekly/340.noid
eugen [Mon, 10 Dec 2018 14:24:41 +0000 (14:24 +0000)]
MFC r340322-r340324,r340327: periodic/etc/weekly/340.noid

Prevent periodic/etc/weekly/340.noid from descending into root directories
of jails. Jails have their own user/group databases and this script
can produce multiple false warnings, not to mention significant extra
load in case of large jailed subtrees. Leave this check for jailed
invocations of the same script.

5 years agoMFC r340321: Move definition of $jail_conf variable to /etc/defaults/rc.conf
eugen [Mon, 10 Dec 2018 14:12:04 +0000 (14:12 +0000)]
MFC r340321: Move definition of $jail_conf variable to /etc/defaults/rc.conf
from jail startup script so it can be successfully queried
with the command "sysrc jail_conf".

5 years agoMFC r340319: jail(8): introduce new command option -e to exhibit
eugen [Mon, 10 Dec 2018 13:47:05 +0000 (13:47 +0000)]
MFC r340319: jail(8): introduce new command option -e to exhibit
a list of configured non-wildcard jails with their parameters,
no matter running or not.

The option -e takes separator argument that is used
to separate printed parameters. It will be used with following
additions to system periodic scripts to differentiate parts
of directory tree belonging jails as opposed to host's.

5 years agoMFC r341448:
kib [Mon, 10 Dec 2018 01:39:40 +0000 (01:39 +0000)]
MFC r341448:
Print type designator 'D' for the KF_TYPE_DEV files.

5 years agoMFC r341447:
kib [Mon, 10 Dec 2018 01:38:48 +0000 (01:38 +0000)]
MFC r341447:
Improve procstat reporting for the linux cdev file descriptors.

5 years agoMFC r341439:
kib [Mon, 10 Dec 2018 00:59:10 +0000 (00:59 +0000)]
MFC r341439:
Provide naive but self-contained implementations of memset(3) and
bzero(3) for rtld.

5 years agoMFC r341441:
kib [Mon, 10 Dec 2018 00:57:56 +0000 (00:57 +0000)]
MFC r341441:
Some fixes for LD_BIND_NOW + ifuncs.

5 years agoMFC r340046, r340050
araujo [Sun, 9 Dec 2018 06:42:06 +0000 (06:42 +0000)]
MFC r340046, r340050

r340046:
Add support ps/2 scancodes for NumLock, ScrollLock and numerical keypad
keys.

PR: 213835
Submitted by: Vasily Postnicov <ivan.zhmudo@gmail.com>
Relnotes: Yes
Sponsored by: iXsystems Inc.

r340050:
Remove printf for debug purpose forgotten on r340046.

Reported by: Dmitry Luhtionov <dmitryluhtionov@gmail.com>

5 years agoMFC r316939:
avos [Sun, 9 Dec 2018 05:35:22 +0000 (05:35 +0000)]
MFC r316939:
[lib80211] fix a missing cleanup path.

PR: lib/218655
Reported by: <valentin.vergez@stormshield.eu>

5 years agoMFC: r340745, fix CU: output of the --debug-dump=decodedline.
sobomax [Sun, 9 Dec 2018 03:07:45 +0000 (03:07 +0000)]
MFC: r340745, fix CU: output of the --debug-dump=decodedline.

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

5 years agoMFC r341397:
kib [Sun, 9 Dec 2018 00:42:56 +0000 (00:42 +0000)]
MFC r341397:
Correct accuracy of the barrier writes accounting.

5 years agoMFC r341377, r341388 (fixup):
cy [Sat, 8 Dec 2018 17:50:00 +0000 (17:50 +0000)]
MFC r341377, r341388 (fixup):

Restore handling of PMTU discovery, removed through an unifdef(1)
following the MFV of r254219 into r255332. In addition the 'FreeBSD'
macro was never defined in ipfilter 5.1.2 thus it never would have
been enabled in the first place.

This work is prompted by a general cleanup of the IP Filter code
prompted by working to resolve a PR. More to follow.

5 years agoMFC r341384:
cy [Sat, 8 Dec 2018 17:28:52 +0000 (17:28 +0000)]
MFC r341384:

Remove IFF_DRVRLOCK as it is used in IRIX only (and we all know IRIX
is dead). This includes collaterally removing code shared by HP/UX,
SGI, and Linux, where IP Filter will in all likelihood for various
reasons never run again.

5 years agoMFC r341375:
kib [Sat, 8 Dec 2018 00:48:10 +0000 (00:48 +0000)]
MFC r341375:
Allow to create swap zone larger than v_page_count / 2.

5 years agoMFC r341374:
kib [Sat, 8 Dec 2018 00:47:22 +0000 (00:47 +0000)]
MFC r341374:
Correct the tunable name in the message.

PR: 231577

5 years agoMFC r340245: ping(8): improve diagnostics in case of wrong arguments.
eugen [Sat, 8 Dec 2018 00:33:20 +0000 (00:33 +0000)]
MFC r340245: ping(8): improve diagnostics in case of wrong arguments.

  For example, in case of super-user:
  $ sudo ping -s -64 127.0.0.1
  PING 127.0.0.1 (127.0.0.1): -64 data bytes
  ping: sendto: Invalid argument

  For unprivileged user:
  $ ping -s -64 127.0.0.1
  ping: packet size too large: 18446744073709551552 > 56: Operation not permitted

  Fix this by switching from strtoul() to strtol() for integer arguments
  and adding explicit checks for negative values.

5 years agoMFC r341280:
cy [Fri, 7 Dec 2018 21:42:41 +0000 (21:42 +0000)]
MFC r341280:

Clean up a rather useless conditional structure member definition.

5 years agoMFC r341008:
ae [Fri, 7 Dec 2018 09:39:37 +0000 (09:39 +0000)]
MFC r341008:
  Fix possible panic during ifnet detach in rtsock.

  The panic can happen, when some application does dump of routing table
  using sysctl interface. To prevent this, set IFF_DYING flag in
  if_detach_internal() function, when ifnet under lock is removed from
  the chain. In sysctl_rtsock() take IFNET_RLOCK_NOSLEEP() to prevent
  ifnet detach during routes enumeration. In case, if some interface was
  detached in the time before we take the lock, add the check, that ifnet
  is not DYING. This prevents access to memory that could be freed after
  ifnet is unlinked.

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