1 #include "git-compat-util.h"
2 #include "tmp-objdir.h"
4 #include "chdir-notify.h"
6 #include "environment.h"
7 #include "object-file.h"
10 #include "string-list.h"
14 #include "object-store-ll.h"
19 struct object_directory
*prev_odb
;
24 * Allow only one tmp_objdir at a time in a running process, which simplifies
25 * our atexit cleanup routines. It's doubtful callers will ever need
26 * more than one, and we can expand later if so. You can have many such
27 * tmp_objdirs simultaneously in many processes, of course.
29 static struct tmp_objdir
*the_tmp_objdir
;
31 static void tmp_objdir_free(struct tmp_objdir
*t
)
33 strbuf_release(&t
->path
);
34 strvec_clear(&t
->env
);
38 int tmp_objdir_destroy(struct tmp_objdir
*t
)
45 if (t
== the_tmp_objdir
)
46 the_tmp_objdir
= NULL
;
49 restore_primary_odb(t
->prev_odb
, t
->path
.buf
);
51 err
= remove_dir_recursively(&t
->path
, 0);
58 static void remove_tmp_objdir(void)
60 tmp_objdir_destroy(the_tmp_objdir
);
63 void tmp_objdir_discard_objects(struct tmp_objdir
*t
)
65 remove_dir_recursively(&t
->path
, REMOVE_DIR_KEEP_TOPLEVEL
);
69 * These env_* functions are for setting up the child environment; the
70 * "replace" variant overrides the value of any existing variable with that
71 * "key". The "append" variant puts our new value at the end of a list,
72 * separated by PATH_SEP (which is what separate values in
73 * GIT_ALTERNATE_OBJECT_DIRECTORIES).
75 static void env_append(struct strvec
*env
, const char *key
, const char *val
)
77 struct strbuf quoted
= STRBUF_INIT
;
81 * Avoid quoting if it's not necessary, for maximum compatibility
82 * with older parsers which don't understand the quoting.
84 if (*val
== '"' || strchr(val
, PATH_SEP
)) {
85 strbuf_addch("ed
, '"');
86 quote_c_style(val
, "ed
, NULL
, 1);
87 strbuf_addch("ed
, '"');
93 strvec_pushf(env
, "%s=%s", key
, val
);
95 strvec_pushf(env
, "%s=%s%c%s", key
, old
, PATH_SEP
, val
);
97 strbuf_release("ed
);
100 static void env_replace(struct strvec
*env
, const char *key
, const char *val
)
102 strvec_pushf(env
, "%s=%s", key
, val
);
105 static int setup_tmp_objdir(const char *root
)
110 path
= xstrfmt("%s/pack", root
);
111 ret
= mkdir(path
, 0777);
117 struct tmp_objdir
*tmp_objdir_create(const char *prefix
)
119 static int installed_handlers
;
120 struct tmp_objdir
*t
;
123 BUG("only one tmp_objdir can be used at a time");
125 t
= xcalloc(1, sizeof(*t
));
126 strbuf_init(&t
->path
, 0);
127 strvec_init(&t
->env
);
130 * Use a string starting with tmp_ so that the builtin/prune.c code
131 * can recognize any stale objdirs left behind by a crash and delete
134 strbuf_addf(&t
->path
, "%s/tmp_objdir-%s-XXXXXX", get_object_directory(), prefix
);
136 if (!mkdtemp(t
->path
.buf
)) {
137 /* free, not destroy, as we never touched the filesystem */
143 if (!installed_handlers
) {
144 atexit(remove_tmp_objdir
);
145 installed_handlers
++;
148 if (setup_tmp_objdir(t
->path
.buf
)) {
149 tmp_objdir_destroy(t
);
153 env_append(&t
->env
, ALTERNATE_DB_ENVIRONMENT
,
154 absolute_path(get_object_directory()));
155 env_replace(&t
->env
, DB_ENVIRONMENT
, absolute_path(t
->path
.buf
));
156 env_replace(&t
->env
, GIT_QUARANTINE_ENVIRONMENT
,
157 absolute_path(t
->path
.buf
));
163 * Make sure we copy packfiles and their associated metafiles in the correct
164 * order. All of these ends_with checks are slightly expensive to do in
165 * the midst of a sorting routine, but in practice it shouldn't matter.
166 * We will have a relatively small number of packfiles to order, and loose
167 * objects exit early in the first line.
169 static int pack_copy_priority(const char *name
)
171 if (!starts_with(name
, "pack"))
173 if (ends_with(name
, ".keep"))
175 if (ends_with(name
, ".pack"))
177 if (ends_with(name
, ".rev"))
179 if (ends_with(name
, ".idx"))
184 static int pack_copy_cmp(const char *a
, const char *b
)
186 return pack_copy_priority(a
) - pack_copy_priority(b
);
189 static int read_dir_paths(struct string_list
*out
, const char *path
)
198 while ((de
= readdir(dh
)))
199 if (de
->d_name
[0] != '.')
200 string_list_append(out
, de
->d_name
);
206 static int migrate_paths(struct strbuf
*src
, struct strbuf
*dst
);
208 static int migrate_one(struct strbuf
*src
, struct strbuf
*dst
)
212 if (stat(src
->buf
, &st
) < 0)
214 if (S_ISDIR(st
.st_mode
)) {
215 if (!mkdir(dst
->buf
, 0777)) {
216 if (adjust_shared_perm(dst
->buf
))
218 } else if (errno
!= EEXIST
)
220 return migrate_paths(src
, dst
);
222 return finalize_object_file(src
->buf
, dst
->buf
);
225 static int migrate_paths(struct strbuf
*src
, struct strbuf
*dst
)
227 size_t src_len
= src
->len
, dst_len
= dst
->len
;
228 struct string_list paths
= STRING_LIST_INIT_DUP
;
232 if (read_dir_paths(&paths
, src
->buf
) < 0)
234 paths
.cmp
= pack_copy_cmp
;
235 string_list_sort(&paths
);
237 for (i
= 0; i
< paths
.nr
; i
++) {
238 const char *name
= paths
.items
[i
].string
;
240 strbuf_addf(src
, "/%s", name
);
241 strbuf_addf(dst
, "/%s", name
);
243 ret
|= migrate_one(src
, dst
);
245 strbuf_setlen(src
, src_len
);
246 strbuf_setlen(dst
, dst_len
);
249 string_list_clear(&paths
, 0);
253 int tmp_objdir_migrate(struct tmp_objdir
*t
)
255 struct strbuf src
= STRBUF_INIT
, dst
= STRBUF_INIT
;
262 if (the_repository
->objects
->odb
->will_destroy
)
263 BUG("migrating an ODB that was marked for destruction");
264 restore_primary_odb(t
->prev_odb
, t
->path
.buf
);
268 strbuf_addbuf(&src
, &t
->path
);
269 strbuf_addstr(&dst
, get_object_directory());
271 ret
= migrate_paths(&src
, &dst
);
273 strbuf_release(&src
);
274 strbuf_release(&dst
);
276 tmp_objdir_destroy(t
);
280 const char **tmp_objdir_env(const struct tmp_objdir
*t
)
287 void tmp_objdir_add_as_alternate(const struct tmp_objdir
*t
)
289 add_to_alternates_memory(t
->path
.buf
);
292 void tmp_objdir_replace_primary_odb(struct tmp_objdir
*t
, int will_destroy
)
295 BUG("the primary object database is already replaced");
296 t
->prev_odb
= set_temporary_primary_odb(t
->path
.buf
, will_destroy
);
297 t
->will_destroy
= will_destroy
;
300 struct tmp_objdir
*tmp_objdir_unapply_primary_odb(void)
302 if (!the_tmp_objdir
|| !the_tmp_objdir
->prev_odb
)
305 restore_primary_odb(the_tmp_objdir
->prev_odb
, the_tmp_objdir
->path
.buf
);
306 the_tmp_objdir
->prev_odb
= NULL
;
307 return the_tmp_objdir
;
310 void tmp_objdir_reapply_primary_odb(struct tmp_objdir
*t
, const char *old_cwd
,
315 path
= reparent_relative_path(old_cwd
, new_cwd
, t
->path
.buf
);
316 strbuf_reset(&t
->path
);
317 strbuf_addstr(&t
->path
, path
);
319 tmp_objdir_replace_primary_odb(t
, t
->will_destroy
);