2005-09-25 22:43:05 +04:00
|
|
|
#include "cache.h"
|
|
|
|
#include "refs.h"
|
2006-06-14 00:22:00 +04:00
|
|
|
#include "builtin.h"
|
2007-10-08 01:14:43 +04:00
|
|
|
#include "parse-options.h"
|
2013-09-09 17:22:32 +04:00
|
|
|
#include "quote.h"
|
|
|
|
#include "argv-array.h"
|
2005-09-25 22:43:05 +04:00
|
|
|
|
2007-10-08 01:14:43 +04:00
|
|
|
static const char * const git_update_ref_usage[] = {
|
2012-08-20 16:32:49 +04:00
|
|
|
N_("git update-ref [options] -d <refname> [<oldval>]"),
|
|
|
|
N_("git update-ref [options] <refname> <newval> [<oldval>]"),
|
2013-09-09 17:22:32 +04:00
|
|
|
N_("git update-ref [options] --stdin [-z]"),
|
2007-10-08 01:14:43 +04:00
|
|
|
NULL
|
|
|
|
};
|
2005-09-26 03:28:51 +04:00
|
|
|
|
2013-09-09 17:22:32 +04:00
|
|
|
static int updates_alloc;
|
|
|
|
static int updates_count;
|
2014-04-07 17:47:57 +04:00
|
|
|
static struct ref_update **updates;
|
2013-09-09 17:22:32 +04:00
|
|
|
|
|
|
|
static char line_termination = '\n';
|
|
|
|
static int update_flags;
|
|
|
|
|
|
|
|
static struct ref_update *update_alloc(void)
|
|
|
|
{
|
|
|
|
struct ref_update *update;
|
|
|
|
|
|
|
|
/* Allocate and zero-init a struct ref_update */
|
|
|
|
update = xcalloc(1, sizeof(*update));
|
|
|
|
ALLOC_GROW(updates, updates_count + 1, updates_alloc);
|
|
|
|
updates[updates_count++] = update;
|
|
|
|
|
|
|
|
/* Store and reset accumulated options */
|
|
|
|
update->flags = update_flags;
|
|
|
|
update_flags = 0;
|
|
|
|
|
|
|
|
return update;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void update_store_ref_name(struct ref_update *update,
|
|
|
|
const char *ref_name)
|
|
|
|
{
|
|
|
|
if (check_refname_format(ref_name, REFNAME_ALLOW_ONELEVEL))
|
|
|
|
die("invalid ref format: %s", ref_name);
|
|
|
|
update->ref_name = xstrdup(ref_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void update_store_new_sha1(struct ref_update *update,
|
|
|
|
const char *newvalue)
|
|
|
|
{
|
|
|
|
if (*newvalue && get_sha1(newvalue, update->new_sha1))
|
|
|
|
die("invalid new value for ref %s: %s",
|
|
|
|
update->ref_name, newvalue);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void update_store_old_sha1(struct ref_update *update,
|
|
|
|
const char *oldvalue)
|
|
|
|
{
|
|
|
|
if (*oldvalue && get_sha1(oldvalue, update->old_sha1))
|
|
|
|
die("invalid old value for ref %s: %s",
|
|
|
|
update->ref_name, oldvalue);
|
|
|
|
|
|
|
|
/* We have an old value if non-empty, or if empty without -z */
|
|
|
|
update->have_old = *oldvalue || line_termination;
|
|
|
|
}
|
|
|
|
|
2014-04-07 17:47:54 +04:00
|
|
|
/*
|
|
|
|
* Parse one whitespace- or NUL-terminated, possibly C-quoted argument
|
|
|
|
* and append the result to arg. Return a pointer to the terminator.
|
|
|
|
* Die if there is an error in how the argument is C-quoted. This
|
|
|
|
* function is only used if not -z.
|
|
|
|
*/
|
2013-09-09 17:22:32 +04:00
|
|
|
static const char *parse_arg(const char *next, struct strbuf *arg)
|
|
|
|
{
|
2014-04-07 17:47:54 +04:00
|
|
|
if (*next == '"') {
|
|
|
|
const char *orig = next;
|
|
|
|
|
|
|
|
if (unquote_c_style(arg, next, &next))
|
|
|
|
die("badly quoted argument: %s", orig);
|
|
|
|
if (*next && !isspace(*next))
|
|
|
|
die("unexpected character after quoted argument: %s", orig);
|
|
|
|
} else {
|
2013-09-09 17:22:32 +04:00
|
|
|
while (*next && !isspace(*next))
|
|
|
|
strbuf_addch(arg, *next++);
|
2014-04-07 17:47:54 +04:00
|
|
|
}
|
2013-09-09 17:22:32 +04:00
|
|
|
|
|
|
|
return next;
|
|
|
|
}
|
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
/*
|
|
|
|
* Parse the argument immediately after "command SP". If not -z, then
|
|
|
|
* handle C-quoting. Write the argument to arg. Set *next to point
|
|
|
|
* at the character that terminates the argument. Die if C-quoting is
|
|
|
|
* malformed.
|
|
|
|
*/
|
|
|
|
static void parse_first_arg(struct strbuf *input, const char **next,
|
|
|
|
struct strbuf *arg)
|
2013-09-09 17:22:32 +04:00
|
|
|
{
|
|
|
|
strbuf_reset(arg);
|
|
|
|
if (line_termination) {
|
|
|
|
/* Without -z, use the next argument */
|
2014-04-07 17:47:58 +04:00
|
|
|
*next = parse_arg(*next, arg);
|
2013-09-09 17:22:32 +04:00
|
|
|
} else {
|
2014-04-07 17:47:58 +04:00
|
|
|
/* With -z, use everything up to the next NUL */
|
|
|
|
strbuf_addstr(arg, *next);
|
|
|
|
*next += arg->len;
|
2013-09-09 17:22:32 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
/*
|
|
|
|
* Parse a SP/NUL separator followed by the next SP- or NUL-terminated
|
|
|
|
* argument, if any. If there is an argument, write it to arg, set
|
|
|
|
* *next to point at the character terminating the argument, and
|
|
|
|
* return 0. If there is no argument at all (not even the empty
|
|
|
|
* string), return a non-zero result and leave *next unchanged.
|
|
|
|
*/
|
|
|
|
static int parse_next_arg(struct strbuf *input, const char **next,
|
|
|
|
struct strbuf *arg)
|
2013-09-09 17:22:32 +04:00
|
|
|
{
|
|
|
|
strbuf_reset(arg);
|
|
|
|
if (line_termination) {
|
|
|
|
/* Without -z, consume SP and use next argument */
|
2014-04-07 17:47:58 +04:00
|
|
|
if (!**next || **next == line_termination)
|
|
|
|
return -1;
|
|
|
|
if (**next != ' ')
|
|
|
|
die("expected SP but got: %s", *next);
|
|
|
|
(*next)++;
|
|
|
|
*next = parse_arg(*next, arg);
|
2013-09-09 17:22:32 +04:00
|
|
|
} else {
|
|
|
|
/* With -z, read the next NUL-terminated line */
|
2014-04-07 17:47:58 +04:00
|
|
|
if (**next)
|
|
|
|
die("expected NUL but got: %s", *next);
|
|
|
|
(*next)++;
|
|
|
|
if (*next == input->buf + input->len)
|
|
|
|
return -1;
|
|
|
|
strbuf_addstr(arg, *next);
|
|
|
|
*next += arg->len;
|
2013-09-09 17:22:32 +04:00
|
|
|
}
|
2014-04-07 17:47:58 +04:00
|
|
|
return 0;
|
2013-09-09 17:22:32 +04:00
|
|
|
}
|
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The following five parse_cmd_*() functions parse the corresponding
|
|
|
|
* command. In each case, next points at the character following the
|
|
|
|
* command name and the following space. They each return a pointer
|
|
|
|
* to the character terminating the command, and die with an
|
|
|
|
* explanatory message if there are any parsing problems. All of
|
|
|
|
* these functions handle either text or binary format input,
|
|
|
|
* depending on how line_termination is set.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static const char *parse_cmd_update(struct strbuf *input, const char *next)
|
2013-09-09 17:22:32 +04:00
|
|
|
{
|
|
|
|
struct strbuf ref = STRBUF_INIT;
|
|
|
|
struct strbuf newvalue = STRBUF_INIT;
|
|
|
|
struct strbuf oldvalue = STRBUF_INIT;
|
|
|
|
struct ref_update *update;
|
|
|
|
|
|
|
|
update = update_alloc();
|
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
parse_first_arg(input, &next, &ref);
|
|
|
|
if (ref.buf[0])
|
2013-09-09 17:22:32 +04:00
|
|
|
update_store_ref_name(update, ref.buf);
|
|
|
|
else
|
|
|
|
die("update line missing <ref>");
|
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
if (!parse_next_arg(input, &next, &newvalue))
|
2013-09-09 17:22:32 +04:00
|
|
|
update_store_new_sha1(update, newvalue.buf);
|
|
|
|
else
|
|
|
|
die("update %s missing <newvalue>", ref.buf);
|
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
if (!parse_next_arg(input, &next, &oldvalue)) {
|
2013-09-09 17:22:32 +04:00
|
|
|
update_store_old_sha1(update, oldvalue.buf);
|
2014-04-07 17:47:58 +04:00
|
|
|
if (*next != line_termination)
|
|
|
|
die("update %s has extra input: %s", ref.buf, next);
|
|
|
|
} else if (!line_termination)
|
2013-09-09 17:22:32 +04:00
|
|
|
die("update %s missing [<oldvalue>] NUL", ref.buf);
|
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
return next;
|
2013-09-09 17:22:32 +04:00
|
|
|
}
|
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
static const char *parse_cmd_create(struct strbuf *input, const char *next)
|
2013-09-09 17:22:32 +04:00
|
|
|
{
|
|
|
|
struct strbuf ref = STRBUF_INIT;
|
|
|
|
struct strbuf newvalue = STRBUF_INIT;
|
|
|
|
struct ref_update *update;
|
|
|
|
|
|
|
|
update = update_alloc();
|
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
parse_first_arg(input, &next, &ref);
|
|
|
|
if (ref.buf[0])
|
2013-09-09 17:22:32 +04:00
|
|
|
update_store_ref_name(update, ref.buf);
|
|
|
|
else
|
|
|
|
die("create line missing <ref>");
|
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
if (!parse_next_arg(input, &next, &newvalue))
|
2013-09-09 17:22:32 +04:00
|
|
|
update_store_new_sha1(update, newvalue.buf);
|
|
|
|
else
|
|
|
|
die("create %s missing <newvalue>", ref.buf);
|
2014-04-07 17:47:58 +04:00
|
|
|
|
2013-09-09 17:22:32 +04:00
|
|
|
if (is_null_sha1(update->new_sha1))
|
|
|
|
die("create %s given zero new value", ref.buf);
|
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
if (*next != line_termination)
|
2013-09-09 17:22:32 +04:00
|
|
|
die("create %s has extra input: %s", ref.buf, next);
|
2014-04-07 17:47:58 +04:00
|
|
|
|
|
|
|
return next;
|
2013-09-09 17:22:32 +04:00
|
|
|
}
|
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
static const char *parse_cmd_delete(struct strbuf *input, const char *next)
|
2013-09-09 17:22:32 +04:00
|
|
|
{
|
|
|
|
struct strbuf ref = STRBUF_INIT;
|
|
|
|
struct strbuf oldvalue = STRBUF_INIT;
|
|
|
|
struct ref_update *update;
|
|
|
|
|
|
|
|
update = update_alloc();
|
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
parse_first_arg(input, &next, &ref);
|
|
|
|
if (ref.buf[0])
|
2013-09-09 17:22:32 +04:00
|
|
|
update_store_ref_name(update, ref.buf);
|
|
|
|
else
|
|
|
|
die("delete line missing <ref>");
|
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
if (!parse_next_arg(input, &next, &oldvalue)) {
|
2013-09-09 17:22:32 +04:00
|
|
|
update_store_old_sha1(update, oldvalue.buf);
|
2014-04-07 17:47:58 +04:00
|
|
|
if (update->have_old && is_null_sha1(update->old_sha1))
|
|
|
|
die("delete %s given zero old value", ref.buf);
|
|
|
|
} else if (!line_termination)
|
2013-09-09 17:22:32 +04:00
|
|
|
die("delete %s missing [<oldvalue>] NUL", ref.buf);
|
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
if (*next != line_termination)
|
2013-09-09 17:22:32 +04:00
|
|
|
die("delete %s has extra input: %s", ref.buf, next);
|
2014-04-07 17:47:58 +04:00
|
|
|
|
|
|
|
return next;
|
2013-09-09 17:22:32 +04:00
|
|
|
}
|
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
static const char *parse_cmd_verify(struct strbuf *input, const char *next)
|
2013-09-09 17:22:32 +04:00
|
|
|
{
|
|
|
|
struct strbuf ref = STRBUF_INIT;
|
|
|
|
struct strbuf value = STRBUF_INIT;
|
|
|
|
struct ref_update *update;
|
|
|
|
|
|
|
|
update = update_alloc();
|
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
parse_first_arg(input, &next, &ref);
|
|
|
|
if (ref.buf[0])
|
2013-09-09 17:22:32 +04:00
|
|
|
update_store_ref_name(update, ref.buf);
|
|
|
|
else
|
|
|
|
die("verify line missing <ref>");
|
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
if (!parse_next_arg(input, &next, &value)) {
|
2013-09-09 17:22:32 +04:00
|
|
|
update_store_old_sha1(update, value.buf);
|
|
|
|
update_store_new_sha1(update, value.buf);
|
2014-04-07 17:47:58 +04:00
|
|
|
} else if (!line_termination)
|
2013-09-09 17:22:32 +04:00
|
|
|
die("verify %s missing [<oldvalue>] NUL", ref.buf);
|
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
if (*next != line_termination)
|
2013-09-09 17:22:32 +04:00
|
|
|
die("verify %s has extra input: %s", ref.buf, next);
|
2014-04-07 17:47:58 +04:00
|
|
|
|
|
|
|
return next;
|
2013-09-09 17:22:32 +04:00
|
|
|
}
|
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
static const char *parse_cmd_option(struct strbuf *input, const char *next)
|
2013-09-09 17:22:32 +04:00
|
|
|
{
|
2014-04-07 17:47:58 +04:00
|
|
|
if (!strncmp(next, "no-deref", 8) && next[8] == line_termination)
|
2013-09-09 17:22:32 +04:00
|
|
|
update_flags |= REF_NODEREF;
|
|
|
|
else
|
|
|
|
die("option unknown: %s", next);
|
2014-04-07 17:47:58 +04:00
|
|
|
return next + 8;
|
2013-09-09 17:22:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void update_refs_stdin(void)
|
|
|
|
{
|
2014-04-07 17:47:58 +04:00
|
|
|
struct strbuf input = STRBUF_INIT;
|
|
|
|
const char *next;
|
2013-09-09 17:22:32 +04:00
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
if (strbuf_read(&input, 0, 1000) < 0)
|
|
|
|
die_errno("could not read from stdin");
|
|
|
|
next = input.buf;
|
2013-09-09 17:22:32 +04:00
|
|
|
/* Read each line dispatch its command */
|
2014-04-07 17:47:58 +04:00
|
|
|
while (next < input.buf + input.len) {
|
|
|
|
if (*next == line_termination)
|
2013-09-09 17:22:32 +04:00
|
|
|
die("empty command in input");
|
2014-04-07 17:47:58 +04:00
|
|
|
else if (isspace(*next))
|
|
|
|
die("whitespace before command: %s", next);
|
|
|
|
else if (starts_with(next, "update "))
|
|
|
|
next = parse_cmd_update(&input, next + 7);
|
|
|
|
else if (starts_with(next, "create "))
|
|
|
|
next = parse_cmd_create(&input, next + 7);
|
|
|
|
else if (starts_with(next, "delete "))
|
|
|
|
next = parse_cmd_delete(&input, next + 7);
|
|
|
|
else if (starts_with(next, "verify "))
|
|
|
|
next = parse_cmd_verify(&input, next + 7);
|
|
|
|
else if (starts_with(next, "option "))
|
|
|
|
next = parse_cmd_option(&input, next + 7);
|
2013-09-09 17:22:32 +04:00
|
|
|
else
|
2014-04-07 17:47:58 +04:00
|
|
|
die("unknown command: %s", next);
|
|
|
|
|
|
|
|
next++;
|
|
|
|
}
|
2013-09-09 17:22:32 +04:00
|
|
|
|
2014-04-07 17:47:58 +04:00
|
|
|
strbuf_release(&input);
|
2013-09-09 17:22:32 +04:00
|
|
|
}
|
|
|
|
|
2006-07-29 09:44:25 +04:00
|
|
|
int cmd_update_ref(int argc, const char **argv, const char *prefix)
|
2005-09-25 22:43:05 +04:00
|
|
|
{
|
2011-08-25 19:40:50 +04:00
|
|
|
const char *refname, *oldval, *msg = NULL;
|
2006-05-17 13:55:19 +04:00
|
|
|
unsigned char sha1[20], oldsha1[20];
|
2013-09-09 17:22:32 +04:00
|
|
|
int delete = 0, no_deref = 0, read_stdin = 0, end_null = 0, flags = 0;
|
2007-10-08 01:14:43 +04:00
|
|
|
struct option options[] = {
|
2012-08-20 16:32:49 +04:00
|
|
|
OPT_STRING( 'm', NULL, &msg, N_("reason"), N_("reason of the update")),
|
2013-08-03 15:51:19 +04:00
|
|
|
OPT_BOOL('d', NULL, &delete, N_("delete the reference")),
|
|
|
|
OPT_BOOL( 0 , "no-deref", &no_deref,
|
2012-08-20 16:32:49 +04:00
|
|
|
N_("update <refname> not the one it points to")),
|
2013-09-20 23:36:12 +04:00
|
|
|
OPT_BOOL('z', NULL, &end_null, N_("stdin has NUL-terminated arguments")),
|
|
|
|
OPT_BOOL( 0 , "stdin", &read_stdin, N_("read updates from stdin")),
|
2007-10-08 01:14:43 +04:00
|
|
|
OPT_END(),
|
|
|
|
};
|
2005-09-25 22:43:05 +04:00
|
|
|
|
2008-05-14 21:46:53 +04:00
|
|
|
git_config(git_default_config, NULL);
|
2009-05-23 22:53:12 +04:00
|
|
|
argc = parse_options(argc, argv, prefix, options, git_update_ref_usage,
|
|
|
|
0);
|
2007-10-08 01:14:43 +04:00
|
|
|
if (msg && !*msg)
|
|
|
|
die("Refusing to perform update with empty message.");
|
2006-05-17 13:55:19 +04:00
|
|
|
|
2013-09-09 17:22:32 +04:00
|
|
|
if (read_stdin) {
|
|
|
|
if (delete || no_deref || argc > 0)
|
|
|
|
usage_with_options(git_update_ref_usage, options);
|
|
|
|
if (end_null)
|
|
|
|
line_termination = '\0';
|
|
|
|
update_refs_stdin();
|
2014-04-07 17:47:56 +04:00
|
|
|
return update_refs(msg, updates, updates_count,
|
|
|
|
UPDATE_REFS_DIE_ON_ERR);
|
2013-09-09 17:22:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (end_null)
|
|
|
|
usage_with_options(git_update_ref_usage, options);
|
|
|
|
|
2006-09-27 12:58:57 +04:00
|
|
|
if (delete) {
|
2008-06-03 03:34:53 +04:00
|
|
|
if (argc < 1 || argc > 2)
|
2008-06-03 03:34:48 +04:00
|
|
|
usage_with_options(git_update_ref_usage, options);
|
|
|
|
refname = argv[0];
|
|
|
|
oldval = argv[1];
|
|
|
|
} else {
|
|
|
|
const char *value;
|
|
|
|
if (argc < 2 || argc > 3)
|
2007-10-08 01:14:43 +04:00
|
|
|
usage_with_options(git_update_ref_usage, options);
|
2008-06-03 03:34:48 +04:00
|
|
|
refname = argv[0];
|
|
|
|
value = argv[1];
|
|
|
|
oldval = argv[2];
|
|
|
|
if (get_sha1(value, sha1))
|
|
|
|
die("%s: not a valid SHA1", value);
|
2006-09-27 12:58:57 +04:00
|
|
|
}
|
|
|
|
|
2008-06-03 03:34:48 +04:00
|
|
|
hashclr(oldsha1); /* all-zero hash in case oldval is the empty string */
|
2006-09-27 12:58:57 +04:00
|
|
|
if (oldval && *oldval && get_sha1(oldval, oldsha1))
|
2005-09-25 22:43:05 +04:00
|
|
|
die("%s: not a valid old SHA1", oldval);
|
|
|
|
|
2008-10-26 05:33:58 +03:00
|
|
|
if (no_deref)
|
|
|
|
flags = REF_NODEREF;
|
2008-06-03 03:34:48 +04:00
|
|
|
if (delete)
|
2008-10-26 05:33:58 +03:00
|
|
|
return delete_ref(refname, oldval ? oldsha1 : NULL, flags);
|
2008-06-03 03:34:48 +04:00
|
|
|
else
|
|
|
|
return update_ref(msg, refname, sha1, oldval ? oldsha1 : NULL,
|
2014-04-07 17:47:56 +04:00
|
|
|
flags, UPDATE_REFS_DIE_ON_ERR);
|
2005-09-25 22:43:05 +04:00
|
|
|
}
|