From: Alexander Turenko <alexander.turenko@tarantool.org> To: Sergey Kaplun <skaplun@tarantool.org> Cc: tarantool-patches@dev.tarantool.org Subject: Re: [Tarantool-patches] [PATCH] cppcheck: src/lua/fiber.c null pointer dereference Date: Thu, 24 Sep 2020 12:32:54 +0300 [thread overview] Message-ID: <20200924093254.dhm4hzlerfwftfkn@tkn_work_nb> (raw) In-Reply-To: <20200923231619.samgq6wp44dhjjdp@tkn_work_nb> On Thu, Sep 24, 2020 at 02:16:20AM +0300, Alexander Turenko wrote: > On Mon, Sep 21, 2020 at 08:48:37PM +0300, Sergey Kaplun wrote: > > Found and fixed possible null pointer dereference with cppcheck: > > > > [src/lua/fiber.c:245] -> [src/lua/fiber.c:217]: (warning) Either the condition 'if(func)' is redundant or there is possible null pointer dereference: func. > > Nit: I think there is nothing bad in carrying one-line non-prose text > like an error message from some tool. It looks more pretty this way, > IMHO. > > The first question that comes into my mind: whether the NULL dereference > may occur before the patch or it is the false positive. It is nice, when > it is investigated and described right in the commit message. > > In fact it influences how we take the patch: whether it is bugfix or > refactoring. Bugfixes are usually included into future release notes (it > is user visible change), but refactoring usually is not. Aside of this point (and the nit below), the patch is okay. LGTM except those points. > > > --- > > > > Branch: https://github.com/tarantool/tarantool/tree/skaplun/cppcheck-lua-fiber-possible-null-pointer-dereference > > > > src/lua/fiber.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/src/lua/fiber.c b/src/lua/fiber.c > > index 45bc03787..bb6212b24 100644 > > --- a/src/lua/fiber.c > > +++ b/src/lua/fiber.c > > @@ -214,7 +214,7 @@ fiber_backtrace_cb(int frameno, void *frameret, const char *func, size_t offset, > > { > > struct lua_fiber_tb_ctx *tb_ctx = (struct lua_fiber_tb_ctx *)cb_ctx; > > struct lua_State *L = tb_ctx->L; > > - if (strstr(func, "lj_BC_FUNCC") == func) { > > + if (func && strstr(func, "lj_BC_FUNCC") == func) { > > Nit: We usually explicitly check against NULL (or 0 for an integer type). This nit, I meant. > I was wonder whether 'func' actually can be NULL and found that there is > no error handling around unw_get_proc_name(). We ignore its return value > and just return content of our thread local buffer (not NULL). Moved to https://github.com/tarantool/tarantool/issues/5326
next prev parent reply other threads:[~2020-09-24 9:32 UTC|newest] Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-09-21 17:48 Sergey Kaplun 2020-09-22 5:07 ` Sergey Kaplun 2020-09-23 23:16 ` Alexander Turenko 2020-09-24 9:22 ` Sergey Kaplun 2020-09-24 9:32 ` Alexander Turenko [this message] 2020-09-24 11:31 ` Sergey Kaplun 2020-09-28 6:54 ` Kirill Yukhin
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20200924093254.dhm4hzlerfwftfkn@tkn_work_nb \ --to=alexander.turenko@tarantool.org \ --cc=skaplun@tarantool.org \ --cc=tarantool-patches@dev.tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH] cppcheck: src/lua/fiber.c null pointer dereference' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox