From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS53758 23.128.96.0/24 X-Spam-Status: No, score=-3.7 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_PASS, SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by dcvr.yhbt.net (Postfix) with ESMTP id 337E61F953 for ; Wed, 5 Jan 2022 15:22:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S241398AbiAEPVm (ORCPT ); Wed, 5 Jan 2022 10:21:42 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54264 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S241379AbiAEPVl (ORCPT ); Wed, 5 Jan 2022 10:21:41 -0500 Received: from mail-wm1-x336.google.com (mail-wm1-x336.google.com [IPv6:2a00:1450:4864:20::336]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 30927C061245 for ; Wed, 5 Jan 2022 07:21:41 -0800 (PST) Received: by mail-wm1-x336.google.com with SMTP id l4so25742770wmq.3 for ; Wed, 05 Jan 2022 07:21:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=message-id:in-reply-to:references:from:date:subject:fcc :content-transfer-encoding:mime-version:to:cc; bh=6Crqt2t8eX8d6Ywbvl9jSQ6nmbsUVI+LgcsjEmk6p9E=; b=hCWXt9+V9KfBhNo96rpgpnlsRMZMGnexT9Jl1GcPEKtgXWPhLtHyNEKDqYZ6mOsRhX n9tcYvub/aCtNbUOtHRpWcFVOIQ+mB5ujCN/24IU0Zig4LVTLE7uPCJrJIBqXy80swIC Bn/QP1kPgfYmESt5VKdWcyOsiAWTMZqhLxvBHaXRJgMwevd1LqfXWGfSrmZg1aoVe/hS R3U8RY3YryVHAswGcYHWReLhK36WHLcPl4z91I1uVfi50wMZLnn1cuQEMGwX0pEX8p1+ bsaCfzlkXMysaZNhM6bjzIqvjD1aM7MEDJ5ufMS3ND6030qyYTTWTseCXSMfNX762syt /hIQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:message-id:in-reply-to:references:from:date :subject:fcc:content-transfer-encoding:mime-version:to:cc; bh=6Crqt2t8eX8d6Ywbvl9jSQ6nmbsUVI+LgcsjEmk6p9E=; b=GwsMOf8OJu0oHBNnezTi3FGXVY2kbMGAuL5A8FfZh33Ji3uGSSlMfb/Xs94xVw4EQe M124hJ6I+fyTwyU7AwmoAclLRku3975/5v7HVYv6wpk24Gg1zfPkPFhihYUIGJYTc2NK 99Ul+8D118X0zt1qmMsnU65qJeKRDbIlnmYj1jZvh/M1WzfcqTw9L8XSvTmsk9S708as iiB1q0UilLTc+2dWxgnl4dZvwtZmPWBvojzHt7HxYBkGr0/llLR1uJGFz/EtMVExaa6o 9aDvwWRWdF8Mgwf2kxDp23vGR9Brq+ozs1ygrnR/i/WId7Pxh9RRzD7nLwLPrqU86WeP q8RQ== X-Gm-Message-State: AOAM531pyeka9V3v3W0fkUO+59m1yA7ec+mlumcWbBOLHw8Tomi8xOs9 T754JJl0+QEgqbb4Z1nODur3zWl+r/M= X-Google-Smtp-Source: ABdhPJyH6aDx5CJua4xNSPwKhAAURlRK1dYFcOxpryFy5YWqPCpdo4BCveAPTl83TtthKywkcIl/5A== X-Received: by 2002:a7b:c5c4:: with SMTP id n4mr1022145wmk.134.1641396099387; Wed, 05 Jan 2022 07:21:39 -0800 (PST) Received: from [127.0.0.1] ([13.74.141.28]) by smtp.gmail.com with ESMTPSA id r7sm40242199wrt.77.2022.01.05.07.21.38 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 05 Jan 2022 07:21:38 -0800 (PST) Message-Id: In-Reply-To: References: From: "John Cai via GitGitGadget" Date: Wed, 05 Jan 2022 15:21:37 +0000 Subject: [PATCH v4] receive-pack.c: consolidate find header logic Fcc: Sent Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit MIME-Version: 1.0 To: git@vger.kernel.org Cc: John Cai , John Cai Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org From: John Cai There are two functions that have very similar logic of finding a header value. find_commit_header, and find_header. We can conslidate the logic by introducing a new function find_header_mem, which is equivalent to find_commit_header except it takes a len parameter that determines how many bytes will be read. find_commit_header and find_header can then both call find_header_mem. This reduces duplicate logic, as the logic for finding header values can now all live in one place. Signed-off-by: John Cai --- Consolidate find_header logic into one function This addresses the NEEDSWORK comment in builtin/receive-pack.c: /** * NEEDSWORK: reuse find_commit_header() from jk/commit-author-parsing * after dropping "_commit" from its name and possibly moving it out * of commit.c **/ There are two functions that have very similar logic of finding a header value. find_commit_header, and find_header. We can conslidate the logic by introducing a new function find_header_mem, which is equivalent to find_commit_header except it takes a len parameter that determines how many bytes will be read. find_commit_header and find_header can then both call find_header_mem. This reduces duplicate logic, as the logic for finding header values can now all live in one place. Changes since v4: * added NEEDSWORK block detailing what needs to be done to clean up find_header_mem Changes since v3: * fixed verbiage in commit message * adjusted style of an if block (based on Junio's feedback) Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-1125%2Fjohn-cai%2Fjc%2Freplace-find-header-v4 Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-1125/john-cai/jc/replace-find-header-v4 Pull-Request: https://github.com/git/git/pull/1125 Range-diff vs v3: 1: 463df42e7e0 ! 1: a7b00022b00 receive-pack.c: consolidate find header logic @@ Commit message There are two functions that have very similar logic of finding a header value. find_commit_header, and find_header. We can conslidate the logic - by using find_commit_header and replacing the logic in find_header. - - Introduce a new function find_header_max, which is equivalent to + by introducing a new function find_header_mem, which is equivalent to find_commit_header except it takes a len parameter that determines how - many bytes to read. find_commit_header can then call find_header_max - with 0 as the len. + many bytes will be read. find_commit_header and find_header can then both + call find_header_mem. - This cleans up duplicate logic, as the logic for finding header values - is now all in one place. + This reduces duplicate logic, as the logic for finding header values + can now all live in one place. Signed-off-by: John Cai @@ builtin/receive-pack.c: static char *prepare_push_cert_nonce(const char *path, t + size_t out_len; + const char *val = find_header_mem(msg, len, key, &out_len); + -+ if (val == NULL) ++ if (!val) + return NULL; + + if (next_line) @@ commit.c: struct commit_list **commit_list_append(struct commit *commit, const char *line = msg; - while (line) { ++ /* ++ * NEEDSWORK: Between line[0] and msg[len], there may not be a LF nor NUL ++ * at all, and strchrnul() will scan beyond the range we were given ++ * Make this operation safer and abide by the contract to only read up to len. ++ */ + while (line && line < msg + len) { const char *eol = strchrnul(line, '\n'); builtin/receive-pack.c | 33 ++++++++++----------------------- commit.c | 14 ++++++++++++-- commit.h | 5 +++++ 3 files changed, 27 insertions(+), 25 deletions(-) diff --git a/builtin/receive-pack.c b/builtin/receive-pack.c index 9f4a0b816cf..5c2732a0d07 100644 --- a/builtin/receive-pack.c +++ b/builtin/receive-pack.c @@ -581,32 +581,19 @@ static char *prepare_push_cert_nonce(const char *path, timestamp_t stamp) return strbuf_detach(&buf, NULL); } -/* - * NEEDSWORK: reuse find_commit_header() from jk/commit-author-parsing - * after dropping "_commit" from its name and possibly moving it out - * of commit.c - */ static char *find_header(const char *msg, size_t len, const char *key, const char **next_line) { - int key_len = strlen(key); - const char *line = msg; - - while (line && line < msg + len) { - const char *eol = strchrnul(line, '\n'); - - if ((msg + len <= eol) || line == eol) - return NULL; - if (line + key_len < eol && - !memcmp(line, key, key_len) && line[key_len] == ' ') { - int offset = key_len + 1; - if (next_line) - *next_line = *eol ? eol + 1 : eol; - return xmemdupz(line + offset, (eol - line) - offset); - } - line = *eol ? eol + 1 : NULL; - } - return NULL; + size_t out_len; + const char *val = find_header_mem(msg, len, key, &out_len); + + if (!val) + return NULL; + + if (next_line) + *next_line = val + out_len + 1; + + return xmemdupz(val, out_len); } /* diff --git a/commit.c b/commit.c index a348f085b2b..5ece03e6373 100644 --- a/commit.c +++ b/commit.c @@ -1631,12 +1631,18 @@ struct commit_list **commit_list_append(struct commit *commit, return &new_commit->next; } -const char *find_commit_header(const char *msg, const char *key, size_t *out_len) +const char *find_header_mem(const char *msg, size_t len, + const char *key, size_t *out_len) { int key_len = strlen(key); const char *line = msg; - while (line) { + /* + * NEEDSWORK: Between line[0] and msg[len], there may not be a LF nor NUL + * at all, and strchrnul() will scan beyond the range we were given + * Make this operation safer and abide by the contract to only read up to len. + */ + while (line && line < msg + len) { const char *eol = strchrnul(line, '\n'); if (line == eol) @@ -1653,6 +1659,10 @@ const char *find_commit_header(const char *msg, const char *key, size_t *out_len return NULL; } +const char *find_commit_header(const char *msg, const char *key, size_t *out_len) +{ + return find_header_mem(msg, strlen(msg), key, out_len); +} /* * Inspect the given string and determine the true "end" of the log message, in * order to find where to put a new Signed-off-by trailer. Ignored are diff --git a/commit.h b/commit.h index 3ea32766bcb..38cc5426615 100644 --- a/commit.h +++ b/commit.h @@ -290,12 +290,17 @@ void free_commit_extra_headers(struct commit_extra_header *extra); /* * Search the commit object contents given by "msg" for the header "key". + * Reads up to "len" bytes of "msg". * Returns a pointer to the start of the header contents, or NULL. The length * of the header, up to the first newline, is returned via out_len. * * Note that some headers (like mergetag) may be multi-line. It is the caller's * responsibility to parse further in this case! */ +const char *find_header_mem(const char *msg, size_t len, + const char *key, + size_t *out_len); + const char *find_commit_header(const char *msg, const char *key, size_t *out_len); base-commit: c8b2ade48c204690119936ada89cd938c476c5c2 -- gitgitgadget