From: Alexander Kuleshov <kuleshovmail@gmail.com>
To: Junio C Hamano <gitster@pobox.com>
Cc: Jeff King <peff@peff.net>,
Eric Sunshine <sunshine@sunshineco.com>,
"git@vger.kernel.org" <git@vger.kernel.org>
Subject: Re: [PATCH 1/1] change contract between system_path and it's callers
Date: Wed, 26 Nov 2014 20:00:26 +0600 [thread overview]
Message-ID: <CANCZXo7Su_dsHeMXe+a0E=12ArQPVuwWLJNKFfbogM+JjUP4Vg@mail.gmail.com> (raw)
In-Reply-To: <CANCZXo66ZzCB=LWrup9-GBWBrT0ozOeoTm=8GUiarjte3t=2UQ@mail.gmail.com>
What do you think if we create int variable, something like
given_config_must_free = 0; and will set up it to 1 in cases where it
will be allocated, and than we can free it in the end of cmd_config?
I'm reading git source code to understanding git internals and found
little memory leak in cat-file, so i fixed it as i described above.
2014-11-26 15:42 GMT+06:00 Alexander Kuleshov <kuleshovmail@gmail.com>:
> Maybe we will discard this patch, because i looked on it and tested
> with different places, it brings more leaks than before?
>
> 2014-11-26 9:53 GMT+06:00 Alexander Kuleshov <kuleshovmail@gmail.com>:
>>>
>>> Comparing this with what I sent out...
>>>
>>> > builtin/help.c | 10 +++++++---
>>> > exec_cmd.c | 17 +++++++++--------
>>> > exec_cmd.h | 4 ++--
>>> > git.c | 16 ++++++++++++----
>>> > 4 files changed, 30 insertions(+), 17 deletions(-)
>>> >
>>> > @@ -372,7 +373,9 @@ static void show_man_page(const char *git_cmd)
>>> > static void show_info_page(const char *git_cmd)
>>> > {
>>> > const char *page = cmd_to_page(git_cmd);
>>> > - setenv("INFOPATH", system_path(GIT_INFO_PATH), 1);
>>> > + char *git_info_path = system_path(GIT_INFO_PATH);
>>> > + setenv("INFOPATH", git_info_path, 1);
>>> > + free(git_info_path);
>>>
>>> We are just about to exec; does this warrant the code churn?
>>
>> hmm... Can't understand what's the problem here? We get git_info_path
>> from system_path which returns pointer which will need to free, set it in
>> environment var and than free it...
>>
>>>
>>> > execlp("info", "info", "gitman", page, (char *)NULL);
>>> > die(_("no info viewer handled the request"));
>>>
>>> > @@ -34,8 +34,7 @@ const char *system_path(const char *path)
>>> > #endif
>>> >
>>> > strbuf_addf(&d, "%s/%s", prefix, path);
>>> > - path = strbuf_detach(&d, NULL);
>>> > - return path;
>>> > + return d.buf;
>>>
>>> These happens to be the same with the current strbuf implementation,
>>> but it is a good manner to use strbuf_detach(&d, NULL) here. We
>>> don't know what other de-initialization tomorrow's implementation of
>>> the strbuf API may have to do in strbuf_detach().
>>
>> How to do it in correct way?
>>
>>
>> strbuf_addf(&d, "%s/%s", prefix, path);
>> path = strbuf_detach(&d, NULL);
>> return (char*)path;
>>
>> Or something else?
>>
>>>
>>> > @@ -68,16 +67,16 @@ void git_set_argv_exec_path(const char *exec_path)
>>> >
>>> >
>>> > /* Returns the highest-priority, location to look for git programs. */
>>> > -const char *git_exec_path(void)
>>> > +char *git_exec_path(void)
>>> > {
>>> > const char *env;
>>> >
>>> > if (argv_exec_path)
>>> > - return argv_exec_path;
>>> > + return strdup(argv_exec_path);
>>> >
>>> > env = getenv(EXEC_PATH_ENVIRONMENT);
>>> > if (env && *env) {
>>> > - return env;
>>> > + return strdup(env);
>>> > }
>>>
>>> Now you are making callers of git_exec_path() responsible for
>>> freeing the result they receive.
>>>
>>> git_exec_path() may be called quite a lot, which means we may end up
>>> calling system_path() many times during the life of a process
>>> without freeing its return value, so this change may be worth doing,
>>> but this patch is insufficient, isn't it?
>>>
>>> You just added load_command_list() in help.c a new leak or two, for
>>> example. There probably are other callers of this function but I
>>> don't have time to look at all of them myself right now.
>>
>> Yes, need to do that all git_exec_path() callers free result of git_exec_path.
>>
>>>
>>> > @@ -95,8 +94,10 @@ void setup_path(void)
>>> > {
>>> > const char *old_path = getenv("PATH");
>>> > struct strbuf new_path = STRBUF_INIT;
>>> > + char* exec_path = git_exec_path();
>>> >
>>> > - add_path(&new_path, git_exec_path());
>>> > + add_path(&new_path, exec_path);
>>> > + free(exec_path);
>>> > add_path(&new_path, argv0_path);
>>>
>>> This part by itself is good, provided if we make it the caller's
>>> responsiblity to free string returned by git_exec_path().
>>>
>>> > diff --git a/git.c b/git.c
>>> > index 82d7a1c..d01c4f1 100644
>>> > --- a/git.c
>>> > +++ b/git.c
>>> > @@ -95,17 +95,25 @@ static int handle_options(const char ***argv, int *argc, int *envchanged)
>>> > if (*cmd == '=')
>>> > git_set_argv_exec_path(cmd + 1);
>>> > else {
>>> > - puts(git_exec_path());
>>> > + char *exec_path = git_exec_path();
>>> > + puts(exec_path);
>>> > + free(exec_path);
>>> > exit(0);
>>> > }
>>> > } else if (!strcmp(cmd, "--html-path")) {
>>> > - puts(system_path(GIT_HTML_PATH));
>>> > + char *git_html_path = system_path(GIT_HTML_PATH);
>>> > + puts(git_html_path);
>>> > + free(git_html_path);
>>> > exit(0);
>>> > } else if (!strcmp(cmd, "--man-path")) {
>>> > - puts(system_path(GIT_MAN_PATH));
>>> > + char *git_man_path = system_path(GIT_MAN_PATH);
>>> > + puts(git_man_path);
>>> > + free(git_man_path);
>>> > exit(0);
>>> > } else if (!strcmp(cmd, "--info-path")) {
>>> > - puts(system_path(GIT_INFO_PATH));
>>> > + char *git_info_path = system_path(GIT_INFO_PATH);
>>> > + puts(git_info_path);
>>> > + free(git_info_path);
>>> > exit(0);
>>> > } else if (!strcmp(cmd, "-p") || !strcmp(cmd, "--paginate")) {
>>> > use_pager = 1;
>>>
>>> None of these warrant the code churn, I would say.
>>
>> Sorry, english is not my first language, what did you mean when saying:
>> "code churn"? Code duplication or something else?
>
>
>
> --
> _________________________
> 0xAX
--
_________________________
0xAX
next prev parent reply other threads:[~2014-11-26 14:00 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-23 13:56 GIT: [PATCH] exec_cmd: system_path memory leak fix 0xAX
2014-11-23 13:56 ` 0xAX
2014-11-23 14:01 ` 0xAX
2014-11-23 18:51 ` Junio C Hamano
2014-11-23 19:06 ` Alex Kuleshov
2014-11-23 19:19 ` Alex Kuleshov
2014-11-23 19:42 ` Jeff King
2014-11-23 20:07 ` Eric Sunshine
2014-11-23 21:58 ` Junio C Hamano
2014-11-24 7:02 ` Alex Kuleshov
2014-11-24 7:37 ` Junio C Hamano
2014-11-24 8:12 ` Alex Kuleshov
2014-11-24 13:11 ` Alexander Kuleshov
2014-11-24 14:00 ` Alex Kuleshov
2014-11-24 14:07 ` [PATCH] change contract between system_path and it's callers 0xAX
2014-11-24 19:33 ` Re*: " Junio C Hamano
2014-11-24 19:53 ` Alex Kuleshov
2014-11-24 20:20 ` Junio C Hamano
2014-11-24 20:50 ` Junio C Hamano
2014-11-25 6:45 ` Alexander Kuleshov
2014-11-25 7:04 ` Alexander Kuleshov
2014-11-25 17:55 ` Junio C Hamano
2014-11-25 18:03 ` Alexander Kuleshov
2014-11-25 18:24 ` [PATCH 1/1] " Alexander Kuleshov
2014-11-25 21:13 ` Junio C Hamano
2014-11-26 3:53 ` Alexander Kuleshov
2014-11-26 9:42 ` Alexander Kuleshov
2014-11-26 14:00 ` Alexander Kuleshov [this message]
2014-11-26 17:53 ` Junio C Hamano
2014-11-28 13:09 ` Philip Oakley
2014-11-25 20:20 ` Re*: [PATCH] " Junio C Hamano
2014-11-25 17:59 ` Alexander Kuleshov
2014-11-23 18:28 ` GIT: [PATCH] exec_cmd: system_path memory leak fix Junio C Hamano
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='CANCZXo7Su_dsHeMXe+a0E=12ArQPVuwWLJNKFfbogM+JjUP4Vg@mail.gmail.com' \
--to=kuleshovmail@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=peff@peff.net \
--cc=sunshine@sunshineco.com \
/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
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).