linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] tracefs: Annotate tracefs_ops with __ro_after_init
@ 2018-07-24 20:02 Zubin Mithra
  2018-07-24 22:07 ` Kees Cook
  0 siblings, 1 reply; 3+ messages in thread
From: Zubin Mithra @ 2018-07-24 20:02 UTC (permalink / raw)
  To: linux-kernel; +Cc: keescook, groeck, zsm

tracefs_ops is initialized inside tracefs_create_instance_dir and not
modified after. tracefs_create_instance_dir allows for initialization
only once, and is called from create_trace_instances(marked __init),
which is called from tracer_init_tracefs(marked __init).

Signed-off-by: Zubin Mithra <zsm@chromium.org>
Reviewed-by: Kees Cook <keescook@chromium.org>
---
 fs/tracefs/inode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/tracefs/inode.c b/fs/tracefs/inode.c
index bea8ad876bf9..20e965873f27 100644
--- a/fs/tracefs/inode.c
+++ b/fs/tracefs/inode.c
@@ -53,7 +53,7 @@ static const struct file_operations tracefs_file_operations = {
 static struct tracefs_dir_ops {
 	int (*mkdir)(const char *name);
 	int (*rmdir)(const char *name);
-} tracefs_ops;
+} tracefs_ops __ro_after_init;
 
 static char *get_dname(struct dentry *dentry)
 {
-- 
2.18.0.233.g985f88cf7e-goog


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] tracefs: Annotate tracefs_ops with __ro_after_init
  2018-07-24 20:02 [PATCH] tracefs: Annotate tracefs_ops with __ro_after_init Zubin Mithra
@ 2018-07-24 22:07 ` Kees Cook
  2018-07-24 22:39   ` Steven Rostedt
  0 siblings, 1 reply; 3+ messages in thread
From: Kees Cook @ 2018-07-24 22:07 UTC (permalink / raw)
  To: Zubin Mithra, Steven Rostedt; +Cc: LKML, Guenter Roeck, Al Viro

Adding Steven (maintainer) and Al (fs) to CC...

On Tue, Jul 24, 2018 at 1:02 PM, Zubin Mithra <zsm@chromium.org> wrote:
> tracefs_ops is initialized inside tracefs_create_instance_dir and not
> modified after. tracefs_create_instance_dir allows for initialization
> only once, and is called from create_trace_instances(marked __init),
> which is called from tracer_init_tracefs(marked __init).
>
> Signed-off-by: Zubin Mithra <zsm@chromium.org>
> Reviewed-by: Kees Cook <keescook@chromium.org>

Who's tree should this go through?

Thanks!

-Kees

> ---
>  fs/tracefs/inode.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/tracefs/inode.c b/fs/tracefs/inode.c
> index bea8ad876bf9..20e965873f27 100644
> --- a/fs/tracefs/inode.c
> +++ b/fs/tracefs/inode.c
> @@ -53,7 +53,7 @@ static const struct file_operations tracefs_file_operations = {
>  static struct tracefs_dir_ops {
>         int (*mkdir)(const char *name);
>         int (*rmdir)(const char *name);
> -} tracefs_ops;
> +} tracefs_ops __ro_after_init;
>
>  static char *get_dname(struct dentry *dentry)
>  {
> --
> 2.18.0.233.g985f88cf7e-goog
>



-- 
Kees Cook
Pixel Security

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] tracefs: Annotate tracefs_ops with __ro_after_init
  2018-07-24 22:07 ` Kees Cook
@ 2018-07-24 22:39   ` Steven Rostedt
  0 siblings, 0 replies; 3+ messages in thread
From: Steven Rostedt @ 2018-07-24 22:39 UTC (permalink / raw)
  To: Kees Cook; +Cc: Zubin Mithra, LKML, Guenter Roeck, Al Viro

On Tue, 24 Jul 2018 15:07:18 -0700
Kees Cook <keescook@chromium.org> wrote:

> Adding Steven (maintainer) and Al (fs) to CC...

Thanks, first I've seen of this.

> 
> On Tue, Jul 24, 2018 at 1:02 PM, Zubin Mithra <zsm@chromium.org> wrote:
> > tracefs_ops is initialized inside tracefs_create_instance_dir and not
> > modified after. tracefs_create_instance_dir allows for initialization
> > only once, and is called from create_trace_instances(marked __init),
> > which is called from tracer_init_tracefs(marked __init).

Then, especially with this change, we should mark
tracefs_create_instance_dir() as init, as it would fail any other time.

> >
> > Signed-off-by: Zubin Mithra <zsm@chromium.org>
> > Reviewed-by: Kees Cook <keescook@chromium.org>  
> 
> Who's tree should this go through?

I can take it or someone else can, and I'll ack it if need be.

-- Steve


> 
> Thanks!
> 
> -Kees
> 
> > ---
> >  fs/tracefs/inode.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/fs/tracefs/inode.c b/fs/tracefs/inode.c
> > index bea8ad876bf9..20e965873f27 100644
> > --- a/fs/tracefs/inode.c
> > +++ b/fs/tracefs/inode.c
> > @@ -53,7 +53,7 @@ static const struct file_operations tracefs_file_operations = {
> >  static struct tracefs_dir_ops {
> >         int (*mkdir)(const char *name);
> >         int (*rmdir)(const char *name);
> > -} tracefs_ops;
> > +} tracefs_ops __ro_after_init;
> >
> >  static char *get_dname(struct dentry *dentry)
> >  {
> > --
> > 2.18.0.233.g985f88cf7e-goog
> >  
> 
> 
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-07-24 22:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-24 20:02 [PATCH] tracefs: Annotate tracefs_ops with __ro_after_init Zubin Mithra
2018-07-24 22:07 ` Kees Cook
2018-07-24 22:39   ` Steven Rostedt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).