update-ref.c 10.7 KB
Newer Older
1 2
#include "cache.h"
#include "refs.h"
L
Lukas Sandström 已提交
3
#include "builtin.h"
4
#include "parse-options.h"
5 6
#include "quote.h"
#include "argv-array.h"
7

8
static const char * const git_update_ref_usage[] = {
9 10
	N_("git update-ref [options] -d <refname> [<oldval>]"),
	N_("git update-ref [options]    <refname> <newval> [<oldval>]"),
11
	N_("git update-ref [options] --stdin [-z]"),
12 13
	NULL
};
14

15
static struct ref_transaction *transaction;
16 17 18 19

static char line_termination = '\n';
static int update_flags;

20 21 22 23 24 25
/*
 * 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.
 */
26 27
static const char *parse_arg(const char *next, struct strbuf *arg)
{
28 29 30 31 32 33 34 35
	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 {
36 37
		while (*next && !isspace(*next))
			strbuf_addch(arg, *next++);
38
	}
39 40 41 42

	return next;
}

43
/*
44 45 46 47 48 49
 * Parse the reference name immediately after "command SP".  If not
 * -z, then handle C-quoting.  Return a pointer to a newly allocated
 * string containing the name of the reference, or NULL if there was
 * an error.  Update *next to point at the character that terminates
 * the argument.  Die if C-quoting is malformed or the reference name
 * is invalid.
50
 */
51
static char *parse_refname(struct strbuf *input, const char **next)
52
{
53 54
	struct strbuf ref = STRBUF_INIT;

55 56
	if (line_termination) {
		/* Without -z, use the next argument */
57
		*next = parse_arg(*next, &ref);
58
	} else {
59
		/* With -z, use everything up to the next NUL */
60 61 62 63 64 65 66
		strbuf_addstr(&ref, *next);
		*next += ref.len;
	}

	if (!ref.len) {
		strbuf_release(&ref);
		return NULL;
67
	}
68 69 70 71 72

	if (check_refname_format(ref.buf, REFNAME_ALLOW_ONELEVEL))
		die("invalid ref format: %s", ref.buf);

	return strbuf_detach(&ref, NULL);
73 74
}

75
/*
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
 * The value being parsed is <oldvalue> (as opposed to <newvalue>; the
 * difference affects which error messages are generated):
 */
#define PARSE_SHA1_OLD 0x01

/*
 * For backwards compatibility, accept an empty string for update's
 * <newvalue> in binary mode to be equivalent to specifying zeros.
 */
#define PARSE_SHA1_ALLOW_EMPTY 0x02

/*
 * Parse an argument separator followed by the next argument, if any.
 * If there is an argument, convert it to a SHA-1, write it to sha1,
 * set *next to point at the character terminating the argument, and
91
 * return 0.  If there is no argument at all (not even the empty
92 93 94
 * string), return 1 and leave *next unchanged.  If the value is
 * provided but cannot be converted to a SHA-1, die.  flags can
 * include PARSE_SHA1_OLD and/or PARSE_SHA1_ALLOW_EMPTY.
95
 */
96 97 98 99
static int parse_next_sha1(struct strbuf *input, const char **next,
			   unsigned char *sha1,
			   const char *command, const char *refname,
			   int flags)
100
{
101 102 103 104 105 106
	struct strbuf arg = STRBUF_INIT;
	int ret = 0;

	if (*next == input->buf + input->len)
		goto eof;

107 108
	if (line_termination) {
		/* Without -z, consume SP and use next argument */
109
		if (!**next || **next == line_termination)
110
			return 1;
111
		if (**next != ' ')
112 113
			die("%s %s: expected SP but got: %s",
			    command, refname, *next);
114
		(*next)++;
115 116 117 118 119 120 121 122
		*next = parse_arg(*next, &arg);
		if (arg.len) {
			if (get_sha1(arg.buf, sha1))
				goto invalid;
		} else {
			/* Without -z, an empty value means all zeros: */
			hashclr(sha1);
		}
123 124
	} else {
		/* With -z, read the next NUL-terminated line */
125
		if (**next)
126 127
			die("%s %s: expected NUL but got: %s",
			    command, refname, *next);
128 129
		(*next)++;
		if (*next == input->buf + input->len)
130 131 132 133 134 135 136 137 138
			goto eof;
		strbuf_addstr(&arg, *next);
		*next += arg.len;

		if (arg.len) {
			if (get_sha1(arg.buf, sha1))
				goto invalid;
		} else if (flags & PARSE_SHA1_ALLOW_EMPTY) {
			/* With -z, treat an empty value as all zeros: */
139 140
			warning("%s %s: missing <newvalue>, treating as zero",
				command, refname);
141 142 143 144 145 146 147 148
			hashclr(sha1);
		} else {
			/*
			 * With -z, an empty non-required value means
			 * unspecified:
			 */
			ret = 1;
		}
149
	}
150 151 152 153 154 155 156 157 158 159 160 161 162

	strbuf_release(&arg);

	return ret;

 invalid:
	die(flags & PARSE_SHA1_OLD ?
	    "%s %s: invalid <oldvalue>: %s" :
	    "%s %s: invalid <newvalue>: %s",
	    command, refname, arg.buf);

 eof:
	die(flags & PARSE_SHA1_OLD ?
163 164
	    "%s %s: unexpected end of input when reading <oldvalue>" :
	    "%s %s: unexpected end of input when reading <newvalue>",
165
	    command, refname);
166 167
}

