5 #include "parse-options.h"
9 static const char * const git_update_ref_usage
[] = {
10 N_("git update-ref [<options>] -d <refname> [<old-val>]"),
11 N_("git update-ref [<options>] <refname> <new-val> [<old-val>]"),
12 N_("git update-ref [<options>] --stdin [-z]"),
16 static char line_termination
= '\n';
17 static unsigned int update_flags
;
18 static unsigned int default_flags
;
19 static unsigned create_reflog_flag
;
20 static const char *msg
;
23 * Parse one whitespace- or NUL-terminated, possibly C-quoted argument
24 * and append the result to arg. Return a pointer to the terminator.
25 * Die if there is an error in how the argument is C-quoted. This
26 * function is only used if not -z.
28 static const char *parse_arg(const char *next
, struct strbuf
*arg
)
31 const char *orig
= next
;
33 if (unquote_c_style(arg
, next
, &next
))
34 die("badly quoted argument: %s", orig
);
35 if (*next
&& !isspace(*next
))
36 die("unexpected character after quoted argument: %s", orig
);
38 while (*next
&& !isspace(*next
))
39 strbuf_addch(arg
, *next
++);
46 * Parse the reference name immediately after "command SP". If not
47 * -z, then handle C-quoting. Return a pointer to a newly allocated
48 * string containing the name of the reference, or NULL if there was
49 * an error. Update *next to point at the character that terminates
50 * the argument. Die if C-quoting is malformed or the reference name
53 static char *parse_refname(const char **next
)
55 struct strbuf ref
= STRBUF_INIT
;
57 if (line_termination
) {
58 /* Without -z, use the next argument */
59 *next
= parse_arg(*next
, &ref
);
61 /* With -z, use everything up to the next NUL */
62 strbuf_addstr(&ref
, *next
);
71 if (check_refname_format(ref
.buf
, REFNAME_ALLOW_ONELEVEL
))
72 die("invalid ref format: %s", ref
.buf
);
74 return strbuf_detach(&ref
, NULL
);
78 * The value being parsed is <oldvalue> (as opposed to <newvalue>; the
79 * difference affects which error messages are generated):
81 #define PARSE_SHA1_OLD 0x01
84 * For backwards compatibility, accept an empty string for update's
85 * <newvalue> in binary mode to be equivalent to specifying zeros.
87 #define PARSE_SHA1_ALLOW_EMPTY 0x02
90 * Parse an argument separator followed by the next argument, if any.
91 * If there is an argument, convert it to a SHA-1, write it to sha1,
92 * set *next to point at the character terminating the argument, and
93 * return 0. If there is no argument at all (not even the empty
94 * string), return 1 and leave *next unchanged. If the value is
95 * provided but cannot be converted to a SHA-1, die. flags can
96 * include PARSE_SHA1_OLD and/or PARSE_SHA1_ALLOW_EMPTY.
98 static int parse_next_oid(const char **next
, const char *end
,
99 struct object_id
*oid
,
100 const char *command
, const char *refname
,
103 struct strbuf arg
= STRBUF_INIT
;
109 if (line_termination
) {
110 /* Without -z, consume SP and use next argument */
111 if (!**next
|| **next
== line_termination
)
114 die("%s %s: expected SP but got: %s",
115 command
, refname
, *next
);
117 *next
= parse_arg(*next
, &arg
);
119 if (get_oid(arg
.buf
, oid
))
122 /* Without -z, an empty value means all zeros: */
126 /* With -z, read the next NUL-terminated line */
128 die("%s %s: expected NUL but got: %s",
129 command
, refname
, *next
);
133 strbuf_addstr(&arg
, *next
);
137 if (get_oid(arg
.buf
, oid
))
139 } else if (flags
& PARSE_SHA1_ALLOW_EMPTY
) {
140 /* With -z, treat an empty value as all zeros: */
141 warning("%s %s: missing <newvalue>, treating as zero",
146 * With -z, an empty non-required value means
153 strbuf_release(&arg
);
158 die(flags
& PARSE_SHA1_OLD
?
159 "%s %s: invalid <oldvalue>: %s" :
160 "%s %s: invalid <newvalue>: %s",
161 command
, refname
, arg
.buf
);
164 die(flags
& PARSE_SHA1_OLD
?
165 "%s %s: unexpected end of input when reading <oldvalue>" :
166 "%s %s: unexpected end of input when reading <newvalue>",
172 * The following five parse_cmd_*() functions parse the corresponding
173 * command. In each case, next points at the character following the
174 * command name and the following space. They each return a pointer
175 * to the character terminating the command, and die with an
176 * explanatory message if there are any parsing problems. All of
177 * these functions handle either text or binary format input,
178 * depending on how line_termination is set.
181 static void parse_cmd_update(struct ref_transaction
*transaction
,
182 const char *next
, const char *end
)
184 struct strbuf err
= STRBUF_INIT
;
186 struct object_id new_oid
, old_oid
;
189 refname
= parse_refname(&next
);
191 die("update: missing <ref>");
193 if (parse_next_oid(&next
, end
, &new_oid
, "update", refname
,
194 PARSE_SHA1_ALLOW_EMPTY
))
195 die("update %s: missing <newvalue>", refname
);
197 have_old
= !parse_next_oid(&next
, end
, &old_oid
, "update", refname
,
200 if (*next
!= line_termination
)
201 die("update %s: extra input: %s", refname
, next
);
203 if (ref_transaction_update(transaction
, refname
,
204 &new_oid
, have_old
? &old_oid
: NULL
,
205 update_flags
| create_reflog_flag
,
209 update_flags
= default_flags
;
211 strbuf_release(&err
);
214 static void parse_cmd_create(struct ref_transaction
*transaction
,
215 const char *next
, const char *end
)
217 struct strbuf err
= STRBUF_INIT
;
219 struct object_id new_oid
;
221 refname
= parse_refname(&next
);
223 die("create: missing <ref>");
225 if (parse_next_oid(&next
, end
, &new_oid
, "create", refname
, 0))
226 die("create %s: missing <newvalue>", refname
);
228 if (is_null_oid(&new_oid
))
229 die("create %s: zero <newvalue>", refname
);
231 if (*next
!= line_termination
)
232 die("create %s: extra input: %s", refname
, next
);
234 if (ref_transaction_create(transaction
, refname
, &new_oid
,
235 update_flags
| create_reflog_flag
,
239 update_flags
= default_flags
;
241 strbuf_release(&err
);
244 static void parse_cmd_delete(struct ref_transaction
*transaction
,
245 const char *next
, const char *end
)
247 struct strbuf err
= STRBUF_INIT
;
249 struct object_id old_oid
;
252 refname
= parse_refname(&next
);
254 die("delete: missing <ref>");
256 if (parse_next_oid(&next
, end
, &old_oid
, "delete", refname
,
260 if (is_null_oid(&old_oid
))
261 die("delete %s: zero <oldvalue>", refname
);
265 if (*next
!= line_termination
)
266 die("delete %s: extra input: %s", refname
, next
);
268 if (ref_transaction_delete(transaction
, refname
,
269 have_old
? &old_oid
: NULL
,
270 update_flags
, msg
, &err
))
273 update_flags
= default_flags
;
275 strbuf_release(&err
);
278 static void parse_cmd_verify(struct ref_transaction
*transaction
,
279 const char *next
, const char *end
)
281 struct strbuf err
= STRBUF_INIT
;
283 struct object_id old_oid
;
285 refname
= parse_refname(&next
);
287 die("verify: missing <ref>");
289 if (parse_next_oid(&next
, end
, &old_oid
, "verify", refname
,
293 if (*next
!= line_termination
)
294 die("verify %s: extra input: %s", refname
, next
);
296 if (ref_transaction_verify(transaction
, refname
, &old_oid
,
300 update_flags
= default_flags
;
302 strbuf_release(&err
);
305 static void report_ok(const char *command
)
307 fprintf(stdout
, "%s: ok\n", command
);
311 static void parse_cmd_option(struct ref_transaction
*transaction
,
312 const char *next
, const char *end
)
315 if (skip_prefix(next
, "no-deref", &rest
) && *rest
== line_termination
)
316 update_flags
|= REF_NO_DEREF
;
318 die("option unknown: %s", next
);
321 static void parse_cmd_start(struct ref_transaction
*transaction
,
322 const char *next
, const char *end
)
324 if (*next
!= line_termination
)
325 die("start: extra input: %s", next
);
329 static void parse_cmd_prepare(struct ref_transaction
*transaction
,
330 const char *next
, const char *end
)
332 struct strbuf error
= STRBUF_INIT
;
333 if (*next
!= line_termination
)
334 die("prepare: extra input: %s", next
);
335 if (ref_transaction_prepare(transaction
, &error
))
336 die("prepare: %s", error
.buf
);
337 report_ok("prepare");
340 static void parse_cmd_abort(struct ref_transaction
*transaction
,
341 const char *next
, const char *end
)
343 struct strbuf error
= STRBUF_INIT
;
344 if (*next
!= line_termination
)
345 die("abort: extra input: %s", next
);
346 if (ref_transaction_abort(transaction
, &error
))
347 die("abort: %s", error
.buf
);
351 static void parse_cmd_commit(struct ref_transaction
*transaction
,
352 const char *next
, const char *end
)
354 struct strbuf error
= STRBUF_INIT
;
355 if (*next
!= line_termination
)
356 die("commit: extra input: %s", next
);
357 if (ref_transaction_commit(transaction
, &error
))
358 die("commit: %s", error
.buf
);
360 ref_transaction_free(transaction
);
363 enum update_refs_state
{
364 /* Non-transactional state open for updates. */
366 /* A transaction has been started. */
368 /* References are locked and ready for commit */
369 UPDATE_REFS_PREPARED
,
370 /* Transaction has been committed or closed. */
374 static const struct parse_cmd
{
376 void (*fn
)(struct ref_transaction
*, const char *, const char *);
378 enum update_refs_state state
;
380 { "update", parse_cmd_update
, 3, UPDATE_REFS_OPEN
},
381 { "create", parse_cmd_create
, 2, UPDATE_REFS_OPEN
},
382 { "delete", parse_cmd_delete
, 2, UPDATE_REFS_OPEN
},
383 { "verify", parse_cmd_verify
, 2, UPDATE_REFS_OPEN
},
384 { "option", parse_cmd_option
, 1, UPDATE_REFS_OPEN
},
385 { "start", parse_cmd_start
, 0, UPDATE_REFS_STARTED
},
386 { "prepare", parse_cmd_prepare
, 0, UPDATE_REFS_PREPARED
},
387 { "abort", parse_cmd_abort
, 0, UPDATE_REFS_CLOSED
},
388 { "commit", parse_cmd_commit
, 0, UPDATE_REFS_CLOSED
},
391 static void update_refs_stdin(void)
393 struct strbuf input
= STRBUF_INIT
, err
= STRBUF_INIT
;
394 enum update_refs_state state
= UPDATE_REFS_OPEN
;
395 struct ref_transaction
*transaction
;
398 transaction
= ref_transaction_begin(&err
);
402 /* Read each line dispatch its command */
403 while (!strbuf_getwholeline(&input
, stdin
, line_termination
)) {
404 const struct parse_cmd
*cmd
= NULL
;
406 if (*input
.buf
== line_termination
)
407 die("empty command in input");
408 else if (isspace(*input
.buf
))
409 die("whitespace before command: %s", input
.buf
);
411 for (i
= 0; i
< ARRAY_SIZE(command
); i
++) {
412 const char *prefix
= command
[i
].prefix
;
415 if (!starts_with(input
.buf
, prefix
))
419 * If the command has arguments, verify that it's
420 * followed by a space. Otherwise, it shall be followed
421 * by a line terminator.
423 c
= command
[i
].args
? ' ' : line_termination
;
424 if (input
.buf
[strlen(prefix
)] != c
)
431 die("unknown command: %s", input
.buf
);
434 * Read additional arguments if NUL-terminated. Do not raise an
435 * error in case there is an early EOF to let the command
436 * handle missing arguments with a proper error message.
438 for (j
= 1; line_termination
== '\0' && j
< cmd
->args
; j
++)
439 if (strbuf_appendwholeline(&input
, stdin
, line_termination
))
443 case UPDATE_REFS_OPEN
:
444 case UPDATE_REFS_STARTED
:
445 if (state
== UPDATE_REFS_STARTED
&& cmd
->state
== UPDATE_REFS_STARTED
)
446 die("cannot restart ongoing transaction");
447 /* Do not downgrade a transaction to a non-transaction. */
448 if (cmd
->state
>= state
)
451 case UPDATE_REFS_PREPARED
:
452 if (cmd
->state
!= UPDATE_REFS_CLOSED
)
453 die("prepared transactions can only be closed");
456 case UPDATE_REFS_CLOSED
:
457 if (cmd
->state
!= UPDATE_REFS_STARTED
)
458 die("transaction is closed");
461 * Open a new transaction if we're currently closed and
465 transaction
= ref_transaction_begin(&err
);
472 cmd
->fn(transaction
, input
.buf
+ strlen(cmd
->prefix
) + !!cmd
->args
,
473 input
.buf
+ input
.len
);
477 case UPDATE_REFS_OPEN
:
478 /* Commit by default if no transaction was requested. */
479 if (ref_transaction_commit(transaction
, &err
))
481 ref_transaction_free(transaction
);
483 case UPDATE_REFS_STARTED
:
484 case UPDATE_REFS_PREPARED
:
485 /* If using a transaction, we want to abort it. */
486 if (ref_transaction_abort(transaction
, &err
))
489 case UPDATE_REFS_CLOSED
:
490 /* Otherwise no need to do anything, the transaction was closed already. */
494 strbuf_release(&err
);
495 strbuf_release(&input
);
498 int cmd_update_ref(int argc
, const char **argv
, const char *prefix
)
500 const char *refname
, *oldval
;
501 struct object_id oid
, oldoid
;
502 int delete = 0, no_deref
= 0, read_stdin
= 0, end_null
= 0;
503 int create_reflog
= 0;
504 struct option options
[] = {
505 OPT_STRING( 'm', NULL
, &msg
, N_("reason"), N_("reason of the update")),
506 OPT_BOOL('d', NULL
, &delete, N_("delete the reference")),
507 OPT_BOOL( 0 , "no-deref", &no_deref
,
508 N_("update <refname> not the one it points to")),
509 OPT_BOOL('z', NULL
, &end_null
, N_("stdin has NUL-terminated arguments")),
510 OPT_BOOL( 0 , "stdin", &read_stdin
, N_("read updates from stdin")),
511 OPT_BOOL( 0 , "create-reflog", &create_reflog
, N_("create a reflog")),
515 git_config(git_default_config
, NULL
);
516 argc
= parse_options(argc
, argv
, prefix
, options
, git_update_ref_usage
,
519 die("Refusing to perform update with empty message.");
521 create_reflog_flag
= create_reflog
? REF_FORCE_CREATE_REFLOG
: 0;
524 default_flags
= REF_NO_DEREF
;
525 update_flags
= default_flags
;
529 if (delete || argc
> 0)
530 usage_with_options(git_update_ref_usage
, options
);
532 line_termination
= '\0';
538 usage_with_options(git_update_ref_usage
, options
);
541 if (argc
< 1 || argc
> 2)
542 usage_with_options(git_update_ref_usage
, options
);
547 if (argc
< 2 || argc
> 3)
548 usage_with_options(git_update_ref_usage
, options
);
552 if (get_oid(value
, &oid
))
553 die("%s: not a valid SHA1", value
);
559 * The empty string implies that the reference
560 * must not already exist:
563 else if (get_oid(oldval
, &oldoid
))
564 die("%s: not a valid old SHA1", oldval
);
569 * For purposes of backwards compatibility, we treat
570 * NULL_SHA1 as "don't care" here:
572 return delete_ref(msg
, refname
,
573 (oldval
&& !is_null_oid(&oldoid
)) ? &oldoid
: NULL
,
576 return update_ref(msg
, refname
, &oid
, oldval
? &oldoid
: NULL
,
577 default_flags
| create_reflog_flag
,
578 UPDATE_REFS_DIE_ON_ERR
);