From mboxrd@z Thu Jan 1 00:00:00 1970 From: rostedt@goodmis.org (Steven Rostedt) Date: Tue, 7 May 2019 09:14:02 -0400 Subject: [RFC][PATCH 1/2] x86: Allow breakpoints to emulate call functions In-Reply-To: References: <20190502185225.0cdfc8bc@gandalf.local.home> <20190502193129.664c5b2e@gandalf.local.home> <20190502195052.0af473cf@gandalf.local.home> <20190503092959.GB2623@hirez.programming.kicks-ass.net> <20190503092247.20cc1ff0@gandalf.local.home> <2045370D-38D8-406C-9E94-C1D483E232C9@amacapital.net> <20190506081951.GJ2606@hirez.programming.kicks-ass.net> <20190507085753.GO2606@hirez.programming.kicks-ass.net> <20190507113050.GR2606@hirez.programming.kicks-ass.net> Message-ID: <20190507091403.556daba7@gandalf.local.home> Content-Type: text/plain; charset="UTF-8" Message-ID: <20190507131402.5pKqJxgq43Qskcw32MuvjC-D00WmqaPIMeEiaNoHsbY@z> On Tue, 7 May 2019 12:57:15 +0000 David Laight wrote: > > Only the INT3 thing needs 'the gap', but the far bigger change here is > > that kernel frames now have a complete pt_regs set and all sorts of > > horrible crap can go away. > > I'm not doubting that generating the 'five register' interrupt stack frame > for faults in kernel space makes life simpler just suggesting that the > 'emulated call' can be done by emulating the 'iret' rather than generating > a gap in the stack. But how would the user put something on the stack? I don't see how emulating an iret helps here. Can you write some pseudo code to explain what you mean. I also believe the gap is only added for kernel->kernel entries. > > > For 32bit 'the gap' happens naturally when building a 5 entry frame. Yes > > it is possible to build a 5 entry frame on top of the old 3 entry one, > > but why bother... > > Presumably there is 'horrid' code to generate the gap in 64bit mode? > (less horrid than 32bit, but still horrid?) > Or does it copy the entire pt_regs into a local stack frame and use > that for the iret? On x86_64, the gap is only done for int3 and nothing else, thus it is much less horrid. That's because x86_64 has a sane pt_regs storage for all exceptions. -- Steve