168 169 170 171 172 173 174 175 176 177 178 179

/*
 * 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)
180
{
181 182 183 184
	char *refname;
	unsigned char new_sha1[20];
	unsigned char old_sha1[20];
	int have_old;
185

186 187
	refname = parse_refname(input, &next);
	if (!refname)
188
		die("update: missing <ref>");
189

190
	if (parse_next_sha1(input, &next, new_sha1, "update", refname,
191
			    PARSE_SHA1_ALLOW_EMPTY))
192
		die("update %s: missing <newvalue>", refname);
193

194 195
	have_old = !parse_next_sha1(input, &next, old_sha1, "update", refname,
				    PARSE_SHA1_OLD);
196 197

	if (*next != line_termination)
198 199 200 201 202 203 204
		die("update %s: extra input: %s", refname, next);

	ref_transaction_update(transaction, refname, new_sha1, old_sha1,
			       update_flags, have_old);

	update_flags = 0;
	free(refname);
205

206
	return next;
207 208
}

209
static const char *parse_cmd_create(struct strbuf *input, const char *next)
210
{
211 212
	char *refname;
	unsigned char new_sha1[20];
213

214 215
	refname = parse_refname(input, &next);
	if (!refname)
216
		die("create: missing <ref>");
217

218 219
	if (parse_next_sha1(input, &next, new_sha1, "create", refname, 0))
		die("create %s: missing <newvalue>", refname);
220

221 222
	if (is_null_sha1(new_sha1))
		die("create %s: zero <newvalue>", refname);
223

224
	if (*next != line_termination)
225 226 227 228 229 230
		die("create %s: extra input: %s", refname, next);

	ref_transaction_create(transaction, refname, new_sha1, update_flags);

	update_flags = 0;
	free(refname);
231 232

	return next;
233 234
}

235
static const char *parse_cmd_delete(struct strbuf *input, const char *next)
236
{
237 238 239
	char *refname;
	unsigned char old_sha1[20];
	int have_old;
240

241 242
	refname = parse_refname(input, &next);
	if (!refname)
243
		die("delete: missing <ref>");
244

245 246 247
	if (parse_next_sha1(input, &next, old_sha1, "delete", refname,
			    PARSE_SHA1_OLD)) {
		have_old = 0;
248
	} else {
249 250 251
		if (is_null_sha1(old_sha1))
			die("delete %s: zero <oldvalue>", refname);
		have_old = 1;
252
	}
253

254
	if (*next != line_termination)
255 256 257 258 259 260 261
		die("delete %s: extra input: %s", refname, next);

	ref_transaction_delete(transaction, refname, old_sha1,
			       update_flags, have_old);

	update_flags = 0;
	free(refname);
262 263

	return next;
264 265
}

266
static const char *parse_cmd_verify(struct strbuf *input, const char *next)
267
{
268 269 270 271
	char *refname;
	unsigned char new_sha1[20];
	unsigned char old_sha1[20];
	int have_old;
272

273 274
	refname = parse_refname(input, &next);
	if (!refname)
275
		die("verify: missing <ref>");
276

277 278 279 280
	if (parse_next_sha1(input, &next, old_sha1, "verify", refname,
			    PARSE_SHA1_OLD)) {
		hashclr(new_sha1);
		have_old = 0;
281
	} else {
282 283
		hashcpy(new_sha1, old_sha1);
		have_old = 1;
284
	}
285

286
	if (*next != line_termination)
287 288 289 290 291 292 293
		die("verify %s: extra input: %s", refname, next);

	ref_transaction_update(transaction, refname, new_sha1, old_sha1,
			       update_flags, have_old);

	update_flags = 0;
	free(refname);
294 295

	return next;
296 297
}

298
static const char *parse_cmd_option(struct strbuf *input, const char *next)
299
{
300
	if (!strncmp(next, "no-deref", 8) && next[8] == line_termination)
301 302 303
		update_flags |= REF_NODEREF;
	else
		die("option unknown: %s", next);
304
	return next + 8;
305 306 307 308
}

static void update_refs_stdin(void)
{
309 310
	struct strbuf input = STRBUF_INIT;
	const char *next;
311

312 313 314
	if (strbuf_read(&input, 0, 1000) < 0)
		die_errno("could not read from stdin");
	next = input.buf;
315
	/* Read each line dispatch its command */
