From mboxrd@z Thu Jan 1 00:00:00 1970 From: Florian Weimer Subject: Re: [RFC PATCH v9 for 4.15 01/14] Restartable sequences system call Date: Fri, 13 Oct 2017 15:56:15 +0200 Message-ID: <0043559c-c4e0-523a-b634-eded6ced886c@redhat.com> References: <20171012230326.19984-1-mathieu.desnoyers@efficios.com> <20171012230326.19984-2-mathieu.desnoyers@efficios.com> <19edaac0-98d7-e7a0-aceb-b861a2befce4@redhat.com> <695804241.40580.1507902016119.JavaMail.zimbra@efficios.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <695804241.40580.1507902016119.JavaMail.zimbra@efficios.com> Content-Language: en-US Sender: linux-kernel-owner@vger.kernel.org To: Mathieu Desnoyers Cc: "Paul E. McKenney" , Boqun Feng , Peter Zijlstra , Paul Turner , Andrew Hunter , Andy Lutomirski , Dave Watson , Josh Triplett , Will Deacon , linux-kernel , Thomas Gleixner , Andi Kleen , Chris Lameter , Ingo Molnar , "H. Peter Anvin" , Ben Maurer , rostedt , Linus Torvalds , Andrew Morton , Russell King , Catalin Marinas List-Id: linux-api@vger.kernel.org On 10/13/2017 03:40 PM, Mathieu Desnoyers wrote: > The proposed ABI does not require to store any function pointer. For a given > rseq_finish() critical section, pointers to specific instructions (within a > function) are emitted at link-time into a struct rseq_cs: > > struct rseq_cs { > RSEQ_FIELD_u32_u64(start_ip); > RSEQ_FIELD_u32_u64(post_commit_ip); > RSEQ_FIELD_u32_u64(abort_ip); > uint32_t flags; > } __attribute__((aligned(4 * sizeof(uint64_t)))); > > Then, at runtime, the fast-path stores the address of that struct rseq_cs > into the TLS struct rseq "rseq_cs" field. > > So all we store at runtime is a pointer to data, not a pointer to functions. > > But you seem to hint that having a pointer to data containing pointers to code > may still be making it easier for exploit writers. Can you elaborate on the > scenario ? I'm concerned that the exploit writer writes a totally made up struct rseq_cs object into writable memory, along with function pointers, and puts the address of that in to the rseq_cs field. This would be comparable to how C++ vtable pointers are targeted (including those in the glibc libio implementation of stdio streams). Does this answer your questions? Thanks, Florian