Bug Summary

File:got/../lib/object.c
Warning:line 153, column 25
Access to field 'ibuf' results in a dereference of a null pointer (loaded from field 'privsep_child')

Annotated Source Code

Press '?' to see keyboard shortcuts

clang -cc1 -cc1 -triple amd64-unknown-openbsd6.9 -analyze -disable-free -disable-llvm-verifier -discard-value-names -main-file-name object.c -analyzer-store=region -analyzer-opt-analyze-nested-blocks -analyzer-checker=core -analyzer-checker=apiModeling -analyzer-checker=unix -analyzer-checker=deadcode -analyzer-checker=security.insecureAPI.UncheckedReturn -analyzer-checker=security.insecureAPI.getpw -analyzer-checker=security.insecureAPI.gets -analyzer-checker=security.insecureAPI.mktemp -analyzer-checker=security.insecureAPI.mkstemp -analyzer-checker=security.insecureAPI.vfork -analyzer-checker=nullability.NullPassedToNonnull -analyzer-checker=nullability.NullReturnedFromNonnull -analyzer-output plist -w -setup-static-analyzer -mrelocation-model pic -pic-level 1 -pic-is-pie -mframe-pointer=all -relaxed-aliasing -fno-rounding-math -mconstructor-aliases -munwind-tables -target-cpu x86-64 -target-feature +retpoline-indirect-calls -target-feature +retpoline-indirect-branches -fno-split-dwarf-inlining -debugger-tuning=gdb -resource-dir /usr/local/lib/clang/11.1.0 -I /home/ben/Projects/got/got/../include -I /home/ben/Projects/got/got/../lib -D GOT_LIBEXECDIR=/home/ben/bin -D GOT_VERSION=0.53-current -internal-isystem /usr/local/lib/clang/11.1.0/include -internal-externc-isystem /usr/include -O0 -fdebug-compilation-dir /home/ben/Projects/got/got/obj -ferror-limit 19 -fwrapv -D_RET_PROTECTOR -ret-protector -fgnuc-version=4.2.1 -fno-builtin-malloc -fno-builtin-calloc -fno-builtin-realloc -fno-builtin-valloc -fno-builtin-free -fno-builtin-strdup -fno-builtin-strndup -analyzer-output=html -faddrsig -o /home/ben/Projects/got/scan/2021-05-28-230913-68537-1 -x c /home/ben/Projects/got/got/../lib/object.c
1/*
2 * Copyright (c) 2018, 2019 Stefan Sperling <stsp@openbsd.org>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#include <sys/types.h>
18#include <sys/stat.h>
19#include <sys/queue.h>
20#include <sys/uio.h>
21#include <sys/socket.h>
22#include <sys/wait.h>
23#include <sys/resource.h>
24
25#include <errno(*__errno()).h>
26#include <fcntl.h>
27#include <stdio.h>
28#include <stdlib.h>
29#include <string.h>
30#include <stdint.h>
31#include <sha1.h>
32#include <unistd.h>
33#include <zlib.h>
34#include <ctype.h>
35#include <libgen.h>
36#include <limits.h>
37#include <imsg.h>
38#include <time.h>
39
40#include "got_error.h"
41#include "got_object.h"
42#include "got_repository.h"
43#include "got_opentemp.h"
44#include "got_path.h"
45
46#include "got_lib_sha1.h"
47#include "got_lib_delta.h"
48#include "got_lib_inflate.h"
49#include "got_lib_object.h"
50#include "got_lib_privsep.h"
51#include "got_lib_object_idcache.h"
52#include "got_lib_object_cache.h"
53#include "got_lib_object_parse.h"
54#include "got_lib_pack.h"
55#include "got_lib_repository.h"
56
57#ifndef MIN
58#define MIN(_a,_b)((_a) < (_b) ? (_a) : (_b)) ((_a) < (_b) ? (_a) : (_b))
59#endif
60
61struct got_object_id *
62got_object_get_id(struct got_object *obj)
63{
64 return &obj->id;
65}
66
67const struct got_error *
68got_object_get_id_str(char **outbuf, struct got_object *obj)
69{
70 return got_object_id_str(outbuf, &obj->id);
71}
72
73const struct got_error *
74got_object_get_type(int *type, struct got_repository *repo,
75 struct got_object_id *id)
76{
77 const struct got_error *err = NULL((void *)0);
78 struct got_object *obj;
79
80 err = got_object_open(&obj, repo, id);
1
Calling 'got_object_open'
81 if (err)
82 return err;
83
84 switch (obj->type) {
85 case GOT_OBJ_TYPE_COMMIT1:
86 case GOT_OBJ_TYPE_TREE2:
87 case GOT_OBJ_TYPE_BLOB3:
88 case GOT_OBJ_TYPE_TAG4:
89 *type = obj->type;
90 break;
91 default:
92 err = got_error(GOT_ERR_OBJ_TYPE11);
93 break;
94 }
95
96 got_object_close(obj);
97 return err;
98}
99
100const struct got_error *
101got_object_get_path(char **path, struct got_object_id *id,
102 struct got_repository *repo)
103{
104 const struct got_error *err = NULL((void *)0);
105 char *hex = NULL((void *)0);
106 char *path_objects;
107
108 *path = NULL((void *)0);
109
110 path_objects = got_repo_get_path_objects(repo);
111 if (path_objects == NULL((void *)0))
112 return got_error_from_errno("got_repo_get_path_objects");
113
114 err = got_object_id_str(&hex, id);
115 if (err)
116 goto done;
117
118 if (asprintf(path, "%s/%.2x/%s", path_objects,
119 id->sha1[0], hex + 2) == -1)
120 err = got_error_from_errno("asprintf");
121
122done:
123 free(hex);
124 free(path_objects);
125 return err;
126}
127
128const struct got_error *
129got_object_open_loose_fd(int *fd, struct got_object_id *id,
130 struct got_repository *repo)
131{
132 const struct got_error *err = NULL((void *)0);
133 char *path;
134
135 err = got_object_get_path(&path, id, repo);
136 if (err)
137 return err;
138 *fd = open(path, O_RDONLY0x0000 | O_NOFOLLOW0x0100);
139 if (*fd == -1) {
140 err = got_error_from_errno2("open", path);
141 goto done;
142 }
143done:
144 free(path);
145 return err;
146}
147
148static const struct got_error *
149request_packed_object(struct got_object **obj, struct got_pack *pack, int idx,
150 struct got_object_id *id)
151{
152 const struct got_error *err = NULL((void *)0);
153 struct imsgbuf *ibuf = pack->privsep_child->ibuf;
23
Access to field 'ibuf' results in a dereference of a null pointer (loaded from field 'privsep_child')
154
155 err = got_privsep_send_packed_obj_req(ibuf, idx, id);
156 if (err)
157 return err;
158
159 err = got_privsep_recv_obj(obj, ibuf);
160 if (err)
161 return err;
162
163 memcpy(&(*obj)->id, id, sizeof((*obj)->id));
164
165 return NULL((void *)0);
166}
167
168static const struct got_error *
169request_packed_object_raw(uint8_t **outbuf, off_t *size, size_t *hdrlen,
170 int outfd, struct got_pack *pack, int idx, struct got_object_id *id)
171{
172 const struct got_error *err = NULL((void *)0);
173 struct imsgbuf *ibuf = pack->privsep_child->ibuf;
174 int outfd_child;
175 int basefd, accumfd; /* temporary files for delta application */
176
177 basefd = got_opentempfd();
178 if (basefd == -1)
179 return got_error_from_errno("got_opentempfd");
180
181 accumfd = got_opentempfd();
182 if (accumfd == -1) {
183 close(basefd);
184 return got_error_from_errno("got_opentempfd");
185 }
186
187 outfd_child = dup(outfd);
188 if (outfd_child == -1) {
189 err = got_error_from_errno("dup");
190 close(basefd);
191 close(accumfd);
192 return err;
193 }
194
195 err = got_privsep_send_packed_raw_obj_req(ibuf, idx, id);
196 if (err) {
197 close(basefd);
198 close(accumfd);
199 close(outfd_child);
200 return err;
201 }
202
203 err = got_privsep_send_raw_obj_outfd(ibuf, outfd_child);
204 if (err) {
205 close(basefd);
206 close(accumfd);
207 return err;
208 }
209
210
211 err = got_privsep_send_tmpfd(pack->privsep_child->ibuf,
212 basefd);
213 if (err) {
214 close(accumfd);
215 return err;
216 }
217
218 err = got_privsep_send_tmpfd(pack->privsep_child->ibuf,
219 accumfd);
220 if (err)
221 return err;
222
223 err = got_privsep_recv_raw_obj(outbuf, size, hdrlen, ibuf);
224 if (err)
225 return err;
226
227 return NULL((void *)0);
228}
229
230static void
231set_max_datasize(void)
232{
233 struct rlimit rl;
234
235 if (getrlimit(RLIMIT_DATA2, &rl) != 0)
236 return;
237
238 rl.rlim_cur = rl.rlim_max;
239 setrlimit(RLIMIT_DATA2, &rl);
240}
241
242static const struct got_error *
243start_pack_privsep_child(struct got_pack *pack, struct got_packidx *packidx)
244{
245 const struct got_error *err = NULL((void *)0);
246 int imsg_fds[2];
247 pid_t pid;
248 struct imsgbuf *ibuf;
249
250 ibuf = calloc(1, sizeof(*ibuf));
251 if (ibuf == NULL((void *)0))
16
Assuming 'ibuf' is equal to NULL
17
Taking true branch
252 return got_error_from_errno("calloc");
18
Returning without writing to 'pack->privsep_child'
253
254 pack->privsep_child = calloc(1, sizeof(*pack->privsep_child));
255 if (pack->privsep_child == NULL((void *)0)) {
256 err = got_error_from_errno("calloc");
257 free(ibuf);
258 return err;
259 }
260
261 if (socketpair(AF_UNIX1, SOCK_STREAM1, PF_UNSPEC0, imsg_fds) == -1) {
262 err = got_error_from_errno("socketpair");
263 goto done;
264 }
265
266 pid = fork();
267 if (pid == -1) {
268 err = got_error_from_errno("fork");
269 goto done;
270 } else if (pid == 0) {
271 set_max_datasize();
272 got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_PACK"/home/ben/bin" "/" "got-read-pack",
273 pack->path_packfile);
274 /* not reached */
275 }
276
277 if (close(imsg_fds[1]) == -1)
278 return got_error_from_errno("close");
279 pack->privsep_child->imsg_fd = imsg_fds[0];
280 pack->privsep_child->pid = pid;
281 imsg_init(ibuf, imsg_fds[0]);
282 pack->privsep_child->ibuf = ibuf;
283
284 err = got_privsep_init_pack_child(ibuf, pack, packidx);
285 if (err) {
286 const struct got_error *child_err;
287 err = got_privsep_send_stop(pack->privsep_child->imsg_fd);
288 child_err = got_privsep_wait_for_child(
289 pack->privsep_child->pid);
290 if (child_err && err == NULL((void *)0))
291 err = child_err;
292 }
293done:
294 if (err) {
295 free(ibuf);
296 free(pack->privsep_child);
297 pack->privsep_child = NULL((void *)0);
298 }
299 return err;
300}
301
302static const struct got_error *
303read_packed_object_privsep(struct got_object **obj,
304 struct got_repository *repo, struct got_pack *pack,
305 struct got_packidx *packidx, int idx, struct got_object_id *id)
306{
307 const struct got_error *err = NULL((void *)0);
308
309 if (pack->privsep_child == NULL((void *)0)) {
12
Assuming field 'privsep_child' is equal to NULL
13
Assuming pointer value is null
14
Taking true branch
310 err = start_pack_privsep_child(pack, packidx);
15
Calling 'start_pack_privsep_child'
19
Returning from 'start_pack_privsep_child'
311 if (err)
20
Assuming 'err' is null
21
Taking false branch
312 return err;
313 }
314
315 return request_packed_object(obj, pack, idx, id);
22
Calling 'request_packed_object'
316}
317
318static const struct got_error *
319read_packed_object_raw_privsep(uint8_t **outbuf, off_t *size, size_t *hdrlen,
320 int outfd, struct got_pack *pack, struct got_packidx *packidx, int idx,
321 struct got_object_id *id)
322{
323 const struct got_error *err = NULL((void *)0);
324
325 if (pack->privsep_child == NULL((void *)0)) {
326 err = start_pack_privsep_child(pack, packidx);
327 if (err)
328 return err;
329 }
330
331 return request_packed_object_raw(outbuf, size, hdrlen, outfd, pack,
332 idx, id);
333}
334
335static const struct got_error *
336open_packed_object(struct got_object **obj, struct got_object_id *id,
337 struct got_repository *repo)
338{
339 const struct got_error *err = NULL((void *)0);
340 struct got_pack *pack = NULL((void *)0);
341 struct got_packidx *packidx = NULL((void *)0);
342 int idx;
343 char *path_packfile;
344
345 err = got_repo_search_packidx(&packidx, &idx, repo, id);
346 if (err)
5
Assuming 'err' is null
6
Taking false branch
347 return err;
348
349 err = got_packidx_get_packfile_path(&path_packfile, packidx);
350 if (err)
7
Assuming 'err' is null
8
Taking false branch
351 return err;
352
353 pack = got_repo_get_cached_pack(repo, path_packfile);
354 if (pack == NULL((void *)0)) {
9
Assuming 'pack' is not equal to NULL
10
Taking false branch
355 err = got_repo_cache_pack(&pack, repo, path_packfile, packidx);
356 if (err)
357 goto done;
358 }
359
360 err = read_packed_object_privsep(obj, repo, pack, packidx, idx, id);
11
Calling 'read_packed_object_privsep'
361 if (err)
362 goto done;
363done:
364 free(path_packfile);
365 return err;
366}
367
368static const struct got_error *
369request_object(struct got_object **obj, struct got_repository *repo, int fd)
370{
371 const struct got_error *err = NULL((void *)0);
372 struct imsgbuf *ibuf;
373
374 ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT0].ibuf;
375
376 err = got_privsep_send_obj_req(ibuf, fd);
377 if (err)
378 return err;
379
380 return got_privsep_recv_obj(obj, ibuf);
381}
382
383static const struct got_error *
384request_raw_object(uint8_t **outbuf, off_t *size, size_t *hdrlen, int outfd,
385 struct got_repository *repo, int infd)
386{
387 const struct got_error *err = NULL((void *)0);
388 struct imsgbuf *ibuf;
389 int outfd_child;
390
391 ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT0].ibuf;
392
393 outfd_child = dup(outfd);
394 if (outfd_child == -1)
395 return got_error_from_errno("dup");
396
397 err = got_privsep_send_raw_obj_req(ibuf, infd);
398 if (err)
399 return err;
400
401 err = got_privsep_send_raw_obj_outfd(ibuf, outfd_child);
402 if (err)
403 return err;
404
405 return got_privsep_recv_raw_obj(outbuf, size, hdrlen, ibuf);
406}
407
408static const struct got_error *
409start_read_object_child(struct got_repository *repo)
410{
411 const struct got_error *err = NULL((void *)0);
412 int imsg_fds[2];
413 pid_t pid;
414 struct imsgbuf *ibuf;
415
416 ibuf = calloc(1, sizeof(*ibuf));
417 if (ibuf == NULL((void *)0))
418 return got_error_from_errno("calloc");
419
420 if (socketpair(AF_UNIX1, SOCK_STREAM1, PF_UNSPEC0, imsg_fds) == -1) {
421 err = got_error_from_errno("socketpair");
422 free(ibuf);
423 return err;
424 }
425
426 pid = fork();
427 if (pid == -1) {
428 err = got_error_from_errno("fork");
429 free(ibuf);
430 return err;
431 }
432 else if (pid == 0) {
433 got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_OBJECT"/home/ben/bin" "/" "got-read-object",
434 repo->path);
435 /* not reached */
436 }
437
438 if (close(imsg_fds[1]) == -1) {
439 err = got_error_from_errno("close");
440 free(ibuf);
441 return err;
442 }
443
444 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT0].imsg_fd =
445 imsg_fds[0];
446 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT0].pid = pid;
447 imsg_init(ibuf, imsg_fds[0]);
448 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT0].ibuf = ibuf;
449
450 return NULL((void *)0);
451}
452
453static const struct got_error *
454read_object_header_privsep(struct got_object **obj, struct got_repository *repo,
455 int obj_fd)
456{
457 const struct got_error *err;
458
459 if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT0].imsg_fd != -1)
460 return request_object(obj, repo, obj_fd);
461
462 err = start_read_object_child(repo);
463 if (err) {
464 close(obj_fd);
465 return err;
466 }
467
468 return request_object(obj, repo, obj_fd);
469}
470
471static const struct got_error *
472read_object_raw_privsep(uint8_t **outbuf, off_t *size, size_t *hdrlen,
473 int outfd, struct got_repository *repo, int obj_fd)
474{
475 const struct got_error *err;
476
477 if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_OBJECT0].imsg_fd != -1)
478 return request_raw_object(outbuf, size, hdrlen, outfd, repo,
479 obj_fd);
480
481 err = start_read_object_child(repo);
482 if (err)
483 return err;
484
485 return request_raw_object(outbuf, size, hdrlen, outfd, repo, obj_fd);
486}
487
488const struct got_error *
489got_object_open(struct got_object **obj, struct got_repository *repo,
490 struct got_object_id *id)
491{
492 const struct got_error *err = NULL((void *)0);
493 int fd;
494
495 *obj = got_repo_get_cached_object(repo, id);
496 if (*obj != NULL((void *)0)) {
2
Assuming the condition is false
3
Taking false branch
497 (*obj)->refcnt++;
498 return NULL((void *)0);
499 }
500
501 err = open_packed_object(obj, id, repo);
4
Calling 'open_packed_object'
502 if (err && err->code != GOT_ERR_NO_OBJ17)
503 return err;
504 if (*obj) {
505 (*obj)->refcnt++;
506 return got_repo_cache_object(repo, id, *obj);
507 }
508
509 err = got_object_open_loose_fd(&fd, id, repo);
510 if (err) {
511 if (err->code == GOT_ERR_ERRNO1 && errno(*__errno()) == ENOENT2)
512 err = got_error_no_obj(id);
513 return err;
514 }
515
516 err = read_object_header_privsep(obj, repo, fd);
517 if (err)
518 return err;
519
520 memcpy((*obj)->id.sha1, id->sha1, SHA1_DIGEST_LENGTH20);
521
522 (*obj)->refcnt++;
523 return got_repo_cache_object(repo, id, *obj);
524}
525
526const struct got_error *
527got_object_raw_open(struct got_raw_object **obj, struct got_repository *repo,
528 struct got_object_id *id, size_t blocksize)
529{
530 const struct got_error *err = NULL((void *)0);
531 struct got_packidx *packidx = NULL((void *)0);
532 int idx;
533 uint8_t *outbuf = NULL((void *)0);
534 int outfd = -1;
535 off_t size = 0;
536 size_t hdrlen = 0;
537 char *path_packfile = NULL((void *)0);
538
539 *obj = NULL((void *)0);
540
541 outfd = got_opentempfd();
542 if (outfd == -1)
543 return got_error_from_errno("got_opentempfd");
544
545 err = got_repo_search_packidx(&packidx, &idx, repo, id);
546 if (err == NULL((void *)0)) {
547 struct got_pack *pack = NULL((void *)0);
548
549 err = got_packidx_get_packfile_path(&path_packfile, packidx);
550 if (err)
551 goto done;
552
553 pack = got_repo_get_cached_pack(repo, path_packfile);
554 if (pack == NULL((void *)0)) {
555 err = got_repo_cache_pack(&pack, repo, path_packfile,
556 packidx);
557 if (err)
558 goto done;
559 }
560 err = read_packed_object_raw_privsep(&outbuf, &size, &hdrlen,
561 outfd, pack, packidx, idx, id);
562 } else if (err->code == GOT_ERR_NO_OBJ17) {
563 int fd;
564
565 err = got_object_open_loose_fd(&fd, id, repo);
566 if (err)
567 goto done;
568 err = read_object_raw_privsep(&outbuf, &size, &hdrlen, outfd,
569 repo, fd);
570 }
571
572 if (hdrlen > size) {
573 err = got_error(GOT_ERR_BAD_OBJ_HDR10);
574 goto done;
575 }
576
577 *obj = calloc(1, sizeof(**obj));
578 if (*obj == NULL((void *)0)) {
579 err = got_error_from_errno("calloc");
580 goto done;
581 }
582
583 (*obj)->read_buf = malloc(blocksize);
584 if ((*obj)->read_buf == NULL((void *)0)) {
585 err = got_error_from_errno("malloc");
586 goto done;
587 }
588
589 if (outbuf) {
590 if (close(outfd) == -1) {
591 err = got_error_from_errno("close");
592 goto done;
593 }
594 outfd = -1;
595 (*obj)->f = fmemopen(outbuf, hdrlen + size, "r");
596 if ((*obj)->f == NULL((void *)0)) {
597 err = got_error_from_errno("fdopen");
598 goto done;
599 }
600 (*obj)->data = outbuf;
601 } else {
602 struct stat sb;
603 if (fstat(outfd, &sb) == -1) {
604 err = got_error_from_errno("fstat");
605 goto done;
606 }
607
608 if (sb.st_size != size) {
609 err = got_error(GOT_ERR_PRIVSEP_LEN36);
610 goto done;
611 }
612
613 (*obj)->f = fdopen(outfd, "r");
614 if ((*obj)->f == NULL((void *)0)) {
615 err = got_error_from_errno("fdopen");
616 goto done;
617 }
618 outfd = -1;
619 (*obj)->data = NULL((void *)0);
620 }
621 (*obj)->hdrlen = hdrlen;
622 (*obj)->size = size;
623 (*obj)->blocksize = blocksize;
624done:
625 free(path_packfile);
626 if (err) {
627 if (*obj) {
628 got_object_raw_close(*obj);
629 *obj = NULL((void *)0);
630 }
631 if (outfd != -1)
632 close(outfd);
633 free(outbuf);
634 }
635 return err;
636}
637
638void
639got_object_raw_rewind(struct got_raw_object *obj)
640{
641 if (obj->f)
642 rewind(obj->f);
643}
644
645size_t
646got_object_raw_get_hdrlen(struct got_raw_object *obj)
647{
648 return obj->hdrlen;
649}
650
651const uint8_t *
652got_object_raw_get_read_buf(struct got_raw_object *obj)
653{
654 return obj->read_buf;
655}
656
657const struct got_error *
658got_object_raw_read_block(size_t *outlenp, struct got_raw_object *obj)
659{
660 size_t n;
661
662 n = fread(obj->read_buf, 1, obj->blocksize, obj->f);
663 if (n == 0 && ferror(obj->f)(!__isthreaded ? (((obj->f)->_flags & 0x0040) != 0)
: (ferror)(obj->f))
)
664 return got_ferror(obj->f, GOT_ERR_IO6);
665 *outlenp = n;
666 return NULL((void *)0);
667}
668
669const struct got_error *
670got_object_raw_close(struct got_raw_object *obj)
671{
672 const struct got_error *err = NULL((void *)0);
673
674 free(obj->read_buf);
675 if (obj->f != NULL((void *)0) && fclose(obj->f) == EOF(-1) && err == NULL((void *)0))
676 err = got_error_from_errno("fclose");
677 free(obj->data);
678 free(obj);
679 return err;
680}
681
682const struct got_error *
683got_object_open_by_id_str(struct got_object **obj, struct got_repository *repo,
684 const char *id_str)
685{
686 struct got_object_id id;
687
688 if (!got_parse_sha1_digest(id.sha1, id_str))
689 return got_error_path(id_str, GOT_ERR_BAD_OBJ_ID_STR23);
690
691 return got_object_open(obj, repo, &id);
692}
693
694const struct got_error *
695got_object_resolve_id_str(struct got_object_id **id,
696 struct got_repository *repo, const char *id_str)
697{
698 const struct got_error *err = NULL((void *)0);
699 struct got_object *obj;
700
701 err = got_object_open_by_id_str(&obj, repo, id_str);
702 if (err)
703 return err;
704
705 *id = got_object_id_dup(got_object_get_id(obj));
706 got_object_close(obj);
707 if (*id == NULL((void *)0))
708 return got_error_from_errno("got_object_id_dup");
709
710 return NULL((void *)0);
711}
712
713static const struct got_error *
714request_packed_commit(struct got_commit_object **commit, struct got_pack *pack,
715 int pack_idx, struct got_object_id *id)
716{
717 const struct got_error *err = NULL((void *)0);
718
719 err = got_privsep_send_commit_req(pack->privsep_child->ibuf, -1, id,
720 pack_idx);
721 if (err)
722 return err;
723
724 err = got_privsep_recv_commit(commit, pack->privsep_child->ibuf);
725 if (err)
726 return err;
727
728 (*commit)->flags |= GOT_COMMIT_FLAG_PACKED0x01;
729 return NULL((void *)0);
730}
731
732static const struct got_error *
733read_packed_commit_privsep(struct got_commit_object **commit,
734 struct got_pack *pack, struct got_packidx *packidx, int idx,
735 struct got_object_id *id)
736{
737 const struct got_error *err = NULL((void *)0);
738
739 if (pack->privsep_child)
740 return request_packed_commit(commit, pack, idx, id);
741
742 err = start_pack_privsep_child(pack, packidx);
743 if (err)
744 return err;
745
746 return request_packed_commit(commit, pack, idx, id);
747}
748
749static const struct got_error *
750request_commit(struct got_commit_object **commit, struct got_repository *repo,
751 int fd)
752{
753 const struct got_error *err = NULL((void *)0);
754 struct imsgbuf *ibuf;
755
756 ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT1].ibuf;
757
758 err = got_privsep_send_commit_req(ibuf, fd, NULL((void *)0), -1);
759 if (err)
760 return err;
761
762 return got_privsep_recv_commit(commit, ibuf);
763}
764
765static const struct got_error *
766read_commit_privsep(struct got_commit_object **commit, int obj_fd,
767 struct got_repository *repo)
768{
769 const struct got_error *err;
770 int imsg_fds[2];
771 pid_t pid;
772 struct imsgbuf *ibuf;
773
774 if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT1].imsg_fd != -1)
775 return request_commit(commit, repo, obj_fd);
776
777 ibuf = calloc(1, sizeof(*ibuf));
778 if (ibuf == NULL((void *)0))
779 return got_error_from_errno("calloc");
780
781 if (socketpair(AF_UNIX1, SOCK_STREAM1, PF_UNSPEC0, imsg_fds) == -1) {
782 err = got_error_from_errno("socketpair");
783 free(ibuf);
784 return err;
785 }
786
787 pid = fork();
788 if (pid == -1) {
789 err = got_error_from_errno("fork");
790 free(ibuf);
791 return err;
792 }
793 else if (pid == 0) {
794 got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_COMMIT"/home/ben/bin" "/" "got-read-commit",
795 repo->path);
796 /* not reached */
797 }
798
799 if (close(imsg_fds[1]) == -1) {
800 err = got_error_from_errno("close");
801 free(ibuf);
802 return err;
803 }
804 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT1].imsg_fd =
805 imsg_fds[0];
806 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT1].pid = pid;
807 imsg_init(ibuf, imsg_fds[0]);
808 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_COMMIT1].ibuf = ibuf;
809
810 return request_commit(commit, repo, obj_fd);
811}
812
813
814static const struct got_error *
815open_commit(struct got_commit_object **commit,
816 struct got_repository *repo, struct got_object_id *id, int check_cache)
817{
818 const struct got_error *err = NULL((void *)0);
819 struct got_packidx *packidx = NULL((void *)0);
820 int idx;
821 char *path_packfile = NULL((void *)0);
822
823 if (check_cache) {
824 *commit = got_repo_get_cached_commit(repo, id);
825 if (*commit != NULL((void *)0)) {
826 (*commit)->refcnt++;
827 return NULL((void *)0);
828 }
829 } else
830 *commit = NULL((void *)0);
831
832 err = got_repo_search_packidx(&packidx, &idx, repo, id);
833 if (err == NULL((void *)0)) {
834 struct got_pack *pack = NULL((void *)0);
835
836 err = got_packidx_get_packfile_path(&path_packfile, packidx);
837 if (err)
838 return err;
839
840 pack = got_repo_get_cached_pack(repo, path_packfile);
841 if (pack == NULL((void *)0)) {
842 err = got_repo_cache_pack(&pack, repo, path_packfile,
843 packidx);
844 if (err)
845 goto done;
846 }
847 err = read_packed_commit_privsep(commit, pack,
848 packidx, idx, id);
849 } else if (err->code == GOT_ERR_NO_OBJ17) {
850 int fd;
851
852 err = got_object_open_loose_fd(&fd, id, repo);
853 if (err)
854 return err;
855 err = read_commit_privsep(commit, fd, repo);
856 }
857
858 if (err == NULL((void *)0)) {
859 (*commit)->refcnt++;
860 err = got_repo_cache_commit(repo, id, *commit);
861 }
862done:
863 free(path_packfile);
864 return err;
865}
866
867const struct got_error *
868got_object_open_as_commit(struct got_commit_object **commit,
869 struct got_repository *repo, struct got_object_id *id)
870{
871 *commit = got_repo_get_cached_commit(repo, id);
872 if (*commit != NULL((void *)0)) {
873 (*commit)->refcnt++;
874 return NULL((void *)0);
875 }
876
877 return open_commit(commit, repo, id, 0);
878}
879
880const struct got_error *
881got_object_commit_open(struct got_commit_object **commit,
882 struct got_repository *repo, struct got_object *obj)
883{
884 return open_commit(commit, repo, got_object_get_id(obj), 1);
885}
886
887const struct got_error *
888got_object_qid_alloc(struct got_object_qid **qid, struct got_object_id *id)
889{
890 const struct got_error *err = NULL((void *)0);
891
892 *qid = calloc(1, sizeof(**qid));
893 if (*qid == NULL((void *)0))
894 return got_error_from_errno("calloc");
895
896 (*qid)->id = got_object_id_dup(id);
897 if ((*qid)->id == NULL((void *)0)) {
898 err = got_error_from_errno("got_object_id_dup");
899 got_object_qid_free(*qid);
900 *qid = NULL((void *)0);
901 return err;
902 }
903
904 return NULL((void *)0);
905}
906
907static const struct got_error *
908request_packed_tree(struct got_tree_object **tree, struct got_pack *pack,
909 int pack_idx, struct got_object_id *id)
910{
911 const struct got_error *err = NULL((void *)0);
912
913 err = got_privsep_send_tree_req(pack->privsep_child->ibuf, -1, id,
914 pack_idx);
915 if (err)
916 return err;
917
918 return got_privsep_recv_tree(tree, pack->privsep_child->ibuf);
919}
920
921static const struct got_error *
922read_packed_tree_privsep(struct got_tree_object **tree,
923 struct got_pack *pack, struct got_packidx *packidx, int idx,
924 struct got_object_id *id)
925{
926 const struct got_error *err = NULL((void *)0);
927
928 if (pack->privsep_child)
929 return request_packed_tree(tree, pack, idx, id);
930
931 err = start_pack_privsep_child(pack, packidx);
932 if (err)
933 return err;
934
935 return request_packed_tree(tree, pack, idx, id);
936}
937
938static const struct got_error *
939request_tree(struct got_tree_object **tree, struct got_repository *repo,
940 int fd)
941{
942 const struct got_error *err = NULL((void *)0);
943 struct imsgbuf *ibuf;
944
945 ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE2].ibuf;
946
947 err = got_privsep_send_tree_req(ibuf, fd, NULL((void *)0), -1);
948 if (err)
949 return err;
950
951 return got_privsep_recv_tree(tree, ibuf);
952}
953
954const struct got_error *
955read_tree_privsep(struct got_tree_object **tree, int obj_fd,
956 struct got_repository *repo)
957{
958 const struct got_error *err;
959 int imsg_fds[2];
960 pid_t pid;
961 struct imsgbuf *ibuf;
962
963 if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE2].imsg_fd != -1)
964 return request_tree(tree, repo, obj_fd);
965
966 ibuf = calloc(1, sizeof(*ibuf));
967 if (ibuf == NULL((void *)0))
968 return got_error_from_errno("calloc");
969
970 if (socketpair(AF_UNIX1, SOCK_STREAM1, PF_UNSPEC0, imsg_fds) == -1) {
971 err = got_error_from_errno("socketpair");
972 free(ibuf);
973 return err;
974 }
975
976 pid = fork();
977 if (pid == -1) {
978 err = got_error_from_errno("fork");
979 free(ibuf);
980 return err;
981 }
982 else if (pid == 0) {
983 got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_TREE"/home/ben/bin" "/" "got-read-tree",
984 repo->path);
985 /* not reached */
986 }
987
988 if (close(imsg_fds[1]) == -1) {
989 err = got_error_from_errno("close");
990 free(ibuf);
991 return err;
992 }
993 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE2].imsg_fd =
994 imsg_fds[0];
995 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE2].pid = pid;
996 imsg_init(ibuf, imsg_fds[0]);
997 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TREE2].ibuf = ibuf;
998
999
1000 return request_tree(tree, repo, obj_fd);
1001}
1002
1003static const struct got_error *
1004open_tree(struct got_tree_object **tree, struct got_repository *repo,
1005 struct got_object_id *id, int check_cache)
1006{
1007 const struct got_error *err = NULL((void *)0);
1008 struct got_packidx *packidx = NULL((void *)0);
1009 int idx;
1010 char *path_packfile = NULL((void *)0);
1011
1012 if (check_cache) {
1013 *tree = got_repo_get_cached_tree(repo, id);
1014 if (*tree != NULL((void *)0)) {
1015 (*tree)->refcnt++;
1016 return NULL((void *)0);
1017 }
1018 } else
1019 *tree = NULL((void *)0);
1020
1021 err = got_repo_search_packidx(&packidx, &idx, repo, id);
1022 if (err == NULL((void *)0)) {
1023 struct got_pack *pack = NULL((void *)0);
1024
1025 err = got_packidx_get_packfile_path(&path_packfile, packidx);
1026 if (err)
1027 return err;
1028
1029 pack = got_repo_get_cached_pack(repo, path_packfile);
1030 if (pack == NULL((void *)0)) {
1031 err = got_repo_cache_pack(&pack, repo, path_packfile,
1032 packidx);
1033 if (err)
1034 goto done;
1035 }
1036 err = read_packed_tree_privsep(tree, pack,
1037 packidx, idx, id);
1038 } else if (err->code == GOT_ERR_NO_OBJ17) {
1039 int fd;
1040
1041 err = got_object_open_loose_fd(&fd, id, repo);
1042 if (err)
1043 return err;
1044 err = read_tree_privsep(tree, fd, repo);
1045 }
1046
1047 if (err == NULL((void *)0)) {
1048 (*tree)->refcnt++;
1049 err = got_repo_cache_tree(repo, id, *tree);
1050 }
1051done:
1052 free(path_packfile);
1053 return err;
1054}
1055
1056const struct got_error *
1057got_object_open_as_tree(struct got_tree_object **tree,
1058 struct got_repository *repo, struct got_object_id *id)
1059{
1060 *tree = got_repo_get_cached_tree(repo, id);
1061 if (*tree != NULL((void *)0)) {
1062 (*tree)->refcnt++;
1063 return NULL((void *)0);
1064 }
1065
1066 return open_tree(tree, repo, id, 0);
1067}
1068
1069const struct got_error *
1070got_object_tree_open(struct got_tree_object **tree,
1071 struct got_repository *repo, struct got_object *obj)
1072{
1073 return open_tree(tree, repo, got_object_get_id(obj), 1);
1074}
1075
1076int
1077got_object_tree_get_nentries(struct got_tree_object *tree)
1078{
1079 return tree->nentries;
1080}
1081
1082struct got_tree_entry *
1083got_object_tree_get_first_entry(struct got_tree_object *tree)
1084{
1085 return got_object_tree_get_entry(tree, 0);
1086}
1087
1088struct got_tree_entry *
1089got_object_tree_get_last_entry(struct got_tree_object *tree)
1090{
1091 return got_object_tree_get_entry(tree, tree->nentries - 1);
1092}
1093
1094struct got_tree_entry *
1095got_object_tree_get_entry(struct got_tree_object *tree, int i)
1096{
1097 if (i < 0 || i >= tree->nentries)
1098 return NULL((void *)0);
1099 return &tree->entries[i];
1100}
1101
1102mode_t
1103got_tree_entry_get_mode(struct got_tree_entry *te)
1104{
1105 return te->mode;
1106}
1107
1108const char *
1109got_tree_entry_get_name(struct got_tree_entry *te)
1110{
1111 return &te->name[0];
1112}
1113
1114struct got_object_id *
1115got_tree_entry_get_id(struct got_tree_entry *te)
1116{
1117 return &te->id;
1118}
1119
1120const struct got_error *
1121got_object_blob_read_to_str(char **s, struct got_blob_object *blob)
1122{
1123 const struct got_error *err = NULL((void *)0);
1124 size_t len, totlen, hdrlen, offset;
1125
1126 *s = NULL((void *)0);
1127
1128 hdrlen = got_object_blob_get_hdrlen(blob);
1129 totlen = 0;
1130 offset = 0;
1131 do {
1132 char *p;
1133
1134 err = got_object_blob_read_block(&len, blob);
1135 if (err)
1136 return err;
1137
1138 if (len == 0)
1139 break;
1140
1141 totlen += len - hdrlen;
1142 p = realloc(*s, totlen + 1);
1143 if (p == NULL((void *)0)) {
1144 err = got_error_from_errno("realloc");
1145 free(*s);
1146 *s = NULL((void *)0);
1147 return err;
1148 }
1149 *s = p;
1150 /* Skip blob object header first time around. */
1151 memcpy(*s + offset,
1152 got_object_blob_get_read_buf(blob) + hdrlen, len - hdrlen);
1153 hdrlen = 0;
1154 offset = totlen;
1155 } while (len > 0);
1156
1157 (*s)[totlen] = '\0';
1158 return NULL((void *)0);
1159}
1160
1161const struct got_error *
1162got_tree_entry_get_symlink_target(char **link_target, struct got_tree_entry *te,
1163 struct got_repository *repo)
1164{
1165 const struct got_error *err = NULL((void *)0);
1166 struct got_blob_object *blob = NULL((void *)0);
1167
1168 *link_target = NULL((void *)0);
1169
1170 if (!got_object_tree_entry_is_symlink(te))
1171 return got_error(GOT_ERR_TREE_ENTRY_TYPE126);
1172
1173 err = got_object_open_as_blob(&blob, repo,
1174 got_tree_entry_get_id(te), PATH_MAX1024);
1175 if (err)
1176 return err;
1177
1178 err = got_object_blob_read_to_str(link_target, blob);
1179 got_object_blob_close(blob);
1180 if (err) {
1181 free(*link_target);
1182 *link_target = NULL((void *)0);
1183 }
1184 return err;
1185}
1186
1187int
1188got_tree_entry_get_index(struct got_tree_entry *te)
1189{
1190 return te->idx;
1191}
1192
1193struct got_tree_entry *
1194got_tree_entry_get_next(struct got_tree_object *tree,
1195 struct got_tree_entry *te)
1196{
1197 return got_object_tree_get_entry(tree, te->idx + 1);
1198}
1199
1200struct got_tree_entry *
1201got_tree_entry_get_prev(struct got_tree_object *tree,
1202 struct got_tree_entry *te)
1203{
1204 return got_object_tree_get_entry(tree, te->idx - 1);
1205}
1206
1207static const struct got_error *
1208request_packed_blob(uint8_t **outbuf, size_t *size, size_t *hdrlen, int outfd,
1209 struct got_pack *pack, struct got_packidx *packidx, int idx,
1210 struct got_object_id *id)
1211{
1212 const struct got_error *err = NULL((void *)0);
1213 int outfd_child;
1214 int basefd, accumfd; /* temporary files for delta application */
1215
1216 basefd = got_opentempfd();
1217 if (basefd == -1)
1218 return got_error_from_errno("got_opentempfd");
1219 accumfd = got_opentempfd();
1220 if (accumfd == -1)
1221 return got_error_from_errno("got_opentempfd");
1222
1223 outfd_child = dup(outfd);
1224 if (outfd_child == -1)
1225 return got_error_from_errno("dup");
1226
1227 err = got_privsep_send_blob_req(pack->privsep_child->ibuf, -1, id, idx);
1228 if (err)
1229 return err;
1230
1231 err = got_privsep_send_blob_outfd(pack->privsep_child->ibuf,
1232 outfd_child);
1233 if (err) {
1234 close(basefd);
1235 close(accumfd);
1236 return err;
1237 }
1238
1239 err = got_privsep_send_tmpfd(pack->privsep_child->ibuf,
1240 basefd);
1241 if (err) {
1242 close(accumfd);
1243 return err;
1244 }
1245
1246 err = got_privsep_send_tmpfd(pack->privsep_child->ibuf,
1247 accumfd);
1248 if (err)
1249 return err;
1250
1251 err = got_privsep_recv_blob(outbuf, size, hdrlen,
1252 pack->privsep_child->ibuf);
1253 if (err)
1254 return err;
1255
1256 if (lseek(outfd, SEEK_SET0, 0) == -1)
1257 err = got_error_from_errno("lseek");
1258
1259 return err;
1260}
1261
1262static const struct got_error *
1263read_packed_blob_privsep(uint8_t **outbuf, size_t *size, size_t *hdrlen,
1264 int outfd, struct got_pack *pack, struct got_packidx *packidx, int idx,
1265 struct got_object_id *id)
1266{
1267 const struct got_error *err = NULL((void *)0);
1268
1269 if (pack->privsep_child == NULL((void *)0)) {
1270 err = start_pack_privsep_child(pack, packidx);
1271 if (err)
1272 return err;
1273 }
1274
1275 return request_packed_blob(outbuf, size, hdrlen, outfd, pack, packidx,
1276 idx, id);
1277}
1278
1279static const struct got_error *
1280request_blob(uint8_t **outbuf, size_t *size, size_t *hdrlen, int outfd,
1281 int infd, struct imsgbuf *ibuf)
1282{
1283 const struct got_error *err = NULL((void *)0);
1284 int outfd_child;
1285
1286 outfd_child = dup(outfd);
1287 if (outfd_child == -1)
1288 return got_error_from_errno("dup");
1289
1290 err = got_privsep_send_blob_req(ibuf, infd, NULL((void *)0), -1);
1291 if (err)
1292 return err;
1293
1294 err = got_privsep_send_blob_outfd(ibuf, outfd_child);
1295 if (err)
1296 return err;
1297
1298 err = got_privsep_recv_blob(outbuf, size, hdrlen, ibuf);
1299 if (err)
1300 return err;
1301
1302 if (lseek(outfd, SEEK_SET0, 0) == -1)
1303 return got_error_from_errno("lseek");
1304
1305 return err;
1306}
1307
1308static const struct got_error *
1309read_blob_privsep(uint8_t **outbuf, size_t *size, size_t *hdrlen,
1310 int outfd, int infd, struct got_repository *repo)
1311{
1312 const struct got_error *err;
1313 int imsg_fds[2];
1314 pid_t pid;
1315 struct imsgbuf *ibuf;
1316
1317 if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB3].imsg_fd != -1) {
1318 ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB3].ibuf;
1319 return request_blob(outbuf, size, hdrlen, outfd, infd, ibuf);
1320 }
1321
1322 ibuf = calloc(1, sizeof(*ibuf));
1323 if (ibuf == NULL((void *)0))
1324 return got_error_from_errno("calloc");
1325
1326 if (socketpair(AF_UNIX1, SOCK_STREAM1, PF_UNSPEC0, imsg_fds) == -1) {
1327 err = got_error_from_errno("socketpair");
1328 free(ibuf);
1329 return err;
1330 }
1331
1332 pid = fork();
1333 if (pid == -1) {
1334 err = got_error_from_errno("fork");
1335 free(ibuf);
1336 return err;
1337 }
1338 else if (pid == 0) {
1339 got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_BLOB"/home/ben/bin" "/" "got-read-blob",
1340 repo->path);
1341 /* not reached */
1342 }
1343
1344 if (close(imsg_fds[1]) == -1) {
1345 err = got_error_from_errno("close");
1346 free(ibuf);
1347 return err;
1348 }
1349 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB3].imsg_fd =
1350 imsg_fds[0];
1351 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB3].pid = pid;
1352 imsg_init(ibuf, imsg_fds[0]);
1353 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_BLOB3].ibuf = ibuf;
1354
1355 return request_blob(outbuf, size, hdrlen, outfd, infd, ibuf);
1356}
1357
1358static const struct got_error *
1359open_blob(struct got_blob_object **blob, struct got_repository *repo,
1360 struct got_object_id *id, size_t blocksize)
1361{
1362 const struct got_error *err = NULL((void *)0);
1363 struct got_packidx *packidx = NULL((void *)0);
1364 int idx;
1365 char *path_packfile = NULL((void *)0);
1366 uint8_t *outbuf;
1367 int outfd;
1368 size_t size, hdrlen;
1369 struct stat sb;
1370
1371 *blob = calloc(1, sizeof(**blob));
1372 if (*blob == NULL((void *)0))
1373 return got_error_from_errno("calloc");
1374
1375 outfd = got_opentempfd();
1376 if (outfd == -1)
1377 return got_error_from_errno("got_opentempfd");
1378
1379 (*blob)->read_buf = malloc(blocksize);
1380 if ((*blob)->read_buf == NULL((void *)0)) {
1381 err = got_error_from_errno("malloc");
1382 goto done;
1383 }
1384
1385 err = got_repo_search_packidx(&packidx, &idx, repo, id);
1386 if (err == NULL((void *)0)) {
1387 struct got_pack *pack = NULL((void *)0);
1388
1389 err = got_packidx_get_packfile_path(&path_packfile, packidx);
1390 if (err)
1391 goto done;
1392
1393 pack = got_repo_get_cached_pack(repo, path_packfile);
1394 if (pack == NULL((void *)0)) {
1395 err = got_repo_cache_pack(&pack, repo, path_packfile,
1396 packidx);
1397 if (err)
1398 goto done;
1399 }
1400 err = read_packed_blob_privsep(&outbuf, &size, &hdrlen, outfd,
1401 pack, packidx, idx, id);
1402 } else if (err->code == GOT_ERR_NO_OBJ17) {
1403 int infd;
1404
1405 err = got_object_open_loose_fd(&infd, id, repo);
1406 if (err)
1407 goto done;
1408 err = read_blob_privsep(&outbuf, &size, &hdrlen, outfd, infd,
1409 repo);
1410 }
1411 if (err)
1412 goto done;
1413
1414 if (hdrlen > size) {
1415 err = got_error(GOT_ERR_BAD_OBJ_HDR10);
1416 goto done;
1417 }
1418
1419 if (outbuf) {
1420 if (close(outfd) == -1 && err == NULL((void *)0))
1421 err = got_error_from_errno("close");
1422 outfd = -1;
1423 (*blob)->f = fmemopen(outbuf, size, "rb");
1424 if ((*blob)->f == NULL((void *)0)) {
1425 err = got_error_from_errno("fmemopen");
1426 free(outbuf);
1427 goto done;
1428 }
1429 (*blob)->data = outbuf;
1430 } else {
1431 if (fstat(outfd, &sb) == -1) {
1432 err = got_error_from_errno("fstat");
1433 goto done;
1434 }
1435
1436 if (sb.st_size != size) {
1437 err = got_error(GOT_ERR_PRIVSEP_LEN36);
1438 goto done;
1439 }
1440
1441 (*blob)->f = fdopen(outfd, "rb");
1442 if ((*blob)->f == NULL((void *)0)) {
1443 err = got_error_from_errno("fdopen");
1444 close(outfd);
1445 outfd = -1;
1446 goto done;
1447 }
1448 }
1449
1450 (*blob)->hdrlen = hdrlen;
1451 (*blob)->blocksize = blocksize;
1452 memcpy(&(*blob)->id.sha1, id->sha1, SHA1_DIGEST_LENGTH20);
1453
1454done:
1455 free(path_packfile);
1456 if (err) {
1457 if (*blob) {
1458 got_object_blob_close(*blob);
1459 *blob = NULL((void *)0);
1460 } else if (outfd != -1)
1461 close(outfd);
1462 }
1463 return err;
1464}
1465
1466const struct got_error *
1467got_object_open_as_blob(struct got_blob_object **blob,
1468 struct got_repository *repo, struct got_object_id *id,
1469 size_t blocksize)
1470{
1471 return open_blob(blob, repo, id, blocksize);
1472}
1473
1474const struct got_error *
1475got_object_blob_open(struct got_blob_object **blob,
1476 struct got_repository *repo, struct got_object *obj, size_t blocksize)
1477{
1478 return open_blob(blob, repo, got_object_get_id(obj), blocksize);
1479}
1480
1481const struct got_error *
1482got_object_blob_close(struct got_blob_object *blob)
1483{
1484 const struct got_error *err = NULL((void *)0);
1485 free(blob->read_buf);
1486 if (blob->f && fclose(blob->f) == EOF(-1))
1487 err = got_error_from_errno("fclose");
1488 free(blob->data);
1489 free(blob);
1490 return err;
1491}
1492
1493void
1494got_object_blob_rewind(struct got_blob_object *blob)
1495{
1496 if (blob->f)
1497 rewind(blob->f);
1498}
1499
1500char *
1501got_object_blob_id_str(struct got_blob_object *blob, char *buf, size_t size)
1502{
1503 return got_sha1_digest_to_str(blob->id.sha1, buf, size);
1504}
1505
1506size_t
1507got_object_blob_get_hdrlen(struct got_blob_object *blob)
1508{
1509 return blob->hdrlen;
1510}
1511
1512const uint8_t *
1513got_object_blob_get_read_buf(struct got_blob_object *blob)
1514{
1515 return blob->read_buf;
1516}
1517
1518const struct got_error *
1519got_object_blob_read_block(size_t *outlenp, struct got_blob_object *blob)
1520{
1521 size_t n;
1522
1523 n = fread(blob->read_buf, 1, blob->blocksize, blob->f);
1524 if (n == 0 && ferror(blob->f)(!__isthreaded ? (((blob->f)->_flags & 0x0040) != 0
) : (ferror)(blob->f))
)
1525 return got_ferror(blob->f, GOT_ERR_IO6);
1526 *outlenp = n;
1527 return NULL((void *)0);
1528}
1529
1530const struct got_error *
1531got_object_blob_dump_to_file(off_t *filesize, int *nlines,
1532 off_t **line_offsets, FILE *outfile, struct got_blob_object *blob)
1533{
1534 const struct got_error *err = NULL((void *)0);
1535 size_t n, len, hdrlen;
1536 const uint8_t *buf;
1537 int i;
1538 const int alloc_chunksz = 512;
1539 size_t nalloc = 0;
1540 off_t off = 0, total_len = 0;
1541
1542 if (line_offsets)
1543 *line_offsets = NULL((void *)0);
1544 if (filesize)
1545 *filesize = 0;
1546 if (nlines)
1547 *nlines = 0;
1548
1549 hdrlen = got_object_blob_get_hdrlen(blob);
1550 do {
1551 err = got_object_blob_read_block(&len, blob);
1552 if (err)
1553 return err;
1554 if (len == 0)
1555 break;
1556 buf = got_object_blob_get_read_buf(blob);
1557 i = hdrlen;
1558 if (nlines) {
1559 if (line_offsets && *line_offsets == NULL((void *)0)) {
1560 /* Have some data but perhaps no '\n'. */
1561 *nlines = 1;
1562 nalloc = alloc_chunksz;
1563 *line_offsets = calloc(nalloc,
1564 sizeof(**line_offsets));
1565 if (*line_offsets == NULL((void *)0))
1566 return got_error_from_errno("calloc");
1567
1568 /* Skip forward over end of first line. */
1569 while (i < len) {
1570 if (buf[i] == '\n')
1571 break;
1572 i++;
1573 }
1574 }
1575 /* Scan '\n' offsets in remaining chunk of data. */
1576 while (i < len) {
1577 if (buf[i] != '\n') {
1578 i++;
1579 continue;
1580 }
1581 (*nlines)++;
1582 if (line_offsets && nalloc < *nlines) {
1583 size_t n = *nlines + alloc_chunksz;
1584 off_t *o = recallocarray(*line_offsets,
1585 nalloc, n, sizeof(**line_offsets));
1586 if (o == NULL((void *)0)) {
1587 free(*line_offsets);
1588 *line_offsets = NULL((void *)0);
1589 return got_error_from_errno(
1590 "recallocarray");
1591 }
1592 *line_offsets = o;
1593 nalloc = n;
1594 }
1595 if (line_offsets) {
1596 off = total_len + i - hdrlen + 1;
1597 (*line_offsets)[*nlines - 1] = off;
1598 }
1599 i++;
1600 }
1601 }
1602 /* Skip blob object header first time around. */
1603 n = fwrite(buf + hdrlen, 1, len - hdrlen, outfile);
1604 if (n != len - hdrlen)
1605 return got_ferror(outfile, GOT_ERR_IO6);
1606 total_len += len - hdrlen;
1607 hdrlen = 0;
1608 } while (len != 0);
1609
1610 if (fflush(outfile) != 0)
1611 return got_error_from_errno("fflush");
1612 rewind(outfile);
1613
1614 if (filesize)
1615 *filesize = total_len;
1616
1617 return NULL((void *)0);
1618}
1619
1620static const struct got_error *
1621request_packed_tag(struct got_tag_object **tag, struct got_pack *pack,
1622 int pack_idx, struct got_object_id *id)
1623{
1624 const struct got_error *err = NULL((void *)0);
1625
1626 err = got_privsep_send_tag_req(pack->privsep_child->ibuf, -1, id,
1627 pack_idx);
1628 if (err)
1629 return err;
1630
1631 return got_privsep_recv_tag(tag, pack->privsep_child->ibuf);
1632}
1633
1634static const struct got_error *
1635read_packed_tag_privsep(struct got_tag_object **tag,
1636 struct got_pack *pack, struct got_packidx *packidx, int idx,
1637 struct got_object_id *id)
1638{
1639 const struct got_error *err = NULL((void *)0);
1640
1641 if (pack->privsep_child)
1642 return request_packed_tag(tag, pack, idx, id);
1643
1644 err = start_pack_privsep_child(pack, packidx);
1645 if (err)
1646 return err;
1647
1648 return request_packed_tag(tag, pack, idx, id);
1649}
1650
1651static const struct got_error *
1652request_tag(struct got_tag_object **tag, struct got_repository *repo,
1653 int fd)
1654{
1655 const struct got_error *err = NULL((void *)0);
1656 struct imsgbuf *ibuf;
1657
1658 ibuf = repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG4].ibuf;
1659
1660 err = got_privsep_send_tag_req(ibuf, fd, NULL((void *)0), -1);
1661 if (err)
1662 return err;
1663
1664 return got_privsep_recv_tag(tag, ibuf);
1665}
1666
1667static const struct got_error *
1668read_tag_privsep(struct got_tag_object **tag, int obj_fd,
1669 struct got_repository *repo)
1670{
1671 const struct got_error *err;
1672 int imsg_fds[2];
1673 pid_t pid;
1674 struct imsgbuf *ibuf;
1675
1676 if (repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG4].imsg_fd != -1)
1677 return request_tag(tag, repo, obj_fd);
1678
1679 ibuf = calloc(1, sizeof(*ibuf));
1680 if (ibuf == NULL((void *)0))
1681 return got_error_from_errno("calloc");
1682
1683 if (socketpair(AF_UNIX1, SOCK_STREAM1, PF_UNSPEC0, imsg_fds) == -1) {
1684 err = got_error_from_errno("socketpair");
1685 free(ibuf);
1686 return err;
1687 }
1688
1689 pid = fork();
1690 if (pid == -1) {
1691 err = got_error_from_errno("fork");
1692 free(ibuf);
1693 return err;
1694 }
1695 else if (pid == 0) {
1696 got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_TAG"/home/ben/bin" "/" "got-read-tag",
1697 repo->path);
1698 /* not reached */
1699 }
1700
1701 if (close(imsg_fds[1]) == -1) {
1702 err = got_error_from_errno("close");
1703 free(ibuf);
1704 return err;
1705 }
1706 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG4].imsg_fd =
1707 imsg_fds[0];
1708 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG4].pid = pid;
1709 imsg_init(ibuf, imsg_fds[0]);
1710 repo->privsep_children[GOT_REPO_PRIVSEP_CHILD_TAG4].ibuf = ibuf;
1711
1712 return request_tag(tag, repo, obj_fd);
1713}
1714
1715static const struct got_error *
1716open_tag(struct got_tag_object **tag, struct got_repository *repo,
1717 struct got_object_id *id, int check_cache)
1718{
1719 const struct got_error *err = NULL((void *)0);
1720 struct got_packidx *packidx = NULL((void *)0);
1721 int idx;
1722 char *path_packfile = NULL((void *)0);
1723 struct got_object *obj = NULL((void *)0);
1724 int obj_type = GOT_OBJ_TYPE_ANY0;
1725
1726 if (check_cache) {
1727 *tag = got_repo_get_cached_tag(repo, id);
1728 if (*tag != NULL((void *)0)) {
1729 (*tag)->refcnt++;
1730 return NULL((void *)0);
1731 }
1732 } else
1733 *tag = NULL((void *)0);
1734
1735 err = got_repo_search_packidx(&packidx, &idx, repo, id);
1736 if (err == NULL((void *)0)) {
1737 struct got_pack *pack = NULL((void *)0);
1738
1739 err = got_packidx_get_packfile_path(&path_packfile, packidx);
1740 if (err)
1741 return err;
1742
1743 pack = got_repo_get_cached_pack(repo, path_packfile);
1744 if (pack == NULL((void *)0)) {
1745 err = got_repo_cache_pack(&pack, repo, path_packfile,
1746 packidx);
1747 if (err)
1748 goto done;
1749 }
1750
1751 /* Beware of "lightweight" tags: Check object type first. */
1752 err = read_packed_object_privsep(&obj, repo, pack, packidx,
1753 idx, id);
1754 if (err)
1755 goto done;
1756 obj_type = obj->type;
1757 got_object_close(obj);
1758 if (obj_type != GOT_OBJ_TYPE_TAG4) {
1759 err = got_error(GOT_ERR_OBJ_TYPE11);
1760 goto done;
1761 }
1762 err = read_packed_tag_privsep(tag, pack, packidx, idx, id);
1763 } else if (err->code == GOT_ERR_NO_OBJ17) {
1764 int fd;
1765
1766 err = got_object_open_loose_fd(&fd, id, repo);
1767 if (err)
1768 return err;
1769 err = read_object_header_privsep(&obj, repo, fd);
1770 if (err)
1771 return err;
1772 obj_type = obj->type;
1773 got_object_close(obj);
1774 if (obj_type != GOT_OBJ_TYPE_TAG4)
1775 return got_error(GOT_ERR_OBJ_TYPE11);
1776
1777 err = got_object_open_loose_fd(&fd, id, repo);
1778 if (err)
1779 return err;
1780 err = read_tag_privsep(tag, fd, repo);
1781 }
1782
1783 if (err == NULL((void *)0)) {
1784 (*tag)->refcnt++;
1785 err = got_repo_cache_tag(repo, id, *tag);
1786 }
1787done:
1788 free(path_packfile);
1789 return err;
1790}
1791
1792const struct got_error *
1793got_object_open_as_tag(struct got_tag_object **tag,
1794 struct got_repository *repo, struct got_object_id *id)
1795{
1796 *tag = got_repo_get_cached_tag(repo, id);
1797 if (*tag != NULL((void *)0)) {
1798 (*tag)->refcnt++;
1799 return NULL((void *)0);
1800 }
1801
1802 return open_tag(tag, repo, id, 0);
1803}
1804
1805const struct got_error *
1806got_object_tag_open(struct got_tag_object **tag,
1807 struct got_repository *repo, struct got_object *obj)
1808{
1809 return open_tag(tag, repo, got_object_get_id(obj), 1);
1810}
1811
1812const char *
1813got_object_tag_get_name(struct got_tag_object *tag)
1814{
1815 return tag->tag;
1816}
1817
1818int
1819got_object_tag_get_object_type(struct got_tag_object *tag)
1820{
1821 return tag->obj_type;
1822}
1823
1824struct got_object_id *
1825got_object_tag_get_object_id(struct got_tag_object *tag)
1826{
1827 return &tag->id;
1828}
1829
1830time_t
1831got_object_tag_get_tagger_time(struct got_tag_object *tag)
1832{
1833 return tag->tagger_time;
1834}
1835
1836time_t
1837got_object_tag_get_tagger_gmtoff(struct got_tag_object *tag)
1838{
1839 return tag->tagger_gmtoff;
1840}
1841
1842const char *
1843got_object_tag_get_tagger(struct got_tag_object *tag)
1844{
1845 return tag->tagger;
1846}
1847
1848const char *
1849got_object_tag_get_message(struct got_tag_object *tag)
1850{
1851 return tag->tagmsg;
1852}
1853
1854static struct got_tree_entry *
1855find_entry_by_name(struct got_tree_object *tree, const char *name, size_t len)
1856{
1857 int i;
1858
1859 /* Note that tree entries are sorted in strncmp() order. */
1860 for (i = 0; i < tree->nentries; i++) {
1861 struct got_tree_entry *te = &tree->entries[i];
1862 int cmp = strncmp(te->name, name, len);
1863 if (cmp < 0)
1864 continue;
1865 if (cmp > 0)
1866 break;
1867 if (te->name[len] == '\0')
1868 return te;
1869 }
1870 return NULL((void *)0);
1871}
1872
1873struct got_tree_entry *
1874got_object_tree_find_entry(struct got_tree_object *tree, const char *name)
1875{
1876 return find_entry_by_name(tree, name, strlen(name));
1877}
1878
1879const struct got_error *
1880got_object_id_by_path(struct got_object_id **id, struct got_repository *repo,
1881 struct got_object_id *commit_id, const char *path)
1882{
1883 const struct got_error *err = NULL((void *)0);
1884 struct got_commit_object *commit = NULL((void *)0);
1885 struct got_tree_object *tree = NULL((void *)0);
1886 struct got_tree_entry *te = NULL((void *)0);
1887 const char *seg, *s;
1888 size_t seglen;
1889
1890 *id = NULL((void *)0);
1891
1892 err = got_object_open_as_commit(&commit, repo, commit_id);
1893 if (err)
1894 goto done;
1895
1896 /* Handle opening of root of commit's tree. */
1897 if (got_path_is_root_dir(path)) {
1898 *id = got_object_id_dup(commit->tree_id);
1899 if (*id == NULL((void *)0))
1900 err = got_error_from_errno("got_object_id_dup");
1901 goto done;
1902 }
1903
1904 err = got_object_open_as_tree(&tree, repo, commit->tree_id);
1905 if (err)
1906 goto done;
1907
1908 s = path;
1909 while (s[0] == '/')
1910 s++;
1911 seg = s;
1912 seglen = 0;
1913 while (*s) {
1914 struct got_tree_object *next_tree;
1915
1916 if (*s != '/') {
1917 s++;
1918 seglen++;
1919 if (*s)
1920 continue;
1921 }
1922
1923 te = find_entry_by_name(tree, seg, seglen);
1924 if (te == NULL((void *)0)) {
1925 err = got_error_path(path, GOT_ERR_NO_TREE_ENTRY50);
1926 goto done;
1927 }
1928
1929 if (*s == '\0')
1930 break;
1931
1932 seg = s + 1;
1933 seglen = 0;
1934 s++;
1935 if (*s) {
1936 err = got_object_open_as_tree(&next_tree, repo,
1937 &te->id);
1938 te = NULL((void *)0);
1939 if (err)
1940 goto done;
1941 got_object_tree_close(tree);
1942 tree = next_tree;
1943 }
1944 }
1945
1946 if (te) {
1947 *id = got_object_id_dup(&te->id);
1948 if (*id == NULL((void *)0))
1949 return got_error_from_errno("got_object_id_dup");
1950 } else
1951 err = got_error_path(path, GOT_ERR_NO_TREE_ENTRY50);
1952done:
1953 if (commit)
1954 got_object_commit_close(commit);
1955 if (tree)
1956 got_object_tree_close(tree);
1957 return err;
1958}
1959
1960/*
1961 * Normalize file mode bits to avoid false positive tree entry differences
1962 * in case tree entries have unexpected mode bits set.
1963 */
1964static mode_t
1965normalize_mode_for_comparison(mode_t mode)
1966{
1967 /*
1968 * For directories, the only relevant bit is the IFDIR bit.
1969 * This allows us to detect paths changing from a directory
1970 * to a file and vice versa.
1971 */
1972 if (S_ISDIR(mode)((mode & 0170000) == 0040000))
1973 return mode & S_IFDIR0040000;
1974
1975 /*
1976 * For symlinks, the only relevant bit is the IFLNK bit.
1977 * This allows us to detect paths changing from a symlinks
1978 * to a file or directory and vice versa.
1979 */
1980 if (S_ISLNK(mode)((mode & 0170000) == 0120000))
1981 return mode & S_IFLNK0120000;
1982
1983 /* For files, the only change we care about is the executable bit. */
1984 return mode & S_IXUSR0000100;
1985}
1986
1987const struct got_error *
1988got_object_tree_path_changed(int *changed,
1989 struct got_tree_object *tree01, struct got_tree_object *tree02,
1990 const char *path, struct got_repository *repo)
1991{
1992 const struct got_error *err = NULL((void *)0);
1993 struct got_tree_object *tree1 = NULL((void *)0), *tree2 = NULL((void *)0);
1994 struct got_tree_entry *te1 = NULL((void *)0), *te2 = NULL((void *)0);
1995 const char *seg, *s;
1996 size_t seglen;
1997
1998 *changed = 0;
1999
2000 /* We not do support comparing the root path. */
2001 if (got_path_is_root_dir(path))
2002 return got_error_path(path, GOT_ERR_BAD_PATH4);
2003
2004 tree1 = tree01;
2005 tree2 = tree02;
2006 s = path;
2007 while (*s == '/')
2008 s++;
2009 seg = s;
2010 seglen = 0;
2011 while (*s) {
2012 struct got_tree_object *next_tree1, *next_tree2;
2013 mode_t mode1, mode2;
2014
2015 if (*s != '/') {
2016 s++;
2017 seglen++;
2018 if (*s)
2019 continue;
2020 }
2021
2022 te1 = find_entry_by_name(tree1, seg, seglen);
2023 if (te1 == NULL((void *)0)) {
2024 err = got_error(GOT_ERR_NO_OBJ17);
2025 goto done;
2026 }
2027
2028 if (tree2)
2029 te2 = find_entry_by_name(tree2, seg, seglen);
2030
2031 if (te2) {
2032 mode1 = normalize_mode_for_comparison(te1->mode);
2033 mode2 = normalize_mode_for_comparison(te2->mode);
2034 if (mode1 != mode2) {
2035 *changed = 1;
2036 goto done;
2037 }
2038
2039 if (got_object_id_cmp(&te1->id, &te2->id) == 0) {
2040 *changed = 0;
2041 goto done;
2042 }
2043 }
2044
2045 if (*s == '\0') { /* final path element */
2046 *changed = 1;
2047 goto done;
2048 }
2049
2050 seg = s + 1;
2051 s++;
2052 seglen = 0;
2053 if (*s) {
2054 err = got_object_open_as_tree(&next_tree1, repo,
2055 &te1->id);
2056 te1 = NULL((void *)0);
2057 if (err)
2058 goto done;
2059 if (tree1 != tree01)
2060 got_object_tree_close(tree1);
2061 tree1 = next_tree1;
2062
2063 if (te2) {
2064 err = got_object_open_as_tree(&next_tree2, repo,
2065 &te2->id);
2066 te2 = NULL((void *)0);
2067 if (err)
2068 goto done;
2069 if (tree2 != tree02)
2070 got_object_tree_close(tree2);
2071 tree2 = next_tree2;
2072 } else if (tree2) {
2073 if (tree2 != tree02)
2074 got_object_tree_close(tree2);
2075 tree2 = NULL((void *)0);
2076 }
2077 }
2078 }
2079done:
2080 if (tree1 && tree1 != tree01)
2081 got_object_tree_close(tree1);
2082 if (tree2 && tree2 != tree02)
2083 got_object_tree_close(tree2);
2084 return err;
2085}
2086
2087const struct got_error *
2088got_object_tree_entry_dup(struct got_tree_entry **new_te,
2089 struct got_tree_entry *te)
2090{
2091 const struct got_error *err = NULL((void *)0);
2092
2093 *new_te = calloc(1, sizeof(**new_te));
2094 if (*new_te == NULL((void *)0))
2095 return got_error_from_errno("calloc");
2096
2097 (*new_te)->mode = te->mode;
2098 memcpy((*new_te)->name, te->name, sizeof((*new_te)->name));
2099 memcpy(&(*new_te)->id, &te->id, sizeof((*new_te)->id));
2100 return err;
2101}
2102
2103int
2104got_object_tree_entry_is_submodule(struct got_tree_entry *te)
2105{
2106 return (te->mode & S_IFMT0170000) == (S_IFDIR0040000 | S_IFLNK0120000);
2107}
2108
2109int
2110got_object_tree_entry_is_symlink(struct got_tree_entry *te)
2111{
2112 /* S_IFDIR check avoids confusing symlinks with submodules. */
2113 return ((te->mode & (S_IFDIR0040000 | S_IFLNK0120000)) == S_IFLNK0120000);
2114}
2115
2116static const struct got_error *
2117resolve_symlink(char **link_target, const char *path,
2118 struct got_object_id *commit_id, struct got_repository *repo)
2119{
2120 const struct got_error *err = NULL((void *)0);
2121 char buf[PATH_MAX1024];
2122 char *name, *parent_path = NULL((void *)0);
2123 struct got_object_id *tree_obj_id = NULL((void *)0);
2124 struct got_tree_object *tree = NULL((void *)0);
2125 struct got_tree_entry *te = NULL((void *)0);
2126
2127 *link_target = NULL((void *)0);
2128
2129 if (strlcpy(buf, path, sizeof(buf)) >= sizeof(buf))
2130 return got_error(GOT_ERR_NO_SPACE9);
2131
2132 name = basename(buf);
2133 if (name == NULL((void *)0))
2134 return got_error_from_errno2("basename", path);
2135
2136 err = got_path_dirname(&parent_path, path);
2137 if (err)
2138 return err;
2139
2140 err = got_object_id_by_path(&tree_obj_id, repo, commit_id,
2141 parent_path);
2142 if (err) {
2143 if (err->code == GOT_ERR_NO_TREE_ENTRY50) {
2144 /* Display the complete path in error message. */
2145 err = got_error_path(path, err->code);
2146 }
2147 goto done;
2148 }
2149
2150 err = got_object_open_as_tree(&tree, repo, tree_obj_id);
2151 if (err)
2152 goto done;
2153
2154 te = got_object_tree_find_entry(tree, name);
2155 if (te == NULL((void *)0)) {
2156 err = got_error_path(path, GOT_ERR_NO_TREE_ENTRY50);
2157 goto done;
2158 }
2159
2160 if (got_object_tree_entry_is_symlink(te)) {
2161 err = got_tree_entry_get_symlink_target(link_target, te, repo);
2162 if (err)
2163 goto done;
2164 if (!got_path_is_absolute(*link_target)) {
2165 char *abspath;
2166 if (asprintf(&abspath, "%s/%s", parent_path,
2167 *link_target) == -1) {
2168 err = got_error_from_errno("asprintf");
2169 goto done;
2170 }
2171 free(*link_target);
2172 *link_target = malloc(PATH_MAX1024);
2173 if (*link_target == NULL((void *)0)) {
2174 err = got_error_from_errno("malloc");
2175 goto done;
2176 }
2177 err = got_canonpath(abspath, *link_target, PATH_MAX1024);
2178 free(abspath);
2179 if (err)
2180 goto done;
2181 }
2182 }
2183done:
2184 free(tree_obj_id);
2185 if (tree)
2186 got_object_tree_close(tree);
2187 if (err) {
2188 free(*link_target);
2189 *link_target = NULL((void *)0);
2190 }
2191 return err;
2192}
2193
2194const struct got_error *
2195got_object_resolve_symlinks(char **link_target, const char *path,
2196 struct got_object_id *commit_id, struct got_repository *repo)
2197{
2198 const struct got_error *err = NULL((void *)0);
2199 char *next_target = NULL((void *)0);
2200 int max_recursion = 40; /* matches Git */
2201
2202 *link_target = NULL((void *)0);
2203
2204 do {
2205 err = resolve_symlink(&next_target,
2206 *link_target ? *link_target : path, commit_id, repo);
2207 if (err)
2208 break;
2209 if (next_target) {
2210 free(*link_target);
2211 if (--max_recursion == 0) {
2212 err = got_error_path(path, GOT_ERR_RECURSION32);
2213 *link_target = NULL((void *)0);
2214 break;
2215 }
2216 *link_target = next_target;
2217 }
2218 } while (next_target);
2219
2220 return err;
2221}
2222
2223const struct got_error *
2224got_traverse_packed_commits(struct got_object_id_queue *traversed_commits,
2225 struct got_object_id *commit_id, const char *path,
2226 struct got_repository *repo)
2227{
2228 const struct got_error *err = NULL((void *)0);
2229 struct got_pack *pack = NULL((void *)0);
2230 struct got_packidx *packidx = NULL((void *)0);
2231 char *path_packfile = NULL((void *)0);
2232 struct got_commit_object *changed_commit = NULL((void *)0);
2233 struct got_object_id *changed_commit_id = NULL((void *)0);
2234 int idx;
2235
2236 err = got_repo_search_packidx(&packidx, &idx, repo, commit_id);
2237 if (err) {
2238 if (err->code != GOT_ERR_NO_OBJ17)
2239 return err;
2240 return NULL((void *)0);
2241 }
2242
2243 err = got_packidx_get_packfile_path(&path_packfile, packidx);
2244 if (err)
2245 return err;
2246
2247 pack = got_repo_get_cached_pack(repo, path_packfile);
2248 if (pack == NULL((void *)0)) {
2249 err = got_repo_cache_pack(&pack, repo, path_packfile, packidx);
2250 if (err)
2251 goto done;
2252 }
2253
2254 if (pack->privsep_child == NULL((void *)0)) {
2255 err = start_pack_privsep_child(pack, packidx);
2256 if (err)
2257 goto done;
2258 }
2259
2260 err = got_privsep_send_commit_traversal_request(
2261 pack->privsep_child->ibuf, commit_id, idx, path);
2262 if (err)
2263 goto done;
2264
2265 err = got_privsep_recv_traversed_commits(&changed_commit,
2266 &changed_commit_id, traversed_commits, pack->privsep_child->ibuf);
2267 if (err)
2268 goto done;
2269
2270 if (changed_commit) {
2271 /*
2272 * Cache the commit in which the path was changed.
2273 * This commit might be opened again soon.
2274 */
2275 changed_commit->refcnt++;
2276 err = got_repo_cache_commit(repo, changed_commit_id,
2277 changed_commit);
2278 got_object_commit_close(changed_commit);
2279 }
2280done:
2281 free(path_packfile);
2282 free(changed_commit_id);
2283 return err;
2284}