Blob


1 /*
2 * Copyright (c) 2018 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 */
17 #include <sys/types.h>
18 #include <sys/queue.h>
19 #include <sys/uio.h>
20 #include <sys/time.h>
21 #include <sys/limits.h>
22 #include <sys/syslimits.h>
24 #include <stdint.h>
25 #include <imsg.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <sha1.h>
30 #include <zlib.h>
32 #include "got_error.h"
33 #include "got_object.h"
35 #include "got_lib_delta.h"
36 #include "got_lib_inflate.h"
37 #include "got_lib_object.h"
38 #include "got_lib_object_parse.h"
39 #include "got_lib_privsep.h"
41 static const struct got_error *
42 read_commit_object(struct got_commit_object **commit, struct got_object *obj,
43 FILE *f)
44 {
45 const struct got_error *err = NULL;
46 size_t len;
47 uint8_t *p;
49 if (obj->flags & GOT_OBJ_FLAG_PACKED)
50 err = got_read_file_to_mem(&p, &len, f);
51 else
52 err = got_inflate_to_mem(&p, &len, f);
53 if (err)
54 return err;
56 if (len < obj->hdrlen + obj->size) {
57 err = got_error(GOT_ERR_BAD_OBJ_DATA);
58 goto done;
59 }
61 /* Skip object header. */
62 len -= obj->hdrlen;
63 err = got_object_parse_commit(commit, p + obj->hdrlen, len);
64 free(p);
65 done:
66 return err;
67 }
69 int
70 main(int argc, char *argv[])
71 {
72 const struct got_error *err = NULL;
73 struct got_commit_object *commit = NULL;
74 struct imsgbuf ibuf;
75 size_t datalen;
77 imsg_init(&ibuf, GOT_IMSG_FD_CHILD);
79 #ifndef PROFILE
80 /* revoke access to most system calls */
81 if (pledge("stdio recvfd", NULL) == -1) {
82 err = got_error_from_errno();
83 got_privsep_send_error(&ibuf, err);
84 return 1;
85 }
86 #endif
88 while (1) {
89 struct imsg imsg;
90 struct got_imsg_object iobj;
91 FILE *f = NULL;
92 struct got_object *obj = NULL;
94 err = got_privsep_recv_imsg(&imsg, &ibuf, 0);
95 if (err) {
96 if (err->code == GOT_ERR_PRIVSEP_PIPE)
97 err = NULL;
98 break;
99 }
101 if (imsg.hdr.type == GOT_IMSG_STOP)
102 break;
104 if (imsg.hdr.type != GOT_IMSG_COMMIT_REQUEST) {
105 err = got_error(GOT_ERR_PRIVSEP_MSG);
106 goto done;
109 datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
110 if (datalen != sizeof(iobj)) {
111 err = got_error(GOT_ERR_PRIVSEP_LEN);
112 goto done;
115 memcpy(&iobj, imsg.data, sizeof(iobj));
116 if (iobj.type != GOT_OBJ_TYPE_COMMIT) {
117 err = got_error(GOT_ERR_OBJ_TYPE);
118 goto done;
121 if (imsg.fd == -1) {
122 err = got_error(GOT_ERR_PRIVSEP_NO_FD);
123 goto done;
126 obj = calloc(1, sizeof(*obj));
127 if (obj == NULL) {
128 err = got_error_from_errno();
129 goto done;
131 obj->type = iobj.type;
132 obj->hdrlen = iobj.hdrlen;
133 obj->size = iobj.size;
135 /* Always assume file offset zero. */
136 f = fdopen(imsg.fd, "rb");
137 if (f == NULL) {
138 err = got_error_from_errno();
139 goto done;
142 err = read_commit_object(&commit, obj, f);
143 if (err)
144 goto done;
146 err = got_privsep_send_commit(&ibuf, commit);
147 done:
148 if (f)
149 fclose(f);
150 else if (imsg.fd != -1)
151 close(imsg.fd);
152 imsg_free(&imsg);
153 if (obj)
154 got_object_close(obj);
155 if (err) {
156 if (err->code == GOT_ERR_PRIVSEP_PIPE)
157 err = NULL;
158 else
159 got_privsep_send_error(&ibuf, err);
160 break;
164 imsg_clear(&ibuf);
165 if (err)
166 fprintf(stderr, "%s: %s\n", getprogname(), err->msg);
167 close(GOT_IMSG_FD_CHILD);
168 return err ? 1 : 0;