2 #include "tmp-objdir.h"
5 #include "string-list.h"
9 #include "object-store.h"
17 * Allow only one tmp_objdir at a time in a running process, which simplifies
18 * our signal/atexit cleanup routines. It's doubtful callers will ever need
19 * more than one, and we can expand later if so. You can have many such
20 * tmp_objdirs simultaneously in many processes, of course.
22 static struct tmp_objdir
*the_tmp_objdir
;
24 static void tmp_objdir_free(struct tmp_objdir
*t
)
26 strbuf_release(&t
->path
);
27 strvec_clear(&t
->env
);
31 static int tmp_objdir_destroy_1(struct tmp_objdir
*t
, int on_signal
)
38 if (t
== the_tmp_objdir
)
39 the_tmp_objdir
= NULL
;
42 * This may use malloc via strbuf_grow(), but we should
43 * have pre-grown t->path sufficiently so that this
44 * doesn't happen in practice.
46 err
= remove_dir_recursively(&t
->path
, 0);
49 * When we are cleaning up due to a signal, we won't bother
50 * freeing memory; it may cause a deadlock if the signal
51 * arrived while libc's allocator lock is held.
58 int tmp_objdir_destroy(struct tmp_objdir
*t
)
60 return tmp_objdir_destroy_1(t
, 0);
63 static void remove_tmp_objdir(void)
65 tmp_objdir_destroy(the_tmp_objdir
);
68 static void remove_tmp_objdir_on_signal(int signo
)
70 tmp_objdir_destroy_1(the_tmp_objdir
, 1);
76 * These env_* functions are for setting up the child environment; the
77 * "replace" variant overrides the value of any existing variable with that
78 * "key". The "append" variant puts our new value at the end of a list,
79 * separated by PATH_SEP (which is what separate values in
80 * GIT_ALTERNATE_OBJECT_DIRECTORIES).
82 static void env_append(struct strvec
*env
, const char *key
, const char *val
)
84 struct strbuf quoted
= STRBUF_INIT
;
88 * Avoid quoting if it's not necessary, for maximum compatibility
89 * with older parsers which don't understand the quoting.
91 if (*val
== '"' || strchr(val
, PATH_SEP
)) {
92 strbuf_addch("ed
, '"');
93 quote_c_style(val
, "ed
, NULL
, 1);
94 strbuf_addch("ed
, '"');
100 strvec_pushf(env
, "%s=%s", key
, val
);
102 strvec_pushf(env
, "%s=%s%c%s", key
, old
, PATH_SEP
, val
);
104 strbuf_release("ed
);
107 static void env_replace(struct strvec
*env
, const char *key
, const char *val
)
109 strvec_pushf(env
, "%s=%s", key
, val
);
112 static int setup_tmp_objdir(const char *root
)
117 path
= xstrfmt("%s/pack", root
);
118 ret
= mkdir(path
, 0777);
124 struct tmp_objdir
*tmp_objdir_create(void)
126 static int installed_handlers
;
127 struct tmp_objdir
*t
;
130 BUG("only one tmp_objdir can be used at a time");
132 t
= xmalloc(sizeof(*t
));
133 strbuf_init(&t
->path
, 0);
134 strvec_init(&t
->env
);
136 strbuf_addf(&t
->path
, "%s/incoming-XXXXXX", get_object_directory());
139 * Grow the strbuf beyond any filename we expect to be placed in it.
140 * If tmp_objdir_destroy() is called by a signal handler, then
141 * we should be able to use the strbuf to remove files without
142 * having to call malloc.
144 strbuf_grow(&t
->path
, 1024);
146 if (!mkdtemp(t
->path
.buf
)) {
147 /* free, not destroy, as we never touched the filesystem */
153 if (!installed_handlers
) {
154 atexit(remove_tmp_objdir
);
155 sigchain_push_common(remove_tmp_objdir_on_signal
);
156 installed_handlers
++;
159 if (setup_tmp_objdir(t
->path
.buf
)) {
160 tmp_objdir_destroy(t
);
164 env_append(&t
->env
, ALTERNATE_DB_ENVIRONMENT
,
165 absolute_path(get_object_directory()));
166 env_replace(&t
->env
, DB_ENVIRONMENT
, absolute_path(t
->path
.buf
));
167 env_replace(&t
->env
, GIT_QUARANTINE_ENVIRONMENT
,
168 absolute_path(t
->path
.buf
));
174 * Make sure we copy packfiles and their associated metafiles in the correct
175 * order. All of these ends_with checks are slightly expensive to do in
176 * the midst of a sorting routine, but in practice it shouldn't matter.
177 * We will have a relatively small number of packfiles to order, and loose
178 * objects exit early in the first line.
180 static int pack_copy_priority(const char *name
)
182 if (!starts_with(name
, "pack"))
184 if (ends_with(name
, ".keep"))
186 if (ends_with(name
, ".pack"))
188 if (ends_with(name
, ".rev"))
190 if (ends_with(name
, ".idx"))
195 static int pack_copy_cmp(const char *a
, const char *b
)
197 return pack_copy_priority(a
) - pack_copy_priority(b
);
200 static int read_dir_paths(struct string_list
*out
, const char *path
)
209 while ((de
= readdir(dh
)))
210 if (de
->d_name
[0] != '.')
211 string_list_append(out
, de
->d_name
);
217 static int migrate_paths(struct strbuf
*src
, struct strbuf
*dst
);
219 static int migrate_one(struct strbuf
*src
, struct strbuf
*dst
)
223 if (stat(src
->buf
, &st
) < 0)
225 if (S_ISDIR(st
.st_mode
)) {
226 if (!mkdir(dst
->buf
, 0777)) {
227 if (adjust_shared_perm(dst
->buf
))
229 } else if (errno
!= EEXIST
)
231 return migrate_paths(src
, dst
);
233 return finalize_object_file(src
->buf
, dst
->buf
);
236 static int migrate_paths(struct strbuf
*src
, struct strbuf
*dst
)
238 size_t src_len
= src
->len
, dst_len
= dst
->len
;
239 struct string_list paths
= STRING_LIST_INIT_DUP
;
243 if (read_dir_paths(&paths
, src
->buf
) < 0)
245 paths
.cmp
= pack_copy_cmp
;
246 string_list_sort(&paths
);
248 for (i
= 0; i
< paths
.nr
; i
++) {
249 const char *name
= paths
.items
[i
].string
;
251 strbuf_addf(src
, "/%s", name
);
252 strbuf_addf(dst
, "/%s", name
);
254 ret
|= migrate_one(src
, dst
);
256 strbuf_setlen(src
, src_len
);
257 strbuf_setlen(dst
, dst_len
);
260 string_list_clear(&paths
, 0);
264 int tmp_objdir_migrate(struct tmp_objdir
*t
)
266 struct strbuf src
= STRBUF_INIT
, dst
= STRBUF_INIT
;
272 strbuf_addbuf(&src
, &t
->path
);
273 strbuf_addstr(&dst
, get_object_directory());
275 ret
= migrate_paths(&src
, &dst
);
277 strbuf_release(&src
);
278 strbuf_release(&dst
);
280 tmp_objdir_destroy(t
);
284 const char **tmp_objdir_env(const struct tmp_objdir
*t
)
291 void tmp_objdir_add_as_alternate(const struct tmp_objdir
*t
)
293 add_to_alternates_memory(t
->path
.buf
);