* [PATCH] history: streamline message preparation and plug file stream leak @ 2026-06-26 16:38 Junio C Hamano 2026-06-29 6:33 ` Patrick Steinhardt 2026-06-29 16:08 ` [PATCH v2] " Junio C Hamano 0 siblings, 2 replies; 5+ messages in thread From: Junio C Hamano @ 2026-06-26 16:38 UTC (permalink / raw) To: git; +Cc: Patrick Steinhardt, Johannes Schindelin An early part of fill_commit_mmessage() function uses write_file_buf() to write out what was prepared in a strbuf, which is primarily meant for use by callers that have their own message prepared fully and called as the last thing to flush it to the destination file. However, the function then opens a file stream in append mode to further write into it. It may have been understandable if this was a later addition, but it seems it came from a single commit, d205234c (builtin/history: implement "reword" subcommand, 2026-01-13), which is somewhat puzzling, but anyway... Just open the file stream upfront for writing, write the message the function has in the strbuf, and then keep writing whatever it wants to write to the same open file stream. And do not forget to close the stream. We are about to pass the resulting file to an external editor, and on some systems, notably Windows, you are not supposed to keep a file open while expecting another program to access it. Diagnosed-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com> --- * As the initial one was written and sent as "how about doing a bit more thorough job while we are at it?" response to a posted patch found in <pull.2158.git.1782412427801.gitgitgadget@gmail.com>, this is a tested and merge-ready cersion that I consider "v1". builtin/history.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/builtin/history.c b/builtin/history.c index 8dcb9a6046..f17ec049c0 100644 --- a/builtin/history.c +++ b/builtin/history.c @@ -41,11 +41,6 @@ static int fill_commit_message(struct repository *repo, " empty message aborts the commit.\n"); struct wt_status s; - strbuf_addstr(out, default_message); - strbuf_addch(out, '\n'); - strbuf_commented_addf(out, comment_line_str, hint, action, comment_line_str); - write_file_buf(path, out->buf, out->len); - wt_status_prepare(repo, &s); FREE_AND_NULL(s.branch); s.ahead_behind_flags = AHEAD_BEHIND_QUICK; @@ -57,14 +52,20 @@ static int fill_commit_message(struct repository *repo, s.whence = FROM_COMMIT; s.committable = 1; - s.fp = fopen(git_path_commit_editmsg(), "a"); + s.fp = fopen(path, "w"); if (!s.fp) - return error_errno(_("could not open '%s'"), git_path_commit_editmsg()); + return error_errno(_("could not open '%s'"), path); + + strbuf_addstr(out, default_message); + strbuf_addch(out, '\n'); + strbuf_commented_addf(out, comment_line_str, hint, action, comment_line_str); + fwrite(out->buf, 1, out->len, s.fp); wt_status_collect_changes_trees(&s, old_tree, new_tree); wt_status_print(&s); wt_status_collect_free_buffers(&s); string_list_clear_func(&s.change, change_data_free); + fclose(s.fp); strbuf_reset(out); if (launch_editor(path, out, NULL)) { -- 2.55.0-rc2-177-gc9430f6415 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] history: streamline message preparation and plug file stream leak 2026-06-26 16:38 [PATCH] history: streamline message preparation and plug file stream leak Junio C Hamano @ 2026-06-29 6:33 ` Patrick Steinhardt 2026-06-29 15:21 ` Junio C Hamano 2026-06-29 16:08 ` [PATCH v2] " Junio C Hamano 1 sibling, 1 reply; 5+ messages in thread From: Patrick Steinhardt @ 2026-06-29 6:33 UTC (permalink / raw) To: Junio C Hamano; +Cc: git, Johannes Schindelin On Fri, Jun 26, 2026 at 09:38:42AM -0700, Junio C Hamano wrote: > diff --git a/builtin/history.c b/builtin/history.c > index 8dcb9a6046..f17ec049c0 100644 > --- a/builtin/history.c > +++ b/builtin/history.c > @@ -41,11 +41,6 @@ static int fill_commit_message(struct repository *repo, > " empty message aborts the commit.\n"); > struct wt_status s; > > - strbuf_addstr(out, default_message); > - strbuf_addch(out, '\n'); > - strbuf_commented_addf(out, comment_line_str, hint, action, comment_line_str); > - write_file_buf(path, out->buf, out->len); > - > wt_status_prepare(repo, &s); > FREE_AND_NULL(s.branch); > s.ahead_behind_flags = AHEAD_BEHIND_QUICK; > @@ -57,14 +52,20 @@ static int fill_commit_message(struct repository *repo, > s.whence = FROM_COMMIT; > s.committable = 1; > > - s.fp = fopen(git_path_commit_editmsg(), "a"); Here we reuse the local `path` variable, which already carries the result of `git_path_commit_editmsg()`. > + s.fp = fopen(path, "w"); > if (!s.fp) > - return error_errno(_("could not open '%s'"), git_path_commit_editmsg()); > + return error_errno(_("could not open '%s'"), path); Likewise. > + strbuf_addstr(out, default_message); > + strbuf_addch(out, '\n'); > + strbuf_commented_addf(out, comment_line_str, hint, action, comment_line_str); > + fwrite(out->buf, 1, out->len, s.fp); > > wt_status_collect_changes_trees(&s, old_tree, new_tree); > wt_status_print(&s); > wt_status_collect_free_buffers(&s); > string_list_clear_func(&s.change, change_data_free); > + fclose(s.fp); This is fixing the leaked file descriptor. One thing I wonder though is that we don't perform any error checking on the file in the new version. Previously, we would have died in case `write_file_buf()` failed. But now we just `fwrite()` without error checking. I don't think that "wt-status.c" does error checking either, so we might end up with a partially-written file without us noticing. Thanks! Patrick ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] history: streamline message preparation and plug file stream leak 2026-06-29 6:33 ` Patrick Steinhardt @ 2026-06-29 15:21 ` Junio C Hamano 2026-06-29 16:04 ` Patrick Steinhardt 0 siblings, 1 reply; 5+ messages in thread From: Junio C Hamano @ 2026-06-29 15:21 UTC (permalink / raw) To: Patrick Steinhardt; +Cc: git, Johannes Schindelin Patrick Steinhardt <ps@pks.im> writes: >> + strbuf_addstr(out, default_message); >> + strbuf_addch(out, '\n'); >> + strbuf_commented_addf(out, comment_line_str, hint, action, comment_line_str); >> + fwrite(out->buf, 1, out->len, s.fp); >> >> wt_status_collect_changes_trees(&s, old_tree, new_tree); >> wt_status_print(&s); >> wt_status_collect_free_buffers(&s); >> string_list_clear_func(&s.change, change_data_free); >> + fclose(s.fp); > > This is fixing the leaked file descriptor. > > One thing I wonder though is that we don't perform any error checking on > the file in the new version. Previously, we would have died in case > `write_file_buf()` failed. But now we just `fwrite()` without error > checking. I don't think that "wt-status.c" does error checking either, > so we might end up with a partially-written file without us noticing. Yes, the fwrite() should be protected with an error checking and die() the same way as the code before. Will send a v2. But isn't the end result the same between preimage and postimage? If the stuff appended by wt_status_* are still written without error checking, we would leave a partially-written file that has the default_messages and the commented hint/action but not necessarily whatever we wanted to add with wt_status(). ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] history: streamline message preparation and plug file stream leak 2026-06-29 15:21 ` Junio C Hamano @ 2026-06-29 16:04 ` Patrick Steinhardt 0 siblings, 0 replies; 5+ messages in thread From: Patrick Steinhardt @ 2026-06-29 16:04 UTC (permalink / raw) To: Junio C Hamano; +Cc: git, Johannes Schindelin On Mon, Jun 29, 2026 at 08:21:06AM -0700, Junio C Hamano wrote: > Patrick Steinhardt <ps@pks.im> writes: > > >> + strbuf_addstr(out, default_message); > >> + strbuf_addch(out, '\n'); > >> + strbuf_commented_addf(out, comment_line_str, hint, action, comment_line_str); > >> + fwrite(out->buf, 1, out->len, s.fp); > >> > >> wt_status_collect_changes_trees(&s, old_tree, new_tree); > >> wt_status_print(&s); > >> wt_status_collect_free_buffers(&s); > >> string_list_clear_func(&s.change, change_data_free); > >> + fclose(s.fp); > > > > This is fixing the leaked file descriptor. > > > > One thing I wonder though is that we don't perform any error checking on > > the file in the new version. Previously, we would have died in case > > `write_file_buf()` failed. But now we just `fwrite()` without error > > checking. I don't think that "wt-status.c" does error checking either, > > so we might end up with a partially-written file without us noticing. > > Yes, the fwrite() should be protected with an error checking and > die() the same way as the code before. Will send a v2. > > But isn't the end result the same between preimage and postimage? > If the stuff appended by wt_status_* are still written without error > checking, we would leave a partially-written file that has the > default_messages and the commented hint/action but not necessarily > whatever we wanted to add with wt_status(). At least it would only be the status information that's missing in that case, the commit message itself would be retained (or we'd die if it wasn't written). So we didn't have the potential to loose information that is intended to end up in the final commit. Patrick ^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v2] history: streamline message preparation and plug file stream leak 2026-06-26 16:38 [PATCH] history: streamline message preparation and plug file stream leak Junio C Hamano 2026-06-29 6:33 ` Patrick Steinhardt @ 2026-06-29 16:08 ` Junio C Hamano 1 sibling, 0 replies; 5+ messages in thread From: Junio C Hamano @ 2026-06-29 16:08 UTC (permalink / raw) To: git; +Cc: Patrick Steinhardt, Johannes Schindelin An early part of fill_commit_message() function uses write_file_buf() to write out what was prepared in a strbuf, which is primarily meant for use by callers that have their own message prepared fully and called as the last thing to flush it to the destination file. However, the function then opens a file stream in append mode to further write into it. It may have been understandable if this was a later addition, but it seems it came from a single commit, d205234c (builtin/history: implement "reword" subcommand, 2026-01-13), which is somewhat puzzling, but anyway... Just open the file stream upfront for writing, write the message the function has in the strbuf, and then keep writing whatever it wants to write to the same open file stream. And do not forget to close the stream. We are about to pass the resulting file to an external editor, and on some systems, notably Windows, you are not supposed to keep a file open while expecting another program to access it. Diagnosed-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com> --- * Changes from v1 are two additional error checks to notice failure from fwrite() and fclose() to die. Interdiff appears at the end. builtin/history.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/builtin/history.c b/builtin/history.c index 8dcb9a6046..365e81379b 100644 --- a/builtin/history.c +++ b/builtin/history.c @@ -41,11 +41,6 @@ static int fill_commit_message(struct repository *repo, " empty message aborts the commit.\n"); struct wt_status s; - strbuf_addstr(out, default_message); - strbuf_addch(out, '\n'); - strbuf_commented_addf(out, comment_line_str, hint, action, comment_line_str); - write_file_buf(path, out->buf, out->len); - wt_status_prepare(repo, &s); FREE_AND_NULL(s.branch); s.ahead_behind_flags = AHEAD_BEHIND_QUICK; @@ -57,14 +52,22 @@ static int fill_commit_message(struct repository *repo, s.whence = FROM_COMMIT; s.committable = 1; - s.fp = fopen(git_path_commit_editmsg(), "a"); + s.fp = fopen(path, "w"); if (!s.fp) - return error_errno(_("could not open '%s'"), git_path_commit_editmsg()); + return error_errno(_("could not open '%s'"), path); + + strbuf_addstr(out, default_message); + strbuf_addch(out, '\n'); + strbuf_commented_addf(out, comment_line_str, hint, action, comment_line_str); + if (fwrite(out->buf, 1, out->len, s.fp) != out->len) + die_errno(_("could not write to '%s'"), path); wt_status_collect_changes_trees(&s, old_tree, new_tree); wt_status_print(&s); wt_status_collect_free_buffers(&s); string_list_clear_func(&s.change, change_data_free); + if (fclose(s.fp)) + die_errno(_("could not write to '%s'"), path); strbuf_reset(out); if (launch_editor(path, out, NULL)) { Interdiff against v1: diff --git a/builtin/history.c b/builtin/history.c index f17ec049c0..365e81379b 100644 --- a/builtin/history.c +++ b/builtin/history.c @@ -59,13 +59,15 @@ static int fill_commit_message(struct repository *repo, strbuf_addstr(out, default_message); strbuf_addch(out, '\n'); strbuf_commented_addf(out, comment_line_str, hint, action, comment_line_str); - fwrite(out->buf, 1, out->len, s.fp); + if (fwrite(out->buf, 1, out->len, s.fp) != out->len) + die_errno(_("could not write to '%s'"), path); wt_status_collect_changes_trees(&s, old_tree, new_tree); wt_status_print(&s); wt_status_collect_free_buffers(&s); string_list_clear_func(&s.change, change_data_free); - fclose(s.fp); + if (fclose(s.fp)) + die_errno(_("could not write to '%s'"), path); strbuf_reset(out); if (launch_editor(path, out, NULL)) { -- 2.55.0-180-gf61bfe2e0b ^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-06-29 16:08 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-06-26 16:38 [PATCH] history: streamline message preparation and plug file stream leak Junio C Hamano 2026-06-29 6:33 ` Patrick Steinhardt 2026-06-29 15:21 ` Junio C Hamano 2026-06-29 16:04 ` Patrick Steinhardt 2026-06-29 16:08 ` [PATCH v2] " Junio C Hamano
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox