Message ID | d42152654bf91e90b8b417316f255746a3a75155.1721995576.git.ps@pks.im (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | Memory leak fixes (pt.3) | expand |
On Fri, Jul 26, 2024 at 02:15:24PM +0200, Patrick Steinhardt wrote: > Users can pass patterns to git-ls-remote(1), which allows them to filter > the list of printed references. We assemble those patterns into an array > and prefix them with "*/", but never free either the array nor the > allocated strings. > > Fix those leaks. > > Signed-off-by: Patrick Steinhardt <ps@pks.im> > --- > builtin/ls-remote.c | 11 +++++++---- > t/t5535-fetch-push-symref.sh | 1 + > 2 files changed, 8 insertions(+), 4 deletions(-) > > diff --git a/builtin/ls-remote.c b/builtin/ls-remote.c > index debf2d4f88..500f76fe4c 100644 > --- a/builtin/ls-remote.c > +++ b/builtin/ls-remote.c > @@ -47,7 +47,7 @@ int cmd_ls_remote(int argc, const char **argv, const char *prefix) > int status = 0; > int show_symref_target = 0; > const char *uploadpack = NULL; > - const char **pattern = NULL; > + char **pattern = NULL; > struct transport_ls_refs_options transport_options = > TRANSPORT_LS_REFS_OPTIONS_INIT; > int i; > @@ -96,9 +96,8 @@ int cmd_ls_remote(int argc, const char **argv, const char *prefix) > if (argc > 1) { > int i; > CALLOC_ARRAY(pattern, argc); > - for (i = 1; i < argc; i++) { > + for (i = 1; i < argc; i++) > pattern[i - 1] = xstrfmt("*/%s", argv[i]); > - } Instead of xstrfmt()-ing these strings directly, it may be more ergonomic to use a strvec here and call strvec_pushf(). That would save you explicitly CALLOC'ing the array, and would also save you the explicit free() on each element of pattern below. > } > > if (flags & REF_TAGS) > @@ -136,7 +135,7 @@ int cmd_ls_remote(int argc, const char **argv, const char *prefix) > struct ref_array_item *item; > if (!check_ref_type(ref, flags)) > continue; > - if (!tail_match(pattern, ref->name)) > + if (!tail_match((const char **) pattern, ref->name)) You could also drop the const cast here as well. The resulting patch on top of this one simplifies things a bit: --- 8< --- diff --git a/builtin/ls-remote.c b/builtin/ls-remote.c index 500f76fe4c..b59ac98d81 100644 --- a/builtin/ls-remote.c +++ b/builtin/ls-remote.c @@ -47,7 +47,7 @@ int cmd_ls_remote(int argc, const char **argv, const char *prefix) int status = 0; int show_symref_target = 0; const char *uploadpack = NULL; - char **pattern = NULL; + struct strvec pattern = STRVEC_INIT; struct transport_ls_refs_options transport_options = TRANSPORT_LS_REFS_OPTIONS_INIT; int i; @@ -93,12 +93,8 @@ int cmd_ls_remote(int argc, const char **argv, const char *prefix) packet_trace_identity("ls-remote"); - if (argc > 1) { - int i; - CALLOC_ARRAY(pattern, argc); - for (i = 1; i < argc; i++) - pattern[i - 1] = xstrfmt("*/%s", argv[i]); - } + for (int i = 1; i < argc; i++) + strvec_pushf(&pattern, "*/%s", argv[i]); if (flags & REF_TAGS) strvec_push(&transport_options.ref_prefixes, "refs/tags/"); @@ -135,7 +131,7 @@ int cmd_ls_remote(int argc, const char **argv, const char *prefix) struct ref_array_item *item; if (!check_ref_type(ref, flags)) continue; - if (!tail_match((const char **) pattern, ref->name)) + if (!tail_match(pattern.v, ref->name)) continue; item = ref_array_push(&ref_array, ref->name, &ref->old_oid); item->symref = xstrdup_or_null(ref->symref); @@ -158,8 +154,6 @@ int cmd_ls_remote(int argc, const char **argv, const char *prefix) status = 1; transport_ls_refs_options_release(&transport_options); - for (i = 1; i < argc; i++) - free(pattern[i - 1]); - free(pattern); + strvec_clear(&pattern); return status; } --- >8 --- Thanks, Taylor
On Wed, Jul 31, 2024 at 12:35:29PM -0400, Taylor Blau wrote: > On Fri, Jul 26, 2024 at 02:15:24PM +0200, Patrick Steinhardt wrote: > > Users can pass patterns to git-ls-remote(1), which allows them to filter > > the list of printed references. We assemble those patterns into an array > > and prefix them with "*/", but never free either the array nor the > > allocated strings. > > > > Fix those leaks. > > > > Signed-off-by: Patrick Steinhardt <ps@pks.im> > > --- > > builtin/ls-remote.c | 11 +++++++---- > > t/t5535-fetch-push-symref.sh | 1 + > > 2 files changed, 8 insertions(+), 4 deletions(-) > > > > diff --git a/builtin/ls-remote.c b/builtin/ls-remote.c > > index debf2d4f88..500f76fe4c 100644 > > --- a/builtin/ls-remote.c > > +++ b/builtin/ls-remote.c > > @@ -47,7 +47,7 @@ int cmd_ls_remote(int argc, const char **argv, const char *prefix) > > int status = 0; > > int show_symref_target = 0; > > const char *uploadpack = NULL; > > - const char **pattern = NULL; > > + char **pattern = NULL; > > struct transport_ls_refs_options transport_options = > > TRANSPORT_LS_REFS_OPTIONS_INIT; > > int i; > > @@ -96,9 +96,8 @@ int cmd_ls_remote(int argc, const char **argv, const char *prefix) > > if (argc > 1) { > > int i; > > CALLOC_ARRAY(pattern, argc); > > - for (i = 1; i < argc; i++) { > > + for (i = 1; i < argc; i++) > > pattern[i - 1] = xstrfmt("*/%s", argv[i]); > > - } > > Instead of xstrfmt()-ing these strings directly, it may be more > ergonomic to use a strvec here and call strvec_pushf(). That would save > you explicitly CALLOC'ing the array, and would also save you the > explicit free() on each element of pattern below. Agreed, that reads way better. Thanks! Patrick
diff --git a/builtin/ls-remote.c b/builtin/ls-remote.c index debf2d4f88..500f76fe4c 100644 --- a/builtin/ls-remote.c +++ b/builtin/ls-remote.c @@ -47,7 +47,7 @@ int cmd_ls_remote(int argc, const char **argv, const char *prefix) int status = 0; int show_symref_target = 0; const char *uploadpack = NULL; - const char **pattern = NULL; + char **pattern = NULL; struct transport_ls_refs_options transport_options = TRANSPORT_LS_REFS_OPTIONS_INIT; int i; @@ -96,9 +96,8 @@ int cmd_ls_remote(int argc, const char **argv, const char *prefix) if (argc > 1) { int i; CALLOC_ARRAY(pattern, argc); - for (i = 1; i < argc; i++) { + for (i = 1; i < argc; i++) pattern[i - 1] = xstrfmt("*/%s", argv[i]); - } } if (flags & REF_TAGS) @@ -136,7 +135,7 @@ int cmd_ls_remote(int argc, const char **argv, const char *prefix) struct ref_array_item *item; if (!check_ref_type(ref, flags)) continue; - if (!tail_match(pattern, ref->name)) + if (!tail_match((const char **) pattern, ref->name)) continue; item = ref_array_push(&ref_array, ref->name, &ref->old_oid); item->symref = xstrdup_or_null(ref->symref); @@ -158,5 +157,9 @@ int cmd_ls_remote(int argc, const char **argv, const char *prefix) if (transport_disconnect(transport)) status = 1; transport_ls_refs_options_release(&transport_options); + + for (i = 1; i < argc; i++) + free(pattern[i - 1]); + free(pattern); return status; } diff --git a/t/t5535-fetch-push-symref.sh b/t/t5535-fetch-push-symref.sh index e8f6d233ff..7122af7fdb 100755 --- a/t/t5535-fetch-push-symref.sh +++ b/t/t5535-fetch-push-symref.sh @@ -2,6 +2,7 @@ test_description='avoiding conflicting update through symref aliasing' +TEST_PASSES_SANITIZE_LEAK=true . ./test-lib.sh test_expect_success 'setup' '
Users can pass patterns to git-ls-remote(1), which allows them to filter the list of printed references. We assemble those patterns into an array and prefix them with "*/", but never free either the array nor the allocated strings. Fix those leaks. Signed-off-by: Patrick Steinhardt <ps@pks.im> --- builtin/ls-remote.c | 11 +++++++---- t/t5535-fetch-push-symref.sh | 1 + 2 files changed, 8 insertions(+), 4 deletions(-)