lkml.org 
[lkml]   [2021]   [Dec]   [16]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v2] extcon: fix extcon_get_extcon_dev() error handling
On Thu, Dec 16, 2021 at 05:38:04PM +0900, Chanwoo Choi wrote:
> >
> > To be honest, I'm not sure how this differs from other functions which
> > return -EPROBE_DEFER. How do other functions guarantee they will only
> > be called from probe()?
>
> If it is possible to know extcon_get_extcon_dev() will be only callled on probe,
> it is no problem. But, it is not able to guarantee that extcon_get_extcon_dev()
> is called on probe. Because of this reason, this issue should be handled in each device driver.
>
> -EPROBE_DEFER is only for probe step. If return -EPROBE_DEFER except for probe,
> it is wrong return value.

The future is vast and unknowable. We can't really future proof code
and we should never try do that if it makes the code more complicated
right now.

When Andy submitted basically the same patch as me three years ago we
worried about future developers so we didn't merge his patch. But
three years later no non-probe() were introduced. Meanwhile the bad API
created bugs in the kernel for current users.

To some extent, we have to trust future developers to do sane things.

I have also created a static checker test for people who call
EPROBE_DEFER outside of probe functions. I don't know that this test
will work. It will take a few days for the call tree to be built.
Another option would be to change the warning from "is this called from
something besides probe()" to "is this called from an ioctl". That
would generate fewer false positives.

Or potentially, I could save a most recent function pointer in the call
tree. I'll play around with that in the coming months.

Anyway, I've attached my first draft just to show you my thinking on
this.

regards,
dan carpenter
/*
* Copyright (C) 2021 Oracle.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see http://www.gnu.org/copyleft/gpl.txt
*/

/*
* This module answers the question:
* is_probe_function()
* called_from_probe() which returns 1 for yes, -1 for maybe and 0 for no.
*
*/

#include "smatch.h"

static int my_id;

STATE(from_probe);
STATE(maybe);

static unsigned long is_probe_fn;

bool is_probe_function(void)
{
return is_probe_fn;
}

int called_from_probe(void)
{
struct smatch_state *state;

if (is_probe_function())
return 1;

state = get_state(my_id, "from_probe", NULL);
if (state == &from_probe)
return 1;
if (state == &maybe)
return -1;

return 0;
}

static struct smatch_state *merge_func(struct smatch_state *s1, struct smatch_state *s2)
{
return &maybe;
}

static void match_probe_call(struct expression *expr)
{
char *name;

name = get_member_name(expr);
if (!name)
return;
if (strstr(name, "->probe"))
sql_insert_caller_info(expr, PROBE_FN, -1, "", "");
free_string(name);
}

static void select_probe_fn(const char *name, struct symbol *sym, char *key, char *value)
{
is_probe_fn = 1;
}

static void match_call_info(struct expression *expr)
{
int call;

call = called_from_probe();
if (!call)
return;

sql_insert_caller_info(expr, CALLED_FROM_PROBE, -1, "", (call == 1) ? "y" : "m");
}

static void select_from_probe(const char *name, struct symbol *sym, char *key, char *value)
{
if (strcmp(value, "y") == 0)
set_state(my_id, "from_probe", NULL, &from_probe);
else
set_state(my_id, "from_probe", NULL, &maybe);
}

void register_kernel_probe(int id)
{
my_id = id;

if (option_project != PROJ_KERNEL)
return;

add_merge_hook(my_id, &merge_func);

add_function_data(&is_probe_fn);
add_hook(&match_probe_call, FUNCTION_CALL_HOOK);
select_caller_info_hook(&select_probe_fn, PROBE_FN);

add_hook(&match_call_info, FUNCTION_CALL_HOOK);
select_caller_info_hook(&select_from_probe, CALLED_FROM_PROBE);
}
/*
* Copyright (C) 2021 Oracle.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see http://www.gnu.org/copyleft/gpl.txt
*/

#include "smatch.h"
#include "smatch_slist.h"

static int my_id;

static void check_for_EPROBE_DEFER(struct expression *expr)
{
sval_t sval;
char *macro;

if (!expr || expr->type != EXPR_PREOP || expr->op != '-')
return;

expr = expr->unop;
if (!get_value(expr, &sval) || sval.value != 517)
return;

macro = get_macro_name(expr->pos);
if (!macro || strcmp(macro, "EPROBE_DEFER") != 0)
return;
sm_warning("returning EPROBE_DEFER from non probe() function");
}

static void match_assign(struct expression *expr)
{
/* "ret = ERR_PTR(-EPROBE_DEFER)" generates a fake assignment so
* that is covered here.
*/
check_for_EPROBE_DEFER(expr->right);
}

static void match_return(struct expression *expr)
{
check_for_EPROBE_DEFER(expr);
}

void check_EPROBE_DEFER(int id)
{
my_id = id;

if (option_project != PROJ_KERNEL)
return;

add_hook(&match_assign, ASSIGNMENT_HOOK);
add_hook(&match_return, RETURN_HOOK);
}
\
 
 \ /
  Last update: 2021-12-16 17:00    [W:0.208 / U:0.024 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site