1 #define DISABLE_SIGN_COMPARE_WARNINGS
3 #include "git-compat-util.h"
6 #include "repository.h"
13 #include "object-file.h"
15 #include "server-info.h"
19 struct update_info_ctx
{
20 struct repository
*repo
;
22 FILE *old_fp
; /* becomes NULL if it differs from cur_fp */
27 static void uic_mark_stale(struct update_info_ctx
*uic
)
33 static int uic_is_stale(const struct update_info_ctx
*uic
)
35 return uic
->old_fp
== NULL
;
38 __attribute__((format (printf
, 2, 3)))
39 static int uic_printf(struct update_info_ctx
*uic
, const char *fmt
, ...)
46 if (uic_is_stale(uic
)) {
47 ret
= vfprintf(uic
->cur_fp
, fmt
, ap
);
50 struct strbuf
*cur
= &uic
->cur_sb
;
51 struct strbuf
*old
= &uic
->old_sb
;
54 strbuf_vinsertf(cur
, 0, fmt
, ap
);
57 strbuf_grow(old
, cur
->len
);
58 r
= fread(old
->buf
, 1, cur
->len
, uic
->old_fp
);
59 if (r
!= cur
->len
|| memcmp(old
->buf
, cur
->buf
, r
))
62 if (fwrite(cur
->buf
, 1, cur
->len
, uic
->cur_fp
) == cur
->len
)
72 * Create the file "path" by writing to a temporary file and renaming
73 * it into place. The contents of the file come from "generate", which
74 * should return non-zero if it encounters an error.
76 static int update_info_file(struct repository
*r
, char *path
,
77 int (*generate
)(struct update_info_ctx
*),
80 char *tmp
= mkpathdup("%s_XXXXXX", path
);
81 struct tempfile
*f
= NULL
;
83 struct update_info_ctx uic
= {
87 .cur_sb
= STRBUF_INIT
,
91 safe_create_leading_directories(r
, path
);
92 f
= mks_tempfile_m(tmp
, 0666);
95 uic
.cur_fp
= fdopen_tempfile(f
, "w");
99 /* no problem on ENOENT and old_fp == NULL, it's stale, now */
101 uic
.old_fp
= fopen_or_warn(path
, "r");
104 * uic_printf will compare incremental comparison against old_fp
105 * and mark uic as stale if needed
107 ret
= generate(&uic
);
111 /* new file may be shorter than the old one, check here */
112 if (!uic_is_stale(&uic
)) {
114 long new_len
= ftell(uic
.cur_fp
);
115 int old_fd
= fileno(uic
.old_fp
);
121 if (fstat(old_fd
, &st
) || (st
.st_size
!= (size_t)new_len
))
122 uic_mark_stale(&uic
);
127 if (uic_is_stale(&uic
)) {
128 if (adjust_shared_perm(r
, get_tempfile_path(f
)) < 0)
130 if (rename_tempfile(&f
, path
) < 0)
139 error_errno("unable to update %s", path
);
146 strbuf_release(&uic
.old_sb
);
147 strbuf_release(&uic
.cur_sb
);
151 static int add_info_ref(const char *path
, const char *referent UNUSED
, const struct object_id
*oid
,
155 struct update_info_ctx
*uic
= cb_data
;
156 struct object
*o
= parse_object(uic
->repo
, oid
);
160 if (uic_printf(uic
, "%s %s\n", oid_to_hex(oid
), path
) < 0)
163 if (o
->type
== OBJ_TAG
) {
164 o
= deref_tag(uic
->repo
, o
, path
, 0);
166 if (uic_printf(uic
, "%s %s^{}\n",
167 oid_to_hex(&o
->oid
), path
) < 0)
173 static int generate_info_refs(struct update_info_ctx
*uic
)
175 return refs_for_each_ref(get_main_ref_store(uic
->repo
),
179 static int update_info_refs(struct repository
*r
, int force
)
181 char *path
= repo_git_path(r
, "info/refs");
182 int ret
= update_info_file(r
, path
, generate_info_refs
, force
);
188 static struct pack_info
{
189 struct packed_git
*p
;
195 static struct pack_info
*find_pack_by_name(const char *name
)
198 for (i
= 0; i
< num_pack
; i
++) {
199 struct packed_git
*p
= info
[i
]->p
;
200 if (!strcmp(pack_basename(p
), name
))
206 /* Returns non-zero when we detect that the info in the
207 * old file is useless.
209 static int parse_pack_def(const char *packname
, int old_cnt
)
211 struct pack_info
*i
= find_pack_by_name(packname
);
213 i
->old_num
= old_cnt
;
217 /* The file describes a pack that is no longer here */
222 /* Returns non-zero when we detect that the info in the
223 * old file is useless.
225 static int read_pack_info_file(const char *infofile
)
228 struct strbuf line
= STRBUF_INIT
;
232 fp
= fopen_or_warn(infofile
, "r");
234 return 1; /* nonexistent is not an error. */
236 while (strbuf_getline(&line
, fp
) != EOF
) {
242 if (skip_prefix(line
.buf
, "P ", &arg
)) {
244 if (parse_pack_def(arg
, old_cnt
++))
246 } else if (line
.buf
[0] == 'D') {
247 /* we used to emit D but that was misguided. */
249 } else if (line
.buf
[0] == 'T') {
250 /* we used to emit T but nobody uses it. */
253 error("unrecognized: %s", line
.buf
);
259 strbuf_release(&line
);
264 static int compare_info(const void *a_
, const void *b_
)
266 struct pack_info
*const *a
= a_
;
267 struct pack_info
*const *b
= b_
;
269 if (0 <= (*a
)->old_num
&& 0 <= (*b
)->old_num
)
270 /* Keep the order in the original */
271 return (*a
)->old_num
- (*b
)->old_num
;
272 else if (0 <= (*a
)->old_num
)
273 /* Only A existed in the original so B is obviously newer */
275 else if (0 <= (*b
)->old_num
)
276 /* The other way around. */
279 /* then it does not matter but at least keep the comparison stable */
280 if ((*a
)->p
== (*b
)->p
)
282 else if ((*a
)->p
< (*b
)->p
)
288 static void init_pack_info(struct repository
*r
, const char *infofile
, int force
)
290 struct packed_git
*p
;
295 for (p
= get_all_packs(r
); p
; p
= p
->next
) {
296 /* we ignore things on alternate path since they are
297 * not available to the pullers in general.
299 if (!p
->pack_local
|| !file_exists(p
->pack_name
))
303 ALLOC_GROW(info
, num_pack
, alloc
);
304 CALLOC_ARRAY(info
[i
], 1);
306 info
[i
]->old_num
= -1;
309 if (infofile
&& !force
)
310 stale
= read_pack_info_file(infofile
);
314 for (i
= 0; i
< num_pack
; i
++)
316 info
[i
]->old_num
= -1;
319 QSORT(info
, num_pack
, compare_info
);
320 for (i
= 0; i
< num_pack
; i
++)
321 info
[i
]->new_num
= i
;
324 static void free_pack_info(void)
327 for (i
= 0; i
< num_pack
; i
++)
332 static int write_pack_info_file(struct update_info_ctx
*uic
)
335 for (i
= 0; i
< num_pack
; i
++) {
336 if (uic_printf(uic
, "P %s\n", pack_basename(info
[i
]->p
)) < 0)
339 if (uic_printf(uic
, "\n") < 0)
344 static int update_info_packs(struct repository
*r
, int force
)
346 char *infofile
= mkpathdup("%s/info/packs",
347 repo_get_object_directory(r
));
350 init_pack_info(r
, infofile
, force
);
351 ret
= update_info_file(r
, infofile
, write_pack_info_file
, force
);
358 int update_server_info(struct repository
*r
, int force
)
360 /* We would add more dumb-server support files later,
361 * including index of available pack files and their
362 * intended audiences.
367 errs
= errs
| update_info_refs(r
, force
);
368 errs
= errs
| update_info_packs(r
, force
);
370 /* remove leftover rev-cache file if there is any */
371 path
= repo_git_path(r
, "info/rev-cache");
372 unlink_or_warn(path
);