From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3A2D718E11 for ; Fri, 15 Sep 2023 18:30:11 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 76465C433C8; Fri, 15 Sep 2023 18:30:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1694802611; bh=wbnJo8rFizU3HAyVmJkb5mTxsQnJcT5sgSZwMnt/Su8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=d/72teB7kMJ3Y5PTQUPYA1iDWaFjQn4n7PQkMSnEaeNmM2HvymvFNd7VWLnGwpqhS WWFLON3vKsiU6RBXxBtrB5BX57qhAFgWwzRj2Op/p6zl4VIf/1xbLvcBaKgTchc21R phqhYJ4IbejtsSu9yvB76uBvPpnoYaAfKp2NdIZpbsBjDJPcJ12w2IVcJje3kRRtR/ ILQ2S27EB9WVv3QbBIUUqHmn+xwEjgZpZD4hfKTvpXz45r4/uZGr1yqyE3leBGt+6f 6Usxkzu2JDe3//pzWURqJph/X5gHxkpgcv41uu6e3yQAXJfHO+z79+9xOxK8SgmL17 yfvlEBniTNh9Q== Date: Fri, 15 Sep 2023 11:30:08 -0700 From: Nathan Chancellor To: Nick Desaulniers Cc: Alexei Starovoitov , Daniel Borkmann , Andrii Nakryiko , Martin KaFai Lau , Song Liu , Yonghong Song , KP Singh , Jiri Olsa , linux-kernel@vger.kernel.org, bpf@vger.kernel.org, Martin KaFai Lau , Song Liu , Yonghong Song , John Fastabend , KP Singh , Stanislav Fomichev , Hao Luo , stable@vger.kernel.org, Satya Durga Srinivasu Prabhala , Marcus Seyfarth Subject: Re: [PATCH bpf v3 1/2] bpf: Fix BTF_ID symbol generation collision Message-ID: <20230915183008.GA17653@dev-arch.thelio-3990X> References: <20230915-bpf_collision-v3-0-263fc519c21f@google.com> <20230915-bpf_collision-v3-1-263fc519c21f@google.com> Precedence: bulk X-Mailing-List: bpf@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230915-bpf_collision-v3-1-263fc519c21f@google.com> On Fri, Sep 15, 2023 at 10:34:27AM -0700, Nick Desaulniers wrote: > From: Jiri Olsa > > Marcus and Satya reported an issue where BTF_ID macro generates same > symbol in separate objects and that breaks final vmlinux link. > > ld.lld: error: ld-temp.o :14577:1: symbol > '__BTF_ID__struct__cgroup__624' is already defined > > This can be triggered under specific configs when __COUNTER__ happens to > be the same for the same symbol in two different translation units, > which is already quite unlikely to happen. > > Add __LINE__ number suffix to make BTF_ID symbol more unique, which is > not a complete fix, but it would help for now and meanwhile we can work > on better solution as suggested by Andrii. > > Cc: stable@vger.kernel.org > Reported-by: Satya Durga Srinivasu Prabhala > Reported-by: Marcus Seyfarth > Closes: https://github.com/ClangBuiltLinux/linux/issues/1913 > Debugged-by: Nathan Chancellor > Link: https://lore.kernel.org/bpf/CAEf4Bzb5KQ2_LmhN769ifMeSJaWfebccUasQOfQKaOd0nQ51tw@mail.gmail.com/ > Signed-off-by: Jiri Olsa > Signed-off-by: Nick Desaulniers Reviewed-by: Nathan Chancellor > --- > include/linux/btf_ids.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/linux/btf_ids.h b/include/linux/btf_ids.h > index a3462a9b8e18..a9cb10b0e2e9 100644 > --- a/include/linux/btf_ids.h > +++ b/include/linux/btf_ids.h > @@ -49,7 +49,7 @@ word \ > ____BTF_ID(symbol, word) > > #define __ID(prefix) \ > - __PASTE(prefix, __COUNTER__) > + __PASTE(__PASTE(prefix, __COUNTER__), __LINE__) > > /* > * The BTF_ID defines unique symbol for each ID pointing > > -- > 2.42.0.459.ge4e396fd5e-goog >