Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1461447 > unrolled thread
| Started by | David Long <dave.long@linaro.org> |
|---|---|
| First post | 2016-08-12 22:30 +0200 |
| Last post | 2016-08-15 17:50 +0200 |
| Articles | 7 — 4 participants |
Back to article view | Back to linux.kernel
[PATCH] Documentation: kprobes: Document jprobes stack copying limitations David Long <dave.long@linaro.org> - 2016-08-12 22:30 +0200
Re: [PATCH] Documentation: kprobes: Document jprobes stack copying limitations Masami Hiramatsu <mhiramat@kernel.org> - 2016-08-13 01:50 +0200
Re: [PATCH] Documentation: kprobes: Document jprobes stack copying limitations Jonathan Corbet <corbet@lwn.net> - 2016-08-15 16:30 +0200
Re: [PATCH] Documentation: kprobes: Document jprobes stack copying limitations David Long <dave.long@linaro.org> - 2016-08-15 16:50 +0200
Re: [PATCH] Documentation: kprobes: Document jprobes stack copying limitations Jonathan Corbet <corbet@lwn.net> - 2016-08-15 17:40 +0200
Re: [PATCH] Documentation: kprobes: Document jprobes stack copying limitations David Long <dave.long@linaro.org> - 2016-08-15 17:50 +0200
Re: [PATCH] Documentation: kprobes: Document jprobes stack copying limitations Catalin Marinas <catalin.marinas@arm.com> - 2016-08-15 17:50 +0200
| From | David Long <dave.long@linaro.org> |
|---|---|
| Date | 2016-08-12 22:30 +0200 |
| Subject | [PATCH] Documentation: kprobes: Document jprobes stack copying limitations |
| Message-ID | <s5rfz-6xC-9@gated-at.bofh.it> |
From: "David A. Long" <dave.long@linaro.org> Some architectures (i.e.: sparc64 and arm64) make reasonable partial stack duplication for jprobes problematic. Document this. Signed-off-by: David A. Long <dave.long@linaro.org> --- Documentation/kprobes.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Documentation/kprobes.txt b/Documentation/kprobes.txt index 1f9b3e2..1f6d45a 100644 --- a/Documentation/kprobes.txt +++ b/Documentation/kprobes.txt @@ -103,6 +103,16 @@ Note that the probed function's args may be passed on the stack or in registers. The jprobe will work in either case, so long as the handler's prototype matches that of the probed function. +Note that in some architectures (e.g.: arm64 and sparc64) the stack +copy is not done, as the actual location of stacked parameters may be +outside of a reasonable MAX_STACK_SIZE value and because that location +cannot be determined by the jprobes code. In this case the jprobes +user must be careful to make certain the calling signature of the +function does not cause parameters to be passed on the stack (e.g.: +more than eight function arguments, an argument of more than sixteen +bytes, or more than 64 bytes of argument data, depending on +architecture). + 1.3 Return Probes 1.3.1 How Does a Return Probe Work? -- 2.5.0
[toc] | [next] | [standalone]
| From | Masami Hiramatsu <mhiramat@kernel.org> |
|---|---|
| Date | 2016-08-13 01:50 +0200 |
| Subject | Re: [PATCH] Documentation: kprobes: Document jprobes stack copying limitations |
| Message-ID | <s5un8-6A-15@gated-at.bofh.it> |
| In reply to | #1461447 |
On Fri, 12 Aug 2016 16:24:44 -0400 David Long <dave.long@linaro.org> wrote: > From: "David A. Long" <dave.long@linaro.org> > > Some architectures (i.e.: sparc64 and arm64) make reasonable partial stack > duplication for jprobes problematic. Document this. > > Signed-off-by: David A. Long <dave.long@linaro.org> Looks good to me. Acked-by: Masami Hiramatsu <mhiramat@kernel.org> Thanks! > --- > Documentation/kprobes.txt | 10 ++++++++++ > 1 file changed, 10 insertions(+) > > diff --git a/Documentation/kprobes.txt b/Documentation/kprobes.txt > index 1f9b3e2..1f6d45a 100644 > --- a/Documentation/kprobes.txt > +++ b/Documentation/kprobes.txt > @@ -103,6 +103,16 @@ Note that the probed function's args may be passed on the stack > or in registers. The jprobe will work in either case, so long as the > handler's prototype matches that of the probed function. > > +Note that in some architectures (e.g.: arm64 and sparc64) the stack > +copy is not done, as the actual location of stacked parameters may be > +outside of a reasonable MAX_STACK_SIZE value and because that location > +cannot be determined by the jprobes code. In this case the jprobes > +user must be careful to make certain the calling signature of the > +function does not cause parameters to be passed on the stack (e.g.: > +more than eight function arguments, an argument of more than sixteen > +bytes, or more than 64 bytes of argument data, depending on > +architecture). > + > 1.3 Return Probes > > 1.3.1 How Does a Return Probe Work? > -- > 2.5.0 > -- Masami Hiramatsu <mhiramat@kernel.org>
[toc] | [prev] | [next] | [standalone]
| From | Jonathan Corbet <corbet@lwn.net> |
|---|---|
| Date | 2016-08-15 16:30 +0200 |
| Subject | Re: [PATCH] Documentation: kprobes: Document jprobes stack copying limitations |
| Message-ID | <s6r3Q-6HX-33@gated-at.bofh.it> |
| In reply to | #1461447 |
On Fri, 12 Aug 2016 16:24:44 -0400 David Long <dave.long@linaro.org> wrote: > Some architectures (i.e.: sparc64 and arm64) make reasonable partial stack > duplication for jprobes problematic. Document this. Applied to the docs tree, thanks. jon
[toc] | [prev] | [next] | [standalone]
| From | David Long <dave.long@linaro.org> |
|---|---|
| Date | 2016-08-15 16:50 +0200 |
| Subject | Re: [PATCH] Documentation: kprobes: Document jprobes stack copying limitations |
| Message-ID | <s6rnb-6Or-7@gated-at.bofh.it> |
| In reply to | #1462825 |
On 08/15/2016 10:25 AM, Jonathan Corbet wrote: > On Fri, 12 Aug 2016 16:24:44 -0400 > David Long <dave.long@linaro.org> wrote: > >> Some architectures (i.e.: sparc64 and arm64) make reasonable partial stack >> duplication for jprobes problematic. Document this. > > Applied to the docs tree, thanks. > > jon > Was kind of hoping to see an ack (or critique) from a sparc maintainer. Thanks, -dl
[toc] | [prev] | [next] | [standalone]
| From | Jonathan Corbet <corbet@lwn.net> |
|---|---|
| Date | 2016-08-15 17:40 +0200 |
| Subject | Re: [PATCH] Documentation: kprobes: Document jprobes stack copying limitations |
| Message-ID | <s6s9z-7m4-5@gated-at.bofh.it> |
| In reply to | #1462843 |
On Mon, 15 Aug 2016 10:49:36 -0400 David Long <dave.long@linaro.org> wrote: > On 08/15/2016 10:25 AM, Jonathan Corbet wrote: > > On Fri, 12 Aug 2016 16:24:44 -0400 > > David Long <dave.long@linaro.org> wrote: > > > >> Some architectures (i.e.: sparc64 and arm64) make reasonable partial stack > >> duplication for jprobes problematic. Document this. > > > > Applied to the docs tree, thanks. > > > > jon > > > > Was kind of hoping to see an ack (or critique) from a sparc maintainer. So are you saying you don't want the patch applied at this point? jon
[toc] | [prev] | [next] | [standalone]
| From | David Long <dave.long@linaro.org> |
|---|---|
| Date | 2016-08-15 17:50 +0200 |
| Subject | Re: [PATCH] Documentation: kprobes: Document jprobes stack copying limitations |
| Message-ID | <s6sjg-7pG-29@gated-at.bofh.it> |
| In reply to | #1462924 |
On 08/15/2016 11:32 AM, Jonathan Corbet wrote: > On Mon, 15 Aug 2016 10:49:36 -0400 > David Long <dave.long@linaro.org> wrote: > >> On 08/15/2016 10:25 AM, Jonathan Corbet wrote: >>> On Fri, 12 Aug 2016 16:24:44 -0400 >>> David Long <dave.long@linaro.org> wrote: >>> >>>> Some architectures (i.e.: sparc64 and arm64) make reasonable partial stack >>>> duplication for jprobes problematic. Document this. >>> >>> Applied to the docs tree, thanks. >>> >>> jon >>> >> >> Was kind of hoping to see an ack (or critique) from a sparc maintainer. > > So are you saying you don't want the patch applied at this point? > > jon > I think we can apply it. It's not looking like we're going to get comments from a sparc/kprobes maintainer. The need for this change was first addressed on the sparc email alias exactly one week ago, which is maybe long enough to wait. Sorry for the trouble, -dl
[toc] | [prev] | [next] | [standalone]
| From | Catalin Marinas <catalin.marinas@arm.com> |
|---|---|
| Date | 2016-08-15 17:50 +0200 |
| Subject | Re: [PATCH] Documentation: kprobes: Document jprobes stack copying limitations |
| Message-ID | <s6sjg-7pG-39@gated-at.bofh.it> |
| In reply to | #1462924 |
On Mon, Aug 15, 2016 at 09:32:43AM -0600, Jonathan Corbet wrote: > On Mon, 15 Aug 2016 10:49:36 -0400 > David Long <dave.long@linaro.org> wrote: > > > On 08/15/2016 10:25 AM, Jonathan Corbet wrote: > > > On Fri, 12 Aug 2016 16:24:44 -0400 > > > David Long <dave.long@linaro.org> wrote: > > > > > >> Some architectures (i.e.: sparc64 and arm64) make reasonable partial stack > > >> duplication for jprobes problematic. Document this. > > > > > > Applied to the docs tree, thanks. > > > > > > jon > > > > Was kind of hoping to see an ack (or critique) from a sparc maintainer. > > So are you saying you don't want the patch applied at this point? To avoid any doubt, for arm64: Acked-by: Catalin Marinas <catalin.marinas@arm.com> (and I want the patch applied)
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web