On Tue, Oct 31, 2017 at 07:39:59PM +0100, Torsten Duwe wrote: > On Tue, Oct 31, 2017 at 09:53:16PM +0530, Naveen N . Rao wrote: > > On 2017/10/31 03:30PM, Torsten Duwe wrote: > > > > > > Maybe I failed to express my views properly; I find the whole approach > [...] > > > NAK'd-by: Torsten Duwe <duwe@xxxxxxx> > > > > Hmm... that wasn't evident at all given Balbir's reponse to your > > previous concerns and your lack of response for the same: > > https://www.mail-archive.com/linuxppc-dev@xxxxxxxxxxxxxxxx/msg125350.html > > To me it was obvious that the root cause was kpatch's current inability to > deal with ppc calling conventions when copying binary functions. Hence my > hint at the discussion about a possible source-level solution that would > work nicely for all architectures. That other discussion isn't relevant. Even if we do eventually decide to go with a source-based approach, that's still a long ways off. For the foreseeable future, kpatch-build is the only available safe way to create live patches. We need to figure out a way to make it work, one way or another. If I understand correctly, the main problem here is that a call to a previously-local-but-now-global function is missing a needed nop instruction after the call, which is needed for restoring r2 (the TOC pointer). So, just brainstorming a bit, here are the possible solutions I can think of: a) Create a special klp stub for such calls (as in Kamalesh's patch) b) Have kpatch-build rewrite the function to insert nops after calls to previously-local functions. This would also involve adjusting the offsets of intra-function branches and relocations which come afterwards in the same section. And also patching up the DWARF debuginfo, if we care about that (I think we do). And also patching up the jump tables which GCC sometimes creates for switch statements. Yuck. I'm pretty sure this is a horrible idea. c) Create a new GCC flag which treats all calls as global, which can be used by kpatch-build to generate the right code (assuming this flag doesn't already exist). This would be a good option, I think. d) Have kpatch-build do some other kind of transformation? For example, maybe it could generate klp stubs which the callee calls into. Each klp stub could then do a proper global call to the SHN_LIVEPATCH symbol. Do I understand the problem correctly? Do the potential solutions make sense? Any other possible solutions I missed? -- Josh -- To unsubscribe from this list: send the line "unsubscribe live-patching" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html