316 317
	while (next < input.buf + input.len) {
		if (*next == line_termination)
318
			die("empty command in input");
319 320 321 322 323 324 325 326 327 328 329 330
		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);
331
		else
332 333 334 335
			die("unknown command: %s", next);

		next++;
	}
336

337
	strbuf_release(&input);
338 339
}

340
int cmd_update_ref(int argc, const char **argv, const char *prefix)
341
{
P
Pang Yan Han 已提交
342
	const char *refname, *oldval, *msg = NULL;
343
	unsigned char sha1[20], oldsha1[20];
344
	int delete = 0, no_deref = 0, read_stdin = 0, end_null = 0, flags = 0;
345
	struct option options[] = {
346
		OPT_STRING( 'm', NULL, &msg, N_("reason"), N_("reason of the update")),
347 348
		OPT_BOOL('d', NULL, &delete, N_("delete the reference")),
		OPT_BOOL( 0 , "no-deref", &no_deref,
349
					N_("update <refname> not the one it points to")),
350 351
		OPT_BOOL('z', NULL, &end_null, N_("stdin has NUL-terminated arguments")),
		OPT_BOOL( 0 , "stdin", &read_stdin, N_("read updates from stdin")),
352 353
		OPT_END(),
	};
354

355
	git_config(git_default_config, NULL);
356 357
	argc = parse_options(argc, argv, prefix, options, git_update_ref_usage,
			     0);
358 359
	if (msg && !*msg)
		die("Refusing to perform update with empty message.");
360

361
	if (read_stdin) {
362 363 364
		int ret;
		transaction = ref_transaction_begin();

365 366 367 368 369
		if (delete || no_deref || argc > 0)
			usage_with_options(git_update_ref_usage, options);
		if (end_null)
			line_termination = '\0';
		update_refs_stdin();
370
		ret = ref_transaction_commit(transaction, msg, NULL,
371
					     UPDATE_REFS_DIE_ON_ERR);
372
		ref_transaction_free(transaction);
373
		return ret;
374 375 376 377 378
	}

	if (end_null)
		usage_with_options(git_update_ref_usage, options);

379
	if (delete) {
380
		if (argc < 1 || argc > 2)
381 382 383 384 385 386
			usage_with_options(git_update_ref_usage, options);
		refname = argv[0];
		oldval = argv[1];
	} else {
		const char *value;
		if (argc < 2 || argc > 3)
387
			usage_with_options(git_update_ref_usage, options);
388 389 390 391 392
		refname = argv[0];
		value = argv[1];
		oldval = argv[2];
		if (get_sha1(value, sha1))
			die("%s: not a valid SHA1", value);
393 394
	}

395
	hashclr(oldsha1); /* all-zero hash in case oldval is the empty string */
396
	if (oldval && *oldval && get_sha1(oldval, oldsha1))
397 398
		die("%s: not a valid old SHA1", oldval);

M
Miklos Vajna 已提交
399 400
	if (no_deref)
		flags = REF_NODEREF;
401
	if (delete)
M
Miklos Vajna 已提交
402
		return delete_ref(refname, oldval ? oldsha1 : NULL, flags);
403 404
	else
		return update_ref(msg, refname, sha1, oldval ? oldsha1 : NULL,
405
				  flags, UPDATE_REFS_DIE_ON_ERR);
406
}