1 #define USE_THE_REPOSITORY_VARIABLE
3 #include "git-compat-util.h"
7 #include "environment.h"
10 #include "object-name.h"
15 #include "object-store-ll.h"
18 #include "tree-walk.h"
21 #include "parse-options.h"
22 #include "unpack-trees.h"
25 static char const * const archive_usage
[] = {
26 N_("git archive [<options>] <tree-ish> [<path>...]"),
28 N_("git archive --remote <repo> [--exec <cmd>] [<options>] <tree-ish> [<path>...]"),
29 N_("git archive --remote <repo> [--exec <cmd>] --list"),
33 static const struct archiver
**archivers
;
34 static int nr_archivers
;
35 static int alloc_archivers
;
36 static int remote_allow_unreachable
;
38 void register_archiver(struct archiver
*ar
)
40 ALLOC_GROW(archivers
, nr_archivers
+ 1, alloc_archivers
);
41 archivers
[nr_archivers
++] = ar
;
44 void init_archivers(void)
50 static void format_subst(const struct commit
*commit
,
51 const char *src
, size_t len
,
52 struct strbuf
*buf
, struct pretty_print_context
*ctx
)
55 struct strbuf fmt
= STRBUF_INIT
;
58 to_free
= strbuf_detach(buf
, NULL
);
62 b
= memmem(src
, len
, "$Format:", 8);
65 c
= memchr(b
+ 8, '$', (src
+ len
) - b
- 8);
70 strbuf_add(&fmt
, b
+ 8, c
- b
- 8);
72 strbuf_add(buf
, src
, b
- src
);
73 repo_format_commit_message(the_repository
, commit
, fmt
.buf
,
78 strbuf_add(buf
, src
, len
);
83 static void *object_file_to_archive(const struct archiver_args
*args
,
85 const struct object_id
*oid
,
87 enum object_type
*type
,
91 const struct commit
*commit
= args
->convert
? args
->commit
: NULL
;
92 struct checkout_metadata meta
;
94 init_checkout_metadata(&meta
, args
->refname
,
95 args
->commit_oid
? args
->commit_oid
:
96 (args
->tree
? &args
->tree
->object
.oid
: NULL
), oid
);
98 path
+= args
->baselen
;
99 buffer
= repo_read_object_file(the_repository
, oid
, type
, sizep
);
100 if (buffer
&& S_ISREG(mode
)) {
101 struct strbuf buf
= STRBUF_INIT
;
104 strbuf_attach(&buf
, buffer
, *sizep
, *sizep
+ 1);
105 convert_to_working_tree(args
->repo
->index
, path
, buf
.buf
, buf
.len
, &buf
, &meta
);
107 format_subst(commit
, buf
.buf
, buf
.len
, &buf
, args
->pretty_ctx
);
108 buffer
= strbuf_detach(&buf
, &size
);
116 struct directory
*up
;
117 struct object_id oid
;
120 char path
[FLEX_ARRAY
];
123 struct archiver_context
{
124 struct archiver_args
*args
;
125 write_archive_entry_fn_t write_entry
;
126 struct directory
*bottom
;
129 static const struct attr_check
*get_archive_attrs(struct index_state
*istate
,
132 static struct attr_check
*check
;
134 check
= attr_check_initl("export-ignore", "export-subst", NULL
);
135 git_check_attr(istate
, path
, check
);
139 static int check_attr_export_ignore(const struct attr_check
*check
)
141 return check
&& ATTR_TRUE(check
->items
[0].value
);
144 static int check_attr_export_subst(const struct attr_check
*check
)
146 return check
&& ATTR_TRUE(check
->items
[1].value
);
149 static int write_archive_entry(const struct object_id
*oid
, const char *base
,
150 int baselen
, const char *filename
, unsigned mode
,
153 static struct strbuf path
= STRBUF_INIT
;
154 struct archiver_context
*c
= context
;
155 struct archiver_args
*args
= c
->args
;
156 write_archive_entry_fn_t write_entry
= c
->write_entry
;
158 const char *path_without_prefix
;
161 enum object_type type
;
165 strbuf_grow(&path
, PATH_MAX
);
166 strbuf_add(&path
, args
->base
, args
->baselen
);
167 strbuf_add(&path
, base
, baselen
);
168 strbuf_addstr(&path
, filename
);
169 if (S_ISDIR(mode
) || S_ISGITLINK(mode
))
170 strbuf_addch(&path
, '/');
171 path_without_prefix
= path
.buf
+ args
->baselen
;
173 if (!S_ISDIR(mode
)) {
174 const struct attr_check
*check
;
175 check
= get_archive_attrs(args
->repo
->index
, path_without_prefix
);
176 if (check_attr_export_ignore(check
))
178 args
->convert
= check_attr_export_subst(check
);
182 static struct strbuf new_path
= STRBUF_INIT
;
183 static struct strbuf buf
= STRBUF_INIT
;
186 rel
= relative_path(path_without_prefix
, args
->prefix
, &buf
);
189 * We don't add an entry for the current working
190 * directory when we are at the root; skip it also when
191 * we're in a subdirectory or submodule. Skip entries
194 if (!strcmp(rel
, "./") || starts_with(rel
, "../"))
195 return S_ISDIR(mode
) ? READ_TREE_RECURSIVE
: 0;
197 /* rel can refer to path, so don't edit it in place */
198 strbuf_reset(&new_path
);
199 strbuf_add(&new_path
, args
->base
, args
->baselen
);
200 strbuf_addstr(&new_path
, rel
);
201 strbuf_swap(&path
, &new_path
);
205 fprintf(stderr
, "%.*s\n", (int)path
.len
, path
.buf
);
207 if (S_ISDIR(mode
) || S_ISGITLINK(mode
)) {
208 err
= write_entry(args
, oid
, path
.buf
, path
.len
, mode
, NULL
, 0);
211 return (S_ISDIR(mode
) ? READ_TREE_RECURSIVE
: 0);
215 if (S_ISREG(mode
) && !args
->convert
&&
216 oid_object_info(args
->repo
, oid
, &size
) == OBJ_BLOB
&&
217 size
> big_file_threshold
)
218 return write_entry(args
, oid
, path
.buf
, path
.len
, mode
, NULL
, size
);
220 buffer
= object_file_to_archive(args
, path
.buf
, oid
, mode
, &type
, &size
);
222 return error(_("cannot read '%s'"), oid_to_hex(oid
));
223 err
= write_entry(args
, oid
, path
.buf
, path
.len
, mode
, buffer
, size
);
228 static void queue_directory(const struct object_id
*oid
,
229 struct strbuf
*base
, const char *filename
,
230 unsigned mode
, struct archiver_context
*c
)
233 size_t len
= st_add4(base
->len
, 1, strlen(filename
), 1);
234 d
= xmalloc(st_add(sizeof(*d
), len
));
236 d
->baselen
= base
->len
;
239 d
->len
= xsnprintf(d
->path
, len
, "%.*s%s/", (int)base
->len
, base
->buf
, filename
);
240 oidcpy(&d
->oid
, oid
);
243 static int write_directory(struct archiver_context
*c
)
245 struct directory
*d
= c
->bottom
;
251 d
->path
[d
->len
- 1] = '\0'; /* no trailing slash */
253 write_directory(c
) ||
254 write_archive_entry(&d
->oid
, d
->path
, d
->baselen
,
255 d
->path
+ d
->baselen
, d
->mode
,
256 c
) != READ_TREE_RECURSIVE
;
261 static int queue_or_write_archive_entry(const struct object_id
*oid
,
262 struct strbuf
*base
, const char *filename
,
263 unsigned mode
, void *context
)
265 struct archiver_context
*c
= context
;
268 !(base
->len
>= c
->bottom
->len
&&
269 !strncmp(base
->buf
, c
->bottom
->path
, c
->bottom
->len
))) {
270 struct directory
*next
= c
->bottom
->up
;
276 size_t baselen
= base
->len
;
277 const struct attr_check
*check
;
279 /* Borrow base, but restore its original value when done. */
280 strbuf_addstr(base
, filename
);
281 strbuf_addch(base
, '/');
282 check
= get_archive_attrs(c
->args
->repo
->index
, base
->buf
);
283 strbuf_setlen(base
, baselen
);
285 if (check_attr_export_ignore(check
))
287 queue_directory(oid
, base
, filename
, mode
, c
);
288 return READ_TREE_RECURSIVE
;
291 if (write_directory(c
))
293 return write_archive_entry(oid
, base
->buf
, base
->len
, filename
, mode
,
297 struct extra_file_info
{
303 int write_archive_entries(struct archiver_args
*args
,
304 write_archive_entry_fn_t write_entry
)
306 struct archiver_context context
;
307 struct unpack_trees_options opts
;
310 struct strbuf path_in_archive
= STRBUF_INIT
;
311 struct strbuf content
= STRBUF_INIT
;
312 struct object_id fake_oid
;
315 oidcpy(&fake_oid
, null_oid());
317 if (args
->baselen
> 0 && args
->base
[args
->baselen
- 1] == '/') {
318 size_t len
= args
->baselen
;
320 while (len
> 1 && args
->base
[len
- 2] == '/')
323 fprintf(stderr
, "%.*s\n", (int)len
, args
->base
);
324 err
= write_entry(args
, &args
->tree
->object
.oid
, args
->base
,
325 len
, 040777, NULL
, 0);
330 memset(&context
, 0, sizeof(context
));
332 context
.write_entry
= write_entry
;
335 * Setup index and instruct attr to read index only
337 if (!args
->worktree_attributes
) {
338 memset(&opts
, 0, sizeof(opts
));
341 opts
.src_index
= args
->repo
->index
;
342 opts
.dst_index
= args
->repo
->index
;
343 opts
.fn
= oneway_merge
;
344 init_tree_desc(&t
, &args
->tree
->object
.oid
,
345 args
->tree
->buffer
, args
->tree
->size
);
346 if (unpack_trees(1, &t
, &opts
))
348 git_attr_set_direction(GIT_ATTR_INDEX
);
351 err
= read_tree(args
->repo
, args
->tree
,
353 queue_or_write_archive_entry
,
355 if (err
== READ_TREE_RECURSIVE
)
357 while (context
.bottom
) {
358 struct directory
*next
= context
.bottom
->up
;
359 free(context
.bottom
);
360 context
.bottom
= next
;
363 for (i
= 0; i
< args
->extra_files
.nr
; i
++) {
364 struct string_list_item
*item
= args
->extra_files
.items
+ i
;
365 char *path
= item
->string
;
366 struct extra_file_info
*info
= item
->util
;
368 put_be64(fake_oid
.hash
, i
+ 1);
370 if (!info
->content
) {
371 strbuf_reset(&path_in_archive
);
373 strbuf_addstr(&path_in_archive
, info
->base
);
374 strbuf_addstr(&path_in_archive
, basename(path
));
376 strbuf_reset(&content
);
377 if (strbuf_read_file(&content
, path
, info
->stat
.st_size
) < 0)
378 err
= error_errno(_("cannot read '%s'"), path
);
380 err
= write_entry(args
, &fake_oid
, path_in_archive
.buf
,
382 canon_mode(info
->stat
.st_mode
),
383 content
.buf
, content
.len
);
385 err
= write_entry(args
, &fake_oid
,
387 canon_mode(info
->stat
.st_mode
),
388 info
->content
, info
->stat
.st_size
);
394 strbuf_release(&path_in_archive
);
395 strbuf_release(&content
);
400 static const struct archiver
*lookup_archiver(const char *name
)
407 for (i
= 0; i
< nr_archivers
; i
++) {
408 if (!strcmp(name
, archivers
[i
]->name
))
414 struct path_exists_context
{
415 struct pathspec pathspec
;
416 struct archiver_args
*args
;
419 static int reject_entry(const struct object_id
*oid UNUSED
,
421 const char *filename
, unsigned mode
,
425 struct path_exists_context
*ctx
= context
;
428 struct strbuf sb
= STRBUF_INIT
;
429 strbuf_addbuf(&sb
, base
);
430 strbuf_addstr(&sb
, filename
);
431 if (!match_pathspec(ctx
->args
->repo
->index
,
433 sb
.buf
, sb
.len
, 0, NULL
, 1))
434 ret
= READ_TREE_RECURSIVE
;
440 static int reject_outside(const struct object_id
*oid UNUSED
,
441 struct strbuf
*base
, const char *filename
,
442 unsigned mode
, void *context
)
444 struct archiver_args
*args
= context
;
445 struct strbuf buf
= STRBUF_INIT
;
446 struct strbuf path
= STRBUF_INIT
;
450 return READ_TREE_RECURSIVE
;
452 strbuf_addbuf(&path
, base
);
453 strbuf_addstr(&path
, filename
);
454 if (starts_with(relative_path(path
.buf
, args
->prefix
, &buf
), "../"))
456 strbuf_release(&buf
);
457 strbuf_release(&path
);
461 static int path_exists(struct archiver_args
*args
, const char *path
)
463 const char *paths
[] = { path
, NULL
};
464 struct path_exists_context ctx
;
468 parse_pathspec(&ctx
.pathspec
, 0, PATHSPEC_PREFER_CWD
,
469 args
->prefix
, paths
);
470 ctx
.pathspec
.recursive
= 1;
471 if (args
->prefix
&& read_tree(args
->repo
, args
->tree
, &ctx
.pathspec
,
472 reject_outside
, args
))
473 die(_("pathspec '%s' matches files outside the "
474 "current directory"), path
);
475 ret
= read_tree(args
->repo
, args
->tree
,
478 clear_pathspec(&ctx
.pathspec
);
482 static void parse_pathspec_arg(const char **pathspec
,
483 struct archiver_args
*ar_args
)
486 * must be consistent with parse_pathspec in path_exists()
487 * Also if pathspec patterns are dependent, we're in big
488 * trouble as we test each one separately
490 parse_pathspec(&ar_args
->pathspec
, 0, PATHSPEC_PREFER_CWD
,
491 ar_args
->prefix
, pathspec
);
492 ar_args
->pathspec
.recursive
= 1;
495 if (**pathspec
&& !path_exists(ar_args
, *pathspec
))
496 die(_("pathspec '%s' did not match any files"), *pathspec
);
502 static void parse_treeish_arg(const char **argv
,
503 struct archiver_args
*ar_args
, int remote
)
505 const char *name
= argv
[0];
506 const struct object_id
*commit_oid
;
509 const struct commit
*commit
;
510 struct object_id oid
;
513 /* Remotes are only allowed to fetch actual refs */
514 if (remote
&& !remote_allow_unreachable
) {
515 const char *colon
= strchrnul(name
, ':');
516 int refnamelen
= colon
- name
;
518 if (!repo_dwim_ref(the_repository
, name
, refnamelen
, &oid
, &ref
, 0))
519 die(_("no such ref: %.*s"), refnamelen
, name
);
521 repo_dwim_ref(the_repository
, name
, strlen(name
), &oid
, &ref
,
525 if (repo_get_oid(the_repository
, name
, &oid
))
526 die(_("not a valid object name: %s"), name
);
528 commit
= lookup_commit_reference_gently(ar_args
->repo
, &oid
, 1);
530 commit_oid
= &commit
->object
.oid
;
531 archive_time
= commit
->date
;
534 archive_time
= time(NULL
);
536 if (ar_args
->mtime_option
)
537 archive_time
= approxidate(ar_args
->mtime_option
);
539 tree
= parse_tree_indirect(&oid
);
541 die(_("not a tree object: %s"), oid_to_hex(&oid
));
543 ar_args
->refname
= ref
;
544 ar_args
->tree
= tree
;
545 ar_args
->commit_oid
= commit_oid
;
546 ar_args
->commit
= commit
;
547 ar_args
->time
= archive_time
;
550 static void extra_file_info_clear(void *util
, const char *str UNUSED
)
552 struct extra_file_info
*info
= util
;
558 static int add_file_cb(const struct option
*opt
, const char *arg
, int unset
)
560 struct archiver_args
*args
= opt
->value
;
561 const char **basep
= (const char **)opt
->defval
;
562 const char *base
= *basep
;
564 struct string_list_item
*item
;
565 struct extra_file_info
*info
;
568 string_list_clear_func(&args
->extra_files
,
569 extra_file_info_clear
);
576 info
= xmalloc(sizeof(*info
));
577 info
->base
= xstrdup_or_null(base
);
579 if (!strcmp(opt
->long_name
, "add-file")) {
580 path
= prefix_filename(args
->prefix
, arg
);
581 if (stat(path
, &info
->stat
))
582 die(_("File not found: %s"), path
);
583 if (!S_ISREG(info
->stat
.st_mode
))
584 die(_("Not a regular file: %s"), path
);
585 info
->content
= NULL
; /* read the file later */
586 } else if (!strcmp(opt
->long_name
, "add-virtual-file")) {
587 struct strbuf buf
= STRBUF_INIT
;
592 else if (unquote_c_style(&buf
, p
, &p
) < 0)
593 die(_("unclosed quote: '%s'"), arg
);
596 die(_("missing colon: '%s'"), arg
);
599 die(_("empty file name: '%s'"), arg
);
602 strbuf_detach(&buf
, NULL
) : xstrndup(arg
, p
- arg
);
606 path
= prefix_filename(args
->prefix
, path
);
609 memset(&info
->stat
, 0, sizeof(info
->stat
));
610 info
->stat
.st_mode
= S_IFREG
| 0644;
611 info
->content
= xstrdup(p
+ 1);
612 info
->stat
.st_size
= strlen(info
->content
);
614 BUG("add_file_cb() called for %s", opt
->long_name
);
616 item
= string_list_append_nodup(&args
->extra_files
, path
);
622 static int number_callback(const struct option
*opt
, const char *arg
, int unset
)
624 BUG_ON_OPT_NEG(unset
);
625 *(int *)opt
->value
= strtol(arg
, NULL
, 10);
629 static int parse_archive_args(int argc
, const char **argv
,
630 const struct archiver
**ar
, struct archiver_args
*args
,
631 const char *name_hint
, int is_remote
)
633 const char *format
= NULL
;
634 const char *base
= NULL
;
635 const char *remote
= NULL
;
636 const char *exec
= NULL
;
637 const char *output
= NULL
;
638 const char *mtime_option
= NULL
;
639 int compression_level
= -1;
643 int worktree_attributes
= 0;
644 struct option opts
[] = {
646 OPT_STRING(0, "format", &format
, N_("fmt"), N_("archive format")),
647 OPT_STRING(0, "prefix", &base
, N_("prefix"),
648 N_("prepend prefix to each pathname in the archive")),
649 { OPTION_CALLBACK
, 0, "add-file", args
, N_("file"),
650 N_("add untracked file to archive"), 0, add_file_cb
,
652 { OPTION_CALLBACK
, 0, "add-virtual-file", args
,
653 N_("path:content"), N_("add untracked file to archive"), 0,
654 add_file_cb
, (intptr_t)&base
},
655 OPT_STRING('o', "output", &output
, N_("file"),
656 N_("write the archive to this file")),
657 OPT_BOOL(0, "worktree-attributes", &worktree_attributes
,
658 N_("read .gitattributes in working directory")),
659 OPT__VERBOSE(&verbose
, N_("report archived files on stderr")),
660 { OPTION_STRING
, 0, "mtime", &mtime_option
, N_("time"),
661 N_("set modification time of archive entries"),
663 OPT_NUMBER_CALLBACK(&compression_level
,
664 N_("set compression level"), number_callback
),
666 OPT_BOOL('l', "list", &list
,
667 N_("list supported archive formats")),
669 OPT_STRING(0, "remote", &remote
, N_("repo"),
670 N_("retrieve the archive from remote repository <repo>")),
671 OPT_STRING(0, "exec", &exec
, N_("command"),
672 N_("path to the remote git-upload-archive command")),
676 argc
= parse_options(argc
, argv
, NULL
, opts
, archive_usage
, 0);
679 die(_("Unexpected option --remote"));
681 die(_("the option '%s' requires '%s'"), "--exec", "--remote");
683 die(_("Unexpected option --output"));
684 if (is_remote
&& args
->extra_files
.nr
)
685 die(_("options '%s' and '%s' cannot be used together"), "--add-file", "--remote");
692 die(_("extra command line parameter '%s'"), *argv
);
693 for (i
= 0; i
< nr_archivers
; i
++)
694 if (!is_remote
|| archivers
[i
]->flags
& ARCHIVER_REMOTE
)
695 printf("%s\n", archivers
[i
]->name
);
699 if (!format
&& name_hint
)
700 format
= archive_format_from_filename(name_hint
);
704 /* We need at least one parameter -- tree-ish */
706 usage_with_options(archive_usage
, opts
);
707 *ar
= lookup_archiver(format
);
708 if (!*ar
|| (is_remote
&& !((*ar
)->flags
& ARCHIVER_REMOTE
)))
709 die(_("Unknown archive format '%s'"), format
);
711 args
->compression_level
= Z_DEFAULT_COMPRESSION
;
712 if (compression_level
!= -1) {
713 int levels_ok
= (*ar
)->flags
& ARCHIVER_WANT_COMPRESSION_LEVELS
;
714 int high_ok
= (*ar
)->flags
& ARCHIVER_HIGH_COMPRESSION_LEVELS
;
715 if (levels_ok
&& (compression_level
<= 9 || high_ok
))
716 args
->compression_level
= compression_level
;
718 die(_("Argument not supported for format '%s': -%d"),
719 format
, compression_level
);
722 args
->verbose
= verbose
;
724 args
->baselen
= strlen(base
);
725 args
->worktree_attributes
= worktree_attributes
;
726 args
->mtime_option
= mtime_option
;
731 int write_archive(int argc
, const char **argv
, const char *prefix
,
732 struct repository
*repo
,
733 const char *name_hint
, int remote
)
735 const struct archiver
*ar
= NULL
;
736 struct pretty_print_describe_status describe_status
= {0};
737 struct pretty_print_context ctx
= {0};
738 struct archiver_args args
;
741 git_config_get_bool("uploadarchive.allowunreachable", &remote_allow_unreachable
);
742 git_config(git_default_config
, NULL
);
744 describe_status
.max_invocations
= 1;
745 ctx
.date_mode
.type
= DATE_NORMAL
;
746 ctx
.abbrev
= DEFAULT_ABBREV
;
747 ctx
.describe_status
= &describe_status
;
748 args
.pretty_ctx
= &ctx
;
750 args
.prefix
= prefix
;
751 string_list_init_dup(&args
.extra_files
);
752 argc
= parse_archive_args(argc
, argv
, &ar
, &args
, name_hint
, remote
);
753 if (!startup_info
->have_repository
) {
755 * We know this will die() with an error, so we could just
756 * die ourselves; but its error message will be more specific
757 * than what we could write here.
759 setup_git_directory();
762 parse_treeish_arg(argv
, &args
, remote
);
763 parse_pathspec_arg(argv
+ 1, &args
);
765 rc
= ar
->write_archive(ar
, &args
);
767 string_list_clear_func(&args
.extra_files
, extra_file_info_clear
);
769 clear_pathspec(&args
.pathspec
);
774 static int match_extension(const char *filename
, const char *ext
)
776 int prefixlen
= strlen(filename
) - strlen(ext
);
779 * We need 1 character for the '.', and 1 character to ensure that the
780 * prefix is non-empty (k.e., we don't match .tar.gz with no actual
783 if (prefixlen
< 2 || filename
[prefixlen
- 1] != '.')
785 return !strcmp(filename
+ prefixlen
, ext
);
788 const char *archive_format_from_filename(const char *filename
)
792 for (i
= 0; i
< nr_archivers
; i
++)
793 if (match_extension(filename
, archivers
[i
]->name
))
794 return archivers
[i
]->name
;