6 #include "object-name.h"
7 #include "parse-options.h"
9 #include "repository.h"
11 static const char * const git_update_ref_usage
[] = {
12 N_("git update-ref [<options>] -d <refname> [<old-val>]"),
13 N_("git update-ref [<options>] <refname> <new-val> [<old-val>]"),
14 N_("git update-ref [<options>] --stdin [-z]"),
18 static char line_termination
= '\n';
19 static unsigned int update_flags
;
20 static unsigned int default_flags
;
21 static unsigned create_reflog_flag
;
22 static const char *msg
;
25 * Parse one whitespace- or NUL-terminated, possibly C-quoted argument
26 * and append the result to arg. Return a pointer to the terminator.
27 * Die if there is an error in how the argument is C-quoted. This
28 * function is only used if not -z.
30 static const char *parse_arg(const char *next
, struct strbuf
*arg
)
33 const char *orig
= next
;
35 if (unquote_c_style(arg
, next
, &next
))
36 die("badly quoted argument: %s", orig
);
37 if (*next
&& !isspace(*next
))
38 die("unexpected character after quoted argument: %s", orig
);
40 while (*next
&& !isspace(*next
))
41 strbuf_addch(arg
, *next
++);
48 * Parse the reference name immediately after "command SP". If not
49 * -z, then handle C-quoting. Return a pointer to a newly allocated
50 * string containing the name of the reference, or NULL if there was
51 * an error. Update *next to point at the character that terminates
52 * the argument. Die if C-quoting is malformed or the reference name
55 static char *parse_refname(const char **next
)
57 struct strbuf ref
= STRBUF_INIT
;
59 if (line_termination
) {
60 /* Without -z, use the next argument */
61 *next
= parse_arg(*next
, &ref
);
63 /* With -z, use everything up to the next NUL */
64 strbuf_addstr(&ref
, *next
);
73 if (check_refname_format(ref
.buf
, REFNAME_ALLOW_ONELEVEL
))
74 die("invalid ref format: %s", ref
.buf
);
76 return strbuf_detach(&ref
, NULL
);
80 * The value being parsed is <oldvalue> (as opposed to <newvalue>; the
81 * difference affects which error messages are generated):
83 #define PARSE_SHA1_OLD 0x01
86 * For backwards compatibility, accept an empty string for update's
87 * <newvalue> in binary mode to be equivalent to specifying zeros.
89 #define PARSE_SHA1_ALLOW_EMPTY 0x02
92 * Parse an argument separator followed by the next argument, if any.
93 * If there is an argument, convert it to a SHA-1, write it to sha1,
94 * set *next to point at the character terminating the argument, and
95 * return 0. If there is no argument at all (not even the empty
96 * string), return 1 and leave *next unchanged. If the value is
97 * provided but cannot be converted to a SHA-1, die. flags can
98 * include PARSE_SHA1_OLD and/or PARSE_SHA1_ALLOW_EMPTY.
100 static int parse_next_oid(const char **next
, const char *end
,
101 struct object_id
*oid
,
102 const char *command
, const char *refname
,
105 struct strbuf arg
= STRBUF_INIT
;
111 if (line_termination
) {
112 /* Without -z, consume SP and use next argument */
113 if (!**next
|| **next
== line_termination
)
116 die("%s %s: expected SP but got: %s",
117 command
, refname
, *next
);
119 *next
= parse_arg(*next
, &arg
);
121 if (repo_get_oid(the_repository
, arg
.buf
, oid
))
124 /* Without -z, an empty value means all zeros: */
128 /* With -z, read the next NUL-terminated line */
130 die("%s %s: expected NUL but got: %s",
131 command
, refname
, *next
);
135 strbuf_addstr(&arg
, *next
);
139 if (repo_get_oid(the_repository
, arg
.buf
, oid
))
141 } else if (flags
& PARSE_SHA1_ALLOW_EMPTY
) {
142 /* With -z, treat an empty value as all zeros: */
143 warning("%s %s: missing <newvalue>, treating as zero",
148 * With -z, an empty non-required value means
155 strbuf_release(&arg
);
160 die(flags
& PARSE_SHA1_OLD
?
161 "%s %s: invalid <oldvalue>: %s" :
162 "%s %s: invalid <newvalue>: %s",
163 command
, refname
, arg
.buf
);
166 die(flags
& PARSE_SHA1_OLD
?
167 "%s %s: unexpected end of input when reading <oldvalue>" :
168 "%s %s: unexpected end of input when reading <newvalue>",
174 * The following five parse_cmd_*() functions parse the corresponding
175 * command. In each case, next points at the character following the
176 * command name and the following space. They each return a pointer
177 * to the character terminating the command, and die with an
178 * explanatory message if there are any parsing problems. All of
179 * these functions handle either text or binary format input,
180 * depending on how line_termination is set.
183 static void parse_cmd_update(struct ref_transaction
*transaction
,
184 const char *next
, const char *end
)
186 struct strbuf err
= STRBUF_INIT
;
188 struct object_id new_oid
, old_oid
;
191 refname
= parse_refname(&next
);
193 die("update: missing <ref>");
195 if (parse_next_oid(&next
, end
, &new_oid
, "update", refname
,
196 PARSE_SHA1_ALLOW_EMPTY
))
197 die("update %s: missing <newvalue>", refname
);
199 have_old
= !parse_next_oid(&next
, end
, &old_oid
, "update", refname
,
202 if (*next
!= line_termination
)
203 die("update %s: extra input: %s", refname
, next
);
205 if (ref_transaction_update(transaction
, refname
,
206 &new_oid
, have_old
? &old_oid
: NULL
,
207 update_flags
| create_reflog_flag
,
211 update_flags
= default_flags
;
213 strbuf_release(&err
);
216 static void parse_cmd_create(struct ref_transaction
*transaction
,
217 const char *next
, const char *end
)
219 struct strbuf err
= STRBUF_INIT
;
221 struct object_id new_oid
;
223 refname
= parse_refname(&next
);
225 die("create: missing <ref>");
227 if (parse_next_oid(&next
, end
, &new_oid
, "create", refname
, 0))
228 die("create %s: missing <newvalue>", refname
);
230 if (is_null_oid(&new_oid
))
231 die("create %s: zero <newvalue>", refname
);
233 if (*next
!= line_termination
)
234 die("create %s: extra input: %s", refname
, next
);
236 if (ref_transaction_create(transaction
, refname
, &new_oid
,
237 update_flags
| create_reflog_flag
,
241 update_flags
= default_flags
;
243 strbuf_release(&err
);
246 static void parse_cmd_delete(struct ref_transaction
*transaction
,
247 const char *next
, const char *end
)
249 struct strbuf err
= STRBUF_INIT
;
251 struct object_id old_oid
;
254 refname
= parse_refname(&next
);
256 die("delete: missing <ref>");
258 if (parse_next_oid(&next
, end
, &old_oid
, "delete", refname
,
262 if (is_null_oid(&old_oid
))
263 die("delete %s: zero <oldvalue>", refname
);
267 if (*next
!= line_termination
)
268 die("delete %s: extra input: %s", refname
, next
);
270 if (ref_transaction_delete(transaction
, refname
,
271 have_old
? &old_oid
: NULL
,
272 update_flags
, msg
, &err
))
275 update_flags
= default_flags
;
277 strbuf_release(&err
);
280 static void parse_cmd_verify(struct ref_transaction
*transaction
,
281 const char *next
, const char *end
)
283 struct strbuf err
= STRBUF_INIT
;
285 struct object_id old_oid
;
287 refname
= parse_refname(&next
);
289 die("verify: missing <ref>");
291 if (parse_next_oid(&next
, end
, &old_oid
, "verify", refname
,
295 if (*next
!= line_termination
)
296 die("verify %s: extra input: %s", refname
, next
);
298 if (ref_transaction_verify(transaction
, refname
, &old_oid
,
302 update_flags
= default_flags
;
304 strbuf_release(&err
);
307 static void report_ok(const char *command
)
309 fprintf(stdout
, "%s: ok\n", command
);
313 static void parse_cmd_option(struct ref_transaction
*transaction UNUSED
,
314 const char *next
, const char *end UNUSED
)
317 if (skip_prefix(next
, "no-deref", &rest
) && *rest
== line_termination
)
318 update_flags
|= REF_NO_DEREF
;
320 die("option unknown: %s", next
);
323 static void parse_cmd_start(struct ref_transaction
*transaction UNUSED
,
324 const char *next
, const char *end UNUSED
)
326 if (*next
!= line_termination
)
327 die("start: extra input: %s", next
);
331 static void parse_cmd_prepare(struct ref_transaction
*transaction
,
332 const char *next
, const char *end UNUSED
)
334 struct strbuf error
= STRBUF_INIT
;
335 if (*next
!= line_termination
)
336 die("prepare: extra input: %s", next
);
337 if (ref_transaction_prepare(transaction
, &error
))
338 die("prepare: %s", error
.buf
);
339 report_ok("prepare");
342 static void parse_cmd_abort(struct ref_transaction
*transaction
,
343 const char *next
, const char *end UNUSED
)
345 struct strbuf error
= STRBUF_INIT
;
346 if (*next
!= line_termination
)
347 die("abort: extra input: %s", next
);
348 if (ref_transaction_abort(transaction
, &error
))
349 die("abort: %s", error
.buf
);
353 static void parse_cmd_commit(struct ref_transaction
*transaction
,
354 const char *next
, const char *end UNUSED
)
356 struct strbuf error
= STRBUF_INIT
;
357 if (*next
!= line_termination
)
358 die("commit: extra input: %s", next
);
359 if (ref_transaction_commit(transaction
, &error
))
360 die("commit: %s", error
.buf
);
362 ref_transaction_free(transaction
);
365 enum update_refs_state
{
366 /* Non-transactional state open for updates. */
368 /* A transaction has been started. */
370 /* References are locked and ready for commit */
371 UPDATE_REFS_PREPARED
,
372 /* Transaction has been committed or closed. */
376 static const struct parse_cmd
{
378 void (*fn
)(struct ref_transaction
*, const char *, const char *);
380 enum update_refs_state state
;
382 { "update", parse_cmd_update
, 3, UPDATE_REFS_OPEN
},
383 { "create", parse_cmd_create
, 2, UPDATE_REFS_OPEN
},
384 { "delete", parse_cmd_delete
, 2, UPDATE_REFS_OPEN
},
385 { "verify", parse_cmd_verify
, 2, UPDATE_REFS_OPEN
},
386 { "option", parse_cmd_option
, 1, UPDATE_REFS_OPEN
},
387 { "start", parse_cmd_start
, 0, UPDATE_REFS_STARTED
},
388 { "prepare", parse_cmd_prepare
, 0, UPDATE_REFS_PREPARED
},
389 { "abort", parse_cmd_abort
, 0, UPDATE_REFS_CLOSED
},
390 { "commit", parse_cmd_commit
, 0, UPDATE_REFS_CLOSED
},
393 static void update_refs_stdin(void)
395 struct strbuf input
= STRBUF_INIT
, err
= STRBUF_INIT
;
396 enum update_refs_state state
= UPDATE_REFS_OPEN
;
397 struct ref_transaction
*transaction
;
400 transaction
= ref_transaction_begin(&err
);
404 /* Read each line dispatch its command */
405 while (!strbuf_getwholeline(&input
, stdin
, line_termination
)) {
406 const struct parse_cmd
*cmd
= NULL
;
408 if (*input
.buf
== line_termination
)
409 die("empty command in input");
410 else if (isspace(*input
.buf
))
411 die("whitespace before command: %s", input
.buf
);
413 for (i
= 0; i
< ARRAY_SIZE(command
); i
++) {
414 const char *prefix
= command
[i
].prefix
;
417 if (!starts_with(input
.buf
, prefix
))
421 * If the command has arguments, verify that it's
422 * followed by a space. Otherwise, it shall be followed
423 * by a line terminator.
425 c
= command
[i
].args
? ' ' : line_termination
;
426 if (input
.buf
[strlen(prefix
)] != c
)
433 die("unknown command: %s", input
.buf
);
436 * Read additional arguments if NUL-terminated. Do not raise an
437 * error in case there is an early EOF to let the command
438 * handle missing arguments with a proper error message.
440 for (j
= 1; line_termination
== '\0' && j
< cmd
->args
; j
++)
441 if (strbuf_appendwholeline(&input
, stdin
, line_termination
))
445 case UPDATE_REFS_OPEN
:
446 case UPDATE_REFS_STARTED
:
447 if (state
== UPDATE_REFS_STARTED
&& cmd
->state
== UPDATE_REFS_STARTED
)
448 die("cannot restart ongoing transaction");
449 /* Do not downgrade a transaction to a non-transaction. */
450 if (cmd
->state
>= state
)
453 case UPDATE_REFS_PREPARED
:
454 if (cmd
->state
!= UPDATE_REFS_CLOSED
)
455 die("prepared transactions can only be closed");
458 case UPDATE_REFS_CLOSED
:
459 if (cmd
->state
!= UPDATE_REFS_STARTED
)
460 die("transaction is closed");
463 * Open a new transaction if we're currently closed and
467 transaction
= ref_transaction_begin(&err
);
474 cmd
->fn(transaction
, input
.buf
+ strlen(cmd
->prefix
) + !!cmd
->args
,
475 input
.buf
+ input
.len
);
479 case UPDATE_REFS_OPEN
:
480 /* Commit by default if no transaction was requested. */
481 if (ref_transaction_commit(transaction
, &err
))
483 ref_transaction_free(transaction
);
485 case UPDATE_REFS_STARTED
:
486 case UPDATE_REFS_PREPARED
:
487 /* If using a transaction, we want to abort it. */
488 if (ref_transaction_abort(transaction
, &err
))
491 case UPDATE_REFS_CLOSED
:
492 /* Otherwise no need to do anything, the transaction was closed already. */
496 strbuf_release(&err
);
497 strbuf_release(&input
);
500 int cmd_update_ref(int argc
, const char **argv
, const char *prefix
)
502 const char *refname
, *oldval
;
503 struct object_id oid
, oldoid
;
504 int delete = 0, no_deref
= 0, read_stdin
= 0, end_null
= 0;
505 int create_reflog
= 0;
506 struct option options
[] = {
507 OPT_STRING( 'm', NULL
, &msg
, N_("reason"), N_("reason of the update")),
508 OPT_BOOL('d', NULL
, &delete, N_("delete the reference")),
509 OPT_BOOL( 0 , "no-deref", &no_deref
,
510 N_("update <refname> not the one it points to")),
511 OPT_BOOL('z', NULL
, &end_null
, N_("stdin has NUL-terminated arguments")),
512 OPT_BOOL( 0 , "stdin", &read_stdin
, N_("read updates from stdin")),
513 OPT_BOOL( 0 , "create-reflog", &create_reflog
, N_("create a reflog")),
517 git_config(git_default_config
, NULL
);
518 argc
= parse_options(argc
, argv
, prefix
, options
, git_update_ref_usage
,
521 die("Refusing to perform update with empty message.");
523 create_reflog_flag
= create_reflog
? REF_FORCE_CREATE_REFLOG
: 0;
526 default_flags
= REF_NO_DEREF
;
527 update_flags
= default_flags
;
531 if (delete || argc
> 0)
532 usage_with_options(git_update_ref_usage
, options
);
534 line_termination
= '\0';
540 usage_with_options(git_update_ref_usage
, options
);
543 if (argc
< 1 || argc
> 2)
544 usage_with_options(git_update_ref_usage
, options
);
549 if (argc
< 2 || argc
> 3)
550 usage_with_options(git_update_ref_usage
, options
);
554 if (repo_get_oid(the_repository
, value
, &oid
))
555 die("%s: not a valid SHA1", value
);
561 * The empty string implies that the reference
562 * must not already exist:
565 else if (repo_get_oid(the_repository
, oldval
, &oldoid
))
566 die("%s: not a valid old SHA1", oldval
);
571 * For purposes of backwards compatibility, we treat
572 * NULL_SHA1 as "don't care" here:
574 return delete_ref(msg
, refname
,
575 (oldval
&& !is_null_oid(&oldoid
)) ? &oldoid
: NULL
,
578 return update_ref(msg
, refname
, &oid
, oldval
? &oldoid
: NULL
,
579 default_flags
| create_reflog_flag
,
580 UPDATE_REFS_DIE_ON_ERR
);