From: Junio C Hamano <gitster@pobox.com>
To: "Miguel Ángel Pastor Olivar via GitGitGadget" <gitgitgadget@gmail.com>
Cc: git@vger.kernel.org,
"Miguel Ángel Pastor Olivar" <miguelinlas3@gmail.com>,
"Miguel Ángel Pastor Olivar" <migue@github.com>
Subject: Re: [PATCH 1/2] cat-file: configurable number of symlink resolutions
Date: Mon, 17 Jun 2024 12:33:50 -0700 [thread overview]
Message-ID: <xmqqwmmn5ppd.fsf@gitster.g> (raw)
In-Reply-To: <cbf38c7281de33289f622c9926c75744323311af.1718615028.git.gitgitgadget@gmail.com> ("Miguel Ángel Pastor Olivar via GitGitGadget"'s message of "Mon, 17 Jun 2024 09:03:47 +0000")
"Miguel Ángel Pastor Olivar via GitGitGadget"
<gitgitgadget@gmail.com> writes:
> diff --git a/Documentation/config/core.txt b/Documentation/config/core.txt
> index 93d65e1dfd2..ca2d1eede52 100644
> --- a/Documentation/config/core.txt
> +++ b/Documentation/config/core.txt
> @@ -757,3 +757,8 @@ core.maxTreeDepth::
> tree (e.g., "a/b/cde/f" has a depth of 4). This is a fail-safe
> to allow Git to abort cleanly, and should not generally need to
> be adjusted. The default is 4096.
> +
> +core.maxSymlinkDepth::
> + The maximum number of symlinks Git is willing to resolve while
> + looking for a tree entry.
> + The default is GET_TREE_ENTRY_FOLLOW_SYMLINKS_MAX_LINKS.
> \ No newline at end of file
Style: please do not end our text files with an incomplete line.
Regarding the patch contents, this is an end-user facing document.
How would they learn what the actual value is?
Is there a "valid range" the users are allowed to set this value to?
If so, what is the range? What do users get when they set it outside
the allowed range? Do they get warned? Do they get die()? Is the
value silently ignored?
If there is no upper limit for the "valid range", how does a user
set it to "infinity", and what's the downside of doing so? What
happens when the user sets it to 0, or a negative value, if there is
no lower limit for the "valid range"? The questions in this
paragraph your updated documentation text do not have to answer if
your "valid range" does have both upper and lower limit, but the
documentation must answer questions in the previous paragraph.
> diff --git a/config.c b/config.c
> index abce05b7744..d69e9a3ae6b 100644
> --- a/config.c
> +++ b/config.c
> @@ -1682,6 +1682,11 @@ static int git_default_core_config(const char *var, const char *value,
> return 0;
> }
>
> + if (!strcmp(var, "core.maxsymlinkdepth")) {
> + max_symlink_depth = git_config_int(var, value, ctx->kvi);
> + return 0;
> + }
> +
> /* Add other config variables here and to Documentation/config.txt. */
> return platform_core_config(var, value, ctx, cb);
> }
> diff --git a/environment.c b/environment.c
> index 701d5151354..6d7a5001eb1 100644
> --- a/environment.c
> +++ b/environment.c
> @@ -95,6 +95,7 @@ int max_allowed_tree_depth =
> #else
> 2048;
> #endif
> +int max_symlink_depth = -1;
Why set it to -1 here, instead of initializing it to the
GET_TREE_ENTRY_FOLLOW_SYMLINKS? By introducing a configuration
variable (which by the way I am not convinced is necessarily a good
idea to begin with), you are surfacing that built-in default value
as a more prominent thing, not hidden away in a little corner of
tree-walk.c implementation detail. If you do define a "valid range
of values", the code that parses core.maxsymlinkdepth in config.c
may want to learn what the value of GET_TREE_ENTRY_FOLLOW_SYMLINKS
is, which means the symbol may need to be visible in some common
header file anyway.
By the way, this is not a new problem this patch introduces, as the
default GET_TREE_ENTRY_FOLLOW_SYMLINKS came from 275721c2
(tree-walk: learn get_tree_entry_follow_symlinks, 2015-05-20), but I
wonder if the default number should somehow be aligned with the
other upper limit, SYMREF_MAXDEPTH for a symbolic ref pointing at
another symbolic ref pointing at yet another ...
> +test_expect_success 'git cat-file --batch --follow-symlink stop resolving symlinks' '
> + printf "loop 22\nHEAD:link-to-symlink-3\n">expect &&
> + printf 'HEAD:link-to-symlink-3' | git -c core.maxsymlinkdepth=1 cat-file --batch="%(objectname) %(objecttype) %(objectsize)" --follow-symlinks > actual &&
Style: a redirection operator needs a single SP before it and no SP
between it and its target, i.e.
printf "loop 22..." >expect &&
printf "HEAD:link ..." |
git ... cat-file ... >actual &&
Also fold overly long line after "|" pipeline.
> diff --git a/tree-walk.c b/tree-walk.c
> index 6565d9ad993..3ec2302309e 100644
> --- a/tree-walk.c
> +++ b/tree-walk.c
> @@ -664,7 +664,12 @@ enum get_oid_result get_tree_entry_follow_symlinks(struct repository *r,
> struct object_id current_tree_oid;
> struct strbuf namebuf = STRBUF_INIT;
> struct tree_desc t;
> - int follows_remaining = GET_TREE_ENTRY_FOLLOW_SYMLINKS_MAX_LINKS;
> + int follows_remaining =
> + max_symlink_depth > -1 &&
> + max_symlink_depth <=
> + GET_TREE_ENTRY_FOLLOW_SYMLINKS_MAX_LINKS ?
> + max_symlink_depth :
> + GET_TREE_ENTRY_FOLLOW_SYMLINKS_MAX_LINKS;
Strange indentation.
If you range-limit at the place the configuration was parsed, you do
not have to do any of this here, but if you insist hiding
GET_TREE_ENTRY_FOLLOW_SYMLINKS_MAX_LINKS from others (yet still use
it in the end-user facing documentation???), then
int follows_remaining =
(-1 < max_symlink_depth &&
max_symlink_depth <= GET_TREE_ENTRY_FOLLOW_SYMLINKS_MAX_LINKS)
? max_symlink_depth
: GET_TREE_ENTRY_FOLLOW_SYMLINKS_MAX_LINKS;
or perhaps a lot easier to read form, i.e.
int follows_remaining = max_symlink_depth;
if (follows_remaining < -1 ||
GET_TREE_ENTRY_FOLLOW_SYMLINKS_MAX_LINKS < follows_remaining)
follows_remaining = GET_TREE_ENTRY_FOLLOW_SYMLINKS_MAX_LINKS;
> init_tree_desc(&t, NULL, NULL, 0UL);
> strbuf_addstr(&namebuf, name);
Thanks.
next prev parent reply other threads:[~2024-06-17 19:33 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-17 9:03 [PATCH 0/2] Symlink resolutions: limits and return modes Miguel Ángel Pastor Olivar via GitGitGadget
2024-06-17 9:03 ` [PATCH 1/2] cat-file: configurable number of symlink resolutions Miguel Ángel Pastor Olivar via GitGitGadget
2024-06-17 19:33 ` Junio C Hamano [this message]
2024-06-17 9:03 ` [PATCH 2/2] cat-file: configurable "best effort mode" for symlink resolution Miguel Ángel Pastor Olivar via GitGitGadget
2024-06-17 19:33 ` Junio C Hamano
2024-06-17 19:33 ` [PATCH 0/2] Symlink resolutions: limits and return modes 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=xmqqwmmn5ppd.fsf@gitster.g \
--to=gitster@pobox.com \
--cc=git@vger.kernel.org \
--cc=gitgitgadget@gmail.com \
--cc=migue@github.com \
--cc=miguelinlas3@gmail.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).