From mboxrd@z Thu Jan 1 00:00:00 1970 From: Oleg Nesterov Subject: Re: [PATCH][v2] uprobes/x86: emulate push insns for uprobe on x86 Date: Mon, 13 Nov 2017 13:59:56 +0100 Message-ID: <20171113125956.GA11516@redhat.com> References: <20171110172546.3185266-1-yhs@fb.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: mingo@kernel.org, tglx@linutronix.de, peterz@infradead.org, linux-kernel@vger.kernel.org, x86@kernel.org, netdev@vger.kernel.org, ast@fb.com, kernel-team@fb.com To: Yonghong Song Return-path: Received: from mx1.redhat.com ([209.132.183.28]:54142 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754169AbdKMM77 (ORCPT ); Mon, 13 Nov 2017 07:59:59 -0500 Content-Disposition: inline In-Reply-To: <20171110172546.3185266-1-yhs@fb.com> Sender: netdev-owner@vger.kernel.org List-ID: The patch looks good to me, but I have a question because I know nothing about insn encoding, On 11/10, Yonghong Song wrote: > > +static int push_setup_xol_ops(struct arch_uprobe *auprobe, struct insn *insn) > +{ > + u8 opc1 = OPCODE1(insn), reg_offset = 0; > + > + if (opc1 < 0x50 || opc1 > 0x57) > + return -ENOSYS; > + > + if (insn->length > 2) > + return -ENOSYS; > + if (insn->length == 2) { > + /* only support rex_prefix 0x41 (x64 only) */ > +#ifdef CONFIG_X86_64 > + if (insn->rex_prefix.nbytes != 1 || > + insn->rex_prefix.bytes[0] != 0x41) > + return -ENOSYS; > + > + auprobe->push.ilen = 2; and the "else" branch does auprobe->push.ilen = 1; you could add auprobe->push.ilen = insn->length; at the end of push_setup_xol_ops() instead, but this is minor/cosmetic, > + switch (opc1) { > + case 0x50: > + reg_offset = offsetof(struct pt_regs, r8); > + break; > + case 0x51: > + reg_offset = offsetof(struct pt_regs, r9); > + break; > + case 0x52: > + reg_offset = offsetof(struct pt_regs, r10); > + break; > + case 0x53: > + reg_offset = offsetof(struct pt_regs, r11); > + break; > + case 0x54: > + reg_offset = offsetof(struct pt_regs, r12); > + break; > + case 0x55: > + reg_offset = offsetof(struct pt_regs, r13); > + break; > + case 0x56: > + reg_offset = offsetof(struct pt_regs, r14); > + break; > + case 0x57: > + reg_offset = offsetof(struct pt_regs, r15); > + break; > + } > +#else > + return -ENOSYS; > +#endif OK, but shouldn't we also return ENOSYS if CONFIG_X86_64=y but the probed task is 32bit? Or in this case uprobe_init_insn(x86_64 => false) should fail and push_setup_xol_ops() won't be called? Oleg.