Message ID | 20211213092931.470280502@linuxfoundation.org |
---|---|
State | New |
Headers | show
Return-Path: <stable-owner@kernel.org> X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3EE12C433EF for <stable@archiver.kernel.org>; Mon, 13 Dec 2021 09:41:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235319AbhLMJk7 (ORCPT <rfc822;stable@archiver.kernel.org>); Mon, 13 Dec 2021 04:40:59 -0500 Received: from sin.source.kernel.org ([145.40.73.55]:34202 "EHLO sin.source.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234725AbhLMJjS (ORCPT <rfc822;stable@vger.kernel.org>); Mon, 13 Dec 2021 04:39:18 -0500 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by sin.source.kernel.org (Postfix) with ESMTPS id B6A20CE0E93; Mon, 13 Dec 2021 09:39:16 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 62B15C00446; Mon, 13 Dec 2021 09:39:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1639388354; bh=g7pT1Y+mH7tE5bA+TV7uwFPEpTj+EStwLjrPcmYtDQw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=JmR2ImaL6+WbjKSnxcAzimhp8sQLxmg3n6EG36CFmlV3XVptw3b+jNYV2OCVbXWQT JxCd8NU3xSqLXAfBIH92d8yIgTtpS9UwAtf/QsOAJfI/MKWF9cQQcM9mSAKHGDBISl bII5cQC4QCtMfphhOTjFOSCEt89GJV3xWx8ke+TQ= From: Greg Kroah-Hartman <gregkh@linuxfoundation.org> To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>, stable@vger.kernel.org, Andrea Mayer <andrea.mayer@uniroma2.it>, David Ahern <dsahern@kernel.org>, Jakub Kicinski <kuba@kernel.org> Subject: [PATCH 4.19 20/74] seg6: fix the iif in the IPv6 socket control block Date: Mon, 13 Dec 2021 10:29:51 +0100 Message-Id: <20211213092931.470280502@linuxfoundation.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20211213092930.763200615@linuxfoundation.org> References: <20211213092930.763200615@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: <stable.vger.kernel.org> X-Mailing-List: stable@vger.kernel.org |
Series |
None
|
expand
|
--- a/net/ipv6/seg6_iptunnel.c +++ b/net/ipv6/seg6_iptunnel.c @@ -148,6 +148,14 @@ int seg6_do_srh_encap(struct sk_buff *sk hdr->hop_limit = ip6_dst_hoplimit(skb_dst(skb)); memset(IP6CB(skb), 0, sizeof(*IP6CB(skb))); + + /* the control block has been erased, so we have to set the + * iif once again. + * We read the receiving interface index directly from the + * skb->skb_iif as it is done in the IPv4 receiving path (i.e.: + * ip_rcv_core(...)). + */ + IP6CB(skb)->iif = skb->skb_iif; } hdr->nexthdr = NEXTHDR_ROUTING;