From owner-freebsd-net@freebsd.org Sun Jul 29 01:11:56 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 235C91063A26 for ; Sun, 29 Jul 2018 01:11:56 +0000 (UTC) (envelope-from jmg@gold.funkthat.com) Received: from gold.funkthat.com (gate2.funkthat.com [208.87.223.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "gate2.funkthat.com", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 95D1A88FE5 for ; Sun, 29 Jul 2018 01:11:55 +0000 (UTC) (envelope-from jmg@gold.funkthat.com) Received: from gold.funkthat.com (localhost [127.0.0.1]) by gold.funkthat.com (8.15.2/8.15.2) with ESMTPS id w6T1Bs2W043512 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sat, 28 Jul 2018 18:11:54 -0700 (PDT) (envelope-from jmg@gold.funkthat.com) Received: (from jmg@localhost) by gold.funkthat.com (8.15.2/8.15.2/Submit) id w6T1BrmK043509; Sat, 28 Jul 2018 18:11:53 -0700 (PDT) (envelope-from jmg) Date: Sat, 28 Jul 2018 18:11:53 -0700 From: John-Mark Gurney To: Adrian Chadd Cc: ryan@ixsystems.com, FreeBSD Net Subject: Re: 9k jumbo clusters Message-ID: <20180729011153.GD2884@funkthat.com> Mail-Followup-To: Adrian Chadd , ryan@ixsystems.com, FreeBSD Net References: <20180727221843.GZ2884@funkthat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 11.0-RELEASE-p7 amd64 X-PGP-Fingerprint: D87A 235F FB71 1F3F 55B7 ED9B D5FF 5A51 C0AC 3D65 X-Files: The truth is out there X-URL: https://www.funkthat.com/ X-Resume: https://www.funkthat.com/~jmg/resume.html X-TipJar: bitcoin:13Qmb6AeTgQecazTWph4XasEsP7nGRbAPE X-to-the-FBI-CIA-and-NSA: HI! HOW YA DOIN? can i haz chizburger? User-Agent: Mutt/1.6.1 (2016-04-27) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (gold.funkthat.com [127.0.0.1]); Sat, 28 Jul 2018 18:11:54 -0700 (PDT) X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Jul 2018 01:11:56 -0000 Adrian Chadd wrote this message on Sat, Jul 28, 2018 at 13:33 -0700: > On Fri, 27 Jul 2018 at 15:19, John-Mark Gurney wrote: > > > Ryan Moeller wrote this message on Fri, Jul 27, 2018 at 12:45 -0700: > > > There is a long-standing issue with 9k mbuf jumbo clusters in FreeBSD. > > > For example: > > > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=183381 > > > https://lists.freebsd.org/pipermail/freebsd-net/2013-March/034890.html > > > > > > This comment suggests the 16k pool does not have the fragmentation > > problem: > > > https://reviews.freebsd.org/D11560#239462 > > > I???m curious whether that has been confirmed. > > > > > > Is anyone working on the pathological case with 9k jumbo clusters in the > > > physical memory allocator? There was an interesting discussion started a > > > few years ago but I???m not sure what ever came of it: > > > http://docs.freebsd.org/cgi/mid.cgi?21225.20047.947384.390241 > > > > > > I have seen some work in the direction of avoiding larger than page size > > > jumbo clusters in 12-CURRENT. Many existing drivers avoid the 9k cluster > > > size already. The code for larger cluster sizes in iflib is #ifdef'd out > > > so it maxes out at the page size jumbo clusters until > > "CONTIGMALLOC_WORKS" > > > (apparently it doesn't). > > > > > > With all the changes due to iflib, is there any chance some of this will > > > get MFC'd to address the serious problem that remains in 11-STABLE? > > > > > > Otherwise, would it be feasible to disable the use of the 9k cluster pool > > > in at least some of the popular NIC drivers as a solution for the stable > > > branches? > > > > > > Finally, I have studied some of the driver code in 11-STABLE and posted > > the > > > gist of my notes in relation to this problem. If anyone spots a mistake > > or > > > has something else to contribute, comments on the gist would be greatly > > > appreciated! > > > https://gist.github.com/freqlabs/eba9b755f17a223260246becfbb150a1 > > > > Drivers need to be fixed to use 4k pages instead of cluster. I really hope > > no one is using a card that can't do 4k pages, or if they are, then they > > should get a real card that can do scatter/gather on 4k pages for jumbo > > frames.. > > > Yeah but it's 2018 and your server has like minimum a dozen million 4k > pages. > > So if you're doing stuff like lots of network packet kerchunking why not > have specialised allocator paths that can do things like "hey, always give > me 64k physical contig pages for storage/mbufs because you know what? > they're going to be allocated/freed together always." > > There was always a race between bus bandwidth, memory bandwidth and > bus/memory latencies. I'm not currently on the disk/packet pushing side of > things, but the last couple times I were it was at different points in that > 4d space and almost every single time there was a benefit from having a > couple of specialised allocators so you didn't have to try and manage a few > dozen million 4k pages based on your changing workload. > > I enjoy the 4k page size management stuff for my 128MB routers. Your 128G > server has a lot of 4k pages. It's a bit silly. We do: $vmstat -z ITEM SIZE LIMIT USED FREE REQ FAIL SLEEP [...] 8192: 8192, 0, 67, 109,398203019, 0, 0 16384: 16384, 0, 65, 41,74103020, 0, 0 32768: 32768, 0, 61, 28,41981659, 0, 0 65536: 65536, 0, 17, 23,26127059, 0, 0 [...] mbuf_jumbo_page: 4096, 509295, 0, 64,183536214, 0, 0 mbuf_jumbo_9k: 9216, 150902, 0, 0, 0, 0, 0 mbuf_jumbo_16k: 16384, 84882, 0, 0, 0, 0, 0 [...] And I know you know the problem is that over time memory is fragmented, so if suddenly you need more jumbo frames than you already have, you're SOL... page size allocations will always be available... Fixing drivers to fall back to 4k allocations (or always use 4k allocations) is a lot simplier than doing magic work to free pages, etc. -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-freebsd-net@freebsd.org Sun Jul 29 01:38:17 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DE1F21064974 for ; Sun, 29 Jul 2018 01:38:17 +0000 (UTC) (envelope-from wollman@hergotha.csail.mit.edu) Received: from hergotha.csail.mit.edu (tunnel82308-pt.tunnel.tserv4.nyc4.ipv6.he.net [IPv6:2001:470:1f06:ccb::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7F16289C86 for ; Sun, 29 Jul 2018 01:38:17 +0000 (UTC) (envelope-from wollman@hergotha.csail.mit.edu) Received: from hergotha.csail.mit.edu (localhost [127.0.0.1]) by hergotha.csail.mit.edu (8.15.2/8.15.2) with ESMTP id w6T1cDbm069933; Sat, 28 Jul 2018 21:38:15 -0400 (EDT) (envelope-from wollman@hergotha.csail.mit.edu) Received: (from wollman@localhost) by hergotha.csail.mit.edu (8.15.2/8.14.4/Submit) id w6T1cCSc069932; Sat, 28 Jul 2018 21:38:12 -0400 (EDT) (envelope-from wollman) Date: Sat, 28 Jul 2018 21:38:12 -0400 (EDT) From: Garrett Wollman Message-Id: <201807290138.w6T1cCSc069932@hergotha.csail.mit.edu> To: jmg@funkthat.com Subject: Re: 9k jumbo clusters References: <20180729011153.GD2884@funkthat.com> <20180727221843.GZ2884@funkthat.com> Organization: none Cc: freebsd-net@freebsd.org X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (hergotha.csail.mit.edu [127.0.0.1]); Sat, 28 Jul 2018 21:38:15 -0400 (EDT) X-Spam-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED autolearn=disabled version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on hergotha.csail.mit.edu X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Jul 2018 01:38:18 -0000 In article <20180729011153.GD2884@funkthat.com> jmg@funkthat.com writes: >And I know you know the problem is that over time memory is fragmented, >so if suddenly you need more jumbo frames than you already have, you're >SOL... This problem instantly disappears if you preallocate several gigabytes of contiguous physical memory at boot time. And if you're doing something network-intensive and care about performance, you probably don't mind doing that. -GAWollman From owner-freebsd-net@freebsd.org Sun Jul 29 19:12:25 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B1D5A105ECDB for ; Sun, 29 Jul 2018 19:12:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 41F958E3AF for ; Sun, 29 Jul 2018 19:12:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id D336E105ECC1; Sun, 29 Jul 2018 19:12:24 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C2219105ECC0 for ; Sun, 29 Jul 2018 19:12:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 17B148E36D for ; Sun, 29 Jul 2018 19:12:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id BF6C118FB2 for ; Sun, 29 Jul 2018 19:12:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w6TJCLnT018647 for ; Sun, 29 Jul 2018 19:12:21 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w6TJCLQY018646 for net@FreeBSD.org; Sun, 29 Jul 2018 19:12:21 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 131876] [socket] FD leak by receiving SCM_RIGHTS by recvmsg with small control message buffer Date: Sun, 29 Jul 2018 19:12:20 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 6.4-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: markj@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Jul 2018 19:12:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D131876 --- Comment #5 from commit-hook@freebsd.org --- A commit references this bug: Author: markj Date: Sun Jul 29 19:12:06 UTC 2018 New revision: 336873 URL: https://svnweb.freebsd.org/changeset/base/336873 Log: MFC r336614: Add a regression test for PR 131876. PR: 131876 Changes: _U stable/11/ stable/11/tests/sys/kern/unix_passfd_test.c --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Sun Jul 29 21:00:38 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8BED01063350 for ; Sun, 29 Jul 2018 21:00:38 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 284D379B1E for ; Sun, 29 Jul 2018 21:00:38 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id E13C1106334D; Sun, 29 Jul 2018 21:00:37 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BF943106334B for ; Sun, 29 Jul 2018 21:00:37 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 60D0079B09 for ; Sun, 29 Jul 2018 21:00:37 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id AF32C19E39 for ; Sun, 29 Jul 2018 21:00:36 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w6TL0aBP073494 for ; Sun, 29 Jul 2018 21:00:36 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w6TL0ahT073478 for net@FreeBSD.org; Sun, 29 Jul 2018 21:00:36 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <201807292100.w6TL0ahT073478@kenobi.freebsd.org> X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@FreeBSD.org using -f From: bugzilla-noreply@FreeBSD.org To: net@FreeBSD.org Subject: Problem reports for net@FreeBSD.org that need special attention Date: Sun, 29 Jul 2018 21:00:36 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.27 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Jul 2018 21:00:38 -0000 To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ------------+-----------+--------------------------------------------------- In Progress | 221146 | [ixgbe] Problem with second laggport New | 204438 | setsockopt() handling of kern.ipc.maxsockbuf limi New | 205592 | TCP processing in IPSec causes kernel panic New | 206053 | kqueue support code of netmap causes panic New | 213410 | [carp] service netif restart causes hang only whe Open | 165622 | [ndis][panic][patch] Unregistered use of FPU in k Open | 193452 | Dell PowerEdge 210 II -- Kernel panic bce (broadc Open | 202510 | [CARP] advertisements sourced from CARP IP cause Open | 206544 | sendmsg(2) (sendto(2) too?) can fail with EINVAL; Open | 222273 | igb(4): Kernel panic (fatal trap 12) due to netwo Open | 227720 | Kernel panic in ppp server 11 problems total for which you should take action. From owner-freebsd-net@freebsd.org Sun Jul 29 21:38:24 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 23B161064A73 for ; Sun, 29 Jul 2018 21:38:24 +0000 (UTC) (envelope-from rmacklem@uoguelph.ca) Received: from CAN01-QB1-obe.outbound.protection.outlook.com (mail-eopbgr660070.outbound.protection.outlook.com [40.107.66.70]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client CN "mail.protection.outlook.com", Issuer "GlobalSign Organization Validation CA - SHA256 - G3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AF2837B581 for ; Sun, 29 Jul 2018 21:38:23 +0000 (UTC) (envelope-from rmacklem@uoguelph.ca) Received: from YTOPR0101MB0953.CANPRD01.PROD.OUTLOOK.COM (52.132.44.24) by YTOPR0101MB1404.CANPRD01.PROD.OUTLOOK.COM (52.132.47.20) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.995.19; Sun, 29 Jul 2018 21:38:20 +0000 Received: from YTOPR0101MB0953.CANPRD01.PROD.OUTLOOK.COM ([fe80::5543:df04:c733:a99]) by YTOPR0101MB0953.CANPRD01.PROD.OUTLOOK.COM ([fe80::5543:df04:c733:a99%5]) with mapi id 15.20.0995.020; Sun, 29 Jul 2018 21:38:20 +0000 From: Rick Macklem To: Adrian Chadd , "ryan@ixsystems.com" , FreeBSD Net Subject: Re: 9k jumbo clusters Thread-Topic: 9k jumbo clusters Thread-Index: AQHUJrJe/B7MvWEGOEuFhL2lVBq7caSms7tL Date: Sun, 29 Jul 2018 21:38:20 +0000 Message-ID: References: <20180727221843.GZ2884@funkthat.com>, In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: authentication-results: spf=none (sender IP is ) smtp.mailfrom=rmacklem@uoguelph.ca; x-ms-publictraffictype: Email x-microsoft-exchange-diagnostics: 1; YTOPR0101MB1404; 6:oo3z4CkiIYbApXRa8hss/otDWqQOID6syYr4QRcJW32Ji3chn6CRRnUdMGM01Unjodho13N3P4hvshLVcxg7kuC9mkHDcDDaXZIuJKj6hWFUTfC/QJqEspasM3OMOpqINxjPrSV2Va2ZjxKx2v0IWlISC7RhJCJzYgzXGXGlZCSiFrokiB2qbiqcrPvzm3Ha+Jv57dRG6+Gkppx7YIj4sFWvDb27aNlm0MbA7qpzTafN/78KAGTTEANef+xdZbmmsTtbG7Ex/3EIzFXLQboSDEd+MQuAzxvbEQklor5oMeohaHPvGT9CJVaKZdC+Ois4D0dnW8ssA9cVzjyJC3PfP3N2xWN+rvMWYS4QWeu7PpQ4jnK/ClGHsFQf6SOag2SPrssGCZuM6kIlSlnXXkn4Gl8FLiQ/JoxZxl79LyxAEePGX2AmGC6W3y0L9PYNEzJ8tsz7kbYdYyZlMxQm71kWdA==; 5:meavW8kiAGHTgHEtdq8PSR2ND2LT04l6sDFHLgSe9UJu3CcTfKcrZFzMoJsEtiK79N+k4alVmwYkC8ZNxEQEhB7g83+amyjmDesrE+IQLKgRiLVDreOsBtpK7+mpgjPecWeVOccxFQiqwuKy1K1pDHlpopl9Hk1wTw494cXVEVg=; 7:6m4TUpAneH3jMsi97MTkJN/Ox/mwwrFqA7IVRvt8luVLi708Oyb2hpaLZnq63tCBlfF0fAmpiIzfHPlUJPOLnKRgDvIpl5tWtjVgjAwfsWAidaNkwKqd8kYoWsFytFjQ/QAwYnGAA+8gCrfYctCuQssnGIiof6LhRuG6YR/H6zCw44Lo2S0wf4/4TOr1WyTTcrw7e+Bp/g9u+U0T3iK028Vw7bGh/RB/eY+YY6QP+Sesf2xY4nUJ/X/kOgJNNptA x-ms-exchange-antispam-srfa-diagnostics: SOS; x-ms-office365-filtering-correlation-id: 2168cd48-96d2-47d4-96ca-08d5f59b9ac9 x-microsoft-antispam: BCL:0; PCL:0; RULEID:(7020095)(4652040)(8989117)(4534165)(4627221)(201703031133081)(201702281549075)(8990107)(5600074)(711020)(2017052603328)(7153060)(7193020); SRVR:YTOPR0101MB1404; x-ms-traffictypediagnostic: YTOPR0101MB1404: x-microsoft-antispam-prvs: x-exchange-antispam-report-test: UriScan:(158342451672863); x-ms-exchange-senderadcheck: 1 x-exchange-antispam-report-cfa-test: BCL:0; PCL:0; RULEID:(6040522)(2401047)(5005006)(8121501046)(93006095)(93001095)(3231311)(944501410)(52105095)(3002001)(10201501046)(149027)(150027)(6041310)(201703131423095)(201702281529075)(201702281528075)(20161123555045)(201703061421075)(201703061406153)(20161123558120)(20161123564045)(20161123560045)(20161123562045)(6072148)(201708071742011)(7699016); SRVR:YTOPR0101MB1404; BCL:0; PCL:0; RULEID:; SRVR:YTOPR0101MB1404; x-forefront-prvs: 0748FF9A04 x-forefront-antispam-report: SFV:NSPM; SFS:(10009020)(396003)(39850400004)(366004)(346002)(376002)(136003)(189003)(199004)(9686003)(55016002)(110136005)(14454004)(53936002)(25786009)(316002)(786003)(74482002)(229853002)(33656002)(305945005)(8936002)(5660300001)(39060400002)(74316002)(81166006)(6436002)(2906002)(81156014)(256004)(14444005)(6246003)(6506007)(102836004)(486006)(2900100001)(68736007)(26005)(186003)(446003)(476003)(11346002)(478600001)(99286004)(5250100002)(105586002)(2501003)(7696005)(76176011)(8676002)(97736004)(106356001)(86362001); DIR:OUT; SFP:1101; SCL:1; SRVR:YTOPR0101MB1404; H:YTOPR0101MB0953.CANPRD01.PROD.OUTLOOK.COM; FPR:; SPF:None; LANG:en; PTR:InfoNoRecords; MX:1; A:1; received-spf: None (protection.outlook.com: uoguelph.ca does not designate permitted sender hosts) x-microsoft-antispam-message-info: JssI/JMXhlWqbhrqRNNRaiX19d9C9zoHrE3WwP/y2q74ct/bNzWMM82JM9hX22WLKYn3CBmhNOGrWCaa0PEk5itQ0AeCPztrVd+zFBn1hAUQ33biRaHPcppVroNuz87b8JK9N6/BIgRhL8kUaHYfkYQlkTrmTAME+uwCKrkEsLVH9hbI6tXSm4noMElQnuTxGlnTvuaIF3zyX/g0ADbQHcKLwtAcWwhibJTOl/QHaT0c2ByagonljTagfKana+11v0tLvqLOlq2pDRLl0htg3kM2hq6IYiJG1KaRF3kM4v1Jay3+Y4J1iZ2/7dfmmhnDAam4bEtuE7nUpfdMPVT2z1WkLiYUbJLqQ29FZu5NYpY= spamdiagnosticoutput: 1:99 spamdiagnosticmetadata: NSPM Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-OriginatorOrg: uoguelph.ca X-MS-Exchange-CrossTenant-Network-Message-Id: 2168cd48-96d2-47d4-96ca-08d5f59b9ac9 X-MS-Exchange-CrossTenant-originalarrivaltime: 29 Jul 2018 21:38:20.7494 (UTC) X-MS-Exchange-CrossTenant-fromentityheader: Hosted X-MS-Exchange-CrossTenant-id: be62a12b-2cad-49a1-a5fa-85f4f3156a7d X-MS-Exchange-Transport-CrossTenantHeadersStamped: YTOPR0101MB1404 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Jul 2018 21:38:24 -0000 Adrian Chadd wrote: >John-Mark Gurney wrote: [stuff snipped] >> >> Drivers need to be fixed to use 4k pages instead of cluster. I really h= ope >> no one is using a card that can't do 4k pages, or if they are, then they >> should get a real card that can do scatter/gather on 4k pages for jumbo >> frames.. > >Yeah but it's 2018 and your server has like minimum a dozen million 4k >pages. > >So if you're doing stuff like lots of network packet kerchunking why not >have specialised allocator paths that can do things like "hey, always give >me 64k physical contig pages for storage/mbufs because you know what? >they're going to be allocated/freed together always." > >There was always a race between bus bandwidth, memory bandwidth and >bus/memory latencies. I'm not currently on the disk/packet pushing side of >things, but the last couple times I were it was at different points in tha= t >4d space and almost every single time there was a benefit from having a >couple of specialised allocators so you didn't have to try and manage a fe= w >dozen million 4k pages based on your changing workload. > >I enjoy the 4k page size management stuff for my 128MB routers. Your 128G >server has a lot of 4k pages. It's a bit silly. Here's my NFS guy perspective. I do think 9K mbuf clusters should go away. I'll note that I once coded NFS= so it would use 4K mbuf clusters for the big RPCs (write requests and read replie= s) and I actually could get the mbuf cluster pool fragmented to the point it stopp= ed working on a small machine, so it is possible (although not likely) to frag= ment even a 2K/4K mix. For me, send and receive are two very different cases: - For sending a large NFS RPC (lets say a reply to a 64K read), the NFS cod= e will generate a list of 33 2K mbuf clusters. If the net interface doesn't do T= SO, this is probably fine, since tcp_output() will end up busting this up into a b= unch of TCP segments using the list of mbuf clusters with TCP/IP headers added fo= r each segment, etc... - If the net interface does TSO, this long list goes down to the net driv= er and uses 34->35 ring entries to send it (it adds at least one segment for the MA= C header typically). If the driver isn't buggy and the net chip supports lots of= transmit ring entries, this works ok but... - If there was a 64K supercluster, the NFS code could easily use that for = the 64K of data and the TSO enabled net interface would use 2 transmit ring entr= ies. (one for the MAC/TCP/NFS header and one for the 64K of data). If the net= interface can't handle a TSO segment over 65535bytes, it will end up getting 2 TSO= segments from tcp_output(), but that still is a lot less than 35. I don't know enough about net hardware to know when/if this will help perf.= , but it seems that it might, at least for some chipsets? For receive, it seems that a 64K mbuf cluster is overkill for jumbo packets= , but as others have noted, they won't be allocated for long unless packets arrive o= ut of order, at least for NFS. (For other apps., they might not read the socket = for a while to get the data, so they might sit in the socket rcv queue for a while.) I chose 64K, since that is what most net interfaces can handle for TSO thes= e days. (If it will soon be larger, I think this should be even larger, but all of = them the same size to avoid fragmentation.) For the send case for NFS, it wouldn't even = need to be a very large pool, since they get free'd as soon as the net interface tr= ansmits the TSO segment. For NFS, it could easily call mget_supercl() and then fall back on the curr= ent code using 2K mbuf clusters if mget_supercl() failed, so a small pool w= ould be fine for the NFS send side. I'd like to see a pool for 64K or larger mbuf clusters for the send side. For the receive side, I'll let others figure out the best solution (4K or l= arger for jumbo clusters). I do think anything larger than 4K needs a separate al= location pool to avoid fragmentation. (I don't know, but I'd guess iSCSI could use them as well?) rick From owner-freebsd-net@freebsd.org Mon Jul 30 14:07:15 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 062321057870 for ; Mon, 30 Jul 2018 14:07:15 +0000 (UTC) (envelope-from tobias.urdin@binero.se) Received: from smtp-01.ognet.se (smtp-01.ognet.se [83.168.200.41]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 83212730E0 for ; Mon, 30 Jul 2018 14:07:14 +0000 (UTC) (envelope-from tobias.urdin@binero.se) Received: from [172.16.80.35] (unknown [172.16.80.35]) by smtp-01.ognet.se (Halon) with ESMTPSA id b103edf2-9401-11e8-9374-0050568164d6; Mon, 30 Jul 2018 16:06:02 +0200 (CEST) To: freebsd-net@freebsd.org From: Tobias Urdin Subject: ospf redistribute into openbgpd overwrites directly connected routes Message-ID: <9507d752-6815-92fe-924b-55459710bb9d@binero.se> Date: Mon, 30 Jul 2018 16:06:02 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jul 2018 14:07:15 -0000 Hello, I have a setup where we connect a OSPF area with a edge router, this edge router then has a BGP peer to my router where it redistributes all OSPF routes into the BGP feed to my router. My router is running FreeBSD 11.1 with openbgpd root@myrouter:~ # uname -a FreeBSD dr20-1-sto1 11.1-RELEASE FreeBSD 11.1-RELEASE #0 r321309: Fri Jul 21 02:08:28 UTC 2017 root@releng2.nyi.freebsd.org:/usr/obj/usr/src/sys/GENERIC  amd64 root@myrouter:~ # pkg info openbgpd openbgpd-5.2.20121209_2 Name           : openbgpd Version        : 5.2.20121209_2 The thing here is that my router has layer 2 access directly to one of the networks that the edge router BGP announces to my router (172.20.104.0/22). When my FreeBSD machine boots it will install a directly connected route for 172.20.104.0/22 in my routing table but as soon as openbgpd starts it will install a 172.20.104.0/22 route with the nexthop of the edge router instead. How can I prevent openbgpd from overwriting the directly connected route? Directly connected networks should never be overwritten by a routing protocol but I suspect this is because of the redistribute. I've tried messing with metrics, but maybe I to create a rtable and mess around with that? Output of some info is below. Best regards Tobias root@myrouter:~ # bgpctl show fib connected | grep 104 *C      48 172.20.104.0/22      link#10 root@myrouter:~ # route get 172.20.104.100    route to: 172.20.104.100 destination: 172.20.104.0        mask: 255.255.252.0     gateway: edgerouter         fib: 0   interface: vlan10       flags:  recvpipe  sendpipe  ssthresh  rtt,msec    mtu        weight expire        0         0         0         0      1500         1         0 root@myrouter:~ # ifconfig vlan10 vlan10: flags=8943 metric 0 mtu 1500 options=600703         ether x         inet 172.20.107.253 netmask 0xfffffc00 broadcast 172.20.107.255         inet 172.20.107.254 netmask 0xfffffc00 broadcast 172.20.107.255 vhid 2         nd6 options=29         media: Ethernet autoselect (10Gbase-Twinax )         status: active         vlan: 10 vlanpcp: 0 parent interface: ix1         carp: MASTER vhid 2 advbase 1 advskew 10         groups: vlan root@myrouter:~ # cat /etc/rc.conf ...snip.. ifconfig_vlan10="inet 172.20.107.253 netmask 255.255.252.0 vlan 10 vlandev ix1" ifconfig_vlan10_alias0="inet vhid 2 advskew 100 pass test123 alias 172.20.107.254/22" root@myrouter:~ # cat /usr/local/etc/bgpd.conf ...snip... group "peering ASxxxx" {   remote-as xxxx   softreconfig in yes   neighbor edgerouter {     announce self     descr "AS xxxx edgerouter"     local-address xxxx     depend on   } } ...snip... From owner-freebsd-net@freebsd.org Mon Jul 30 14:29:26 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9475410580C5 for ; Mon, 30 Jul 2018 14:29:26 +0000 (UTC) (envelope-from tobias.urdin@binero.se) Received: from smtp-01.ognet.se (smtp-01.ognet.se [83.168.200.41]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1B7687400D for ; Mon, 30 Jul 2018 14:29:25 +0000 (UTC) (envelope-from tobias.urdin@binero.se) Received: from [172.16.80.35] (unknown [172.16.80.35]) by smtp-01.ognet.se (Halon) with ESMTPSA id f4609fbd-9404-11e8-9374-0050568164d6; Mon, 30 Jul 2018 16:29:23 +0200 (CEST) Subject: Re: ospf redistribute into openbgpd overwrites directly connected routes From: Tobias Urdin To: "freebsd-net@freebsd.org" References: <9507d752-6815-92fe-924b-55459710bb9d@binero.se> Message-ID: Date: Mon, 30 Jul 2018 16:29:23 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: <9507d752-6815-92fe-924b-55459710bb9d@binero.se> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jul 2018 14:29:26 -0000 Should note that I can resolve this by filtering the incoming prefixes with: deny from group "peering ASxxxx" prefix 172.20.104.0/22 prefixlen = 22 Which I'm doing right now to workaround the problem and being able to continue working but I don't understand why openbgpd would overwrite directly connected routes. If somebody could clear that up for me I would be super grateful :) Best regards Tobias On 07/30/2018 04:09 PM, Tobias Urdin wrote: > Hello, > > I have a setup where we connect a OSPF area with a edge router, this > edge router then has a BGP peer to my router > where it redistributes all OSPF routes into the BGP feed to my router. > > My router is running FreeBSD 11.1 with openbgpd > > root@myrouter:~ # uname -a > FreeBSD dr20-1-sto1 11.1-RELEASE FreeBSD 11.1-RELEASE #0 r321309: Fri > Jul 21 02:08:28 UTC 2017 > root@releng2.nyi.freebsd.org:/usr/obj/usr/src/sys/GENERIC  amd64 > > root@myrouter:~ # pkg info openbgpd > openbgpd-5.2.20121209_2 > Name           : openbgpd > Version        : 5.2.20121209_2 > > The thing here is that my router has layer 2 access directly to one of > the networks that the edge router BGP announces to my router > (172.20.104.0/22). > When my FreeBSD machine boots it will install a directly connected route > for 172.20.104.0/22 in my routing table but as soon as openbgpd starts > it will > install a 172.20.104.0/22 route with the nexthop of the edge router instead. > > How can I prevent openbgpd from overwriting the directly connected route? > Directly connected networks should never be overwritten by a routing > protocol but I suspect this is because of the redistribute. > > I've tried messing with metrics, but maybe I to create a rtable and mess > around with that? > Output of some info is below. > > Best regards > Tobias > > root@myrouter:~ # bgpctl show fib connected | grep 104 > *C      48 172.20.104.0/22      link#10 > > root@myrouter:~ # route get 172.20.104.100 >    route to: 172.20.104.100 > destination: 172.20.104.0 >        mask: 255.255.252.0 >     gateway: edgerouter >         fib: 0 >   interface: vlan10 >       flags: >  recvpipe  sendpipe  ssthresh  rtt,msec    mtu        weight expire >        0         0         0         0      1500         1         0 > > root@myrouter:~ # ifconfig vlan10 > vlan10: flags=8943 > metric 0 mtu 1500 > options=600703 >         ether x >         inet 172.20.107.253 netmask 0xfffffc00 broadcast 172.20.107.255 >         inet 172.20.107.254 netmask 0xfffffc00 broadcast 172.20.107.255 > vhid 2 >         nd6 options=29 >         media: Ethernet autoselect (10Gbase-Twinax > ) >         status: active >         vlan: 10 vlanpcp: 0 parent interface: ix1 >         carp: MASTER vhid 2 advbase 1 advskew 10 >         groups: vlan > > root@myrouter:~ # cat /etc/rc.conf > ...snip.. > ifconfig_vlan10="inet 172.20.107.253 netmask 255.255.252.0 vlan 10 > vlandev ix1" > ifconfig_vlan10_alias0="inet vhid 2 advskew 100 pass test123 alias > 172.20.107.254/22" > > root@myrouter:~ # cat /usr/local/etc/bgpd.conf > ...snip... > group "peering ASxxxx" { >   remote-as xxxx >   softreconfig in yes > >   neighbor edgerouter { >     announce self >     descr "AS xxxx edgerouter" >     local-address xxxx >     depend on >   } > } > ...snip... > _______________________________________________ > freebsd-net@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-net > To unsubscribe, send any mail to "freebsd-net-unsubscribe@freebsd.org" > From owner-freebsd-net@freebsd.org Mon Jul 30 15:05:46 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 57D6D105900C for ; Mon, 30 Jul 2018 15:05:46 +0000 (UTC) (envelope-from eugen@grosbein.net) Received: from hz.grosbein.net (unknown [IPv6:2a01:4f8:d12:604::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "hz.grosbein.net", Issuer "hz.grosbein.net" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id D6ACA75983 for ; Mon, 30 Jul 2018 15:05:45 +0000 (UTC) (envelope-from eugen@grosbein.net) Received: from eg.sd.rdtc.ru (root@eg.sd.rdtc.ru [62.231.161.221] (may be forged)) by hz.grosbein.net (8.15.2/8.15.2) with ESMTPS id w6UF5c3W003726 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Mon, 30 Jul 2018 17:05:38 +0200 (CEST) (envelope-from eugen@grosbein.net) X-Envelope-From: eugen@grosbein.net X-Envelope-To: tobias.urdin@binero.se Received: from [10.58.0.4] ([10.58.0.4]) by eg.sd.rdtc.ru (8.15.2/8.15.2) with ESMTPS id w6UF5YXj081841 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT); Mon, 30 Jul 2018 22:05:34 +0700 (+07) (envelope-from eugen@grosbein.net) Subject: Re: ospf redistribute into openbgpd overwrites directly connected routes To: Tobias Urdin , freebsd-net@freebsd.org References: <9507d752-6815-92fe-924b-55459710bb9d@binero.se> From: Eugene Grosbein Message-ID: <5B5F2938.5090103@grosbein.net> Date: Mon, 30 Jul 2018 22:05:28 +0700 User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.7.2 MIME-Version: 1.0 In-Reply-To: <9507d752-6815-92fe-924b-55459710bb9d@binero.se> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=2.2 required=5.0 tests=BAYES_00, LOCAL_FROM, RDNS_NONE, SPF_PASS autolearn=no autolearn_force=no version=3.4.1 X-Spam-Report: * -0.0 SPF_PASS SPF: sender matches SPF record * -2.3 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] * 2.6 LOCAL_FROM From my domains * 1.9 RDNS_NONE Delivered to internal network by a host with no rDNS X-Spam-Level: ** X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on hz.grosbein.net X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jul 2018 15:05:46 -0000 30.07.2018 21:06, Tobias Urdin wrote: > I have a setup where we connect a OSPF area with a edge router, this edge router then has a BGP peer to my router > where it redistributes all OSPF routes into the BGP feed to my router. > > My router is running FreeBSD 11.1 with openbgpd > > root@myrouter:~ # uname -a > FreeBSD dr20-1-sto1 11.1-RELEASE FreeBSD 11.1-RELEASE #0 r321309: Fri Jul 21 02:08:28 UTC 2017 root@releng2.nyi.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 > > root@myrouter:~ # pkg info openbgpd > openbgpd-5.2.20121209_2 > Name : openbgpd > Version : 5.2.20121209_2 > > The thing here is that my router has layer 2 access directly to one of the networks that the edge router BGP announces to my router (172.20.104.0/22). > When my FreeBSD machine boots it will install a directly connected route for 172.20.104.0/22 in my routing table but as soon as openbgpd starts it will > install a 172.20.104.0/22 route with the nexthop of the edge router instead. > > How can I prevent openbgpd from overwriting the directly connected route? > Directly connected networks should never be overwritten by a routing protocol but I suspect this is because of the redistribute. > > I've tried messing with metrics, but maybe I to create a rtable and mess around with that? This problem was fixed in 11.2-RELEASE, just upgrade and you will be fine. From owner-freebsd-net@freebsd.org Mon Jul 30 15:54:34 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EBB23105A435 for ; Mon, 30 Jul 2018 15:54:33 +0000 (UTC) (envelope-from tobias.urdin@binero.se) Received: from smtp-01.ognet.se (smtp-01.ognet.se [83.168.200.41]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6362577B2C for ; Mon, 30 Jul 2018 15:54:33 +0000 (UTC) (envelope-from tobias.urdin@binero.se) Received: from [172.16.80.35] (unknown [172.16.80.35]) by smtp-01.ognet.se (Halon) with ESMTPSA id d831c0af-9410-11e8-9374-0050568164d6; Mon, 30 Jul 2018 17:54:30 +0200 (CEST) Subject: Re: ospf redistribute into openbgpd overwrites directly connected routes To: "freebsd-net@freebsd.org" References: <9507d752-6815-92fe-924b-55459710bb9d@binero.se> <5B5F2938.5090103@grosbein.net> Cc: Eugene Grosbein From: Tobias Urdin Message-ID: <3682ba47-ac57-3333-1f6e-4638f00bb892@binero.se> Date: Mon, 30 Jul 2018 17:54:30 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: <5B5F2938.5090103@grosbein.net> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jul 2018 15:54:34 -0000 On 07/30/2018 05:08 PM, Eugene Grosbein wrote: > 30.07.2018 21:06, Tobias Urdin wrote: > >> I have a setup where we connect a OSPF area with a edge router, this edge router then has a BGP peer to my router >> where it redistributes all OSPF routes into the BGP feed to my router. >> >> My router is running FreeBSD 11.1 with openbgpd >> >> root@myrouter:~ # uname -a >> FreeBSD dr20-1-sto1 11.1-RELEASE FreeBSD 11.1-RELEASE #0 r321309: Fri Jul 21 02:08:28 UTC 2017 root@releng2.nyi.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >> >> root@myrouter:~ # pkg info openbgpd >> openbgpd-5.2.20121209_2 >> Name : openbgpd >> Version : 5.2.20121209_2 >> >> The thing here is that my router has layer 2 access directly to one of the networks that the edge router BGP announces to my router (172.20.104.0/22). >> When my FreeBSD machine boots it will install a directly connected route for 172.20.104.0/22 in my routing table but as soon as openbgpd starts it will >> install a 172.20.104.0/22 route with the nexthop of the edge router instead. >> >> How can I prevent openbgpd from overwriting the directly connected route? >> Directly connected networks should never be overwritten by a routing protocol but I suspect this is because of the redistribute. >> >> I've tried messing with metrics, but maybe I to create a rtable and mess around with that? > This problem was fixed in 11.2-RELEASE, just upgrade and you will be fine. > > > _______________________________________________ > freebsd-net@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-net > To unsubscribe, send any mail to "freebsd-net-unsubscribe@freebsd.org" > Oh, that's great. Thanks! From owner-freebsd-net@freebsd.org Mon Jul 30 16:05:40 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CA473105A829 for ; Mon, 30 Jul 2018 16:05:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 666A7781FC for ; Mon, 30 Jul 2018 16:05:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 2B682105A826; Mon, 30 Jul 2018 16:05:40 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1A25F105A825 for ; Mon, 30 Jul 2018 16:05:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B0242781F6 for ; Mon, 30 Jul 2018 16:05:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 0A3C623EDF for ; Mon, 30 Jul 2018 16:05:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w6UG5cQu031759 for ; Mon, 30 Jul 2018 16:05:38 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w6UG5c3u031758 for net@FreeBSD.org; Mon, 30 Jul 2018 16:05:38 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 222314] ifconfig epair create panics the kernel (arm64) Date: Mon, 30 Jul 2018 16:05:39 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: arm X-Bugzilla-Version: 11.1-STABLE X-Bugzilla-Keywords: vimage X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: Andrew@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jul 2018 16:05:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D222314 Andrew Turner changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |Andrew@FreeBSD.org --- Comment #2 from Andrew Turner --- This should be fixed, with VIMAGE enabled again in base r336915 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Mon Jul 30 17:32:24 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9F5EE105C3C0 for ; Mon, 30 Jul 2018 17:32:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 3AE8E7BB62 for ; Mon, 30 Jul 2018 17:32:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id F2273105C3BF; Mon, 30 Jul 2018 17:32:23 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E0988105C3BE for ; Mon, 30 Jul 2018 17:32:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 827667BB5F for ; Mon, 30 Jul 2018 17:32:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id E24E124A93 for ; Mon, 30 Jul 2018 17:32:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w6UHWMJL027570 for ; Mon, 30 Jul 2018 17:32:22 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w6UHWM4u027569 for net@FreeBSD.org; Mon, 30 Jul 2018 17:32:22 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 181741] [kernel] [patch] Packet loss when 'control' messages are present with large data (sendmsg(2)) Date: Mon, 30 Jul 2018 17:32:22 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: markj@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: markj@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jul 2018 17:32:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D181741 --- Comment #19 from Mark Johnston --- https://reviews.freebsd.org/D16515 https://reviews.freebsd.org/D16516 --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Mon Jul 30 17:38:13 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9BF08105C4CE for ; Mon, 30 Jul 2018 17:38:13 +0000 (UTC) (envelope-from Matt.Allanson@trimedx.com) Received: from mx0b-0026bd01.pphosted.com (mx0b-0026bd01.pphosted.com [148.163.152.119]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.pphosted.com", Issuer "thawte SHA256 SSL CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2093D7BDA8 for ; Mon, 30 Jul 2018 17:38:12 +0000 (UTC) (envelope-from Matt.Allanson@trimedx.com) Received: from pps.filterd (m0105879.ppops.net [127.0.0.1]) by mx0a-0026bd01.pphosted.com (8.16.0.22/8.16.0.22) with SMTP id w6UHD4vi032051 for ; Mon, 30 Jul 2018 13:14:13 -0400 Received: from nam01-by2-obe.outbound.protection.outlook.com (mail-by2nam01lp0178.outbound.protection.outlook.com [216.32.181.178]) by mx0a-0026bd01.pphosted.com with ESMTP id 2kj5pg01ud-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Mon, 30 Jul 2018 13:14:13 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=trimedx.com; s=selector1; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=r9DjOK3929azGEdR4RmCRCRxYgVaPxQL4eRC/loTuIk=; b=enVSnriVMTSCYpcrKo6I+ZjSr+COlBOTWuxJhRW+ziYsmw1omyRspOyPqvD1uYjoupitspurE4Jt621t+tsmECdg5seo+OCIVKXjXfZTn/h/OsY976kEMF1q2srnoPa9V/n2bV9X4E+8hbFMuvl5/SFnA7Rr4cM3mep54/zEK14= Received: from SN1PR12MB2351.namprd12.prod.outlook.com (52.132.194.32) by SN1PR12MB2557.namprd12.prod.outlook.com (52.132.197.145) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.995.20; Mon, 30 Jul 2018 17:14:11 +0000 Received: from SN1PR12MB2351.namprd12.prod.outlook.com ([fe80::c56c:43ea:ecc9:bef4]) by SN1PR12MB2351.namprd12.prod.outlook.com ([fe80::c56c:43ea:ecc9:bef4%2]) with mapi id 15.20.0973.022; Mon, 30 Jul 2018 17:14:11 +0000 From: "Allanson, Matt J." To: "freebsd-net@freebsd.org" Subject: RE: Bug 227720 Thread-Topic: RE: Bug 227720 Thread-Index: AdQoKBqo9W01QquFTCiYJ9c7u+B3aQ== Date: Mon, 30 Jul 2018 17:14:11 +0000 Message-ID: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: yes X-MS-TNEF-Correlator: x-originating-ip: [208.83.120.194] x-ms-publictraffictype: Email x-microsoft-exchange-diagnostics: 1; SN1PR12MB2557; 6:LlbUhvOlCxsQ1YVg5zKaSGwsYbC+OgtkDb1QgGLIELmk2hBIrBk4SL8xRPV/GHbtyxVz2L68igovSHlAcSkg7ZLn/IrnsDiC6bi/n4LyEKY4pc4JzrjPF2W2SVmbk8uslU1zIeB46bByAoOeN4yTd5zsH7oZZidXU0OXr/+srWeBWchzFI/7qP1CuusbOc8JlQR5V5DIrHARmtuxgZo1zshZtRTLnR6O7k0O6YY0Dx153Qp1KzkJWS19B58+iYwHUZSy1urHHbiCzDGG5wn36Gbt0Bh8N9xli7GLLZnnSNLep9itmyRCRzhx2QiqSnGGVSt67GuBPp6Poa7atosaBPUssBZ9wmf7eggI49E+JTVTjTCnZSRB8SNffjEiIofbSoyqaiWh0TPWosQMu26zWcVQeZagw0FolFuRGSOgvuOb7+bZDBrhs4T8rmmzD/hsJzjOL+pNUcbPr861Vt5osA==; 5:UTBlYbMCzmNM4tHsEB55SLz0DTrdwtCLZtDWFBka8kEFXvuSjxxt/GtGl4/jmJkyaOwBKuFLz/H8L1vnYjvzZ9+vqZQQf98WTymqAnQjcE+uOSq6BaG25pbQohhKVxHr2XpZksW+jnXZtBUcAk6jRG3EbWlFhNHdiBA8lLNZAbQ=; 7:oI7T+PEkSkWjXatLvGTui75nOeDUQxhmXjCvYg8/bgQMihCD+kwETiUF+HTG1hidEIdALbz1d077v1QwDwo1lm12Smvg9TMC9/cpJgIhCTgxYuiTh+RMHJj3KvewvK5FUajYkQ5XeKDPIr1LGDuXFNqmTfUDZkgbHhNZ1xuXRO9CS0PdCL1e2/WRwwkDAYMBlVUbrlPInhEtudRljIfzphEG5AeHD9wMBYcqeXRRu7eghsMKQ6e064iTwqews88W x-ms-exchange-antispam-srfa-diagnostics: SOS; x-ms-office365-filtering-correlation-id: f2f84220-9dac-4bb7-cdef-08d5f63fde56 x-microsoft-antispam: BCL:0; PCL:0; RULEID:(7020095)(4652040)(8989117)(4534165)(7168020)(4627221)(201703031133081)(201702281549075)(8990107)(5600074)(711020)(2017052603328)(7153060)(49563074)(7193020); SRVR:SN1PR12MB2557; x-ms-traffictypediagnostic: SN1PR12MB2557: x-microsoft-antispam-prvs: x-exchange-antispam-report-test: UriScan:(28532068793085)(192374486261705)(31418570063057)(223705240517415)(128460861657000)(86561027422486)(21748063052155)(81160342030619)(64217206974132); x-ms-exchange-senderadcheck: 1 x-exchange-antispam-report-cfa-test: BCL:0; PCL:0; RULEID:(102415395)(6040522)(2401047)(5005006)(8121501046)(3002001)(10201501046)(93006095)(93001095)(3231311)(944501410)(52105095)(149027)(150027)(6041310)(201703131423095)(201702281528075)(20161123555045)(201703061421075)(201703061406153)(20161123560045)(20161123564045)(20161123562045)(20161123558120)(6072148)(201708071742011)(7699016); SRVR:SN1PR12MB2557; BCL:0; PCL:0; RULEID:; SRVR:SN1PR12MB2557; x-forefront-prvs: 0749DC2CE6 x-forefront-antispam-report: SFV:NSPM; SFS:(10009020)(376002)(39850400004)(396003)(136003)(346002)(366004)(189003)(199004)(316002)(229853002)(81166006)(9686003)(55016002)(99936001)(54556002)(54896002)(6306002)(7696005)(733005)(8936002)(6436002)(5640700003)(99286004)(66066001)(6116002)(790700001)(3846002)(2900100001)(33656002)(256004)(14454004)(966005)(478600001)(97736004)(106356001)(2351001)(53936002)(6246003)(25786009)(105586002)(6916009)(86362001)(606006)(5630700001)(74316002)(5660300001)(5250100002)(2501003)(7116003)(14444005)(5024004)(72206003)(2906002)(81156014)(68736007)(8676002)(486006)(861006)(6506007)(236005)(55236004)(476003)(26005)(102836004)(7736002)(186003)(16866105001); DIR:OUT; SFP:1101; SCL:1; SRVR:SN1PR12MB2557; H:SN1PR12MB2351.namprd12.prod.outlook.com; FPR:; SPF:None; LANG:en; PTR:InfoNoRecords; MX:1; A:1; received-spf: None (protection.outlook.com: trimedx.com does not designate permitted sender hosts) x-microsoft-antispam-message-info: IkpNcyUG//0msDpvJ4Of4DZY0lCzB35b84VMceHmwFSV3zyGPv3vSECZDIuJU6w+eLOi85jRvYeNQLpJbxy/9cqWUOiCkbJyOU+Vmhzbjq0LiQSecdd+Yp1PSvu1k6+1W3+Jy4129F3gS4s38ChyqIqJw+8s8SDaVFsB4D/sUNMmdMtLbi1j4ILMOtc528JERAXq/7ArplFGPoy8a9slOqJjP7NrM7M6ZO6xatbtcjRNBk1RoGubdgr8lSwwdIW2T5DKyRyKGzU+KjyUTUl80KOCKmlwDwIx62mkB9+hD8j7mr4VDkHVXP1AlNrnuT0SqXss2pnX6KvfQVjNyDgims7vOx9hiNNEIg4v+52KUO0= spamdiagnosticoutput: 1:99 spamdiagnosticmetadata: NSPM MIME-Version: 1.0 X-OriginatorOrg: trimedx.com X-MS-Exchange-CrossTenant-Network-Message-Id: f2f84220-9dac-4bb7-cdef-08d5f63fde56 X-MS-Exchange-CrossTenant-originalarrivaltime: 30 Jul 2018 17:14:11.5146 (UTC) X-MS-Exchange-CrossTenant-fromentityheader: Hosted X-MS-Exchange-CrossTenant-id: bab4504a-c9f6-4480-af12-6ee6b44db482 X-MS-Exchange-Transport-CrossTenantHeadersStamped: SN1PR12MB2557 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:, , definitions=2018-07-30_08:, , signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 priorityscore=1501 malwarescore=0 suspectscore=0 phishscore=0 bulkscore=0 spamscore=0 clxscore=1015 lowpriorityscore=0 mlxscore=0 impostorscore=0 mlxlogscore=999 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1806210000 definitions=main-1807300187 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.27 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jul 2018 17:38:13 -0000 In reference to https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D227720 = , we applied the patch to enable garbage collection. Rebuilt the image and = installed it, then set net.gc.enabled=3D1 as well as in /etc/sysctl.conf an= d it continued to fail. Here is the most recent backtrace: (kgdb) bt #0 0xffffffff804e7866 in sched_switch () #1 0xffffffff804c8d38 in mi_switch () #2 0xffffffff8050acfe in sleepq_switch () #3 0xffffffff8050abb3 in sleepq_wait () #4 0xffffffff804c8684 in _sleep () #5 0xffffffff80510401 in taskqueue_thread_loop () #6 0xffffffff804878d4 in fork_exit () #7 (kgdb) Let me know any addition information you need. Thank you, Matt Allanson System Engineer I [TriMedx] 7144 Lakeview Pkwy W Drive Indianapolis, IN 46268 (317) 275-5515 office/fax (317) 939-3313 mobile Matt.Allanson@trimedx.com trimedx.com [http://www.trimedx.com/app_themes/trimedx/facebook.gif][http://www.trimedx.com/app_themes/trimedx/twitter.gif][http://www.trimedx.com/app_themes/trimedx/linkedi= n.gif] ________________________________ NOTICE: This message may contain privileged and confidential information an= d/or protected health information intended solely for the use of the named = recipient and may be privileged or otherwise protected by law. If you are n= ot the intended recipient of this message, you should immediately notify th= e sender and delete this message. Do not disseminate, reproduce, or review = this message or attachments if you are not the intended recipient. The send= er or others may have legal rights restricting the dissemination of the inf= ormation contained in this message and, as a result, remedies against you i= n the event of the improper dissemination of confidential information, trad= e secrets, personal information or privileged communications. This message = is the work of the sender and does not necessarily reflect the position, vi= ews, or policies of TriMedx LLC or its affiliates. WARNING: The integrity and security of this message cannot be guaranteed an= d may contain or transmit a virus or other illicit code. Neither TriMedx LL= C or its affiliates accept liability for any damage attributable to viruses= or illicit code transmitted through this message or an attachment. From owner-freebsd-net@freebsd.org Mon Jul 30 22:44:38 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 388B61063241 for ; Mon, 30 Jul 2018 22:44:38 +0000 (UTC) (envelope-from SRS0=WhEN=KO=quip.cz=000.fbsd@elsa.codelab.cz) Received: from elsa.codelab.cz (elsa.codelab.cz [94.124.105.4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9F7D089042 for ; Mon, 30 Jul 2018 22:44:37 +0000 (UTC) (envelope-from SRS0=WhEN=KO=quip.cz=000.fbsd@elsa.codelab.cz) Received: from elsa.codelab.cz (localhost [127.0.0.1]) by elsa.codelab.cz (Postfix) with ESMTP id 34B7F28416 for ; Tue, 31 Jul 2018 00:44:28 +0200 (CEST) Received: from illbsd.quip.test (ip-86-49-16-209.net.upcbroadband.cz [86.49.16.209]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by elsa.codelab.cz (Postfix) with ESMTPSA id 9F72C28412 for ; Tue, 31 Jul 2018 00:44:25 +0200 (CEST) To: freebsd-net@freebsd.org From: Miroslav Lachman <000.fbsd@quip.cz> Subject: IPSec StrongSwan error sending to PF_KEY socket: Invalid argument Message-ID: Date: Tue, 31 Jul 2018 00:44:25 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Firefox/52.0 SeaMonkey/2.49.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jul 2018 22:44:38 -0000 I am trying to setup IPSec tunnel between VirtualBox gues (FreeBSD 10.4) on one side and AWS EC3 AMI (FreeBSD 10.4) on other side. Both sides have kernel with IPSEC and IPSEC_NAT_T but I am not able to make it work. It works if I make similar setup with two VirtualBox instances (no NAT), but when I need to run it in AWS EC2 or Google Cloud Platform with teir crazy NAT it always failed on something. Is "error sending to PF_KEY socket: Invalid argument" error on FreeBSD configuration or on StrongSwang side? Jul 30 23:56:02 16[ENC] parsed QUICK_MODE response 1836023754 [ HASH SA No KE ID ID ] Jul 30 23:56:02 16[CFG] selecting proposal: Jul 30 23:56:02 16[CFG] proposal matches Jul 30 23:56:02 16[CFG] received proposals: ESP:AES_CBC_128/HMAC_SHA1_96/MODP_1024/NO_EXT_SEQ Jul 30 23:56:02 16[CFG] configured proposals: ESP:AES_CBC_128/HMAC_SHA1_96/MODP_1024/NO_EXT_SEQ, ESP:AES_CBC_128/AES_CBC_192/AES_CBC_256/HMAC_SHA2_256_128/HMAC_SHA2_384_192/HMAC_SHA2_512_256/HMAC_SHA1_96/AES_XCBC_96/NO_EXT_SEQ Jul 30 23:56:02 16[CFG] selected proposal: ESP:AES_CBC_128/HMAC_SHA1_96/MODP_1024/NO_EXT_SEQ Jul 30 23:56:02 16[CHD] CHILD_SA aws0-to-vbox0{1} state change: CREATED => INSTALLING Jul 30 23:56:02 16[CHD] using AES_CBC for encryption Jul 30 23:56:02 16[CHD] using HMAC_SHA1_96 for integrity Jul 30 23:56:02 16[CHD] adding inbound ESP SA Jul 30 23:56:02 16[CHD] SPI 0xc59cf5ad, src 94.124.105.47 dst 172.31.17.85 Jul 30 23:56:02 16[KNL] deleting SAD entry with SPI c59cf5ad Jul 30 23:56:02 02[JOB] watched FD 12 ready to read Jul 30 23:56:02 02[JOB] watcher going to poll() 5 fds Jul 30 23:56:02 02[JOB] watcher got notification, rebuilding Jul 30 23:56:02 02[JOB] watcher going to poll() 6 fds Jul 30 23:56:02 16[KNL] deleted SAD entry with SPI c59cf5ad Jul 30 23:56:02 16[KNL] adding SAD entry with SPI c59cf5ad and reqid {1} Jul 30 23:56:02 16[KNL] using encryption algorithm AES_CBC with key size 128 Jul 30 23:56:02 16[KNL] using integrity algorithm HMAC_SHA1_96 with key size 160 Jul 30 23:56:02 16[KNL] error sending to PF_KEY socket: Invalid argument Jul 30 23:56:02 16[KNL] unable to add SAD entry with SPI c59cf5ad Jul 30 23:56:02 16[CHD] adding outbound ESP SA Jul 30 23:56:02 16[CHD] SPI 0xc2afbe7d, src 172.31.17.85 dst 94.124.105.47 Jul 30 23:56:02 16[KNL] adding SAD entry with SPI c2afbe7d and reqid {1} Jul 30 23:56:02 16[KNL] using encryption algorithm AES_CBC with key size 128 Jul 30 23:56:02 16[KNL] using integrity algorithm HMAC_SHA1_96 with key size 160 Jul 30 23:56:02 16[KNL] error sending to PF_KEY socket: Invalid argument Jul 30 23:56:02 16[KNL] unable to add SAD entry with SPI c2afbe7d Jul 30 23:56:02 16[IKE] unable to install inbound and outbound IPsec SA (SAD) in kernel Jul 30 23:56:02 16[IKE] queueing INFORMATIONAL task Jul 30 23:56:02 16[CHD] CHILD_SA aws0-to-vbox0{1} state change: INSTALLING => DESTROYING Jul 30 23:56:02 16[KNL] deleting policy 172.21.187.0/24 === 10.211.84.0/24 in Jul 30 23:56:02 16[KNL] deleting policy 172.21.187.0/24 === 10.211.84.0/24 in failed, not found Jul 30 23:56:02 16[KNL] deleting SAD entry with SPI c59cf5ad Jul 30 23:56:02 16[KNL] unable to delete SAD entry with SPI c59cf5ad: No such file or directory (2) Jul 30 23:56:02 16[KNL] deleting SAD entry with SPI c2afbe7d Jul 30 23:56:02 16[KNL] unable to delete SAD entry with SPI c2afbe7d: No such file or directory (2) Jul 31 00:00:31 09[ENC] found payload of type NOTIFY_V1 Jul 31 00:00:31 09[ENC] parsed INFORMATIONAL_V1 request 2604834086 [ HASH N(NO_PROP) ] Jul 31 00:00:31 09[IKE] received NO_PROPOSAL_CHOSEN error notify Jul 31 00:00:31 09[MGR] checkin IKE_SA aws0-to-vbox0[2] Jul 31 00:00:31 09[MGR] checkin of IKE_SA successful Jul 31 00:00:31 09[MGR] checkout IKEv1 SA by message with SPIs 7c1bf193d7093ec5_i a4ace258f6cd26f1_r Jul 31 00:00:31 09[MGR] IKE_SA aws0-to-vbox0[2] successfully checked out What am I doing wrong? root@ipsec-gw etc/# uname -srmi FreeBSD 10.4-RELEASE-p9 amd64 GEN_IPSEC root@ipsec-gw etc/# sysctl kern.features.ipsec kern.features.ipsec: 1 ## ipsec.conf config setup nat_traversal=yes # Add connections here. conn %default keyexchange=ikev1 authby=secret ## secret or psk are userd for PSK type=tunnel ikelifetime=28800 lifetime=3600 dpddelay=30 dpdtimeout=120 dpdaction=restart ike=3des-md5-modp1024 #Phase 1 integrity check algos esp=aes128-sha1-modp1024 #Phase 2 Encryption algos conn vbox0-to-aws0 left=94.xx.yy.47 #Host internal IP address leftid=94.xx.yy.47 leftsubnet=172.21.187.0/24 right=35.aa.bb.117 #Peer2 IP address rightid=35.aa.bb.117 rightsubnet=10.211.84.0/24 #Peer2 accesible intranet auto=start ## local public IP to remote public IP conn vbox0-to-aws0-peer0 also=vbox0-to-aws0 leftsubnet=94.xx.yy.47/32 rightsubnet=35.aa.bb.117/32 auto=start ## local LAN to remote public IP conn vbox0-to-aws0-peer1 also=vbox0-to-aws0 leftsubnet=172.21.187.0/24 rightsubnet=35.aa.bb.117/32 auto=start ## local public IP to remote LAN conn vbox0-to-aws0-peer2 also=vbox0-to-aws0 leftsubnet=94.xx.yy.47/32 rightsubnet=10.211.84.0/24 auto=start # ipsec status aws0-to-vbox0 Security Associations (1 up, 0 connecting): aws0-to-vbox0[2]: ESTABLISHED 41 minutes ago, 172.31.17.85[35.aa.bb.117]...94.xx.yy.47[94.xx.yy.47] # ipsec statusall aws0-to-vbox0 Status of IKE charon daemon (strongSwan 5.6.3, FreeBSD 10.4-RELEASE-p9, amd64): uptime: 45 minutes, since Jul 30 23:56:01 2018 worker threads: 11 of 16 idle, 5/0/0/0 working, job queue: 0/0/0/0, scheduled: 7 loaded plugins: charon aes des blowfish rc2 sha2 sha1 md4 md5 random nonce x509 revocation constraints pubkey pkcs1 pkcs7 pkcs8 pkcs12 pgp dnskey sshkey pem openssl fips-prf curve25519 xcbc cmac hmac curl attr kernel-pfkey kernel-pfroute resolve socket-default stroke vici updown eap-identity eap-md5 eap-mschapv2 eap-tls eap-ttls eap-peap xauth-generic whitelist addrblock counters Listening IP addresses: 172.31.17.85 Connections: aws0-to-vbox0: 172.31.17.85...94.xx.yy.47 IKEv1, dpddelay=30s aws0-to-vbox0: local: [35.aa.bb.117] uses pre-shared key authentication aws0-to-vbox0: remote: [94.xx.yy.47] uses pre-shared key authentication aws0-to-vbox0: child: 10.211.84.0/24 === 172.21.187.0/24 TUNNEL, dpdaction=restart aws0-to-vbox0-peer0: child: 35.aa.bb.117/32 === 94.xx.yy.47/32 TUNNEL, dpdaction=restart aws0-to-vbox0-peer1: child: 10.211.84.0/24 === 94.xx.yy.47/32 TUNNEL, dpdaction=restart aws0-to-vbox0-peer2: child: 35.aa.bb.117/32 === 172.21.187.0/24 TUNNEL, dpdaction=restart aws0-to-vbox0-peer3: child: 172.31.17.85/32 === 94.xx.yy.47/32 TUNNEL, dpdaction=restart aws0-to-vbox0-peer4: child: 172.31.17.85/32 === 172.21.187.0/24 TUNNEL, dpdaction=restart Security Associations (1 up, 0 connecting): aws0-to-vbox0[2]: ESTABLISHED 41 minutes ago, 172.31.17.85[35.aa.bb.117]...94.xx.yy.47[94.xx.yy.47] aws0-to-vbox0[2]: IKEv1 SPIs: 7c1bf193d7093ec5_i a4ace258f6cd26f1_r*, pre-shared key reauthentication in 7 hours aws0-to-vbox0[2]: IKE proposal: 3DES_CBC/HMAC_MD5_96/PRF_HMAC_MD5/MODP_1024 aws0-to-vbox0[2]: Tasks passive: QUICK_MODE QUICK_MODE QUICK_MODE QUICK_MODE From owner-freebsd-net@freebsd.org Tue Jul 31 00:48:20 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E5FAA10669F0 for ; Tue, 31 Jul 2018 00:48:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 3DB808FFD0 for ; Tue, 31 Jul 2018 00:48:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 027EF10669ED; Tue, 31 Jul 2018 00:48:19 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E594210669EC for ; Tue, 31 Jul 2018 00:48:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 838588FFC8 for ; Tue, 31 Jul 2018 00:48:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id B8B2E87CD for ; Tue, 31 Jul 2018 00:48:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w6V0mHQ5087515 for ; Tue, 31 Jul 2018 00:48:17 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w6V0mHQE087513 for net@FreeBSD.org; Tue, 31 Jul 2018 00:48:17 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 131876] [socket] FD leak by receiving SCM_RIGHTS by recvmsg with small control message buffer Date: Tue, 31 Jul 2018 00:48:17 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 6.4-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: markj@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Jul 2018 00:48:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D131876 --- Comment #6 from commit-hook@freebsd.org --- A commit references this bug: Author: markj Date: Tue Jul 31 00:48:08 UTC 2018 New revision: 336957 URL: https://svnweb.freebsd.org/changeset/base/336957 Log: Add a regression test related to PR 131876. If an error occurs while copying a SCM_RIGHTS message to userspace, we free the mbuf containing externalized rights, leaking them. PR: 131876 MFC after: 1 week Sponsored by: The FreeBSD Foundation Changes: head/tests/sys/kern/unix_passfd_test.c --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Tue Jul 31 01:50:54 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0CDBC106A0D0 for ; Tue, 31 Jul 2018 01:50:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 9FA96736A6 for ; Tue, 31 Jul 2018 01:50:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 63BB7106A0CF; Tue, 31 Jul 2018 01:50:53 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5253A106A0CE for ; Tue, 31 Jul 2018 01:50:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E825C736A3 for ; Tue, 31 Jul 2018 01:50:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 3B7C49055 for ; Tue, 31 Jul 2018 01:50:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w6V1oq73031978 for ; Tue, 31 Jul 2018 01:50:52 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w6V1oq1d031977 for net@FreeBSD.org; Tue, 31 Jul 2018 01:50:52 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 206053] kqueue support code of netmap causes panic Date: Tue, 31 Jul 2018 01:50:50 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: crash, needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dab@freebsd.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: dab@freebsd.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: assigned_to bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Jul 2018 01:50:54 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206053 David Bright changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|net@FreeBSD.org |dab@freebsd.org Status|New |In Progress --- Comment #3 from David Bright --- Logged as netmap issue #521: https://github.com/luigirizzo/netmap/issues/521 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Tue Jul 31 02:32:42 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AD16610495F9 for ; Tue, 31 Jul 2018 02:32:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 2438174D2C for ; Tue, 31 Jul 2018 02:32:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id DD42610495EE; Tue, 31 Jul 2018 02:32:41 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CC12D10495ED for ; Tue, 31 Jul 2018 02:32:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6E32574D26 for ; Tue, 31 Jul 2018 02:32:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id CCA75971D for ; Tue, 31 Jul 2018 02:32:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w6V2We1J036573 for ; Tue, 31 Jul 2018 02:32:40 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w6V2WeCN036569 for net@FreeBSD.org; Tue, 31 Jul 2018 02:32:40 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 181741] Packet loss when 'control' messages are present with large data (sendmsg(2)) Date: Tue, 31 Jul 2018 02:32:40 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: koobs@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: markj@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? mfc-stable11? X-Bugzilla-Changed-Fields: short_desc see_also keywords flagtypes.name Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Jul 2018 02:32:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D181741 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|[kernel] [patch] Packet |Packet loss when 'control' |loss when 'control' |messages are present with |messages are present with |large data (sendmsg(2)) |large data (sendmsg(2)) | See Also| |https://bugs.freebsd.org/bu | |gzilla/show_bug.cgi?id=3D1= 858 | |13, | |https://reviews.freebsd.org | |/D16515, | |https://reviews.freebsd.org | |/D16516 Keywords| |needs-qa Flags| |mfc-stable10?, | |mfc-stable11? --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Tue Jul 31 13:43:52 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BE120105AAE3 for ; Tue, 31 Jul 2018 13:43:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 485138B7A6 for ; Tue, 31 Jul 2018 13:43:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 09492105AAE2; Tue, 31 Jul 2018 13:43:52 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EC178105AAE1 for ; Tue, 31 Jul 2018 13:43:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7C6368B7A5 for ; Tue, 31 Jul 2018 13:43:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id D82CDF720 for ; Tue, 31 Jul 2018 13:43:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w6VDhogx048726 for ; Tue, 31 Jul 2018 13:43:50 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w6VDhoxT048725 for net@FreeBSD.org; Tue, 31 Jul 2018 13:43:50 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 229384] Can't remove address from carp Date: Tue, 31 Jul 2018 13:43:51 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: vegeta@tuxpowered.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Jul 2018 13:43:52 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D229384 --- Comment #1 from Kajetan Staszkiewicz --- The issue of conflicting carps happens on 11.2 too. At this very moment ifconfig shows correct addresses, though. Can I somehow see which addresses= are used by carp to calculate checksum? I can dump memory of both routers. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Tue Jul 31 19:20:32 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6DD6A1062887 for ; Tue, 31 Jul 2018 19:20:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 0BA7979061 for ; Tue, 31 Jul 2018 19:20:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id C49E51062885; Tue, 31 Jul 2018 19:20:31 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B35AC1062883 for ; Tue, 31 Jul 2018 19:20:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 556D67905B for ; Tue, 31 Jul 2018 19:20:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id A3E2A124FC for ; Tue, 31 Jul 2018 19:20:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w6VJKUiO042984 for ; Tue, 31 Jul 2018 19:20:30 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w6VJKUxB042983 for net@FreeBSD.org; Tue, 31 Jul 2018 19:20:30 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 229384] Can't remove address from carp Date: Tue, 31 Jul 2018 19:20:30 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: egypcio@googlemail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Jul 2018 19:20:32 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D229384 Vin=C3=ADcius Zavam changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |egypcio@googlemail.com --- Comment #2 from Vin=C3=ADcius Zavam --- don't you need to set 'pass' together with the 'vhid' in order to proper se= tup carp? I am not even mentioning the 'advskew' stuff, but the password thing might do the trick for you. I'm also considering that you enabled ipv6 properly, and it's working. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Tue Jul 31 22:17:38 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 138E81066AB5 for ; Tue, 31 Jul 2018 22:17:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id A539680828 for ; Tue, 31 Jul 2018 22:17:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 69F1C1066AB4; Tue, 31 Jul 2018 22:17:37 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 58BAC1066AB3 for ; Tue, 31 Jul 2018 22:17:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EEFD280824 for ; Tue, 31 Jul 2018 22:17:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 422FE13DE7 for ; Tue, 31 Jul 2018 22:17:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w6VMHaL2008453 for ; Tue, 31 Jul 2018 22:17:36 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w6VMHa0h008452 for net@FreeBSD.org; Tue, 31 Jul 2018 22:17:36 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 229384] Can't remove address from carp Date: Tue, 31 Jul 2018 22:17:36 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: vegeta@tuxpowered.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Jul 2018 22:17:38 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D229384 --- Comment #3 from Kajetan Staszkiewicz --- Maybe I did not made myself clear. Carp is set up correctly and operates flawlessly until multiple addresses are added and removed in a short period= of time during some testes which are run on those routers. Rebooting routers a= nd having them configure the addresses once by just adding them after reboot m= akes things work fine again. The master/master behaviour is consistent with chec= ksum issues, that is when there are different carp addresses configured on each router even when ifconfig shows identical addresses. A few times I was able= to observe different addresses shown by ifconfig but I was unable to delete ex= tra addresses due to errors as show here before. Long story short: only stress-testing by adding and removing carp addresses breaks carp. And no, it is not necessary to provide any other parameters when carp vhid = is already configured. Each extra IP address can be added to existing vhid by = just specifying vhid. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Wed Aug 1 06:44:53 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1D0E4105255E for ; Wed, 1 Aug 2018 06:44:53 +0000 (UTC) (envelope-from return-to@edm.icartizan.email) Received: from dmd231.mail78.dmdelivery.com (dmd231.mail78.dmdelivery.com [61.147.78.231]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 025BE83994 for ; Wed, 1 Aug 2018 06:44:51 +0000 (UTC) (envelope-from return-to@edm.icartizan.email) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=edm.icartizan.email; s=dmddkim; t=1533105884; bh=i0BKWK6+ultSeP0z4of3oFoIaeiBkCrvNCVM4dWdMKE=; h=Date:Message-Id:To:From:Subject:Content-Type; b=wy4Dsjf8w/IeKOmX3LaW5lynwnI7XtFYwMURqufmvR2Wrfk4OwH4ALgcSsTXF9hIN PbXbqLLGVBQvEo9gCXGPd+97WcQVWq/+I2x4bIUn82D6meqR+FBDxjwhZkhJTYt2ui LdhveyMevKzqIh75Gjk48HNqADgYhUMXWXmo8evs= Date: Wed, 01 Aug 2018 14:44:44 +0800 MIME-Version: 1.0 Message-Id: To: freebsd-net@freebsd.org From: "Audio Interface" Reply-To: "Audio Interface" Subject: Digital Music Changer with Competitive Price is Here X-Mailer: DMD-MTA X-Hash: S7Y1.J9ra2hi_b.I1sjC2NjC4H_OrcX.DNvUlFy9zOTEopLMqsQ8vdTcxMyc.5kpthCh4sQ8AAA05 Feedback-ID: edm.icartizan.email:1:149:webpower List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Owner: Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.27 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Aug 2018 06:44:53 -0000 Logo=0AIf you are unable to see the message below, click here (http://edm.i= cartizan.email/x/?S7Y1.J9ra2hi_T.H1uJ.ka2RhbGxhQEAA65)=0A=0Adigital music c= hanger=0A=0AIt's the second half of 2018. What are you waiting for?=0AH= igh-performance Bluetooth Digital CD Changer with competitive price is in s= tock now.=0AIs these the right products for your market?=0AIf "YES", please= contact us directly by replying to this Email or through the contact infor= mation at the bottom.=0A=0Afactory CD changer port=0A=0AShenzhen Cartizan T= echnology Co., Ltd.=0AAddress: 6F, Boshen Building, Changxing Road, Longgan= g District, Shenzhen, China=0ATel: 0086 755 27888592=C2=A0 =C2=A0 =C2=A0 = =C2=A0E-mail: salesa@icartizan.com=C2=A0 =C2=A0 =C2=A0 =C2=A0=C2=A0Web: www= .icartizan.com=0AWhatsApp&Wechat: +86 15813713072=C2=A0 =C2=A0 =C2=A0 =C2= =A0 =C2=A0 =C2=A0Skype: happysophia8686=0A=0AUnsubscribe (http://edm.icarti= zan.email/x/plugin/?pName=3Dunsubscribe&MIDRID=3DS7Y1.J9ra2hi_T.H1uJ.ka= 2RhbGxhQEAA65&Z=3D833878464) if you no longer wish to receive these ema= ils.=0A From owner-freebsd-net@freebsd.org Wed Aug 1 06:45:45 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2D39A105288E for ; Wed, 1 Aug 2018 06:45:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id E062E83B14 for ; Wed, 1 Aug 2018 06:45:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id A1B091052887; Wed, 1 Aug 2018 06:45:44 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 908691052886 for ; Wed, 1 Aug 2018 06:45:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 54A7183B0F for ; Wed, 1 Aug 2018 06:45:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 83F7F18501 for ; Wed, 1 Aug 2018 06:45:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w716jh1t012044 for ; Wed, 1 Aug 2018 06:45:43 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w716jhwq012043 for net@FreeBSD.org; Wed, 1 Aug 2018 06:45:43 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 229384] Can't remove address from carp Date: Wed, 01 Aug 2018 06:45:40 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: egypcio@googlemail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Aug 2018 06:45:45 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D229384 --- Comment #4 from Vin=C3=ADcius Zavam --- (In reply to Kajetan Staszkiewicz from comment #3) hey, thanks for the information and more details on this one. appreciated! would you mind to share your setup a little bit more? like, rc.conf? you are running it on amd64/11.2-RELEASE, right? I would like to try reproducing th= is issue here. I see you are also using VLAN in your scenario, correct? btw, what kind of switch are you using in between the boxes and what NIC are you using over there? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Wed Aug 1 14:10:14 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 27CED105D928 for ; Wed, 1 Aug 2018 14:10:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id A568175A44 for ; Wed, 1 Aug 2018 14:10:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 6A0BB105D926; Wed, 1 Aug 2018 14:10:13 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2FF43105D924 for ; Wed, 1 Aug 2018 14:10:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C75AB75A41 for ; Wed, 1 Aug 2018 14:10:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 31EC81C1CC for ; Wed, 1 Aug 2018 14:10:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w71EAC5A021134 for ; Wed, 1 Aug 2018 14:10:12 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w71EACMq021133 for net@FreeBSD.org; Wed, 1 Aug 2018 14:10:12 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 229384] Can't remove address from carp Date: Wed, 01 Aug 2018 14:10:12 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: egypcio@googlemail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Aug 2018 14:10:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D229384 --- Comment #5 from Vin=C3=ADcius Zavam --- FreeBSD 11.2-RELEASE #0 r335510: Fri Jun 22 04:32:14 UTC 2018 root@releng2.nyi.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 1102000 110= 2000 root@freebsd-11-2-a:~ # ifconfig | grep carp carp: MASTER vhid 123 advbase 1 advskew 100 carp: MASTER vhid 234 advbase 1 advskew 100 root@freebsd-11-2-b:~ # ifconfig | grep carp carp: BACKUP vhid 123 advbase 1 advskew 200 carp: BACKUP vhid 234 advbase 1 advskew 200 # cat /boot/loader.conf=20 carp_load=3D"YES" # cat /etc/rc.conf create_args_vlan999=3D"vlan 999" dumpdev=3D"NO" hostname=3D"freebsd-11-2-a" ifconfig_vlan999_ipv6=3D"inet6 2001:db8:fb5d:999::1/64" ifconfig_vlan999_alias0=3D"inet6 2001:db8:fb5d:999::999/128 vhid 234 pass B= SDfree advskew 100" ifconfig_vtnet0=3D"DHCP" ifconfig_vtnet0_ipv6=3D"inet6 2001:db8:fb5d:86::1/64" ifconfig_vtnet0_alias0=3D"inet6 2001:db8:fb5d:86::86/128 vhid 123 pass free= BSD advskew 100" ipv6_activate_all_interfaces=3D"YES" sshd_enable=3D"YES" vlans_vtnet0=3D"vlan999" # cat /etc/rc.conf create_args_vlan999=3D"vlan 999" dumpdev=3D"NO" hostname=3D"freebsd-11-2-b" ifconfig_vlan999_ipv6=3D"inet6 2001:db8:fb5d:999::2/64" ifconfig_vlan999_alias0=3D"inet6 2001:db8:fb5d:999::999/128 vhid 234 pass B= SDfree advskew 200" ifconfig_vtnet0=3D"DHCP" ifconfig_vtnet0_ipv6=3D"inet6 2001:db8:fb5d:86::2/64" ifconfig_vtnet0_alias0=3D"inet6 2001:db8:fb5d:86::86/128 vhid 123 pass free= BSD advskew 200" ipv6_activate_all_interfaces=3D"YES" sshd_enable=3D"YES" vlans_vtnet0=3D"vlan999" # ifconfig vtnet0 inet6 2001:db8:fb5d:86::8686 prefixlen 128 vhid 123 # echo $? 0 # ifconfig vlan999 inet6 2001:db8:fb5d:999:0:9:9:9 prefixlen 128 vhid 234 a= lias # echo $? 0 # ifconfig vtnet0 inet6 2001:db8:fb5d:86::8686 prefixlen 128 vhid 123 delete # echo $? 0 # ifconfig vlan999 inet6 2001:db8:fb5d:999:0:9:9:9 prefixlen 128 vhid 234 -alias # echo $? 0 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Wed Aug 1 23:41:12 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 983F9106C75F for ; Wed, 1 Aug 2018 23:41:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 35B0D8D9BD for ; Wed, 1 Aug 2018 23:41:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id EE7FF106C75E; Wed, 1 Aug 2018 23:41:11 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DD402106C75D for ; Wed, 1 Aug 2018 23:41:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7E2458D9BA for ; Wed, 1 Aug 2018 23:41:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id CBFA121154 for ; Wed, 1 Aug 2018 23:41:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w71NfABd093691 for ; Wed, 1 Aug 2018 23:41:10 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w71NfAf8093690 for net@FreeBSD.org; Wed, 1 Aug 2018 23:41:10 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 131876] [socket] FD leak by receiving SCM_RIGHTS by recvmsg with small control message buffer Date: Wed, 01 Aug 2018 23:41:10 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 6.4-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: markj@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: markj@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Aug 2018 23:41:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D131876 --- Comment #7 from Mark Johnston --- https://reviews.freebsd.org/D16561 https://reviews.freebsd.org/D16562 --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Wed Aug 1 23:41:19 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 86194106C771 for ; Wed, 1 Aug 2018 23:41:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 238DD8D9DA for ; Wed, 1 Aug 2018 23:41:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id DC300106C770; Wed, 1 Aug 2018 23:41:18 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CAE96106C76F for ; Wed, 1 Aug 2018 23:41:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6C74E8D9D5 for ; Wed, 1 Aug 2018 23:41:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id BA87D2115F for ; Wed, 1 Aug 2018 23:41:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w71NfHQE094504 for ; Wed, 1 Aug 2018 23:41:17 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w71NfH7p094503 for net@FreeBSD.org; Wed, 1 Aug 2018 23:41:17 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 131876] [socket] FD leak by receiving SCM_RIGHTS by recvmsg with small control message buffer Date: Wed, 01 Aug 2018 23:41:18 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 6.4-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: markj@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: markj@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Aug 2018 23:41:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D131876 Mark Johnston changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Open |In Progress --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Thu Aug 2 02:40:45 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2BCCC1050510 for ; Thu, 2 Aug 2018 02:40:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id BD02C93A59 for ; Thu, 2 Aug 2018 02:40:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 81E13105050D; Thu, 2 Aug 2018 02:40:44 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 70978105050C for ; Thu, 2 Aug 2018 02:40:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1351F93A53 for ; Thu, 2 Aug 2018 02:40:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 6B6CB22A72 for ; Thu, 2 Aug 2018 02:40:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w722ehiu074817 for ; Thu, 2 Aug 2018 02:40:43 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w722ehqe074816 for net@FreeBSD.org; Thu, 2 Aug 2018 02:40:43 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 230235] ixl: hangs when adding it to a bridge or enabling iovctl VFs (SR-IOV) Date: Thu, 02 Aug 2018 02:40:43 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.2-RELEASE X-Bugzilla-Keywords: IntelNetworking X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to keywords cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Aug 2018 02:40:45 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D230235 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|bugs@FreeBSD.org |net@FreeBSD.org Keywords| |IntelNetworking CC| |sbruno@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Thu Aug 2 02:59:49 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 73D2A1051402 for ; Thu, 2 Aug 2018 02:59:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 0FB0C94B9C for ; Thu, 2 Aug 2018 02:59:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id C8AE01051401; Thu, 2 Aug 2018 02:59:48 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B76191051400 for ; Thu, 2 Aug 2018 02:59:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 59CAC94B99 for ; Thu, 2 Aug 2018 02:59:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 89B6422D4F for ; Thu, 2 Aug 2018 02:59:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w722xl1h010923 for ; Thu, 2 Aug 2018 02:59:47 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w722xlsR010922 for net@FreeBSD.org; Thu, 2 Aug 2018 02:59:47 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 230128] can not ping vip when using carp Date: Thu, 02 Aug 2018 02:59:47 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: component assigned_to short_desc product Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Aug 2018 02:59:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D230128 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Component|Bug Tracker |bin Assignee|bugmeister@FreeBSD.org |net@FreeBSD.org Summary|can not ping vip |can not ping vip when using | |carp Product|Services |Base System --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Thu Aug 2 03:02:53 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3AA3A1051C42 for ; Thu, 2 Aug 2018 03:02:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 9FEDB9558F for ; Thu, 2 Aug 2018 03:02:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 6519A1051C3B; Thu, 2 Aug 2018 03:02:52 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5412A1051C36 for ; Thu, 2 Aug 2018 03:02:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 179C495586 for ; Thu, 2 Aug 2018 03:02:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 6514622EFD for ; Thu, 2 Aug 2018 03:02:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w7232pan049538 for ; Thu, 2 Aug 2018 03:02:51 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w7232pJT049537 for net@FreeBSD.org; Thu, 2 Aug 2018 03:02:51 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 230077] can not ping carp virtual ip Date: Thu, 02 Aug 2018 03:02:51 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Services X-Bugzilla-Component: Mailing Lists X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Aug 2018 03:02:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D230077 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|bugs@FreeBSD.org |net@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Thu Aug 2 03:06:45 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A738D1052252 for ; Thu, 2 Aug 2018 03:06:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 8320A959A5 for ; Thu, 2 Aug 2018 03:06:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id CD8D11052250; Thu, 2 Aug 2018 03:06:43 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 57387105224E for ; Thu, 2 Aug 2018 03:06:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B025C9599E for ; Thu, 2 Aug 2018 03:06:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 0621E22F10 for ; Thu, 2 Aug 2018 03:06:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w7236f5D054088 for ; Thu, 2 Aug 2018 03:06:41 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w7236fZ8054087 for net@FreeBSD.org; Thu, 2 Aug 2018 03:06:41 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 230040] [lagg] [cxgbe] [vlan] no carrier on one laggport after boot Date: Thu, 02 Aug 2018 03:06:42 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 11.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Aug 2018 03:06:45 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D230040 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|bugs@FreeBSD.org |net@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Thu Aug 2 03:53:32 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D2CEA1054BC5 for ; Thu, 2 Aug 2018 03:53:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 6FDB17010D for ; Thu, 2 Aug 2018 03:53:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 350341054BC2; Thu, 2 Aug 2018 03:53:32 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 23C831054BC1 for ; Thu, 2 Aug 2018 03:53:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B8B9670109 for ; Thu, 2 Aug 2018 03:53:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 12FDD2367D for ; Thu, 2 Aug 2018 03:53:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w723rUd1004737 for ; Thu, 2 Aug 2018 03:53:30 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w723rU9G004736 for net@FreeBSD.org; Thu, 2 Aug 2018 03:53:30 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 230242] SCTP uses deprecated IPv6 addresses Date: Thu, 02 Aug 2018 03:53:31 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Aug 2018 03:53:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D230242 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|bugs@FreeBSD.org |net@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Thu Aug 2 04:44:22 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3F36E1056A4B for ; Thu, 2 Aug 2018 04:44:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id D00B672274 for ; Thu, 2 Aug 2018 04:44:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 9527E1056A4A; Thu, 2 Aug 2018 04:44:21 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 83D601056A49 for ; Thu, 2 Aug 2018 04:44:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 24D0872272 for ; Thu, 2 Aug 2018 04:44:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 73C6923D87 for ; Thu, 2 Aug 2018 04:44:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w724iKDw035808 for ; Thu, 2 Aug 2018 04:44:20 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w724iKel035807 for net@FreeBSD.org; Thu, 2 Aug 2018 04:44:20 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 230040] [lagg] [cxgbe] [vlan] no carrier on one laggport after boot Date: Thu, 02 Aug 2018 04:44:20 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 11.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: np@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: np@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Aug 2018 04:44:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D230040 Navdeep Parhar changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |np@FreeBSD.org Assignee|net@FreeBSD.org |np@FreeBSD.org --- Comment #1 from Navdeep Parhar --- Can you please provide the output of these commands after a clean reboot, when cxl0 is administratively UP but doesn't link up: # dmesg | egrep 't5nex|cxl' # ifconfig -mvvv # sysctl -n dev.t5nex.0.devlog And you don't need "media 10Gbase-T mediaopt full-duplex rxcsum txcsum" in your rc.conf, just ifconfig_cxl=3D"up" will do. Can you try that? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Thu Aug 2 09:29:54 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 93D0B1060B7D for ; Thu, 2 Aug 2018 09:29:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 2FCAC80119 for ; Thu, 2 Aug 2018 09:29:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id E94191060B7C; Thu, 2 Aug 2018 09:29:53 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D80501060B7B for ; Thu, 2 Aug 2018 09:29:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6C68980118 for ; Thu, 2 Aug 2018 09:29:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id BA39B264C7 for ; Thu, 2 Aug 2018 09:29:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w729Tqrc026566 for ; Thu, 2 Aug 2018 09:29:52 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w729TqSV026565 for net@FreeBSD.org; Thu, 2 Aug 2018 09:29:52 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 230242] SCTP uses deprecated IPv6 addresses Date: Thu, 02 Aug 2018 09:29:52 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: tuexen@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: tuexen@freebsd.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Aug 2018 09:29:54 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D230242 Michael Tuexen changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|net@FreeBSD.org |tuexen@freebsd.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Thu Aug 2 10:36:59 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0C1A61062709 for ; Thu, 2 Aug 2018 10:36:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 9D53D8232F for ; Thu, 2 Aug 2018 10:36:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 5ECB91062708; Thu, 2 Aug 2018 10:36:58 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4D70F1062707 for ; Thu, 2 Aug 2018 10:36:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CD2328232C for ; Thu, 2 Aug 2018 10:36:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 2419526E78 for ; Thu, 2 Aug 2018 10:36:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w72AavS7084840 for ; Thu, 2 Aug 2018 10:36:57 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w72Aavnm084839 for net@FreeBSD.org; Thu, 2 Aug 2018 10:36:57 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 228334] lte 4g network problems Date: Thu, 02 Aug 2018 10:36:57 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: shitman71@hotmail.com X-Bugzilla-Status: Closed X-Bugzilla-Resolution: Not A Bug X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_severity Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Aug 2018 10:36:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D228334 SF changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|Affects Only Me |Affects Some People --- Comment #10 from SF --- Change nameserver to e.x. opendns, stable without any issue. /etc/resolv.conf nameserver 208.67.222.222 options timeout:2 options attempts:100 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Thu Aug 2 16:36:55 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 399F9106C04B for ; Thu, 2 Aug 2018 16:36:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id CB6FD8FFA3 for ; Thu, 2 Aug 2018 16:36:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 901D5106C04A; Thu, 2 Aug 2018 16:36:54 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7EA17106C049 for ; Thu, 2 Aug 2018 16:36:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 201CD8FFA2 for ; Thu, 2 Aug 2018 16:36:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 785872A010 for ; Thu, 2 Aug 2018 16:36:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w72Gar0E057927 for ; Thu, 2 Aug 2018 16:36:53 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w72GarK7057924 for net@FreeBSD.org; Thu, 2 Aug 2018 16:36:53 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 230040] [lagg] [cxgbe] [vlan] no carrier on one laggport after boot Date: Thu, 02 Aug 2018 16:36:53 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 11.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: rgrimes@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: np@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Aug 2018 16:36:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D230040 Rodney W. Grimes changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |net@FreeBSD.org --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Thu Aug 2 17:14:15 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 40E19106CED1 for ; Thu, 2 Aug 2018 17:14:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id D247B715EC for ; Thu, 2 Aug 2018 17:14:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 935CA106CED0; Thu, 2 Aug 2018 17:14:14 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 81E77106CECF for ; Thu, 2 Aug 2018 17:14:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1E95C715EB for ; Thu, 2 Aug 2018 17:14:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 53E972A58B for ; Thu, 2 Aug 2018 17:14:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w72HED21056525 for ; Thu, 2 Aug 2018 17:14:13 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w72HEDwl056524 for net@FreeBSD.org; Thu, 2 Aug 2018 17:14:13 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 230040] [lagg] [cxgbe] [vlan] no carrier on one laggport after boot Date: Thu, 02 Aug 2018 17:14:13 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 11.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: np@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: np@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Aug 2018 17:14:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D230040 --- Comment #6 from Navdeep Parhar --- Hi Daniel, The information that you provided looks normal, but I think it's from a wor= king setup after you removed media/mediaopt from rc.conf so it's expected to be normal. Is it ok to close this bug based on the latest update from you? Regards, Navdeep --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Thu Aug 2 17:20:46 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F0091106D11F for ; Thu, 2 Aug 2018 17:20:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 8C4F9719AB for ; Thu, 2 Aug 2018 17:20:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 4E1DE106D11E; Thu, 2 Aug 2018 17:20:45 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3CC82106D11D for ; Thu, 2 Aug 2018 17:20:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D238D719A3 for ; Thu, 2 Aug 2018 17:20:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 3D2F32A59A for ; Thu, 2 Aug 2018 17:20:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w72HKipQ063298 for ; Thu, 2 Aug 2018 17:20:44 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w72HKiQI063297 for net@FreeBSD.org; Thu, 2 Aug 2018 17:20:44 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 230040] [lagg] [cxgbe] [vlan] no carrier on one laggport after boot Date: Thu, 02 Aug 2018 17:20:44 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 11.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: dd@goboomtown.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: np@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Aug 2018 17:20:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D230040 --- Comment #7 from Daniel Duerr --- Hey Navdeep, Thanks again for the assistance here. Not setting the media options defini= tely fixed the issue, and based on what you told me I should not have been explicitly setting those things anyways. So I agree that there is not a bug here. My only suggestion might be to add a note to the `man` page for the driver = to help others avoid what I experienced (e.g. suggest that people do not set a= ll the options or something). But this is just a suggestion. :) While I've got you, and based on your feedback to me to not set all the explicit options, I am curious if you feel the same way about the switch si= de of my config? My switch config presently is explicit about speed, e.g.: interface port1.0.4 description NFS-0 mru 9216 speed 10000 duplex full switchport mode trunk switchport trunk allowed vlan add 6-8,20-23,30-33 channel-group 3 mode active lacp timeout short As it currently stands, everything is working well with the switch and serv= er config as-is. Best, Daniel --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Thu Aug 2 19:31:18 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7E119104D4B7 for ; Thu, 2 Aug 2018 19:31:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 1ADC5781C9 for ; Thu, 2 Aug 2018 19:31:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id D367B104D4B4; Thu, 2 Aug 2018 19:31:17 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C23F1104D4B3 for ; Thu, 2 Aug 2018 19:31:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 64259781C4 for ; Thu, 2 Aug 2018 19:31:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id B1EB52B7BB for ; Thu, 2 Aug 2018 19:31:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w72JVGLu011451 for ; Thu, 2 Aug 2018 19:31:16 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w72JVGM9011440 for net@FreeBSD.org; Thu, 2 Aug 2018 19:31:16 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 230040] [lagg] [cxgbe] [vlan] no carrier on one laggport after boot Date: Thu, 02 Aug 2018 19:31:16 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 11.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: np@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: Works As Intended X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: np@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Aug 2018 19:31:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D230040 Navdeep Parhar changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |Works As Intended Status|New |Closed --- Comment #8 from Navdeep Parhar --- (In reply to Daniel Duerr from comment #7) In general, link settings like speed, duplex, flow control, and FEC should = be left at their defaults unless there is a problem establishing link with the default values. This applies to both the NIC and the switch. cxgbe(4) did not have support for media change all these years and it was basically ignoring your media/mediaopt requests, but was still able to form= a link. I added support for the media change ioctls very recently (just befo= re 11.2). Now the driver pays attention to media/mediaopt and look how "helpf= ul" that turned out to be :-( Link is established with default settings so I'll close this now. --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Fri Aug 3 01:37:57 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F3556105810B for ; Fri, 3 Aug 2018 01:37:56 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 89C8489ECE for ; Fri, 3 Aug 2018 01:37:56 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 4C0211058108; Fri, 3 Aug 2018 01:37:56 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3AFCD1058107 for ; Fri, 3 Aug 2018 01:37:56 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D06D289EC4 for ; Fri, 3 Aug 2018 01:37:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id E2D622EB29 for ; Fri, 3 Aug 2018 01:37:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w731bsx5068110 for ; Fri, 3 Aug 2018 01:37:54 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w731bsWH068109 for net@FreeBSD.org; Fri, 3 Aug 2018 01:37:54 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 176419] socketpair support for LOCAL_PEERCRED Date: Fri, 03 Aug 2018 01:37:54 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: asomers@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: asomers@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? mfc-stable11? X-Bugzilla-Changed-Fields: bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Aug 2018 01:37:57 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D176419 Alan Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Open |In Progress --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Fri Aug 3 01:37:56 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A6FAE1058109 for ; Fri, 3 Aug 2018 01:37:56 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 43E8B89ECB for ; Fri, 3 Aug 2018 01:37:56 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 095F31058106; Fri, 3 Aug 2018 01:37:56 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EC7071058105 for ; Fri, 3 Aug 2018 01:37:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8E7AC89EC1 for ; Fri, 3 Aug 2018 01:37:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id D6E252EB28 for ; Fri, 3 Aug 2018 01:37:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w731bsX4068106 for ; Fri, 3 Aug 2018 01:37:54 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w731bsAf068105 for net@FreeBSD.org; Fri, 3 Aug 2018 01:37:54 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 176419] socketpair support for LOCAL_PEERCRED Date: Fri, 03 Aug 2018 01:37:54 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: asomers@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? mfc-stable11? X-Bugzilla-Changed-Fields: bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Aug 2018 01:37:56 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D176419 Alan Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Open |In Progress commit-hook@freebsd.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|In Progress |Open --- Comment #5 from commit-hook@freebsd.org --- A commit references this bug: Author: asomers Date: Fri Aug 3 01:37:01 UTC 2018 New revision: 337222 URL: https://svnweb.freebsd.org/changeset/base/337222 Log: Fix LOCAL_PEERCRED with socketpair(2) Enable the LOCAL_PEERCRED socket option for unix domain stream sockets created with socketpair(2). Previously, it only worked with unix domain stream sockets created with socket(2)/listen(2)/connect(2)/accept(2). PR: 176419 Reported by: Nicholas Wilson MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D16350 Changes: head/sys/kern/uipc_syscalls.c head/sys/kern/uipc_usrreq.c head/sys/sys/unpcb.h head/tests/sys/kern/Makefile head/tests/sys/kern/unix_socketpair_test.c --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Fri Aug 3 01:38:15 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3AD7D1058158 for ; Fri, 3 Aug 2018 01:38:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id E9B6789F23 for ; Fri, 3 Aug 2018 01:38:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id AF14F1058153; Fri, 3 Aug 2018 01:38:14 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9DEBC1058152 for ; Fri, 3 Aug 2018 01:38:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3FC1589F1D for ; Fri, 3 Aug 2018 01:38:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 8E39B2EB31 for ; Fri, 3 Aug 2018 01:38:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w731cDDJ068398 for ; Fri, 3 Aug 2018 01:38:13 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w731cDQn068397 for net@FreeBSD.org; Fri, 3 Aug 2018 01:38:13 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 176419] socketpair support for LOCAL_PEERCRED Date: Fri, 03 Aug 2018 01:38:13 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: asomers@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: asomers@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? mfc-stable11? X-Bugzilla-Changed-Fields: bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Aug 2018 01:38:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D176419 Alan Somers changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Open |In Progress --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Fri Aug 3 14:19:59 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BBE0B106B381 for ; Fri, 3 Aug 2018 14:19:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 42EBB846D5 for ; Fri, 3 Aug 2018 14:19:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 04F42106B367; Fri, 3 Aug 2018 14:19:59 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E7C4F106B366 for ; Fri, 3 Aug 2018 14:19:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 875D4846CD for ; Fri, 3 Aug 2018 14:19:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id BD116D739 for ; Fri, 3 Aug 2018 14:19:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w73EJvXt064958 for ; Fri, 3 Aug 2018 14:19:57 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w73EJvUM064957 for net@FreeBSD.org; Fri, 3 Aug 2018 14:19:57 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 215933] SCM_RIGHTS messages being lost, socket data being lost as well (with example code) Date: Fri, 03 Aug 2018 14:19:56 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.3-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: markj@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: DUPLICATE X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc resolution bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Aug 2018 14:19:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D215933 Mark Johnston changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |markj@FreeBSD.org Resolution|--- |DUPLICATE Status|New |Closed --- Comment #3 from Mark Johnston --- *** This bug has been marked as a duplicate of bug 181741 *** --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Fri Aug 3 14:20:14 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0C299106B3C6 for ; Fri, 3 Aug 2018 14:20:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 5C74E8484D for ; Fri, 3 Aug 2018 14:20:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 79191106B3C1; Fri, 3 Aug 2018 14:20:08 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 67B71106B3C0 for ; Fri, 3 Aug 2018 14:20:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C08C4847E4 for ; Fri, 3 Aug 2018 14:20:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 6F846D74C for ; Fri, 3 Aug 2018 14:20:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w73EK4IH065236 for ; Fri, 3 Aug 2018 14:20:04 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w73EK4jK065234 for net@FreeBSD.org; Fri, 3 Aug 2018 14:20:04 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 181741] Packet loss when 'control' messages are present with large data (sendmsg(2)) Date: Fri, 03 Aug 2018 14:19:56 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: markj@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: markj@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? mfc-stable11? X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Aug 2018 14:20:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D181741 Mark Johnston changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ian@niw.com.au --- Comment #20 from Mark Johnston --- *** Bug 215933 has been marked as a duplicate of this bug. *** --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Fri Aug 3 15:36:03 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B35DB106CF66 for ; Fri, 3 Aug 2018 15:36:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 5076888D79 for ; Fri, 3 Aug 2018 15:36:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 14AA7106CF65; Fri, 3 Aug 2018 15:36:03 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E6E73106CF64 for ; Fri, 3 Aug 2018 15:36:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8836B88D75 for ; Fri, 3 Aug 2018 15:36:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id D645AE27C for ; Fri, 3 Aug 2018 15:36:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w73Fa1Hn087495 for ; Fri, 3 Aug 2018 15:36:01 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w73Fa1V6087494 for net@FreeBSD.org; Fri, 3 Aug 2018 15:36:01 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 229384] Can't remove address from carp Date: Fri, 03 Aug 2018 15:36:02 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: vegeta@tuxpowered.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Aug 2018 15:36:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D229384 --- Comment #6 from Kajetan Staszkiewicz --- I don't use rc system to configure carps at all. They are done dynamically whenever required by new configuraion from some external system. I'm not ru= nnig a clean 11.2-RELEASE. There are some custom patches for pf and backports fr= om HEAD, please check here: https://github.com/innogames/freebsd/commits/iglb/11.2/SomethingCompletelyD= ifferent I wrote this script in an attempt to provide carp misconfiguration: ---------- 8< ---------- #!/bin/sh IFACE=3Dinternal4027 VHID=3D27 ADDR_BASE=3D'2a00:f00:42:0000' if [ -z "$1" ]; then for SUBNET in $(seq 10); do SUBNET=3D$(printf '%04x' $SUBNET) sh $(dirname $0)/break_carps.sh $SUBNET & sh $(dirname $0)/break_carps.sh $SUBNET & done else echo "Spawned child for subnet $1" for i in $(seq 10); do ADDR_LAST=3D$(printf '%04x' $i) ADDR=3D"$ADDR_BASE:$1::$ADDR_LAST" ifconfig $IFACE inet6 $ADDR/128 vhid $VHID alias sleep 0.5 ifconfig $IFACE inet6 $ADDR/128 vhid $VHID -alias done fi wait ---------- >8 ---------- Even better than misconfiguration, I got this nice panic: Fatal trap 12: page fault while in kernel mode #13 0xffffffff8159a8d7 in carp_hmac_prepare (sc=3D0xfffff80008599000) at /usr/home/kajetan.staszkiewicz/freebsd.git/sys/netinet/ip_carp.c:384 #14 0xffffffff8159a531 in carp_ioctl (ifr=3D, cmd=3D, td=3D) at /usr/home/kajetan.staszkiewicz/freebsd.git/sys/netinet/ip_carp.c:1698 #15 0xffffffff8072732f in ifioctl (so=3D0xfffff80011f61000, cmd=3D322334974= 9, data=3D0xfffffe0666e5e9d0 "internal4027", td=3D0xfffff80102a8b620) at /usr/home/kajetan.staszkiewicz/freebsd.git/sys/net/if.c:3041 #16 0xffffffff8069736d in kern_ioctl (td=3D0xfffff80102a8b620, fd=3D3, com=3D3223349749, data=3D) at file.h:323 Then I compiled kernel with INVARIANTS and INVARIANT_SUPPORT. I tried somet= hing even less ugly than the script above, that is I just added same IPv6 carp address twice (one which is *not* in any network available on iface). This resulted in: panic: carp_attach: ifa 0xfffff80095390000 attached #11 0xffffffff815b3675 in carp_attach (ifa=3D0xfffff80095390000, vhid=3D27) at /usr/home/kajetan.staszkiewicz/freebsd.git/sys/netinet/ip_carp.c:1809 #12 0xffffffff807e8ff2 in in6_control (so=3D, cmd=3D, data=3D, ifp=3D, td=3D) at /usr/home/kajetan.staszkiewicz/freebsd.git/sys/netinet6/in6.c:572 #13 0xffffffff80713b19 in ifioctl (so=3D0xfffff80011eeb360, cmd=3D215642345= 1, data=3D, td=3D0xfffff80095861620) at /usr/home/kajetan.staszkiewicz/freebsd.git/sys/net/if.c:3071 #14 0xffffffff80688729 in kern_ioctl (td=3D0xfffff80095861620, fd=3D, com=3D, data=3D) at file.h:323 While browsing kernel source on Github I've come accross 5bd3158a3b7184c65d3e1b6d96faf0dd720eb6ac (Which is in master branch but not= in 11.2-RELEASE). This indeed solves issues on adding same CARP address twice,= but the script above still kills system: panic: Bad link elm 0xfffff800a44c3c00 prev->next !=3D elm #11 0xffffffff807eb33d in in6_unlink_ifa (ia=3D, ifp=3D) at fnv_hash.h:29 #12 0xffffffff807e8b2d in in6_control (so=3D, cmd=3D2166384921, data=3D, ifp=3D, td=3D) at /usr/home/kajetan.staszkiewicz/freebsd.git/sys/netinet6/in6.c:701 #13 0xffffffff80713b19 in ifioctl (so=3D0xfffff80011ee6000, cmd=3D216638492= 1, data=3D, td=3D0xfffff8002f61b620) at /usr/home/kajetan.staszkiewicz/freebsd.git/sys/net/if.c:3071 #14 0xffffffff80688729 in kern_ioctl (td=3D0xfffff8002f61b620, fd=3D, com=3D, data=3D) at file.h:323 I'll put kernel with 5bd3158a3b7184c65d3e1b6d96faf0dd720eb6ac on production= and see if that solves issue reported in this ticket. But obviously there are m= ore issues deeper. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Fri Aug 3 16:29:33 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7D7E3106E3CA for ; Fri, 3 Aug 2018 16:29:33 +0000 (UTC) (envelope-from sergey@akhmatov.ru) Received: from dutch.chaklun.ru (dutch.chaklun.ru [IPv6:2a01:7c8:aab0:135::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 13E058B0C5 for ; Fri, 3 Aug 2018 16:29:32 +0000 (UTC) (envelope-from sergey@akhmatov.ru) Received: from [212.65.69.61] (helo=[127.0.0.1]) by dutch.chaklun.ru with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.91 (FreeBSD)) (envelope-from ) id 1flcxG-000Axf-Dq for freebsd-net@freebsd.org; Fri, 03 Aug 2018 19:29:30 +0300 From: Sergey Akhmatov Subject: Multicast group 224.0.0.1 membership drops when adding interface alias twice To: freebsd-net Message-ID: <9b2c592b-a93f-f2d7-c586-c927279f246e@akhmatov.ru> Date: Fri, 3 Aug 2018 19:29:28 +0300 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:60.0) Gecko/20100101 Thunderbird/60.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Aug 2018 16:29:33 -0000 Hello, I've hit some strange behavior and not sure if its a bug and where it is, kernel or ifconfig. Tested on 11.1-REALESE and 11-STABLE When I add first IP to interface it automatically joins multicast group 224.0.0.1 (All hosts), for example: # ifconfig lo1 create # ifconfig lo1 inet 127.1.0.1/24 # ifconfig lo1 lo1: flags=8049 metric 0 mtu 16384 options=680003         inet 127.1.0.1 netmask 0xffffff00         nd6 options=29         groups: lo # ifmcstat -i lo1 lo1:         inet 127.1.0.1         igmpv3 rv 2 qi 125 qri 10 uri 3                 group 224.0.0.1 mode exclude When I run ifconfig with the same IP and "alias" keyword, nothing changes on the interface, which is expectable. But interface leave multicast group: # ifconfig lo1 lo1: flags=8049 metric 0 mtu 16384 options=680003         inet 127.1.0.1 netmask 0xffffff00         nd6 options=29         groups: lo # ifmcstat -i lo1 The same works for ethernet interfaces, I chose lo1 for example as the easiest way to reproduce without breaking things. A few words why am I doing this: It's not me, It's /etc/network.subr and /sbin/dhclient-script always add IP to interface with "alias" keyword whether it's the first IP or not. I use reroot frunction (reboot -r) for diskless network-bootable systems. They boot minimal memory-disk root via tftp, obtain IP DHCP, create and populate another memory disk with full-system and reroot into it. Such reboot doesn't change kernel state, meaning interfaces are already configured, and when /etc/rc.d/netif  hits, it adds IPs which are already there wiping default 224.0.0.1 multicast membership, which breaks some site-specific things for me. I've found workaround, just wiping IPs from interfaces before reroot, but the whole situation took some time to investigate and looks like a bug to me. My skills are not enough to find out if it's ifconfig or kernel internals. Any thoughts if it deserves bug-report? From owner-freebsd-net@freebsd.org Fri Aug 3 22:25:20 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 39A4B1053504 for ; Fri, 3 Aug 2018 22:25:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id CA612783A3 for ; Fri, 3 Aug 2018 22:25:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 8F9031053503; Fri, 3 Aug 2018 22:25:19 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7E5031053501 for ; Fri, 3 Aug 2018 22:25:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1FC7C7839D for ; Fri, 3 Aug 2018 22:25:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 6DFBF11CE9 for ; Fri, 3 Aug 2018 22:25:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w73MPI23046454 for ; Fri, 3 Aug 2018 22:25:18 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w73MPIlO046453 for net@FreeBSD.org; Fri, 3 Aug 2018 22:25:18 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 193246] Bug in IPv6 multicast join(), uncovered by Jenkins Date: Fri, 03 Aug 2018 22:25:15 +0000 X-Bugzilla-Reason: CC AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: 1983-01-06@gmx.net X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Aug 2018 22:25:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D193246 Michael Osipov <1983-01-06@gmx.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |1983-01-06@gmx.net --- Comment #15 from Michael Osipov <1983-01-06@gmx.net> --- Any progress here? I can see Tomcat test failures with multicast. --=20 You are receiving this mail because: You are on the CC list for the bug. You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Fri Aug 3 23:30:27 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D4A0A1054D0C for ; Fri, 3 Aug 2018 23:30:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 720F67A7EE for ; Fri, 3 Aug 2018 23:30:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 372E61054D0A; Fri, 3 Aug 2018 23:30:27 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 25E331054D08 for ; Fri, 3 Aug 2018 23:30:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BB9AC7A7E8 for ; Fri, 3 Aug 2018 23:30:26 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 0F5B312539 for ; Fri, 3 Aug 2018 23:30:26 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w73NUPSk091768 for ; Fri, 3 Aug 2018 23:30:25 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w73NUP5B091765 for net@FreeBSD.org; Fri, 3 Aug 2018 23:30:25 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 193246] Bug in IPv6 multicast join(), uncovered by Jenkins Date: Fri, 03 Aug 2018 23:30:25 +0000 X-Bugzilla-Reason: CC AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: jhb@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Aug 2018 23:30:28 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D193246 --- Comment #16 from John Baldwin --- I don't think anyone is actively working on this. bms@ is no longer workin= g on FreeBSD currently, so it will require finding someone with interest in this area (and multicast is kind of an unusual case relative to most network sta= ck use cases). --=20 You are receiving this mail because: You are on the CC list for the bug. You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Sat Aug 4 08:12:13 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EAF39106214C for ; Sat, 4 Aug 2018 08:12:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 87AE28AEAA for ; Sat, 4 Aug 2018 08:12:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 497F51062143; Sat, 4 Aug 2018 08:12:12 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3837A1062142 for ; Sat, 4 Aug 2018 08:12:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CE0FD8AEA5 for ; Sat, 4 Aug 2018 08:12:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 289BF16ED5 for ; Sat, 4 Aug 2018 08:12:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w748CBe1052264 for ; Sat, 4 Aug 2018 08:12:11 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w748CBne052261 for net@FreeBSD.org; Sat, 4 Aug 2018 08:12:11 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 193246] Bug in IPv6 multicast join(), uncovered by Jenkins Date: Sat, 04 Aug 2018 08:12:06 +0000 X-Bugzilla-Reason: CC AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: 1983-01-06@gmx.net X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Aug 2018 08:12:13 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D193246 --- Comment #17 from Michael Osipov <1983-01-06@gmx.net> --- (In reply to John Baldwin from comment #16) Unfortunately, I can't. This is out of my C knowledge and as far as I understand this issue, FreeBSD cannot use IPv6-mapped IPv4 addresses. --=20 You are receiving this mail because: You are on the CC list for the bug. You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Sat Aug 4 12:17:34 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 95BE91068D02 for ; Sat, 4 Aug 2018 12:17:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 32C50729EE for ; Sat, 4 Aug 2018 12:17:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id EC7471068CED; Sat, 4 Aug 2018 12:17:33 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DB5C61068CEC for ; Sat, 4 Aug 2018 12:17:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7D8F5729E6 for ; Sat, 4 Aug 2018 12:17:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id B279D19134 for ; Sat, 4 Aug 2018 12:17:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w74CHWkM056749 for ; Sat, 4 Aug 2018 12:17:32 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w74CHWIJ056737 for net@FreeBSD.org; Sat, 4 Aug 2018 12:17:32 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 193246] Bug in IPv6 multicast join(), uncovered by Jenkins Date: Sat, 04 Aug 2018 12:17:31 +0000 X-Bugzilla-Reason: AssignedTo CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: jhb@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Aug 2018 12:17:34 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D193246 --- Comment #18 from John Baldwin --- FreeBSD can use IPv6-mapped IPv4 addresses just fine for unicast traffic. = What this bug is about is joining IPv4-addressed multicast groups on an IPv6 soc= ket. --=20 You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Sat Aug 4 12:36:35 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 119B91069BED for ; Sat, 4 Aug 2018 12:36:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id A25F473A09 for ; Sat, 4 Aug 2018 12:36:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 67C191069BEC; Sat, 4 Aug 2018 12:36:34 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 569151069BEB for ; Sat, 4 Aug 2018 12:36:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ED0B873A03 for ; Sat, 4 Aug 2018 12:36:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 5105619408 for ; Sat, 4 Aug 2018 12:36:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w74CaXba066162 for ; Sat, 4 Aug 2018 12:36:33 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w74CaXXQ066157 for net@FreeBSD.org; Sat, 4 Aug 2018 12:36:33 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 193246] Bug in IPv6 multicast join(), uncovered by Jenkins Date: Sat, 04 Aug 2018 12:36:32 +0000 X-Bugzilla-Reason: CC AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: tuexen@freebsd.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Aug 2018 12:36:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D193246 Michael Tuexen changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tuexen@freebsd.org --- Comment #19 from Michael Tuexen --- I think the question is not only about joining an IPv4 multicast group on an IPv6 socket, but about whether mapped addresses are supported for multicast= in general... That might make the fix more complex than just fixing the join operation. --=20 You are receiving this mail because: You are on the CC list for the bug. You are the assignee for the bug.= From owner-freebsd-net@freebsd.org Sat Aug 4 16:26:12 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6F08710700F6 for ; Sat, 4 Aug 2018 16:26:12 +0000 (UTC) (envelope-from bounce+6260a1.45c03-freebsd-net=freebsd.org@iemailsms.com) Received: from mail-s66.mailgun.info (mail-s66.mailgun.info [184.173.153.194]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 14BA77E85B for ; Sat, 4 Aug 2018 16:26:11 +0000 (UTC) (envelope-from bounce+6260a1.45c03-freebsd-net=freebsd.org@iemailsms.com) DKIM-Signature: a=rsa-sha256; v=1; c=relaxed/relaxed; d=iemailsms.com; q=dns/txt; s=krs; t=1533399971; h=Content-Type: MIME-Version: Subject: Message-ID: To: Reply-To: From: Date: Sender; bh=Kgi6bUkQcBUhm9BtkGIcKvrz58I4vCl0TiiNKbRormI=; b=I/MRwhmU86erWIeyDMo8jphN9Pi9XuHriz7DJFr8un5RdQQHnwtq5WbHcJWlVuyaFZja8kzB cn3/ffQ0o9RNkSYo3fnljkZhVZ1Y2JnNqPxA/g20lsQXtjJLL9wmChprlL1GtCiXlyK6PhHE 5GYikM/jiahJJUmWZtzOrNnaHgk= X-Mailgun-Sending-Ip: 184.173.153.194 X-Mailgun-Sid: WyIyYzljOCIsICJmcmVlYnNkLW5ldEBmcmVlYnNkLm9yZyIsICI0NWMwMyJd Sender: chi@iemailsms.com Received: from localhost (Unknown [1.54.8.103]) by mxa.mailgun.org with ESMTP id 5b65d270.7f99661df780-smtp-out-n02; Sat, 04 Aug 2018 16:21:04 -0000 (UTC) Date: Sat, 4 Aug 2018 23:20:58 +0700 (GMT+07:00) From: iMarketing Center Reply-To: chi@iemailsms.com To: freebsd-net@freebsd.org Message-ID: <53770636.17.1533399658806.JavaMail.root@localhost> Subject: Super email & sms marketing app you should get to gain more customers MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.27 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Aug 2018 16:26:12 -0000 From owner-freebsd-net@freebsd.org Sat Aug 4 20:27:21 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0C4C51051F25 for ; Sat, 4 Aug 2018 20:27:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 8858D86C37 for ; Sat, 4 Aug 2018 20:27:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 4C9091051F21; Sat, 4 Aug 2018 20:27:20 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3B7A51051F20 for ; Sat, 4 Aug 2018 20:27:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D132A86C2F for ; Sat, 4 Aug 2018 20:27:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id 10E8F1D53E for ; Sat, 4 Aug 2018 20:27:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w74KRIBE097832 for ; Sat, 4 Aug 2018 20:27:18 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w74KRIYV097831 for net@FreeBSD.org; Sat, 4 Aug 2018 20:27:18 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 181741] Packet loss when 'control' messages are present with large data (sendmsg(2)) Date: Sat, 04 Aug 2018 20:27:18 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: markj@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? mfc-stable11? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Aug 2018 20:27:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D181741 --- Comment #21 from commit-hook@freebsd.org --- A commit references this bug: Author: markj Date: Sat Aug 4 20:26:55 UTC 2018 New revision: 337328 URL: https://svnweb.freebsd.org/changeset/base/337328 Log: Don't check rcv sockbuf limits when sending on a unix stream socket. sosend_generic() performs an initial comparison of the amount of data (including control messages) to be transmitted with the send buffer size. When transmitting on a unix socket, we then compare the amount of data being sent with the amount of space in the receive buffer size; if insufficient space is available, sbappendcontrol() returns an error and the data is lost. This is easily triggered by sending control messages together with an amount of data roughly equal to the send buffer size, since the control message size may change in uipc_send() as file descriptors are internalized. Fix the problem by removing the space check in sbappendcontrol(), whose only consumer is the unix sockets code. The stream sockets code uses the SB_STOP mechanism to ensure that senders will block if the receive buffer fills up. PR: 181741 MFC after: 1 month Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D16515 Changes: head/sys/kern/uipc_sockbuf.c head/sys/kern/uipc_usrreq.c head/sys/sys/sockbuf.h --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-net@freebsd.org Sat Aug 4 20:30:29 2018 Return-Path: Delivered-To: freebsd-net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 891AE105216A for ; Sat, 4 Aug 2018 20:30:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 25E0686F01 for ; Sat, 4 Aug 2018 20:30:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id DE8411052169; Sat, 4 Aug 2018 20:30:28 +0000 (UTC) Delivered-To: net@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CD5491052168 for ; Sat, 4 Aug 2018 20:30:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6F7AD86EFA for ; Sat, 4 Aug 2018 20:30:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id B6AC11D553 for ; Sat, 4 Aug 2018 20:30:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w74KURSc001340 for ; Sat, 4 Aug 2018 20:30:27 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w74KURwd001339 for net@FreeBSD.org; Sat, 4 Aug 2018 20:30:27 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 181741] Packet loss when 'control' messages are present with large data (sendmsg(2)) Date: Sat, 04 Aug 2018 20:30:27 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: markj@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? mfc-stable11? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Aug 2018 20:30:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D181741 --- Comment #22 from commit-hook@freebsd.org --- A commit references this bug: Author: markj Date: Sat Aug 4 20:29:58 UTC 2018 New revision: 337329 URL: https://svnweb.freebsd.org/changeset/base/337329 Log: Fix the regression test for PR 181741. With r337328, the test hangs becase the sendmsg() call will block until the receive buffer is at least partially drained. Fix the problem by using a non-blocking socket and allowing short writes. Also assert that a SCM_CREDS message was received if one was expected. PR: 181741 MFC after: 1 month Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D16516 Changes: head/tests/sys/kern/unix_passfd_test.c --=20 You are receiving this mail because: You are on the CC list for the bug.=