Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1382965
| From | Li Bin <huawei.libin@huawei.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v11 5/9] arm64: Kprobes with single stepping support |
| Date | 2016-04-20 03:40 +0200 |
| Message-ID | <rpPhw-8ai-3@gated-at.bofh.it> (permalink) |
| References | <raF0J-3nW-5@gated-at.bofh.it> <raF0K-3nW-27@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Hi David,
on 2016/3/9 13:32, David Long wrote:
> +int __kprobes arch_prepare_kprobe(struct kprobe *p)
> +{
> + unsigned long probe_addr = (unsigned long)p->addr;
Here should verify the addr alignment:
if (probe_addr & 0x3)
return -EINVAL;
Thanks,
Li Bin
> +
> + /* copy instruction */
> + p->opcode = le32_to_cpu(*p->addr);
> +
> + if (in_exception_text(probe_addr))
> + return -EINVAL;
> +
> + /* decode instruction */
> + switch (arm_kprobe_decode_insn(p->addr, &p->ainsn)) {
> + case INSN_REJECTED: /* insn not supported */
> + return -EINVAL;
> +
> + case INSN_GOOD_NO_SLOT: /* insn need simulation */
> + return -EINVAL;
> +
> + case INSN_GOOD: /* instruction uses slot */
> + p->ainsn.insn = get_insn_slot();
> + if (!p->ainsn.insn)
> + return -ENOMEM;
> + break;
> + };
> +
> + /* prepare the instruction */
> + arch_prepare_ss_slot(p);
> +
> + return 0;
> +}
> +
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
Re: [PATCH v11 5/9] arm64: Kprobes with single stepping support Li Bin <huawei.libin@huawei.com> - 2016-04-20 03:40 +0200
csiph-web