2015-08-18 02:21:57 +02:00
|
|
|
#ifndef SUBMODULE_CONFIG_CACHE_H
|
|
|
|
#define SUBMODULE_CONFIG_CACHE_H
|
|
|
|
|
2018-05-02 02:25:42 +02:00
|
|
|
#include "cache.h"
|
2018-06-26 12:47:05 +02:00
|
|
|
#include "config.h"
|
2015-08-18 02:21:57 +02:00
|
|
|
#include "hashmap.h"
|
2016-03-01 03:07:11 +01:00
|
|
|
#include "submodule.h"
|
2015-08-18 02:21:57 +02:00
|
|
|
#include "strbuf.h"
|
|
|
|
|
2019-11-17 22:04:58 +01:00
|
|
|
/**
|
|
|
|
* The submodule config cache API allows to read submodule
|
|
|
|
* configurations/information from specified revisions. Internally
|
|
|
|
* information is lazily read into a cache that is used to avoid
|
|
|
|
* unnecessary parsing of the same .gitmodules files. Lookups can be done by
|
|
|
|
* submodule path or name.
|
|
|
|
*
|
|
|
|
* Usage
|
|
|
|
* -----
|
|
|
|
*
|
|
|
|
* The caller can look up information about submodules by using the
|
|
|
|
* `submodule_from_path()` or `submodule_from_name()` functions. They return
|
|
|
|
* a `struct submodule` which contains the values. The API automatically
|
|
|
|
* initializes and allocates the needed infrastructure on-demand. If the
|
|
|
|
* caller does only want to lookup values from revisions the initialization
|
|
|
|
* can be skipped.
|
|
|
|
*
|
|
|
|
* If the internal cache might grow too big or when the caller is done with
|
|
|
|
* the API, all internally cached values can be freed with submodule_free().
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-08-18 02:21:57 +02:00
|
|
|
/*
|
|
|
|
* Submodule entry containing the information about a certain submodule
|
2019-11-17 22:04:58 +01:00
|
|
|
* in a certain revision. It is returned by the lookup functions.
|
2015-08-18 02:21:57 +02:00
|
|
|
*/
|
|
|
|
struct submodule {
|
|
|
|
const char *path;
|
|
|
|
const char *name;
|
|
|
|
const char *url;
|
|
|
|
int fetch_recurse;
|
|
|
|
const char *ignore;
|
2016-07-29 02:44:07 +02:00
|
|
|
const char *branch;
|
2016-03-01 03:07:11 +01:00
|
|
|
struct submodule_update_strategy update_strategy;
|
2018-05-02 02:25:42 +02:00
|
|
|
/* the object id of the responsible .gitmodules file */
|
|
|
|
struct object_id gitmodules_oid;
|
2016-05-26 23:59:42 +02:00
|
|
|
int recommend_shallow;
|
2015-08-18 02:21:57 +02:00
|
|
|
};
|
|
|
|
|
2017-10-16 15:58:27 +02:00
|
|
|
#define SUBMODULE_INIT { NULL, NULL, NULL, RECURSE_SUBMODULES_NONE, \
|
2018-05-02 02:25:42 +02:00
|
|
|
NULL, NULL, SUBMODULE_UPDATE_STRATEGY_INIT, { { 0 } }, -1 };
|
2017-10-16 15:58:27 +02:00
|
|
|
|
2017-06-22 20:43:44 +02:00
|
|
|
struct submodule_cache;
|
|
|
|
struct repository;
|
|
|
|
|
2019-04-29 10:28:14 +02:00
|
|
|
void submodule_cache_free(struct submodule_cache *cache);
|
2017-06-22 20:43:44 +02:00
|
|
|
|
2019-04-29 10:28:14 +02:00
|
|
|
int parse_submodule_fetchjobs(const char *var, const char *value);
|
|
|
|
int parse_fetch_recurse_submodules_arg(const char *opt, const char *arg);
|
2017-06-23 21:13:00 +02:00
|
|
|
struct option;
|
2019-04-29 10:28:14 +02:00
|
|
|
int option_fetch_parse_recurse_submodules(const struct option *opt,
|
2019-04-29 10:28:23 +02:00
|
|
|
const char *arg, int unset);
|
2019-04-29 10:28:14 +02:00
|
|
|
int parse_update_recurse_submodules_arg(const char *opt, const char *arg);
|
|
|
|
int parse_push_recurse_submodules_arg(const char *opt, const char *arg);
|
2020-01-16 03:39:55 +01:00
|
|
|
void repo_read_gitmodules(struct repository *repo, int skip_if_read);
|
2019-04-29 10:28:14 +02:00
|
|
|
void gitmodules_config_oid(const struct object_id *commit_oid);
|
2019-11-17 22:04:58 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Same as submodule_from_path but lookup by name.
|
|
|
|
*/
|
2018-03-29 00:35:29 +02:00
|
|
|
const struct submodule *submodule_from_name(struct repository *r,
|
|
|
|
const struct object_id *commit_or_tree,
|
|
|
|
const char *name);
|
2019-11-17 22:04:58 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Given a tree-ish in the superproject and a path, return the submodule that
|
|
|
|
* is bound at the path in the named tree.
|
|
|
|
*/
|
2018-03-29 00:35:29 +02:00
|
|
|
const struct submodule *submodule_from_path(struct repository *r,
|
|
|
|
const struct object_id *commit_or_tree,
|
|
|
|
const char *path);
|
2019-11-17 22:04:58 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use these to free the internally cached values.
|
|
|
|
*/
|
2018-03-29 00:35:28 +02:00
|
|
|
void submodule_free(struct repository *r);
|
2019-11-17 22:04:58 +01:00
|
|
|
|
2018-10-05 15:05:52 +02:00
|
|
|
int print_config_from_gitmodules(struct repository *repo, const char *key);
|
2018-10-05 15:05:53 +02:00
|
|
|
int config_set_in_gitmodules_file_gently(const char *key, const char *value);
|
2015-08-18 02:21:57 +02:00
|
|
|
|
submodule-config: verify submodule names as paths
Submodule "names" come from the untrusted .gitmodules file,
but we blindly append them to $GIT_DIR/modules to create our
on-disk repo paths. This means you can do bad things by
putting "../" into the name (among other things).
Let's sanity-check these names to avoid building a path that
can be exploited. There are two main decisions:
1. What should the allowed syntax be?
It's tempting to reuse verify_path(), since submodule
names typically come from in-repo paths. But there are
two reasons not to:
a. It's technically more strict than what we need, as
we really care only about breaking out of the
$GIT_DIR/modules/ hierarchy. E.g., having a
submodule named "foo/.git" isn't actually
dangerous, and it's possible that somebody has
manually given such a funny name.
b. Since we'll eventually use this checking logic in
fsck to prevent downstream repositories, it should
be consistent across platforms. Because
verify_path() relies on is_dir_sep(), it wouldn't
block "foo\..\bar" on a non-Windows machine.
2. Where should we enforce it? These days most of the
.gitmodules reads go through submodule-config.c, so
I've put it there in the reading step. That should
cover all of the C code.
We also construct the name for "git submodule add"
inside the git-submodule.sh script. This is probably
not a big deal for security since the name is coming
from the user anyway, but it would be polite to remind
them if the name they pick is invalid (and we need to
expose the name-checker to the shell anyway for our
test scripts).
This patch issues a warning when reading .gitmodules
and just ignores the related config entry completely.
This will generally end up producing a sensible error,
as it works the same as a .gitmodules file which is
missing a submodule entry (so "submodule update" will
barf, but "git clone --recurse-submodules" will print
an error but not abort the clone.
There is one minor oddity, which is that we print the
warning once per malformed config key (since that's how
the config subsystem gives us the entries). So in the
new test, for example, the user would see three
warnings. That's OK, since the intent is that this case
should never come up outside of malicious repositories
(and then it might even benefit the user to see the
message multiple times).
Credit for finding this vulnerability and the proof of
concept from which the test script was adapted goes to
Etienne Stalmans.
Signed-off-by: Jeff King <peff@peff.net>
2018-04-30 09:25:25 +02:00
|
|
|
/*
|
|
|
|
* Returns 0 if the name is syntactically acceptable as a submodule "name"
|
|
|
|
* (e.g., that may be found in the subsection of a .gitmodules file) and -1
|
|
|
|
* otherwise.
|
|
|
|
*/
|
|
|
|
int check_submodule_name(const char *name);
|
|
|
|
|
2018-06-26 12:47:05 +02:00
|
|
|
/*
|
2018-06-26 12:47:08 +02:00
|
|
|
* Note: these helper functions exist solely to maintain backward
|
|
|
|
* compatibility with 'fetch' and 'update_clone' storing configuration in
|
|
|
|
* '.gitmodules'.
|
2018-06-26 12:47:05 +02:00
|
|
|
*
|
2018-06-26 12:47:08 +02:00
|
|
|
* New helpers to retrieve arbitrary configuration from the '.gitmodules' file
|
|
|
|
* should NOT be added.
|
2018-06-26 12:47:05 +02:00
|
|
|
*/
|
2019-04-29 10:28:14 +02:00
|
|
|
void fetch_config_from_gitmodules(int *max_children, int *recurse_submodules);
|
|
|
|
void update_clone_config_from_gitmodules(int *max_jobs);
|
2018-06-26 12:47:06 +02:00
|
|
|
|
2015-08-18 02:21:57 +02:00
|
|
|
#endif /* SUBMODULE_CONFIG_H */
|