module: Fix up module_notifier return values
authorPeter Zijlstra <peterz@infradead.org>
Tue, 18 Aug 2020 13:57:37 +0000 (15:57 +0200)
committerIngo Molnar <mingo@kernel.org>
Tue, 1 Sep 2020 07:58:03 +0000 (09:58 +0200)
While auditing all module notifiers I noticed a whole bunch of fail
wrt the return value. Notifiers have a 'special' return semantics.

As is; NOTIFY_DONE vs NOTIFY_OK is a bit vague; but
notifier_from_errno(0) results in NOTIFY_OK and NOTIFY_DONE has a
comment that says "Don't care".

From this I've used NOTIFY_DONE when the function completely ignores
the callback and notifier_to_error() isn't used.

Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Reviewed-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Reviewed-by: Joel Fernandes (Google) <joel@joelfernandes.org>
Reviewed-by: Robert Richter <rric@kernel.org>
Acked-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Link: https://lore.kernel.org/r/20200818135804.385360407@infradead.org
drivers/oprofile/buffer_sync.c
kernel/trace/bpf_trace.c
kernel/trace/trace.c
kernel/trace/trace_events.c
kernel/trace/trace_printk.c
kernel/tracepoint.c

index 4d7695289edaac57bdea913a8c5942dfe58948f3..cc917865f13abfdc4b2b9520c10856de16a2e221 100644 (file)
@@ -116,7 +116,7 @@ module_load_notify(struct notifier_block *self, unsigned long val, void *data)
 {
 #ifdef CONFIG_MODULES
        if (val != MODULE_STATE_COMING)
-               return 0;
+               return NOTIFY_DONE;
 
        /* FIXME: should we process all CPU buffers ? */
        mutex_lock(&buffer_mutex);
@@ -124,7 +124,7 @@ module_load_notify(struct notifier_block *self, unsigned long val, void *data)
        add_event_entry(MODULE_LOADED_CODE);
        mutex_unlock(&buffer_mutex);
 #endif
-       return 0;
+       return NOTIFY_OK;
 }
 
 
index a8d4f253ed778f63d30a53cb9f9c574b9ac87da0..2ecf7892a31bb4ca54782e78ae47df956796a7eb 100644 (file)
@@ -2027,10 +2027,11 @@ static int bpf_event_notify(struct notifier_block *nb, unsigned long op,
 {
        struct bpf_trace_module *btm, *tmp;
        struct module *mod = module;
+       int ret = 0;
 
        if (mod->num_bpf_raw_events == 0 ||
            (op != MODULE_STATE_COMING && op != MODULE_STATE_GOING))
-               return 0;
+               goto out;
 
        mutex_lock(&bpf_module_mutex);
 
@@ -2040,6 +2041,8 @@ static int bpf_event_notify(struct notifier_block *nb, unsigned long op,
                if (btm) {
                        btm->module = module;
                        list_add(&btm->list, &bpf_trace_modules);
+               } else {
+                       ret = -ENOMEM;
                }
                break;
        case MODULE_STATE_GOING:
@@ -2055,7 +2058,8 @@ static int bpf_event_notify(struct notifier_block *nb, unsigned long op,
 
        mutex_unlock(&bpf_module_mutex);
 
-       return 0;
+out:
+       return notifier_from_errno(ret);
 }
 
 static struct notifier_block bpf_module_nb = {
index f40d850ebabcc7bb60c47c57898d176fec09dd1e..df499922b6a41874fad2cbd7009d73bfd2a03936 100644 (file)
@@ -9072,7 +9072,7 @@ static int trace_module_notify(struct notifier_block *self,
                break;
        }
 
-       return 0;
+       return NOTIFY_OK;
 }
 
 static struct notifier_block trace_module_nb = {
index a85effb2373bf0eb56fcf65df288a620481cbe6c..beebf2cd364b13c79d111ae441d2daaa4249346c 100644 (file)
@@ -2646,7 +2646,7 @@ static int trace_module_notify(struct notifier_block *self,
        mutex_unlock(&trace_types_lock);
        mutex_unlock(&event_mutex);
 
-       return 0;
+       return NOTIFY_OK;
 }
 
 static struct notifier_block trace_module_nb = {
index d4e31e96920650fef131562dda2ff5cc52b39fbb..bb7783b90361b94b9be9513be9fe5ce1633b061d 100644 (file)
@@ -96,7 +96,7 @@ static int module_trace_bprintk_format_notify(struct notifier_block *self,
                if (val == MODULE_STATE_COMING)
                        hold_module_trace_bprintk_format(start, end);
        }
-       return 0;
+       return NOTIFY_OK;
 }
 
 /*
@@ -174,7 +174,7 @@ __init static int
 module_trace_bprintk_format_notify(struct notifier_block *self,
                unsigned long val, void *data)
 {
-       return 0;
+       return NOTIFY_OK;
 }
 static inline const char **
 find_next_mod_format(int start_index, void *v, const char **fmt, loff_t *pos)
index 73956eaff8a9c412177b9a7eeac91d76c3947d5d..8e05ed2cd39e323ea5cf313eb46085d1e014c6d5 100644 (file)
@@ -521,7 +521,7 @@ static int tracepoint_module_notify(struct notifier_block *self,
        case MODULE_STATE_UNFORMED:
                break;
        }
-       return ret;
+       return notifier_from_errno(ret);
 }
 
 static struct notifier_block tracepoint_module_nb = {