summaryrefslogtreecommitdiff
path: root/fsck.c
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2021-03-03 15:16:45 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2021-03-03 15:16:45 +0900
commit6ba3f5fe54627a14bacb0d7c5646bacdde939a75 (patch)
tree91520e99a053bd9307ece415b497fcafece618db /fsck.c
parent4fedab0f0d7851ee49dc4fe705a81788dcb4df39 (diff)
downloadgit-6ba3f5fe54627a14bacb0d7c5646bacdde939a75.tar.gz
git-6ba3f5fe54627a14bacb0d7c5646bacdde939a75.tar.bz2
git-6ba3f5fe54627a14bacb0d7c5646bacdde939a75.zip
Imported Upstream version 2.19.4upstream/2.19.4
Diffstat (limited to 'fsck.c')
-rw-r--r--fsck.c16
1 files changed, 15 insertions, 1 deletions
diff --git a/fsck.c b/fsck.c
index 78ce79cf..6b1e5c1d 100644
--- a/fsck.c
+++ b/fsck.c
@@ -16,6 +16,7 @@
#include "packfile.h"
#include "submodule-config.h"
#include "config.h"
+#include "credential.h"
#include "help.h"
static struct oidset gitmodules_found = OIDSET_INIT;
@@ -988,6 +989,19 @@ static int fsck_tag(struct tag *tag, const char *data,
return fsck_tag_buffer(tag, data, size, options);
}
+static int check_submodule_url(const char *url)
+{
+ struct credential c = CREDENTIAL_INIT;
+ int ret;
+
+ if (looks_like_command_line_option(url))
+ return -1;
+
+ ret = credential_from_url_gently(&c, url, 1);
+ credential_clear(&c);
+ return ret;
+}
+
struct fsck_gitmodules_data {
struct object *obj;
struct fsck_options *options;
@@ -1012,7 +1026,7 @@ static int fsck_gitmodules_fn(const char *var, const char *value, void *vdata)
"disallowed submodule name: %s",
name);
if (!strcmp(key, "url") && value &&
- looks_like_command_line_option(value))
+ check_submodule_url(value) < 0)
data->ret |= report(data->options, data->obj,
FSCK_MSG_GITMODULES_URL,
"disallowed submodule url: %s",