From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Ahern Subject: Re: The recvmsg() with IP_PKTINFO for local addresses returns various ipi_ifindex Date: Sun, 12 Aug 2018 16:34:26 -0600 Message-ID: <44b504ca-722c-552c-6813-5fad799941fd@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Cc: "Alexandra N. Kossovsky" To: Damir Mansurov , netdev@vger.kernel.org Return-path: Received: from mail-pl0-f53.google.com ([209.85.160.53]:46492 "EHLO mail-pl0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727734AbeHMBN5 (ORCPT ); Sun, 12 Aug 2018 21:13:57 -0400 Received: by mail-pl0-f53.google.com with SMTP id t17-v6so6098355ply.13 for ; Sun, 12 Aug 2018 15:34:28 -0700 (PDT) In-Reply-To: Content-Language: en-US Sender: netdev-owner@vger.kernel.org List-ID: On 8/9/18 2:13 AM, Damir Mansurov wrote: > Greetings, > > I use the IP_PKTINFO to detect ipi_ifindex from which the packet was > arrived, it used to work for local addresses also. > > For local addresses ipi_ifindex always returned 1, but starting from > Linux 4.14 ip_ifindex began to return various values. > > Example host configuration: > 1:  lo:   127.0.0.1 > 2:  eth0: 192.168.3.45 > 3:  eth1: 192.168.4.45 > > I use sendto() with addresses {127.0.0.1, 192.168.3.45 and > 192.168.4.45}, call recvmsg() and than use standard procedure to get > ipi_ifindex, it shows results: > >                  |      ipi_ifindex     |      ipi_ifindex >  sendto(address) |   Linux ver < 4.14   |   Linux ver >= 4.14 > --------------------------------------------------------------- >   127.0.0.1      |          1           |           1 > --------------------------------------------------------------- >   192.168.3.45   |          1           |           2 > --------------------------------------------------------------- >   192.168.4.45   |          1           |           3 > > > It seems that this behavior depends from commit: > net: ipv4: set orig_oif based on fib result for local traffic > > https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=linux-4.14.y&id=839da4d98960bcc68e6b7b945b33ad3916ec1e92 > > > I believe that ipi_ifindex for local addresses should be 1. > Is there a Bug for Linux >= 4.14 or is this a valid behavior? The index should be the device with the address. It was reporting loopback prior to the mentioned commit because loopback is used for packet Tx which is an implementation detail for sending packets locally.