Elijah Newren | 36bf195 | 2023-02-24 00:09:24 +0000 | [diff] [blame] | 1 | #include "git-compat-util.h" |
Elijah Newren | 0b027f6 | 2023-03-21 06:25:58 +0000 | [diff] [blame] | 2 | #include "abspath.h" |
Brandon Williams | b2141fc | 2017-06-14 11:07:36 -0700 | [diff] [blame] | 3 | #include "config.h" |
Elijah Newren | 73359a9 | 2023-04-11 03:00:40 +0000 | [diff] [blame] | 4 | #include "convert.h" |
Elijah Newren | 32a8f51 | 2023-03-21 06:26:03 +0000 | [diff] [blame] | 5 | #include "environment.h" |
Elijah Newren | f394e09 | 2023-03-21 06:25:54 +0000 | [diff] [blame] | 6 | #include "gettext.h" |
Elijah Newren | 41771fa | 2023-02-24 00:09:27 +0000 | [diff] [blame] | 7 | #include "hex.h" |
Elijah Newren | c2c4138 | 2023-12-23 17:14:51 +0000 | [diff] [blame] | 8 | #include "object-name.h" |
Elijah Newren | c339932 | 2023-05-16 06:33:59 +0000 | [diff] [blame] | 9 | #include "path.h" |
Elijah Newren | d4a4f92 | 2023-04-22 20:17:26 +0000 | [diff] [blame] | 10 | #include "pretty.h" |
Elijah Newren | e38da48 | 2023-03-21 06:26:05 +0000 | [diff] [blame] | 11 | #include "setup.h" |
Michael Haggerty | fb58c8d | 2015-06-22 16:03:05 +0200 | [diff] [blame] | 12 | #include "refs.h" |
Elijah Newren | a034e91 | 2023-05-16 06:34:06 +0000 | [diff] [blame] | 13 | #include "object-store-ll.h" |
Lars Hjemli | 1812564 | 2008-01-14 17:36:34 +0100 | [diff] [blame] | 14 | #include "commit.h" |
Elijah Newren | d4a4f92 | 2023-04-22 20:17:26 +0000 | [diff] [blame] | 15 | #include "tree.h" |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 16 | #include "tree-walk.h" |
Lars Hjemli | 1812564 | 2008-01-14 17:36:34 +0100 | [diff] [blame] | 17 | #include "attr.h" |
René Scharfe | 562e25a | 2008-07-14 21:22:24 +0200 | [diff] [blame] | 18 | #include "archive.h" |
Rene Scharfe | 4fac1d3 | 2008-07-25 12:41:26 +0200 | [diff] [blame] | 19 | #include "parse-options.h" |
Nguyễn Thái Ngọc Duy | ba053ea | 2009-04-18 00:18:05 +0200 | [diff] [blame] | 20 | #include "unpack-trees.h" |
Johannes Schindelin | de1f68a | 2022-05-28 16:11:13 -0700 | [diff] [blame] | 21 | #include "quote.h" |
Lars Hjemli | 1812564 | 2008-01-14 17:36:34 +0100 | [diff] [blame] | 22 | |
Rene Scharfe | 4fac1d3 | 2008-07-25 12:41:26 +0200 | [diff] [blame] | 23 | static char const * const archive_usage[] = { |
Alex Henrie | 9c9b4f2 | 2015-01-13 00:44:47 -0700 | [diff] [blame] | 24 | N_("git archive [<options>] <tree-ish> [<path>...]"), |
Jean-Noël Avila | 959d670 | 2022-01-31 22:07:48 +0000 | [diff] [blame] | 25 | "git archive --list", |
Alex Henrie | 9c9b4f2 | 2015-01-13 00:44:47 -0700 | [diff] [blame] | 26 | N_("git archive --remote <repo> [--exec <cmd>] [<options>] <tree-ish> [<path>...]"), |
Nguyễn Thái Ngọc Duy | 0012a38 | 2012-08-20 19:31:51 +0700 | [diff] [blame] | 27 | N_("git archive --remote <repo> [--exec <cmd>] --list"), |
Rene Scharfe | 4fac1d3 | 2008-07-25 12:41:26 +0200 | [diff] [blame] | 28 | NULL |
| 29 | }; |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 30 | |
Jeff King | 13e0f88 | 2011-06-21 21:23:33 -0400 | [diff] [blame] | 31 | static const struct archiver **archivers; |
| 32 | static int nr_archivers; |
| 33 | static int alloc_archivers; |
Scott J. Goldman | 7671b63 | 2014-02-28 05:04:19 -0500 | [diff] [blame] | 34 | static int remote_allow_unreachable; |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 35 | |
Jeff King | 13e0f88 | 2011-06-21 21:23:33 -0400 | [diff] [blame] | 36 | void register_archiver(struct archiver *ar) |
| 37 | { |
| 38 | ALLOC_GROW(archivers, nr_archivers + 1, alloc_archivers); |
| 39 | archivers[nr_archivers++] = ar; |
| 40 | } |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 41 | |
Josh Steadmon | 00436bf | 2018-10-25 13:32:14 -0700 | [diff] [blame] | 42 | void init_archivers(void) |
| 43 | { |
| 44 | init_tar_archiver(); |
| 45 | init_zip_archiver(); |
| 46 | } |
| 47 | |
Lars Hjemli | 1812564 | 2008-01-14 17:36:34 +0100 | [diff] [blame] | 48 | static void format_subst(const struct commit *commit, |
Nguyễn Thái Ngọc Duy | ec36c42 | 2018-12-06 16:42:06 +0100 | [diff] [blame] | 49 | const char *src, size_t len, |
René Scharfe | 9609972 | 2021-02-28 12:22:47 +0100 | [diff] [blame] | 50 | struct strbuf *buf, struct pretty_print_context *ctx) |
Lars Hjemli | 1812564 | 2008-01-14 17:36:34 +0100 | [diff] [blame] | 51 | { |
| 52 | char *to_free = NULL; |
Brandon Casey | f285a2d | 2008-10-09 14:12:12 -0500 | [diff] [blame] | 53 | struct strbuf fmt = STRBUF_INIT; |
Lars Hjemli | 1812564 | 2008-01-14 17:36:34 +0100 | [diff] [blame] | 54 | |
| 55 | if (src == buf->buf) |
| 56 | to_free = strbuf_detach(buf, NULL); |
Lars Hjemli | 1812564 | 2008-01-14 17:36:34 +0100 | [diff] [blame] | 57 | for (;;) { |
| 58 | const char *b, *c; |
| 59 | |
| 60 | b = memmem(src, len, "$Format:", 8); |
Ariel Badichi | 75b7dfb | 2008-04-23 04:06:27 +0300 | [diff] [blame] | 61 | if (!b) |
Lars Hjemli | 1812564 | 2008-01-14 17:36:34 +0100 | [diff] [blame] | 62 | break; |
Ariel Badichi | 75b7dfb | 2008-04-23 04:06:27 +0300 | [diff] [blame] | 63 | c = memchr(b + 8, '$', (src + len) - b - 8); |
Lars Hjemli | 1812564 | 2008-01-14 17:36:34 +0100 | [diff] [blame] | 64 | if (!c) |
| 65 | break; |
| 66 | |
| 67 | strbuf_reset(&fmt); |
| 68 | strbuf_add(&fmt, b + 8, c - b - 8); |
| 69 | |
| 70 | strbuf_add(buf, src, b - src); |
Ævar Arnfjörð Bjarmason | bab8216 | 2023-03-28 15:58:51 +0200 | [diff] [blame] | 71 | repo_format_commit_message(the_repository, commit, fmt.buf, |
| 72 | buf, ctx); |
Lars Hjemli | 1812564 | 2008-01-14 17:36:34 +0100 | [diff] [blame] | 73 | len -= c + 1 - src; |
| 74 | src = c + 1; |
| 75 | } |
| 76 | strbuf_add(buf, src, len); |
| 77 | strbuf_release(&fmt); |
| 78 | free(to_free); |
| 79 | } |
| 80 | |
René Scharfe | 200589a | 2020-09-19 23:23:32 +0200 | [diff] [blame] | 81 | static void *object_file_to_archive(const struct archiver_args *args, |
| 82 | const char *path, |
| 83 | const struct object_id *oid, |
| 84 | unsigned int mode, |
| 85 | enum object_type *type, |
| 86 | unsigned long *sizep) |
Lars Hjemli | 1812564 | 2008-01-14 17:36:34 +0100 | [diff] [blame] | 87 | { |
| 88 | void *buffer; |
Nguyễn Thái Ngọc Duy | 9cb513b | 2012-05-03 08:51:03 +0700 | [diff] [blame] | 89 | const struct commit *commit = args->convert ? args->commit : NULL; |
brian m. carlson | c397aac | 2020-03-16 18:05:03 +0000 | [diff] [blame] | 90 | struct checkout_metadata meta; |
| 91 | |
| 92 | init_checkout_metadata(&meta, args->refname, |
| 93 | args->commit_oid ? args->commit_oid : |
| 94 | (args->tree ? &args->tree->object.oid : NULL), oid); |
Lars Hjemli | 1812564 | 2008-01-14 17:36:34 +0100 | [diff] [blame] | 95 | |
Nguyễn Thái Ngọc Duy | 9cb513b | 2012-05-03 08:51:03 +0700 | [diff] [blame] | 96 | path += args->baselen; |
Ævar Arnfjörð Bjarmason | bc726bd | 2023-03-28 15:58:50 +0200 | [diff] [blame] | 97 | buffer = repo_read_object_file(the_repository, oid, type, sizep); |
Lars Hjemli | 1812564 | 2008-01-14 17:36:34 +0100 | [diff] [blame] | 98 | if (buffer && S_ISREG(mode)) { |
Brandon Casey | f285a2d | 2008-10-09 14:12:12 -0500 | [diff] [blame] | 99 | struct strbuf buf = STRBUF_INIT; |
Lars Hjemli | 1812564 | 2008-01-14 17:36:34 +0100 | [diff] [blame] | 100 | size_t size = 0; |
| 101 | |
Lars Hjemli | 1812564 | 2008-01-14 17:36:34 +0100 | [diff] [blame] | 102 | strbuf_attach(&buf, buffer, *sizep, *sizep + 1); |
brian m. carlson | c397aac | 2020-03-16 18:05:03 +0000 | [diff] [blame] | 103 | convert_to_working_tree(args->repo->index, path, buf.buf, buf.len, &buf, &meta); |
René Scharfe | 1d11d5b | 2008-07-14 21:22:29 +0200 | [diff] [blame] | 104 | if (commit) |
René Scharfe | 9609972 | 2021-02-28 12:22:47 +0100 | [diff] [blame] | 105 | format_subst(commit, buf.buf, buf.len, &buf, args->pretty_ctx); |
Lars Hjemli | 1812564 | 2008-01-14 17:36:34 +0100 | [diff] [blame] | 106 | buffer = strbuf_detach(&buf, &size); |
| 107 | *sizep = size; |
| 108 | } |
| 109 | |
| 110 | return buffer; |
| 111 | } |
| 112 | |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 113 | struct directory { |
| 114 | struct directory *up; |
brian m. carlson | 1360967 | 2015-03-13 23:39:30 +0000 | [diff] [blame] | 115 | struct object_id oid; |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 116 | int baselen, len; |
| 117 | unsigned mode; |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 118 | char path[FLEX_ARRAY]; |
| 119 | }; |
| 120 | |
René Scharfe | 562e25a | 2008-07-14 21:22:24 +0200 | [diff] [blame] | 121 | struct archiver_context { |
| 122 | struct archiver_args *args; |
| 123 | write_archive_entry_fn_t write_entry; |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 124 | struct directory *bottom; |
René Scharfe | 562e25a | 2008-07-14 21:22:24 +0200 | [diff] [blame] | 125 | }; |
| 126 | |
Nguyễn Thái Ngọc Duy | b612ee2 | 2018-08-13 18:14:35 +0200 | [diff] [blame] | 127 | static const struct attr_check *get_archive_attrs(struct index_state *istate, |
| 128 | const char *path) |
René Scharfe | c6c08f7 | 2017-08-19 07:29:43 +0200 | [diff] [blame] | 129 | { |
| 130 | static struct attr_check *check; |
| 131 | if (!check) |
| 132 | check = attr_check_initl("export-ignore", "export-subst", NULL); |
John Cai | 44451a2 | 2023-05-06 04:15:29 +0000 | [diff] [blame] | 133 | git_check_attr(istate, path, check); |
Torsten Bögershausen | d64324c | 2018-09-12 21:32:02 +0200 | [diff] [blame] | 134 | return check; |
René Scharfe | c6c08f7 | 2017-08-19 07:29:43 +0200 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | static int check_attr_export_ignore(const struct attr_check *check) |
| 138 | { |
| 139 | return check && ATTR_TRUE(check->items[0].value); |
| 140 | } |
| 141 | |
| 142 | static int check_attr_export_subst(const struct attr_check *check) |
| 143 | { |
| 144 | return check && ATTR_TRUE(check->items[1].value); |
| 145 | } |
| 146 | |
brian m. carlson | 015ff4f | 2018-03-12 02:27:35 +0000 | [diff] [blame] | 147 | static int write_archive_entry(const struct object_id *oid, const char *base, |
Ævar Arnfjörð Bjarmason | 7367d88 | 2021-03-20 23:37:49 +0100 | [diff] [blame] | 148 | int baselen, const char *filename, unsigned mode, |
René Scharfe | 562e25a | 2008-07-14 21:22:24 +0200 | [diff] [blame] | 149 | void *context) |
| 150 | { |
| 151 | static struct strbuf path = STRBUF_INIT; |
| 152 | struct archiver_context *c = context; |
| 153 | struct archiver_args *args = c->args; |
| 154 | write_archive_entry_fn_t write_entry = c->write_entry; |
| 155 | int err; |
René Scharfe | 5ff247a | 2017-08-19 07:32:37 +0200 | [diff] [blame] | 156 | const char *path_without_prefix; |
René Scharfe | 200589a | 2020-09-19 23:23:32 +0200 | [diff] [blame] | 157 | unsigned long size; |
| 158 | void *buffer; |
| 159 | enum object_type type; |
René Scharfe | 562e25a | 2008-07-14 21:22:24 +0200 | [diff] [blame] | 160 | |
Nguyễn Thái Ngọc Duy | 9cb513b | 2012-05-03 08:51:03 +0700 | [diff] [blame] | 161 | args->convert = 0; |
René Scharfe | 562e25a | 2008-07-14 21:22:24 +0200 | [diff] [blame] | 162 | strbuf_reset(&path); |
| 163 | strbuf_grow(&path, PATH_MAX); |
René Scharfe | ebfbdb3 | 2009-10-08 18:46:54 +0200 | [diff] [blame] | 164 | strbuf_add(&path, args->base, args->baselen); |
René Scharfe | 562e25a | 2008-07-14 21:22:24 +0200 | [diff] [blame] | 165 | strbuf_add(&path, base, baselen); |
| 166 | strbuf_addstr(&path, filename); |
Jean-Noël AVILA | 94bc671 | 2012-12-08 21:04:39 +0100 | [diff] [blame] | 167 | if (S_ISDIR(mode) || S_ISGITLINK(mode)) |
| 168 | strbuf_addch(&path, '/'); |
René Scharfe | 1d11d5b | 2008-07-14 21:22:29 +0200 | [diff] [blame] | 169 | path_without_prefix = path.buf + args->baselen; |
René Scharfe | 562e25a | 2008-07-14 21:22:24 +0200 | [diff] [blame] | 170 | |
René Scharfe | 4318094 | 2017-09-13 00:43:57 +0200 | [diff] [blame] | 171 | if (!S_ISDIR(mode)) { |
René Scharfe | 5ff247a | 2017-08-19 07:32:37 +0200 | [diff] [blame] | 172 | const struct attr_check *check; |
Nguyễn Thái Ngọc Duy | b612ee2 | 2018-08-13 18:14:35 +0200 | [diff] [blame] | 173 | check = get_archive_attrs(args->repo->index, path_without_prefix); |
René Scharfe | 5ff247a | 2017-08-19 07:32:37 +0200 | [diff] [blame] | 174 | if (check_attr_export_ignore(check)) |
René Scharfe | 1d11d5b | 2008-07-14 21:22:29 +0200 | [diff] [blame] | 175 | return 0; |
René Scharfe | 5ff247a | 2017-08-19 07:32:37 +0200 | [diff] [blame] | 176 | args->convert = check_attr_export_subst(check); |
René Scharfe | 1d11d5b | 2008-07-14 21:22:29 +0200 | [diff] [blame] | 177 | } |
René Scharfe | 562e25a | 2008-07-14 21:22:24 +0200 | [diff] [blame] | 178 | |
René Scharfe | 92b1dd1 | 2023-03-24 23:27:11 +0100 | [diff] [blame] | 179 | if (args->prefix) { |
| 180 | static struct strbuf new_path = STRBUF_INIT; |
| 181 | static struct strbuf buf = STRBUF_INIT; |
| 182 | const char *rel; |
| 183 | |
| 184 | rel = relative_path(path_without_prefix, args->prefix, &buf); |
| 185 | |
| 186 | /* |
| 187 | * We don't add an entry for the current working |
| 188 | * directory when we are at the root; skip it also when |
| 189 | * we're in a subdirectory or submodule. Skip entries |
| 190 | * higher up as well. |
| 191 | */ |
| 192 | if (!strcmp(rel, "./") || starts_with(rel, "../")) |
| 193 | return S_ISDIR(mode) ? READ_TREE_RECURSIVE : 0; |
| 194 | |
| 195 | /* rel can refer to path, so don't edit it in place */ |
| 196 | strbuf_reset(&new_path); |
| 197 | strbuf_add(&new_path, args->base, args->baselen); |
| 198 | strbuf_addstr(&new_path, rel); |
| 199 | strbuf_swap(&path, &new_path); |
| 200 | } |
| 201 | |
René Scharfe | e3733b6 | 2022-10-11 11:29:38 +0200 | [diff] [blame] | 202 | if (args->verbose) |
| 203 | fprintf(stderr, "%.*s\n", (int)path.len, path.buf); |
| 204 | |
René Scharfe | 562e25a | 2008-07-14 21:22:24 +0200 | [diff] [blame] | 205 | if (S_ISDIR(mode) || S_ISGITLINK(mode)) { |
René Scharfe | 200589a | 2020-09-19 23:23:32 +0200 | [diff] [blame] | 206 | err = write_entry(args, oid, path.buf, path.len, mode, NULL, 0); |
René Scharfe | 562e25a | 2008-07-14 21:22:24 +0200 | [diff] [blame] | 207 | if (err) |
| 208 | return err; |
Lars Hjemli | d3bee16 | 2009-01-25 01:52:05 +0100 | [diff] [blame] | 209 | return (S_ISDIR(mode) ? READ_TREE_RECURSIVE : 0); |
René Scharfe | 562e25a | 2008-07-14 21:22:24 +0200 | [diff] [blame] | 210 | } |
| 211 | |
René Scharfe | 200589a | 2020-09-19 23:23:32 +0200 | [diff] [blame] | 212 | /* Stream it? */ |
| 213 | if (S_ISREG(mode) && !args->convert && |
| 214 | oid_object_info(args->repo, oid, &size) == OBJ_BLOB && |
| 215 | size > big_file_threshold) |
| 216 | return write_entry(args, oid, path.buf, path.len, mode, NULL, size); |
| 217 | |
| 218 | buffer = object_file_to_archive(args, path.buf, oid, mode, &type, &size); |
| 219 | if (!buffer) |
Jean-Noël Avila | c490437 | 2022-01-05 20:02:17 +0000 | [diff] [blame] | 220 | return error(_("cannot read '%s'"), oid_to_hex(oid)); |
René Scharfe | 200589a | 2020-09-19 23:23:32 +0200 | [diff] [blame] | 221 | err = write_entry(args, oid, path.buf, path.len, mode, buffer, size); |
| 222 | free(buffer); |
| 223 | return err; |
René Scharfe | 562e25a | 2008-07-14 21:22:24 +0200 | [diff] [blame] | 224 | } |
| 225 | |
René Scharfe | e124ecf | 2021-08-27 21:59:16 +0200 | [diff] [blame] | 226 | static void queue_directory(const struct object_id *oid, |
Nguyễn Thái Ngọc Duy | 6a0b0b6 | 2014-11-30 16:05:00 +0700 | [diff] [blame] | 227 | struct strbuf *base, const char *filename, |
Ævar Arnfjörð Bjarmason | 7367d88 | 2021-03-20 23:37:49 +0100 | [diff] [blame] | 228 | unsigned mode, struct archiver_context *c) |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 229 | { |
| 230 | struct directory *d; |
Jeff King | 50a6c8e | 2016-02-22 17:44:35 -0500 | [diff] [blame] | 231 | size_t len = st_add4(base->len, 1, strlen(filename), 1); |
| 232 | d = xmalloc(st_add(sizeof(*d), len)); |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 233 | d->up = c->bottom; |
Nguyễn Thái Ngọc Duy | 6a0b0b6 | 2014-11-30 16:05:00 +0700 | [diff] [blame] | 234 | d->baselen = base->len; |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 235 | d->mode = mode; |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 236 | c->bottom = d; |
Jeff King | c7ab0ba | 2015-09-24 17:08:12 -0400 | [diff] [blame] | 237 | d->len = xsnprintf(d->path, len, "%.*s%s/", (int)base->len, base->buf, filename); |
René Scharfe | e124ecf | 2021-08-27 21:59:16 +0200 | [diff] [blame] | 238 | oidcpy(&d->oid, oid); |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | static int write_directory(struct archiver_context *c) |
| 242 | { |
| 243 | struct directory *d = c->bottom; |
| 244 | int ret; |
| 245 | |
| 246 | if (!d) |
| 247 | return 0; |
| 248 | c->bottom = d->up; |
| 249 | d->path[d->len - 1] = '\0'; /* no trailing slash */ |
| 250 | ret = |
| 251 | write_directory(c) || |
brian m. carlson | 015ff4f | 2018-03-12 02:27:35 +0000 | [diff] [blame] | 252 | write_archive_entry(&d->oid, d->path, d->baselen, |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 253 | d->path + d->baselen, d->mode, |
Ævar Arnfjörð Bjarmason | 7367d88 | 2021-03-20 23:37:49 +0100 | [diff] [blame] | 254 | c) != READ_TREE_RECURSIVE; |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 255 | free(d); |
| 256 | return ret ? -1 : 0; |
| 257 | } |
| 258 | |
brian m. carlson | df46d77 | 2018-03-12 02:27:26 +0000 | [diff] [blame] | 259 | static int queue_or_write_archive_entry(const struct object_id *oid, |
Nguyễn Thái Ngọc Duy | 6a0b0b6 | 2014-11-30 16:05:00 +0700 | [diff] [blame] | 260 | struct strbuf *base, const char *filename, |
Ævar Arnfjörð Bjarmason | 4795748 | 2021-03-20 23:37:51 +0100 | [diff] [blame] | 261 | unsigned mode, void *context) |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 262 | { |
| 263 | struct archiver_context *c = context; |
| 264 | |
| 265 | while (c->bottom && |
Nguyễn Thái Ngọc Duy | 6a0b0b6 | 2014-11-30 16:05:00 +0700 | [diff] [blame] | 266 | !(base->len >= c->bottom->len && |
| 267 | !strncmp(base->buf, c->bottom->path, c->bottom->len))) { |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 268 | struct directory *next = c->bottom->up; |
| 269 | free(c->bottom); |
| 270 | c->bottom = next; |
| 271 | } |
| 272 | |
| 273 | if (S_ISDIR(mode)) { |
René Scharfe | 5ff247a | 2017-08-19 07:32:37 +0200 | [diff] [blame] | 274 | size_t baselen = base->len; |
| 275 | const struct attr_check *check; |
| 276 | |
| 277 | /* Borrow base, but restore its original value when done. */ |
| 278 | strbuf_addstr(base, filename); |
| 279 | strbuf_addch(base, '/'); |
Nguyễn Thái Ngọc Duy | b612ee2 | 2018-08-13 18:14:35 +0200 | [diff] [blame] | 280 | check = get_archive_attrs(c->args->repo->index, base->buf); |
René Scharfe | 5ff247a | 2017-08-19 07:32:37 +0200 | [diff] [blame] | 281 | strbuf_setlen(base, baselen); |
| 282 | |
| 283 | if (check_attr_export_ignore(check)) |
| 284 | return 0; |
René Scharfe | e124ecf | 2021-08-27 21:59:16 +0200 | [diff] [blame] | 285 | queue_directory(oid, base, filename, mode, c); |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 286 | return READ_TREE_RECURSIVE; |
| 287 | } |
| 288 | |
| 289 | if (write_directory(c)) |
| 290 | return -1; |
brian m. carlson | 015ff4f | 2018-03-12 02:27:35 +0000 | [diff] [blame] | 291 | return write_archive_entry(oid, base->buf, base->len, filename, mode, |
Ævar Arnfjörð Bjarmason | 7367d88 | 2021-03-20 23:37:49 +0100 | [diff] [blame] | 292 | context); |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 293 | } |
| 294 | |
René Scharfe | 2947a79 | 2020-09-19 23:23:42 +0200 | [diff] [blame] | 295 | struct extra_file_info { |
| 296 | char *base; |
| 297 | struct stat stat; |
Johannes Schindelin | 237a1d1 | 2022-05-28 16:11:12 -0700 | [diff] [blame] | 298 | void *content; |
René Scharfe | 2947a79 | 2020-09-19 23:23:42 +0200 | [diff] [blame] | 299 | }; |
| 300 | |
René Scharfe | 562e25a | 2008-07-14 21:22:24 +0200 | [diff] [blame] | 301 | int write_archive_entries(struct archiver_args *args, |
| 302 | write_archive_entry_fn_t write_entry) |
| 303 | { |
| 304 | struct archiver_context context; |
Nguyễn Thái Ngọc Duy | ba053ea | 2009-04-18 00:18:05 +0200 | [diff] [blame] | 305 | struct unpack_trees_options opts; |
| 306 | struct tree_desc t; |
René Scharfe | 562e25a | 2008-07-14 21:22:24 +0200 | [diff] [blame] | 307 | int err; |
René Scharfe | 2947a79 | 2020-09-19 23:23:42 +0200 | [diff] [blame] | 308 | struct strbuf path_in_archive = STRBUF_INIT; |
| 309 | struct strbuf content = STRBUF_INIT; |
brian m. carlson | 1422844 | 2021-04-26 01:02:56 +0000 | [diff] [blame] | 310 | struct object_id fake_oid; |
René Scharfe | 2947a79 | 2020-09-19 23:23:42 +0200 | [diff] [blame] | 311 | int i; |
René Scharfe | 562e25a | 2008-07-14 21:22:24 +0200 | [diff] [blame] | 312 | |
brian m. carlson | 1422844 | 2021-04-26 01:02:56 +0000 | [diff] [blame] | 313 | oidcpy(&fake_oid, null_oid()); |
| 314 | |
René Scharfe | 562e25a | 2008-07-14 21:22:24 +0200 | [diff] [blame] | 315 | if (args->baselen > 0 && args->base[args->baselen - 1] == '/') { |
| 316 | size_t len = args->baselen; |
| 317 | |
| 318 | while (len > 1 && args->base[len - 2] == '/') |
| 319 | len--; |
| 320 | if (args->verbose) |
| 321 | fprintf(stderr, "%.*s\n", (int)len, args->base); |
brian m. carlson | 015ff4f | 2018-03-12 02:27:35 +0000 | [diff] [blame] | 322 | err = write_entry(args, &args->tree->object.oid, args->base, |
René Scharfe | 200589a | 2020-09-19 23:23:32 +0200 | [diff] [blame] | 323 | len, 040777, NULL, 0); |
René Scharfe | 562e25a | 2008-07-14 21:22:24 +0200 | [diff] [blame] | 324 | if (err) |
| 325 | return err; |
| 326 | } |
| 327 | |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 328 | memset(&context, 0, sizeof(context)); |
René Scharfe | 562e25a | 2008-07-14 21:22:24 +0200 | [diff] [blame] | 329 | context.args = args; |
| 330 | context.write_entry = write_entry; |
| 331 | |
Nguyễn Thái Ngọc Duy | ba053ea | 2009-04-18 00:18:05 +0200 | [diff] [blame] | 332 | /* |
| 333 | * Setup index and instruct attr to read index only |
| 334 | */ |
| 335 | if (!args->worktree_attributes) { |
| 336 | memset(&opts, 0, sizeof(opts)); |
| 337 | opts.index_only = 1; |
| 338 | opts.head_idx = -1; |
Nguyễn Thái Ngọc Duy | b612ee2 | 2018-08-13 18:14:35 +0200 | [diff] [blame] | 339 | opts.src_index = args->repo->index; |
| 340 | opts.dst_index = args->repo->index; |
Nguyễn Thái Ngọc Duy | ba053ea | 2009-04-18 00:18:05 +0200 | [diff] [blame] | 341 | opts.fn = oneway_merge; |
Eric W. Biederman | efed687 | 2023-10-01 21:40:28 -0500 | [diff] [blame] | 342 | init_tree_desc(&t, &args->tree->object.oid, |
| 343 | args->tree->buffer, args->tree->size); |
Nguyễn Thái Ngọc Duy | ba053ea | 2009-04-18 00:18:05 +0200 | [diff] [blame] | 344 | if (unpack_trees(1, &t, &opts)) |
| 345 | return -1; |
Nguyễn Thái Ngọc Duy | c4500e2 | 2018-08-13 18:14:33 +0200 | [diff] [blame] | 346 | git_attr_set_direction(GIT_ATTR_INDEX); |
Nguyễn Thái Ngọc Duy | ba053ea | 2009-04-18 00:18:05 +0200 | [diff] [blame] | 347 | } |
| 348 | |
Ævar Arnfjörð Bjarmason | 4795748 | 2021-03-20 23:37:51 +0100 | [diff] [blame] | 349 | err = read_tree(args->repo, args->tree, |
| 350 | &args->pathspec, |
| 351 | queue_or_write_archive_entry, |
| 352 | &context); |
René Scharfe | 562e25a | 2008-07-14 21:22:24 +0200 | [diff] [blame] | 353 | if (err == READ_TREE_RECURSIVE) |
| 354 | err = 0; |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 355 | while (context.bottom) { |
| 356 | struct directory *next = context.bottom->up; |
| 357 | free(context.bottom); |
| 358 | context.bottom = next; |
| 359 | } |
René Scharfe | 2947a79 | 2020-09-19 23:23:42 +0200 | [diff] [blame] | 360 | |
| 361 | for (i = 0; i < args->extra_files.nr; i++) { |
| 362 | struct string_list_item *item = args->extra_files.items + i; |
| 363 | char *path = item->string; |
| 364 | struct extra_file_info *info = item->util; |
| 365 | |
| 366 | put_be64(fake_oid.hash, i + 1); |
| 367 | |
Johannes Schindelin | 237a1d1 | 2022-05-28 16:11:12 -0700 | [diff] [blame] | 368 | if (!info->content) { |
| 369 | strbuf_reset(&path_in_archive); |
| 370 | if (info->base) |
| 371 | strbuf_addstr(&path_in_archive, info->base); |
| 372 | strbuf_addstr(&path_in_archive, basename(path)); |
René Scharfe | 2947a79 | 2020-09-19 23:23:42 +0200 | [diff] [blame] | 373 | |
Johannes Schindelin | 237a1d1 | 2022-05-28 16:11:12 -0700 | [diff] [blame] | 374 | strbuf_reset(&content); |
| 375 | if (strbuf_read_file(&content, path, info->stat.st_size) < 0) |
| 376 | err = error_errno(_("cannot read '%s'"), path); |
| 377 | else |
| 378 | err = write_entry(args, &fake_oid, path_in_archive.buf, |
| 379 | path_in_archive.len, |
| 380 | canon_mode(info->stat.st_mode), |
| 381 | content.buf, content.len); |
| 382 | } else { |
| 383 | err = write_entry(args, &fake_oid, |
| 384 | path, strlen(path), |
Junio C Hamano | 6a61661 | 2022-05-12 14:31:09 -0700 | [diff] [blame] | 385 | canon_mode(info->stat.st_mode), |
Johannes Schindelin | 237a1d1 | 2022-05-28 16:11:12 -0700 | [diff] [blame] | 386 | info->content, info->stat.st_size); |
| 387 | } |
| 388 | |
René Scharfe | 2947a79 | 2020-09-19 23:23:42 +0200 | [diff] [blame] | 389 | if (err) |
| 390 | break; |
| 391 | } |
| 392 | strbuf_release(&path_in_archive); |
| 393 | strbuf_release(&content); |
| 394 | |
René Scharfe | 562e25a | 2008-07-14 21:22:24 +0200 | [diff] [blame] | 395 | return err; |
| 396 | } |
Rene Scharfe | 6e94e68 | 2008-07-25 12:41:21 +0200 | [diff] [blame] | 397 | |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 398 | static const struct archiver *lookup_archiver(const char *name) |
| 399 | { |
| 400 | int i; |
| 401 | |
Rene Scharfe | 4fac1d3 | 2008-07-25 12:41:26 +0200 | [diff] [blame] | 402 | if (!name) |
| 403 | return NULL; |
| 404 | |
Jeff King | 13e0f88 | 2011-06-21 21:23:33 -0400 | [diff] [blame] | 405 | for (i = 0; i < nr_archivers; i++) { |
| 406 | if (!strcmp(name, archivers[i]->name)) |
| 407 | return archivers[i]; |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 408 | } |
| 409 | return NULL; |
| 410 | } |
| 411 | |
Nguyễn Thái Ngọc Duy | b612ee2 | 2018-08-13 18:14:35 +0200 | [diff] [blame] | 412 | struct path_exists_context { |
| 413 | struct pathspec pathspec; |
| 414 | struct archiver_args *args; |
| 415 | }; |
| 416 | |
Ævar Arnfjörð Bjarmason | 5cf88fd | 2022-08-25 19:09:48 +0200 | [diff] [blame] | 417 | static int reject_entry(const struct object_id *oid UNUSED, |
Jeff King | 555ff1c | 2022-08-19 06:08:49 -0400 | [diff] [blame] | 418 | struct strbuf *base, |
Nguyễn Thái Ngọc Duy | 6a0b0b6 | 2014-11-30 16:05:00 +0700 | [diff] [blame] | 419 | const char *filename, unsigned mode, |
Ævar Arnfjörð Bjarmason | 7367d88 | 2021-03-20 23:37:49 +0100 | [diff] [blame] | 420 | void *context) |
René Scharfe | d5f53d6 | 2009-12-12 16:00:41 +0100 | [diff] [blame] | 421 | { |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 422 | int ret = -1; |
Nguyễn Thái Ngọc Duy | b612ee2 | 2018-08-13 18:14:35 +0200 | [diff] [blame] | 423 | struct path_exists_context *ctx = context; |
| 424 | |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 425 | if (S_ISDIR(mode)) { |
| 426 | struct strbuf sb = STRBUF_INIT; |
Nguyễn Thái Ngọc Duy | 6a0b0b6 | 2014-11-30 16:05:00 +0700 | [diff] [blame] | 427 | strbuf_addbuf(&sb, base); |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 428 | strbuf_addstr(&sb, filename); |
Nguyễn Thái Ngọc Duy | b612ee2 | 2018-08-13 18:14:35 +0200 | [diff] [blame] | 429 | if (!match_pathspec(ctx->args->repo->index, |
| 430 | &ctx->pathspec, |
| 431 | sb.buf, sb.len, 0, NULL, 1)) |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 432 | ret = READ_TREE_RECURSIVE; |
| 433 | strbuf_release(&sb); |
| 434 | } |
| 435 | return ret; |
René Scharfe | d5f53d6 | 2009-12-12 16:00:41 +0100 | [diff] [blame] | 436 | } |
| 437 | |
René Scharfe | 92b1dd1 | 2023-03-24 23:27:11 +0100 | [diff] [blame] | 438 | static int reject_outside(const struct object_id *oid UNUSED, |
| 439 | struct strbuf *base, const char *filename, |
| 440 | unsigned mode, void *context) |
| 441 | { |
| 442 | struct archiver_args *args = context; |
| 443 | struct strbuf buf = STRBUF_INIT; |
| 444 | struct strbuf path = STRBUF_INIT; |
| 445 | int ret = 0; |
| 446 | |
| 447 | if (S_ISDIR(mode)) |
| 448 | return READ_TREE_RECURSIVE; |
| 449 | |
| 450 | strbuf_addbuf(&path, base); |
| 451 | strbuf_addstr(&path, filename); |
| 452 | if (starts_with(relative_path(path.buf, args->prefix, &buf), "../")) |
| 453 | ret = -1; |
| 454 | strbuf_release(&buf); |
| 455 | strbuf_release(&path); |
| 456 | return ret; |
| 457 | } |
| 458 | |
Nguyễn Thái Ngọc Duy | b612ee2 | 2018-08-13 18:14:35 +0200 | [diff] [blame] | 459 | static int path_exists(struct archiver_args *args, const char *path) |
René Scharfe | d5f53d6 | 2009-12-12 16:00:41 +0100 | [diff] [blame] | 460 | { |
Nguyễn Thái Ngọc Duy | f0096c0 | 2011-03-25 16:34:19 +0700 | [diff] [blame] | 461 | const char *paths[] = { path, NULL }; |
Nguyễn Thái Ngọc Duy | b612ee2 | 2018-08-13 18:14:35 +0200 | [diff] [blame] | 462 | struct path_exists_context ctx; |
Nguyễn Thái Ngọc Duy | f0096c0 | 2011-03-25 16:34:19 +0700 | [diff] [blame] | 463 | int ret; |
René Scharfe | d5f53d6 | 2009-12-12 16:00:41 +0100 | [diff] [blame] | 464 | |
Nguyễn Thái Ngọc Duy | b612ee2 | 2018-08-13 18:14:35 +0200 | [diff] [blame] | 465 | ctx.args = args; |
René Scharfe | 92b1dd1 | 2023-03-24 23:27:11 +0100 | [diff] [blame] | 466 | parse_pathspec(&ctx.pathspec, 0, PATHSPEC_PREFER_CWD, |
| 467 | args->prefix, paths); |
Nguyễn Thái Ngọc Duy | b612ee2 | 2018-08-13 18:14:35 +0200 | [diff] [blame] | 468 | ctx.pathspec.recursive = 1; |
René Scharfe | 92b1dd1 | 2023-03-24 23:27:11 +0100 | [diff] [blame] | 469 | if (args->prefix && read_tree(args->repo, args->tree, &ctx.pathspec, |
| 470 | reject_outside, args)) |
| 471 | die(_("pathspec '%s' matches files outside the " |
| 472 | "current directory"), path); |
Ævar Arnfjörð Bjarmason | 4795748 | 2021-03-20 23:37:51 +0100 | [diff] [blame] | 473 | ret = read_tree(args->repo, args->tree, |
| 474 | &ctx.pathspec, |
| 475 | reject_entry, &ctx); |
Nguyễn Thái Ngọc Duy | b612ee2 | 2018-08-13 18:14:35 +0200 | [diff] [blame] | 476 | clear_pathspec(&ctx.pathspec); |
Nguyễn Thái Ngọc Duy | f0096c0 | 2011-03-25 16:34:19 +0700 | [diff] [blame] | 477 | return ret != 0; |
René Scharfe | d5f53d6 | 2009-12-12 16:00:41 +0100 | [diff] [blame] | 478 | } |
| 479 | |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 480 | static void parse_pathspec_arg(const char **pathspec, |
| 481 | struct archiver_args *ar_args) |
| 482 | { |
Nguyễn Thái Ngọc Duy | f3e743a | 2013-07-14 15:35:44 +0700 | [diff] [blame] | 483 | /* |
| 484 | * must be consistent with parse_pathspec in path_exists() |
| 485 | * Also if pathspec patterns are dependent, we're in big |
| 486 | * trouble as we test each one separately |
| 487 | */ |
René Scharfe | 92b1dd1 | 2023-03-24 23:27:11 +0100 | [diff] [blame] | 488 | parse_pathspec(&ar_args->pathspec, 0, PATHSPEC_PREFER_CWD, |
| 489 | ar_args->prefix, pathspec); |
Nguyễn Thái Ngọc Duy | ed22b41 | 2014-09-21 10:55:06 +0700 | [diff] [blame] | 490 | ar_args->pathspec.recursive = 1; |
René Scharfe | d5f53d6 | 2009-12-12 16:00:41 +0100 | [diff] [blame] | 491 | if (pathspec) { |
| 492 | while (*pathspec) { |
Nguyễn Thái Ngọc Duy | b612ee2 | 2018-08-13 18:14:35 +0200 | [diff] [blame] | 493 | if (**pathspec && !path_exists(ar_args, *pathspec)) |
Nguyễn Thái Ngọc Duy | f3e743a | 2013-07-14 15:35:44 +0700 | [diff] [blame] | 494 | die(_("pathspec '%s' did not match any files"), *pathspec); |
René Scharfe | d5f53d6 | 2009-12-12 16:00:41 +0100 | [diff] [blame] | 495 | pathspec++; |
| 496 | } |
| 497 | } |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 498 | } |
| 499 | |
| 500 | static void parse_treeish_arg(const char **argv, |
René Scharfe | 92b1dd1 | 2023-03-24 23:27:11 +0100 | [diff] [blame] | 501 | struct archiver_args *ar_args, int remote) |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 502 | { |
| 503 | const char *name = argv[0]; |
brian m. carlson | bbf05cf | 2019-02-19 00:05:20 +0000 | [diff] [blame] | 504 | const struct object_id *commit_oid; |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 505 | time_t archive_time; |
| 506 | struct tree *tree; |
| 507 | const struct commit *commit; |
brian m. carlson | 1360967 | 2015-03-13 23:39:30 +0000 | [diff] [blame] | 508 | struct object_id oid; |
brian m. carlson | c397aac | 2020-03-16 18:05:03 +0000 | [diff] [blame] | 509 | char *ref = NULL; |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 510 | |
Jeff King | ee27ca4 | 2011-11-17 18:04:22 -0500 | [diff] [blame] | 511 | /* Remotes are only allowed to fetch actual refs */ |
Scott J. Goldman | 7671b63 | 2014-02-28 05:04:19 -0500 | [diff] [blame] | 512 | if (remote && !remote_allow_unreachable) { |
Rohit Mani | 2c5495f | 2014-03-07 22:48:31 -0800 | [diff] [blame] | 513 | const char *colon = strchrnul(name, ':'); |
| 514 | int refnamelen = colon - name; |
Carlos Martín Nieto | 0f544ee | 2012-01-11 13:12:38 +0100 | [diff] [blame] | 515 | |
Ævar Arnfjörð Bjarmason | 12cb1c1 | 2023-03-28 15:58:54 +0200 | [diff] [blame] | 516 | if (!repo_dwim_ref(the_repository, name, refnamelen, &oid, &ref, 0)) |
Nguyễn Thái Ngọc Duy | c6e7965 | 2018-11-10 06:16:02 +0100 | [diff] [blame] | 517 | die(_("no such ref: %.*s"), refnamelen, name); |
brian m. carlson | c397aac | 2020-03-16 18:05:03 +0000 | [diff] [blame] | 518 | } else { |
Ævar Arnfjörð Bjarmason | 12cb1c1 | 2023-03-28 15:58:54 +0200 | [diff] [blame] | 519 | repo_dwim_ref(the_repository, name, strlen(name), &oid, &ref, |
| 520 | 0); |
Jeff King | ee27ca4 | 2011-11-17 18:04:22 -0500 | [diff] [blame] | 521 | } |
Carlos Martín Nieto | 0f544ee | 2012-01-11 13:12:38 +0100 | [diff] [blame] | 522 | |
Ævar Arnfjörð Bjarmason | d850b7a | 2023-03-28 15:58:46 +0200 | [diff] [blame] | 523 | if (repo_get_oid(the_repository, name, &oid)) |
Nguyễn Thái Ngọc Duy | c6e7965 | 2018-11-10 06:16:02 +0100 | [diff] [blame] | 524 | die(_("not a valid object name: %s"), name); |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 525 | |
Nguyễn Thái Ngọc Duy | ce3a7ec | 2018-09-15 18:17:37 +0200 | [diff] [blame] | 526 | commit = lookup_commit_reference_gently(ar_args->repo, &oid, 1); |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 527 | if (commit) { |
brian m. carlson | bbf05cf | 2019-02-19 00:05:20 +0000 | [diff] [blame] | 528 | commit_oid = &commit->object.oid; |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 529 | archive_time = commit->date; |
| 530 | } else { |
brian m. carlson | bbf05cf | 2019-02-19 00:05:20 +0000 | [diff] [blame] | 531 | commit_oid = NULL; |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 532 | archive_time = time(NULL); |
| 533 | } |
René Scharfe | fd2da4b | 2023-02-18 09:36:23 +0100 | [diff] [blame] | 534 | if (ar_args->mtime_option) |
| 535 | archive_time = approxidate(ar_args->mtime_option); |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 536 | |
brian m. carlson | a9dbc17 | 2017-05-06 22:10:37 +0000 | [diff] [blame] | 537 | tree = parse_tree_indirect(&oid); |
Junio C Hamano | afe8a90 | 2022-05-02 09:50:37 -0700 | [diff] [blame] | 538 | if (!tree) |
Nguyễn Thái Ngọc Duy | c6e7965 | 2018-11-10 06:16:02 +0100 | [diff] [blame] | 539 | die(_("not a tree object: %s"), oid_to_hex(&oid)); |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 540 | |
brian m. carlson | c397aac | 2020-03-16 18:05:03 +0000 | [diff] [blame] | 541 | ar_args->refname = ref; |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 542 | ar_args->tree = tree; |
brian m. carlson | bbf05cf | 2019-02-19 00:05:20 +0000 | [diff] [blame] | 543 | ar_args->commit_oid = commit_oid; |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 544 | ar_args->commit = commit; |
| 545 | ar_args->time = archive_time; |
| 546 | } |
| 547 | |
Jeff King | 1ee3471 | 2022-10-17 21:05:32 -0400 | [diff] [blame] | 548 | static void extra_file_info_clear(void *util, const char *str UNUSED) |
René Scharfe | 2947a79 | 2020-09-19 23:23:42 +0200 | [diff] [blame] | 549 | { |
| 550 | struct extra_file_info *info = util; |
| 551 | free(info->base); |
Johannes Schindelin | 237a1d1 | 2022-05-28 16:11:12 -0700 | [diff] [blame] | 552 | free(info->content); |
René Scharfe | 2947a79 | 2020-09-19 23:23:42 +0200 | [diff] [blame] | 553 | free(info); |
| 554 | } |
| 555 | |
| 556 | static int add_file_cb(const struct option *opt, const char *arg, int unset) |
| 557 | { |
| 558 | struct archiver_args *args = opt->value; |
| 559 | const char **basep = (const char **)opt->defval; |
| 560 | const char *base = *basep; |
| 561 | char *path; |
| 562 | struct string_list_item *item; |
| 563 | struct extra_file_info *info; |
| 564 | |
| 565 | if (unset) { |
| 566 | string_list_clear_func(&args->extra_files, |
| 567 | extra_file_info_clear); |
| 568 | return 0; |
| 569 | } |
| 570 | |
| 571 | if (!arg) |
| 572 | return -1; |
| 573 | |
Johannes Schindelin | 237a1d1 | 2022-05-28 16:11:12 -0700 | [diff] [blame] | 574 | info = xmalloc(sizeof(*info)); |
René Scharfe | 2947a79 | 2020-09-19 23:23:42 +0200 | [diff] [blame] | 575 | info->base = xstrdup_or_null(base); |
Johannes Schindelin | 237a1d1 | 2022-05-28 16:11:12 -0700 | [diff] [blame] | 576 | |
| 577 | if (!strcmp(opt->long_name, "add-file")) { |
| 578 | path = prefix_filename(args->prefix, arg); |
| 579 | if (stat(path, &info->stat)) |
| 580 | die(_("File not found: %s"), path); |
| 581 | if (!S_ISREG(info->stat.st_mode)) |
| 582 | die(_("Not a regular file: %s"), path); |
| 583 | info->content = NULL; /* read the file later */ |
| 584 | } else if (!strcmp(opt->long_name, "add-virtual-file")) { |
Johannes Schindelin | de1f68a | 2022-05-28 16:11:13 -0700 | [diff] [blame] | 585 | struct strbuf buf = STRBUF_INIT; |
| 586 | const char *p = arg; |
Johannes Schindelin | 237a1d1 | 2022-05-28 16:11:12 -0700 | [diff] [blame] | 587 | |
Johannes Schindelin | de1f68a | 2022-05-28 16:11:13 -0700 | [diff] [blame] | 588 | if (*p != '"') |
| 589 | p = strchr(p, ':'); |
| 590 | else if (unquote_c_style(&buf, p, &p) < 0) |
| 591 | die(_("unclosed quote: '%s'"), arg); |
| 592 | |
| 593 | if (!p || *p != ':') |
Johannes Schindelin | 237a1d1 | 2022-05-28 16:11:12 -0700 | [diff] [blame] | 594 | die(_("missing colon: '%s'"), arg); |
| 595 | |
Johannes Schindelin | de1f68a | 2022-05-28 16:11:13 -0700 | [diff] [blame] | 596 | if (p == arg) |
| 597 | die(_("empty file name: '%s'"), arg); |
| 598 | |
| 599 | path = buf.len ? |
| 600 | strbuf_detach(&buf, NULL) : xstrndup(arg, p - arg); |
| 601 | |
| 602 | if (args->prefix) { |
| 603 | char *save = path; |
| 604 | path = prefix_filename(args->prefix, path); |
| 605 | free(save); |
Johannes Schindelin | 237a1d1 | 2022-05-28 16:11:12 -0700 | [diff] [blame] | 606 | } |
| 607 | memset(&info->stat, 0, sizeof(info->stat)); |
| 608 | info->stat.st_mode = S_IFREG | 0644; |
Johannes Schindelin | de1f68a | 2022-05-28 16:11:13 -0700 | [diff] [blame] | 609 | info->content = xstrdup(p + 1); |
Johannes Schindelin | 237a1d1 | 2022-05-28 16:11:12 -0700 | [diff] [blame] | 610 | info->stat.st_size = strlen(info->content); |
| 611 | } else { |
| 612 | BUG("add_file_cb() called for %s", opt->long_name); |
| 613 | } |
| 614 | item = string_list_append_nodup(&args->extra_files, path); |
| 615 | item->util = info; |
| 616 | |
René Scharfe | 2947a79 | 2020-09-19 23:23:42 +0200 | [diff] [blame] | 617 | return 0; |
| 618 | } |
| 619 | |
René Scharfe | cde8ea9 | 2020-11-09 17:05:31 +0100 | [diff] [blame] | 620 | static int number_callback(const struct option *opt, const char *arg, int unset) |
| 621 | { |
| 622 | BUG_ON_OPT_NEG(unset); |
| 623 | *(int *)opt->value = strtol(arg, NULL, 10); |
| 624 | return 0; |
| 625 | } |
Rene Scharfe | 4fac1d3 | 2008-07-25 12:41:26 +0200 | [diff] [blame] | 626 | |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 627 | static int parse_archive_args(int argc, const char **argv, |
Jeff King | 56baa61 | 2011-06-21 21:24:48 -0400 | [diff] [blame] | 628 | const struct archiver **ar, struct archiver_args *args, |
Jeff King | 7b97730 | 2011-06-21 23:17:35 -0400 | [diff] [blame] | 629 | const char *name_hint, int is_remote) |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 630 | { |
Jeff King | 56baa61 | 2011-06-21 21:24:48 -0400 | [diff] [blame] | 631 | const char *format = NULL; |
Rene Scharfe | 4fac1d3 | 2008-07-25 12:41:26 +0200 | [diff] [blame] | 632 | const char *base = NULL; |
| 633 | const char *remote = NULL; |
| 634 | const char *exec = NULL; |
Carlos Manuel Duclos Vergara | aec0c1b | 2009-02-16 18:20:25 +0100 | [diff] [blame] | 635 | const char *output = NULL; |
René Scharfe | fd2da4b | 2023-02-18 09:36:23 +0100 | [diff] [blame] | 636 | const char *mtime_option = NULL; |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 637 | int compression_level = -1; |
| 638 | int verbose = 0; |
| 639 | int i; |
Rene Scharfe | 4fac1d3 | 2008-07-25 12:41:26 +0200 | [diff] [blame] | 640 | int list = 0; |
Nguyễn Thái Ngọc Duy | ba053ea | 2009-04-18 00:18:05 +0200 | [diff] [blame] | 641 | int worktree_attributes = 0; |
Rene Scharfe | 4fac1d3 | 2008-07-25 12:41:26 +0200 | [diff] [blame] | 642 | struct option opts[] = { |
| 643 | OPT_GROUP(""), |
Nguyễn Thái Ngọc Duy | 0012a38 | 2012-08-20 19:31:51 +0700 | [diff] [blame] | 644 | OPT_STRING(0, "format", &format, N_("fmt"), N_("archive format")), |
| 645 | OPT_STRING(0, "prefix", &base, N_("prefix"), |
| 646 | N_("prepend prefix to each pathname in the archive")), |
René Scharfe | 2947a79 | 2020-09-19 23:23:42 +0200 | [diff] [blame] | 647 | { OPTION_CALLBACK, 0, "add-file", args, N_("file"), |
| 648 | N_("add untracked file to archive"), 0, add_file_cb, |
| 649 | (intptr_t)&base }, |
Johannes Schindelin | 237a1d1 | 2022-05-28 16:11:12 -0700 | [diff] [blame] | 650 | { OPTION_CALLBACK, 0, "add-virtual-file", args, |
| 651 | N_("path:content"), N_("add untracked file to archive"), 0, |
| 652 | add_file_cb, (intptr_t)&base }, |
Nguyễn Thái Ngọc Duy | 0012a38 | 2012-08-20 19:31:51 +0700 | [diff] [blame] | 653 | OPT_STRING('o', "output", &output, N_("file"), |
| 654 | N_("write the archive to this file")), |
Junio C Hamano | f858c64 | 2011-09-27 16:59:01 -0700 | [diff] [blame] | 655 | OPT_BOOL(0, "worktree-attributes", &worktree_attributes, |
Nguyễn Thái Ngọc Duy | 0012a38 | 2012-08-20 19:31:51 +0700 | [diff] [blame] | 656 | N_("read .gitattributes in working directory")), |
| 657 | OPT__VERBOSE(&verbose, N_("report archived files on stderr")), |
René Scharfe | fd2da4b | 2023-02-18 09:36:23 +0100 | [diff] [blame] | 658 | { OPTION_STRING, 0, "mtime", &mtime_option, N_("time"), |
| 659 | N_("set modification time of archive entries"), |
| 660 | PARSE_OPT_NONEG }, |
René Scharfe | cde8ea9 | 2020-11-09 17:05:31 +0100 | [diff] [blame] | 661 | OPT_NUMBER_CALLBACK(&compression_level, |
| 662 | N_("set compression level"), number_callback), |
Rene Scharfe | 4fac1d3 | 2008-07-25 12:41:26 +0200 | [diff] [blame] | 663 | OPT_GROUP(""), |
Junio C Hamano | f858c64 | 2011-09-27 16:59:01 -0700 | [diff] [blame] | 664 | OPT_BOOL('l', "list", &list, |
Nguyễn Thái Ngọc Duy | 0012a38 | 2012-08-20 19:31:51 +0700 | [diff] [blame] | 665 | N_("list supported archive formats")), |
Rene Scharfe | 4fac1d3 | 2008-07-25 12:41:26 +0200 | [diff] [blame] | 666 | OPT_GROUP(""), |
Nguyễn Thái Ngọc Duy | 0012a38 | 2012-08-20 19:31:51 +0700 | [diff] [blame] | 667 | OPT_STRING(0, "remote", &remote, N_("repo"), |
| 668 | N_("retrieve the archive from remote repository <repo>")), |
Nguyễn Thái Ngọc Duy | b0ff965 | 2012-08-20 19:32:54 +0700 | [diff] [blame] | 669 | OPT_STRING(0, "exec", &exec, N_("command"), |
Nguyễn Thái Ngọc Duy | 0012a38 | 2012-08-20 19:31:51 +0700 | [diff] [blame] | 670 | N_("path to the remote git-upload-archive command")), |
Rene Scharfe | 4fac1d3 | 2008-07-25 12:41:26 +0200 | [diff] [blame] | 671 | OPT_END() |
| 672 | }; |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 673 | |
Stephen Boyd | 3778292 | 2009-05-23 11:53:12 -0700 | [diff] [blame] | 674 | argc = parse_options(argc, argv, NULL, opts, archive_usage, 0); |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 675 | |
Rene Scharfe | 4fac1d3 | 2008-07-25 12:41:26 +0200 | [diff] [blame] | 676 | if (remote) |
Vasco Almeida | 5a36d00 | 2016-08-08 11:16:00 +0000 | [diff] [blame] | 677 | die(_("Unexpected option --remote")); |
Rene Scharfe | 4fac1d3 | 2008-07-25 12:41:26 +0200 | [diff] [blame] | 678 | if (exec) |
Jean-Noël Avila | 6fa00ee | 2022-01-05 20:02:19 +0000 | [diff] [blame] | 679 | die(_("the option '%s' requires '%s'"), "--exec", "--remote"); |
René Scharfe | 52e7787 | 2009-03-08 19:21:53 +0100 | [diff] [blame] | 680 | if (output) |
Vasco Almeida | 5a36d00 | 2016-08-08 11:16:00 +0000 | [diff] [blame] | 681 | die(_("Unexpected option --output")); |
René Scharfe | 2947a79 | 2020-09-19 23:23:42 +0200 | [diff] [blame] | 682 | if (is_remote && args->extra_files.nr) |
Jean-Noël Avila | 12909b6 | 2022-01-05 20:02:16 +0000 | [diff] [blame] | 683 | die(_("options '%s' and '%s' cannot be used together"), "--add-file", "--remote"); |
Rene Scharfe | 4fac1d3 | 2008-07-25 12:41:26 +0200 | [diff] [blame] | 684 | |
| 685 | if (!base) |
| 686 | base = ""; |
| 687 | |
| 688 | if (list) { |
Junio C Hamano | d6b6cd1 | 2023-12-21 10:13:58 -0800 | [diff] [blame] | 689 | if (argc) |
| 690 | die(_("extra command line parameter '%s'"), *argv); |
Jeff King | 13e0f88 | 2011-06-21 21:23:33 -0400 | [diff] [blame] | 691 | for (i = 0; i < nr_archivers; i++) |
Jeff King | 7b97730 | 2011-06-21 23:17:35 -0400 | [diff] [blame] | 692 | if (!is_remote || archivers[i]->flags & ARCHIVER_REMOTE) |
| 693 | printf("%s\n", archivers[i]->name); |
Rene Scharfe | 4fac1d3 | 2008-07-25 12:41:26 +0200 | [diff] [blame] | 694 | exit(0); |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 695 | } |
| 696 | |
Jeff King | 56baa61 | 2011-06-21 21:24:48 -0400 | [diff] [blame] | 697 | if (!format && name_hint) |
| 698 | format = archive_format_from_filename(name_hint); |
| 699 | if (!format) |
| 700 | format = "tar"; |
| 701 | |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 702 | /* We need at least one parameter -- tree-ish */ |
Rene Scharfe | 4fac1d3 | 2008-07-25 12:41:26 +0200 | [diff] [blame] | 703 | if (argc < 1) |
| 704 | usage_with_options(archive_usage, opts); |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 705 | *ar = lookup_archiver(format); |
Jeff King | 7b97730 | 2011-06-21 23:17:35 -0400 | [diff] [blame] | 706 | if (!*ar || (is_remote && !((*ar)->flags & ARCHIVER_REMOTE))) |
Vasco Almeida | 5a36d00 | 2016-08-08 11:16:00 +0000 | [diff] [blame] | 707 | die(_("Unknown archive format '%s'"), format); |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 708 | |
| 709 | args->compression_level = Z_DEFAULT_COMPRESSION; |
| 710 | if (compression_level != -1) { |
René Scharfe | cde8ea9 | 2020-11-09 17:05:31 +0100 | [diff] [blame] | 711 | int levels_ok = (*ar)->flags & ARCHIVER_WANT_COMPRESSION_LEVELS; |
| 712 | int high_ok = (*ar)->flags & ARCHIVER_HIGH_COMPRESSION_LEVELS; |
| 713 | if (levels_ok && (compression_level <= 9 || high_ok)) |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 714 | args->compression_level = compression_level; |
| 715 | else { |
Vasco Almeida | 5a36d00 | 2016-08-08 11:16:00 +0000 | [diff] [blame] | 716 | die(_("Argument not supported for format '%s': -%d"), |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 717 | format, compression_level); |
| 718 | } |
| 719 | } |
| 720 | args->verbose = verbose; |
| 721 | args->base = base; |
| 722 | args->baselen = strlen(base); |
Nguyễn Thái Ngọc Duy | ba053ea | 2009-04-18 00:18:05 +0200 | [diff] [blame] | 723 | args->worktree_attributes = worktree_attributes; |
René Scharfe | fd2da4b | 2023-02-18 09:36:23 +0100 | [diff] [blame] | 724 | args->mtime_option = mtime_option; |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 725 | |
Rene Scharfe | 4fac1d3 | 2008-07-25 12:41:26 +0200 | [diff] [blame] | 726 | return argc; |
Rene Scharfe | c088543 | 2008-07-25 12:41:22 +0200 | [diff] [blame] | 727 | } |
| 728 | |
Rene Scharfe | 6e94e68 | 2008-07-25 12:41:21 +0200 | [diff] [blame] | 729 | int write_archive(int argc, const char **argv, const char *prefix, |
Nguyễn Thái Ngọc Duy | b612ee2 | 2018-08-13 18:14:35 +0200 | [diff] [blame] | 730 | struct repository *repo, |
Junio C Hamano | eb0224c | 2016-11-22 13:37:04 -0800 | [diff] [blame] | 731 | const char *name_hint, int remote) |
Rene Scharfe | 6e94e68 | 2008-07-25 12:41:21 +0200 | [diff] [blame] | 732 | { |
| 733 | const struct archiver *ar = NULL; |
René Scharfe | 9609972 | 2021-02-28 12:22:47 +0100 | [diff] [blame] | 734 | struct pretty_print_describe_status describe_status = {0}; |
| 735 | struct pretty_print_context ctx = {0}; |
Rene Scharfe | 6e94e68 | 2008-07-25 12:41:21 +0200 | [diff] [blame] | 736 | struct archiver_args args; |
René Scharfe | 2947a79 | 2020-09-19 23:23:42 +0200 | [diff] [blame] | 737 | int rc; |
Rene Scharfe | 6e94e68 | 2008-07-25 12:41:21 +0200 | [diff] [blame] | 738 | |
Tanay Abhra | 95790ff | 2014-08-07 09:21:19 -0700 | [diff] [blame] | 739 | git_config_get_bool("uploadarchive.allowunreachable", &remote_allow_unreachable); |
| 740 | git_config(git_default_config, NULL); |
| 741 | |
René Scharfe | 9609972 | 2021-02-28 12:22:47 +0100 | [diff] [blame] | 742 | describe_status.max_invocations = 1; |
| 743 | ctx.date_mode.type = DATE_NORMAL; |
| 744 | ctx.abbrev = DEFAULT_ABBREV; |
| 745 | ctx.describe_status = &describe_status; |
| 746 | args.pretty_ctx = &ctx; |
Nguyễn Thái Ngọc Duy | b612ee2 | 2018-08-13 18:14:35 +0200 | [diff] [blame] | 747 | args.repo = repo; |
René Scharfe | 2947a79 | 2020-09-19 23:23:42 +0200 | [diff] [blame] | 748 | args.prefix = prefix; |
Ævar Arnfjörð Bjarmason | bc40dfb | 2021-07-01 12:51:29 +0200 | [diff] [blame] | 749 | string_list_init_dup(&args.extra_files); |
Jeff King | 7b97730 | 2011-06-21 23:17:35 -0400 | [diff] [blame] | 750 | argc = parse_archive_args(argc, argv, &ar, &args, name_hint, remote); |
Junio C Hamano | eb0224c | 2016-11-22 13:37:04 -0800 | [diff] [blame] | 751 | if (!startup_info->have_repository) { |
Jeff King | 2321286 | 2011-06-15 18:31:28 -0400 | [diff] [blame] | 752 | /* |
| 753 | * We know this will die() with an error, so we could just |
| 754 | * die ourselves; but its error message will be more specific |
| 755 | * than what we could write here. |
| 756 | */ |
| 757 | setup_git_directory(); |
| 758 | } |
Rene Scharfe | 6e94e68 | 2008-07-25 12:41:21 +0200 | [diff] [blame] | 759 | |
René Scharfe | 92b1dd1 | 2023-03-24 23:27:11 +0100 | [diff] [blame] | 760 | parse_treeish_arg(argv, &args, remote); |
Rene Scharfe | 6e94e68 | 2008-07-25 12:41:21 +0200 | [diff] [blame] | 761 | parse_pathspec_arg(argv + 1, &args); |
| 762 | |
René Scharfe | 2947a79 | 2020-09-19 23:23:42 +0200 | [diff] [blame] | 763 | rc = ar->write_archive(ar, &args); |
| 764 | |
| 765 | string_list_clear_func(&args.extra_files, extra_file_info_clear); |
René Scharfe | 1c3e412 | 2020-11-14 23:01:04 +0100 | [diff] [blame] | 766 | free(args.refname); |
Ævar Arnfjörð Bjarmason | 7615cf9 | 2023-02-07 00:07:40 +0100 | [diff] [blame] | 767 | clear_pathspec(&args.pathspec); |
René Scharfe | 2947a79 | 2020-09-19 23:23:42 +0200 | [diff] [blame] | 768 | |
| 769 | return rc; |
Rene Scharfe | 6e94e68 | 2008-07-25 12:41:21 +0200 | [diff] [blame] | 770 | } |
Jeff King | 56baa61 | 2011-06-21 21:24:48 -0400 | [diff] [blame] | 771 | |
Jeff King | 08716b3 | 2011-06-21 21:25:25 -0400 | [diff] [blame] | 772 | static int match_extension(const char *filename, const char *ext) |
| 773 | { |
| 774 | int prefixlen = strlen(filename) - strlen(ext); |
| 775 | |
| 776 | /* |
| 777 | * We need 1 character for the '.', and 1 character to ensure that the |
| 778 | * prefix is non-empty (k.e., we don't match .tar.gz with no actual |
| 779 | * filename). |
| 780 | */ |
Junio C Hamano | b1cdfb5 | 2013-10-15 15:27:17 -0700 | [diff] [blame] | 781 | if (prefixlen < 2 || filename[prefixlen - 1] != '.') |
Jeff King | 08716b3 | 2011-06-21 21:25:25 -0400 | [diff] [blame] | 782 | return 0; |
| 783 | return !strcmp(filename + prefixlen, ext); |
| 784 | } |
| 785 | |
Jeff King | 56baa61 | 2011-06-21 21:24:48 -0400 | [diff] [blame] | 786 | const char *archive_format_from_filename(const char *filename) |
| 787 | { |
Jeff King | 08716b3 | 2011-06-21 21:25:25 -0400 | [diff] [blame] | 788 | int i; |
| 789 | |
| 790 | for (i = 0; i < nr_archivers; i++) |
| 791 | if (match_extension(filename, archivers[i]->name)) |
| 792 | return archivers[i]->name; |
Jeff King | 56baa61 | 2011-06-21 21:24:48 -0400 | [diff] [blame] | 793 | return NULL; |
| 794 | } |