From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-pj1-f41.google.com (mail-pj1-f41.google.com [209.85.216.41]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 4BA752C85 for ; Tue, 2 Nov 2021 23:13:43 +0000 (UTC) Received: by mail-pj1-f41.google.com with SMTP id iq11so3782pjb.3 for ; Tue, 02 Nov 2021 16:13:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chromium.org; s=google; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:content-transfer-encoding:in-reply-to; bh=P+2+2UdacnJO8z2gt7JNQevIZ7/zHOIbjdcX/ZBVveI=; b=lgR2cuLgCR4lsnMcKa5/kRHJGyL9RcyTh8lWCzb6l5B7J43Ohko3pMqDCtq22C/bG8 dtsv8BM1VWh4Dhhwh0Q66ubwzL74ipZRvCocAdTXcNrsnf7v72Qj7RHYvFQXamm4Qo19 BCGiybyyrG2bAU2KHs12f5a4T+/hPFkq9MLyE= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:content-transfer-encoding :in-reply-to; bh=P+2+2UdacnJO8z2gt7JNQevIZ7/zHOIbjdcX/ZBVveI=; b=SW1/vUPiL8MuA2MhwYfx5qzDBAM8e/KTwbvH0LAnE8HwDuOF/FSNt04gm0u511Ky65 zX0CVYXLn2oLR/je4Wmr6yI/3bJ+3aiuA1315Z53ZSIrYQJ9GuOwvYvSD5Jh7C1ObLF0 sccRHjE6528jwFjYZL3Wme3hUCobDIMfzfCyySPaDEZ104lKyhdVpSrADiRJg4SjGnev WqI31xou/ajOqYPd8WYYqHhzxzLzy/Rln++QIJjhfSE2i1UXTg39yS1yN/jkvaClmS5D 9ljyEiknVESJZjcMOFeqSeXvjE1fZz9zHhXHRc/kIwoUkc8L1ewpAaJGoc+TPD2e2HtW JIJg== X-Gm-Message-State: AOAM5303lseJYB74A2e0F7vxZhaP0HrRQeTETCgkgQUc1R2Lmn0rmKgm uTBjbZSdmRdGpNB5FJ2IdFUukQ== X-Google-Smtp-Source: ABdhPJxr0e0Fp31b+VAcq4pO1Ru/YiQ6pPiXr8HihnrV8pmpy7HItFuviWR41n/H96NqPboZ4yuozg== X-Received: by 2002:a17:90b:4b4e:: with SMTP id mi14mr10536981pjb.6.1635894822717; Tue, 02 Nov 2021 16:13:42 -0700 (PDT) Received: from www.outflux.net (smtp.outflux.net. [198.145.64.163]) by smtp.gmail.com with ESMTPSA id z73sm143841pgz.23.2021.11.02.16.13.42 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 02 Nov 2021 16:13:42 -0700 (PDT) Date: Tue, 2 Nov 2021 16:13:41 -0700 From: Kees Cook To: Andy Lutomirski Cc: "Peter Zijlstra (Intel)" , Ard Biesheuvel , Sami Tolvanen , Mark Rutland , the arch/x86 maintainers , Josh Poimboeuf , Nathan Chancellor , Nick Desaulniers , Sedat Dilek , Steven Rostedt , linux-hardening@vger.kernel.org, Linux Kernel Mailing List , llvm@lists.linux.dev Subject: Re: [PATCH] static_call,x86: Robustify trampoline patching Message-ID: <202111021603.EDE5780FE@keescook> References: <20211101090155.GW174703@worktop.programming.kicks-ass.net> <202111021040.6570189A5@keescook> <90a14299-ce56-41d5-9df9-f625aae1ac70@www.fastmail.com> Precedence: bulk X-Mailing-List: llvm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <90a14299-ce56-41d5-9df9-f625aae1ac70@www.fastmail.com> On Tue, Nov 02, 2021 at 02:02:38PM -0700, Andy Lutomirski wrote: > > > On Tue, Nov 2, 2021, at 11:10 AM, Kees Cook wrote: > > On Tue, Nov 02, 2021 at 01:57:44PM +0100, Peter Zijlstra wrote: > >> On Mon, Nov 01, 2021 at 03:14:41PM +0100, Ard Biesheuvel wrote: > >> > On Mon, 1 Nov 2021 at 10:05, Peter Zijlstra wrote: > >> > >> > > How is that not true for the jump table approach? Like I showed earlier, > >> > > it is *trivial* to reconstruct the actual function pointer from a > >> > > jump-table entry pointer. > >> > > > >> > > >> > That is not the point. The point is that Clang instruments every > >> > indirect call that it emits, to check whether the type of the jump > >> > table entry it is about to call matches the type of the caller. IOW, > >> > the indirect calls can only branch into jump tables, and all jump > >> > table entries in a table each branch to the start of some function of > >> > the same type. > >> > > >> > So the only thing you could achieve by adding or subtracting a > >> > constant value from the indirect call address is either calling > >> > another function of the same type (if you are hitting another entry in > >> > the same table), or failing the CFI type check. > >> > >> Ah, I see, so the call-site needs to have a branch around the indirect > >> call instruction. > >> > >> > Instrumenting the callee only needs something like BTI, and a > >> > consistent use of the landing pads to ensure that you cannot trivially > >> > omit the check by landing right after it. > >> > >> That does bring up another point tho; how are we going to do a kernel > >> that's optimal for both software CFI and hardware aided CFI? > >> > >> All questions that need answering I think. > > > > I'm totally fine with designing a new CFI for a future option, > > but blocking the existing (working) one does not best serve our end > > users. > > I like security, but I also like building working systems, and I think > I disagree with you. There are a whole bunch of CFI schemes out there, > with varying hardware requirements, and they provide varying degrees > of fine grained protection and varying degrees of protection against > improper speculation. We do not want to merge clang CFI just because > it’s “ready” and end up with a mess that makes it harder to support > other schemes in the kernel. Right, and I see the difficulties here. And speaking to Peter's observation that CFI "accidentally" worked with static_calls, I don't see it that way: it worked because it was designed to be as "invisible" as possible. It's just that at a certain point of extreme binary output control, it becomes an issue and I think that's going to be true for *any* CFI system: they each will have different design characteristics. One of the goals of the Clang CFI use in Linux was to make it as minimally invasive as possible (and you can see this guiding Sami's choices: e.g. he didn't go change all the opaque address uses to need a "&" prefix added, etc). I think we're always going to have some push/pull between the compiler's "general"ness and the kernel's "specific"ness. > So, yes, a good CFI scheme needs caller-side protection, especially if > IBT isn’t in use. But a good CFI scheme also needs to interoperate with > the rest of the kernel, and this whole “canonical” and symbol-based > lookup and static_call thing is nonsense. I think we need a better > implementation, whether it uses intrinsics or little C helpers or > whatever. I think we're very close already. Like I said, I think it's fine to nail down some of these interoperability requirements; we've been doing it all along. We got there with arm64, and it looks to me like we're almost there on x86. There is this particular case with static_calls now, but I don't think it's insurmountable. > I’m not saying this needs to be incompatible with current clang > releases, but I do think we need a clear story for how operations like > static call patching are supposed to work. Right -- and until very recently, it did all Just Work. I think we'll always have these kinds of issues with whatever CFI implementations are made available, and since we've already cleaned up so much of what's needed to make the kernel work with *any* CFI, it makes sense to continue with the one we've already got working for arm64. > FYI, Ard, many years ago we merged kernel support for the original > gcc stack protector. We have since *removed* it on x86_32 in favor of > a nicer implementation that requires a newer toolchain. Sure, and this is the kind of thing I mean: we had an awkward implementation of a meaningful defense, and we improved on it. I think it's important to be able to make these kinds of concessions to gain the defensive features they provide. And yes, we can continue to improve it, but in the meantime, we can stop entire classes of problems from happening to our user base. -- Kees Cook