Blame


1 44edeea7 2019-04-11 stsp /*
2 44edeea7 2019-04-11 stsp * Copyright (c) 2019 Stefan Sperling <stsp@openbsd.org>
3 44edeea7 2019-04-11 stsp *
4 44edeea7 2019-04-11 stsp * Permission to use, copy, modify, and distribute this software for any
5 44edeea7 2019-04-11 stsp * purpose with or without fee is hereby granted, provided that the above
6 44edeea7 2019-04-11 stsp * copyright notice and this permission notice appear in all copies.
7 44edeea7 2019-04-11 stsp *
8 44edeea7 2019-04-11 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 44edeea7 2019-04-11 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 44edeea7 2019-04-11 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 44edeea7 2019-04-11 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 44edeea7 2019-04-11 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 44edeea7 2019-04-11 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 44edeea7 2019-04-11 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 44edeea7 2019-04-11 stsp */
16 44edeea7 2019-04-11 stsp
17 44edeea7 2019-04-11 stsp #include <sys/types.h>
18 44edeea7 2019-04-11 stsp #include <sys/stat.h>
19 44edeea7 2019-04-11 stsp #include <sys/queue.h>
20 44edeea7 2019-04-11 stsp
21 787c8eb6 2019-07-11 stsp #include <ctype.h>
22 51130c02 2019-04-13 stsp #include <errno.h>
23 44edeea7 2019-04-11 stsp #include <fcntl.h>
24 56e0773d 2019-11-28 stsp #include <limits.h>
25 44edeea7 2019-04-11 stsp #include <stdio.h>
26 44edeea7 2019-04-11 stsp #include <stdlib.h>
27 44edeea7 2019-04-11 stsp #include <string.h>
28 44edeea7 2019-04-11 stsp #include <stdint.h>
29 44edeea7 2019-04-11 stsp #include <sha1.h>
30 a14a8cf6 2019-04-11 stsp #include <unistd.h>
31 44edeea7 2019-04-11 stsp #include <zlib.h>
32 44edeea7 2019-04-11 stsp
33 44edeea7 2019-04-11 stsp #include "got_error.h"
34 44edeea7 2019-04-11 stsp #include "got_object.h"
35 44edeea7 2019-04-11 stsp #include "got_repository.h"
36 44edeea7 2019-04-11 stsp #include "got_opentemp.h"
37 324d37e7 2019-05-11 stsp #include "got_path.h"
38 44edeea7 2019-04-11 stsp
39 44edeea7 2019-04-11 stsp #include "got_lib_sha1.h"
40 44edeea7 2019-04-11 stsp #include "got_lib_deflate.h"
41 44edeea7 2019-04-11 stsp #include "got_lib_delta.h"
42 44edeea7 2019-04-11 stsp #include "got_lib_object.h"
43 6af1ccbd 2019-08-16 stsp #include "got_lib_object_parse.h"
44 44edeea7 2019-04-11 stsp #include "got_lib_lockfile.h"
45 44edeea7 2019-04-11 stsp
46 44edeea7 2019-04-11 stsp #ifndef nitems
47 44edeea7 2019-04-11 stsp #define nitems(_a) (sizeof(_a) / sizeof((_a)[0]))
48 44edeea7 2019-04-11 stsp #endif
49 44edeea7 2019-04-11 stsp
50 ac1c5662 2019-04-13 stsp static const struct got_error *
51 76f564d5 2019-04-14 stsp create_object_file(struct got_object_id *id, FILE *content,
52 ac1c5662 2019-04-13 stsp struct got_repository *repo)
53 ac1c5662 2019-04-13 stsp {
54 ac1c5662 2019-04-13 stsp const struct got_error *err = NULL, *unlock_err = NULL;
55 c6f826b4 2019-04-13 stsp char *objpath = NULL, *tmppath = NULL;
56 c6f826b4 2019-04-13 stsp FILE *tmpfile = NULL;
57 ac1c5662 2019-04-13 stsp struct got_lockfile *lf = NULL;
58 c6f826b4 2019-04-13 stsp size_t tmplen = 0;
59 ac1c5662 2019-04-13 stsp
60 ac1c5662 2019-04-13 stsp err = got_object_get_path(&objpath, id, repo);
61 ac1c5662 2019-04-13 stsp if (err)
62 ac1c5662 2019-04-13 stsp return err;
63 ac1c5662 2019-04-13 stsp
64 c6f826b4 2019-04-13 stsp err = got_opentemp_named(&tmppath, &tmpfile, objpath);
65 ac1c5662 2019-04-13 stsp if (err) {
66 ac1c5662 2019-04-13 stsp char *parent_path;
67 ac1c5662 2019-04-13 stsp if (!(err->code == GOT_ERR_ERRNO && errno == ENOENT))
68 ac1c5662 2019-04-13 stsp goto done;
69 ac1c5662 2019-04-13 stsp err = got_path_dirname(&parent_path, objpath);
70 ac1c5662 2019-04-13 stsp if (err)
71 ac1c5662 2019-04-13 stsp goto done;
72 ac1c5662 2019-04-13 stsp err = got_path_mkdir(parent_path);
73 ac1c5662 2019-04-13 stsp free(parent_path);
74 ac1c5662 2019-04-13 stsp if (err)
75 ac1c5662 2019-04-13 stsp goto done;
76 c6f826b4 2019-04-13 stsp err = got_opentemp_named(&tmppath, &tmpfile, objpath);
77 ac1c5662 2019-04-13 stsp if (err)
78 ac1c5662 2019-04-13 stsp goto done;
79 3818e3c4 2020-11-01 naddy }
80 3818e3c4 2020-11-01 naddy
81 3818e3c4 2020-11-01 naddy if (fchmod(fileno(tmpfile), GOT_DEFAULT_FILE_MODE) != 0) {
82 3818e3c4 2020-11-01 naddy err = got_error_from_errno2("fchmod", tmppath);
83 3818e3c4 2020-11-01 naddy goto done;
84 ac1c5662 2019-04-13 stsp }
85 ac1c5662 2019-04-13 stsp
86 91b40e30 2021-05-21 stsp err = got_deflate_to_file(&tmplen, content, tmpfile, NULL);
87 ac1c5662 2019-04-13 stsp if (err)
88 ac1c5662 2019-04-13 stsp goto done;
89 ac1c5662 2019-04-13 stsp
90 5345b4c7 2021-07-06 stsp err = got_lockfile_lock(&lf, objpath, -1);
91 ac1c5662 2019-04-13 stsp if (err)
92 ac1c5662 2019-04-13 stsp goto done;
93 ac1c5662 2019-04-13 stsp
94 c6f826b4 2019-04-13 stsp if (rename(tmppath, objpath) != 0) {
95 638f9024 2019-05-13 stsp err = got_error_from_errno3("rename", tmppath, objpath);
96 ac1c5662 2019-04-13 stsp goto done;
97 ac1c5662 2019-04-13 stsp }
98 c6f826b4 2019-04-13 stsp free(tmppath);
99 c6f826b4 2019-04-13 stsp tmppath = NULL;
100 ac1c5662 2019-04-13 stsp done:
101 ac1c5662 2019-04-13 stsp free(objpath);
102 c6f826b4 2019-04-13 stsp if (tmppath) {
103 c6f826b4 2019-04-13 stsp if (unlink(tmppath) != 0 && err == NULL)
104 638f9024 2019-05-13 stsp err = got_error_from_errno2("unlink", tmppath);
105 c6f826b4 2019-04-13 stsp free(tmppath);
106 ac1c5662 2019-04-13 stsp }
107 56b63ca4 2021-01-22 stsp if (tmpfile && fclose(tmpfile) == EOF && err == NULL)
108 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
109 ac1c5662 2019-04-13 stsp if (lf)
110 5345b4c7 2021-07-06 stsp unlock_err = got_lockfile_unlock(lf, -1);
111 ac1c5662 2019-04-13 stsp return err ? err : unlock_err;
112 ac1c5662 2019-04-13 stsp }
113 ac1c5662 2019-04-13 stsp
114 44edeea7 2019-04-11 stsp const struct got_error *
115 0a22ca1a 2020-09-23 stsp got_object_blob_file_create(struct got_object_id **id, FILE **blobfile,
116 0a22ca1a 2020-09-23 stsp const char *ondisk_path)
117 44edeea7 2019-04-11 stsp {
118 ac1c5662 2019-04-13 stsp const struct got_error *err = NULL;
119 ac1c5662 2019-04-13 stsp char *header = NULL;
120 44edeea7 2019-04-11 stsp int fd = -1;
121 44edeea7 2019-04-11 stsp struct stat sb;
122 44edeea7 2019-04-11 stsp SHA1_CTX sha1_ctx;
123 ac1c5662 2019-04-13 stsp size_t headerlen = 0, n;
124 44edeea7 2019-04-11 stsp
125 44edeea7 2019-04-11 stsp *id = NULL;
126 0a22ca1a 2020-09-23 stsp *blobfile = NULL;
127 44edeea7 2019-04-11 stsp
128 44edeea7 2019-04-11 stsp SHA1Init(&sha1_ctx);
129 44edeea7 2019-04-11 stsp
130 8bd0cdad 2021-12-31 stsp fd = open(ondisk_path, O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
131 3d9a4ec4 2020-07-23 stsp if (fd == -1) {
132 5c02d2a5 2021-09-26 stsp if (!got_err_open_nofollow_on_symlink())
133 3d9a4ec4 2020-07-23 stsp return got_error_from_errno2("open", ondisk_path);
134 44edeea7 2019-04-11 stsp
135 3d9a4ec4 2020-07-23 stsp if (lstat(ondisk_path, &sb) == -1) {
136 3d9a4ec4 2020-07-23 stsp err = got_error_from_errno2("lstat", ondisk_path);
137 3d9a4ec4 2020-07-23 stsp goto done;
138 3d9a4ec4 2020-07-23 stsp }
139 3d9a4ec4 2020-07-23 stsp } else if (fstat(fd, &sb) == -1) {
140 638f9024 2019-05-13 stsp err = got_error_from_errno2("fstat", ondisk_path);
141 44edeea7 2019-04-11 stsp goto done;
142 44edeea7 2019-04-11 stsp }
143 44edeea7 2019-04-11 stsp
144 44edeea7 2019-04-11 stsp if (asprintf(&header, "%s %lld", GOT_OBJ_LABEL_BLOB,
145 1367695b 2020-09-26 naddy (long long)sb.st_size) == -1) {
146 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
147 44edeea7 2019-04-11 stsp goto done;
148 44edeea7 2019-04-11 stsp }
149 ffb286fd 2019-04-11 stsp headerlen = strlen(header) + 1;
150 ffb286fd 2019-04-11 stsp SHA1Update(&sha1_ctx, header, headerlen);
151 44edeea7 2019-04-11 stsp
152 0a22ca1a 2020-09-23 stsp *blobfile = got_opentemp();
153 0a22ca1a 2020-09-23 stsp if (*blobfile == NULL) {
154 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
155 44edeea7 2019-04-11 stsp goto done;
156 81984c6b 2019-04-11 stsp }
157 44edeea7 2019-04-11 stsp
158 0a22ca1a 2020-09-23 stsp n = fwrite(header, 1, headerlen, *blobfile);
159 ac1c5662 2019-04-13 stsp if (n != headerlen) {
160 0a22ca1a 2020-09-23 stsp err = got_ferror(*blobfile, GOT_ERR_IO);
161 f16c2465 2019-04-11 stsp goto done;
162 f16c2465 2019-04-11 stsp }
163 656b1f76 2019-05-11 jcs for (;;) {
164 2f63b34c 2020-07-23 stsp char buf[PATH_MAX * 8];
165 a14a8cf6 2019-04-11 stsp ssize_t inlen;
166 44edeea7 2019-04-11 stsp
167 3d9a4ec4 2020-07-23 stsp if (S_ISLNK(sb.st_mode)) {
168 3d9a4ec4 2020-07-23 stsp inlen = readlink(ondisk_path, buf, sizeof(buf));
169 3d9a4ec4 2020-07-23 stsp if (inlen == -1) {
170 3d9a4ec4 2020-07-23 stsp err = got_error_from_errno("readlink");
171 3d9a4ec4 2020-07-23 stsp goto done;
172 3d9a4ec4 2020-07-23 stsp }
173 3d9a4ec4 2020-07-23 stsp } else {
174 3d9a4ec4 2020-07-23 stsp inlen = read(fd, buf, sizeof(buf));
175 3d9a4ec4 2020-07-23 stsp if (inlen == -1) {
176 3d9a4ec4 2020-07-23 stsp err = got_error_from_errno("read");
177 3d9a4ec4 2020-07-23 stsp goto done;
178 3d9a4ec4 2020-07-23 stsp }
179 44edeea7 2019-04-11 stsp }
180 a14a8cf6 2019-04-11 stsp if (inlen == 0)
181 a14a8cf6 2019-04-11 stsp break; /* EOF */
182 44edeea7 2019-04-11 stsp SHA1Update(&sha1_ctx, buf, inlen);
183 0a22ca1a 2020-09-23 stsp n = fwrite(buf, 1, inlen, *blobfile);
184 ac1c5662 2019-04-13 stsp if (n != inlen) {
185 0a22ca1a 2020-09-23 stsp err = got_ferror(*blobfile, GOT_ERR_IO);
186 44edeea7 2019-04-11 stsp goto done;
187 44edeea7 2019-04-11 stsp }
188 3d9a4ec4 2020-07-23 stsp if (S_ISLNK(sb.st_mode))
189 3d9a4ec4 2020-07-23 stsp break;
190 44edeea7 2019-04-11 stsp }
191 44edeea7 2019-04-11 stsp
192 44edeea7 2019-04-11 stsp *id = malloc(sizeof(**id));
193 44edeea7 2019-04-11 stsp if (*id == NULL) {
194 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
195 44edeea7 2019-04-11 stsp goto done;
196 44edeea7 2019-04-11 stsp }
197 4be2a0b4 2019-04-14 stsp SHA1Final((*id)->sha1, &sha1_ctx);
198 44edeea7 2019-04-11 stsp
199 0a22ca1a 2020-09-23 stsp if (fflush(*blobfile) != 0) {
200 638f9024 2019-05-13 stsp err = got_error_from_errno("fflush");
201 44edeea7 2019-04-11 stsp goto done;
202 44edeea7 2019-04-11 stsp }
203 0a22ca1a 2020-09-23 stsp rewind(*blobfile);
204 44edeea7 2019-04-11 stsp done:
205 44edeea7 2019-04-11 stsp free(header);
206 08578a35 2021-01-22 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
207 638f9024 2019-05-13 stsp err = got_error_from_errno("close");
208 0a22ca1a 2020-09-23 stsp if (err) {
209 0a22ca1a 2020-09-23 stsp free(*id);
210 0a22ca1a 2020-09-23 stsp *id = NULL;
211 0a22ca1a 2020-09-23 stsp if (*blobfile) {
212 0a22ca1a 2020-09-23 stsp fclose(*blobfile);
213 0a22ca1a 2020-09-23 stsp *blobfile = NULL;
214 0a22ca1a 2020-09-23 stsp }
215 0a22ca1a 2020-09-23 stsp }
216 0a22ca1a 2020-09-23 stsp return err;
217 0a22ca1a 2020-09-23 stsp }
218 0a22ca1a 2020-09-23 stsp
219 0a22ca1a 2020-09-23 stsp const struct got_error *
220 0a22ca1a 2020-09-23 stsp got_object_blob_create(struct got_object_id **id, const char *ondisk_path,
221 0a22ca1a 2020-09-23 stsp struct got_repository *repo)
222 0a22ca1a 2020-09-23 stsp {
223 0a22ca1a 2020-09-23 stsp const struct got_error *err = NULL;
224 0a22ca1a 2020-09-23 stsp FILE *blobfile = NULL;
225 0a22ca1a 2020-09-23 stsp
226 0a22ca1a 2020-09-23 stsp err = got_object_blob_file_create(id, &blobfile, ondisk_path);
227 0a22ca1a 2020-09-23 stsp if (err)
228 0a22ca1a 2020-09-23 stsp return err;
229 0a22ca1a 2020-09-23 stsp
230 0a22ca1a 2020-09-23 stsp err = create_object_file(*id, blobfile, repo);
231 0a22ca1a 2020-09-23 stsp if (fclose(blobfile) == EOF && err == NULL)
232 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
233 44edeea7 2019-04-11 stsp if (err) {
234 44edeea7 2019-04-11 stsp free(*id);
235 44edeea7 2019-04-11 stsp *id = NULL;
236 44edeea7 2019-04-11 stsp }
237 ac1c5662 2019-04-13 stsp return err;
238 44edeea7 2019-04-11 stsp }
239 f91abf81 2019-04-14 stsp
240 f91abf81 2019-04-14 stsp static const struct got_error *
241 7aadece8 2020-05-17 stsp te_mode2str(char *buf, size_t len, struct got_tree_entry *te)
242 f91abf81 2019-04-14 stsp {
243 f91abf81 2019-04-14 stsp int ret;
244 f7b97ccb 2020-04-14 stsp mode_t mode;
245 f7b97ccb 2020-04-14 stsp
246 f7b97ccb 2020-04-14 stsp /*
247 f7b97ccb 2020-04-14 stsp * Some Git implementations are picky about modes seen in tree entries.
248 f7b97ccb 2020-04-14 stsp * For best compatibility we normalize the file/directory mode here.
249 f7b97ccb 2020-04-14 stsp */
250 7aadece8 2020-05-17 stsp if (S_ISREG(te->mode)) {
251 f7b97ccb 2020-04-14 stsp mode = GOT_DEFAULT_FILE_MODE;
252 7aadece8 2020-05-17 stsp if (te->mode & (S_IXUSR | S_IXGRP | S_IXOTH))
253 aaffadfc 2020-05-05 stsp mode |= S_IXUSR | S_IXGRP | S_IXOTH;
254 7aadece8 2020-05-17 stsp } else if (got_object_tree_entry_is_submodule(te))
255 7aadece8 2020-05-17 stsp mode = S_IFDIR | S_IFLNK;
256 3d9a4ec4 2020-07-23 stsp else if (S_ISLNK(te->mode))
257 3d9a4ec4 2020-07-23 stsp mode = S_IFLNK; /* Git leaves all the other bits unset. */
258 7aadece8 2020-05-17 stsp else if (S_ISDIR(te->mode))
259 aaffadfc 2020-05-05 stsp mode = S_IFDIR; /* Git leaves all the other bits unset. */
260 f7b97ccb 2020-04-14 stsp else
261 f7b97ccb 2020-04-14 stsp return got_error(GOT_ERR_BAD_FILETYPE);
262 f7b97ccb 2020-04-14 stsp
263 f91abf81 2019-04-14 stsp ret = snprintf(buf, len, "%o ", mode);
264 f91abf81 2019-04-14 stsp if (ret == -1 || ret >= len)
265 f91abf81 2019-04-14 stsp return got_error(GOT_ERR_NO_SPACE);
266 f91abf81 2019-04-14 stsp return NULL;
267 6af1ccbd 2019-08-16 stsp }
268 6af1ccbd 2019-08-16 stsp
269 6af1ccbd 2019-08-16 stsp /*
270 6af1ccbd 2019-08-16 stsp * Git expects directory tree entries to be sorted with an imaginary slash
271 6af1ccbd 2019-08-16 stsp * appended to their name, and will break otherwise. Let's be nice.
272 56e0773d 2019-11-28 stsp * This function is intended to be used with mergesort(3) to sort an
273 56e0773d 2019-11-28 stsp * array of pointers to struct got_tree_entry objects.
274 6af1ccbd 2019-08-16 stsp */
275 56e0773d 2019-11-28 stsp static int
276 56e0773d 2019-11-28 stsp sort_tree_entries_the_way_git_likes_it(const void *arg1, const void *arg2)
277 6af1ccbd 2019-08-16 stsp {
278 56e0773d 2019-11-28 stsp struct got_tree_entry * const *te1 = arg1;
279 56e0773d 2019-11-28 stsp struct got_tree_entry * const *te2 = arg2;
280 2c98ee28 2019-11-29 stsp char name1[NAME_MAX + 2];
281 2c98ee28 2019-11-29 stsp char name2[NAME_MAX + 2];
282 6af1ccbd 2019-08-16 stsp
283 56e0773d 2019-11-28 stsp strlcpy(name1, (*te1)->name, sizeof(name1));
284 56e0773d 2019-11-28 stsp strlcpy(name2, (*te2)->name, sizeof(name2));
285 56e0773d 2019-11-28 stsp if (S_ISDIR((*te1)->mode))
286 56e0773d 2019-11-28 stsp strlcat(name1, "/", sizeof(name1));
287 56e0773d 2019-11-28 stsp if (S_ISDIR((*te2)->mode))
288 56e0773d 2019-11-28 stsp strlcat(name2, "/", sizeof(name2));
289 56e0773d 2019-11-28 stsp return strcmp(name1, name2);
290 f91abf81 2019-04-14 stsp }
291 f91abf81 2019-04-14 stsp
292 f91abf81 2019-04-14 stsp const struct got_error *
293 f91abf81 2019-04-14 stsp got_object_tree_create(struct got_object_id **id,
294 56e0773d 2019-11-28 stsp struct got_pathlist_head *paths, int nentries, struct got_repository *repo)
295 f91abf81 2019-04-14 stsp {
296 f91abf81 2019-04-14 stsp const struct got_error *err = NULL;
297 f91abf81 2019-04-14 stsp char modebuf[sizeof("100644 ")];
298 f91abf81 2019-04-14 stsp SHA1_CTX sha1_ctx;
299 f91abf81 2019-04-14 stsp char *header = NULL;
300 f91abf81 2019-04-14 stsp size_t headerlen, len = 0, n;
301 f91abf81 2019-04-14 stsp FILE *treefile = NULL;
302 56e0773d 2019-11-28 stsp struct got_pathlist_entry *pe;
303 56e0773d 2019-11-28 stsp struct got_tree_entry **sorted_entries;
304 f91abf81 2019-04-14 stsp struct got_tree_entry *te;
305 56e0773d 2019-11-28 stsp int i;
306 f91abf81 2019-04-14 stsp
307 f91abf81 2019-04-14 stsp *id = NULL;
308 51c32763 2019-05-09 stsp
309 51c32763 2019-05-09 stsp SHA1Init(&sha1_ctx);
310 f91abf81 2019-04-14 stsp
311 56e0773d 2019-11-28 stsp sorted_entries = calloc(nentries, sizeof(struct got_tree_entry *));
312 56e0773d 2019-11-28 stsp if (sorted_entries == NULL)
313 56e0773d 2019-11-28 stsp return got_error_from_errno("calloc");
314 6af1ccbd 2019-08-16 stsp
315 56e0773d 2019-11-28 stsp i = 0;
316 56e0773d 2019-11-28 stsp TAILQ_FOREACH(pe, paths, entry)
317 56e0773d 2019-11-28 stsp sorted_entries[i++] = pe->data;
318 56e0773d 2019-11-28 stsp mergesort(sorted_entries, nentries, sizeof(struct got_tree_entry *),
319 56e0773d 2019-11-28 stsp sort_tree_entries_the_way_git_likes_it);
320 56e0773d 2019-11-28 stsp
321 56e0773d 2019-11-28 stsp for (i = 0; i < nentries; i++) {
322 56e0773d 2019-11-28 stsp te = sorted_entries[i];
323 7aadece8 2020-05-17 stsp err = te_mode2str(modebuf, sizeof(modebuf), te);
324 f91abf81 2019-04-14 stsp if (err)
325 6af1ccbd 2019-08-16 stsp goto done;
326 f91abf81 2019-04-14 stsp len += strlen(modebuf) + strlen(te->name) + 1 +
327 f91abf81 2019-04-14 stsp SHA1_DIGEST_LENGTH;
328 f91abf81 2019-04-14 stsp }
329 f91abf81 2019-04-14 stsp
330 f91abf81 2019-04-14 stsp if (asprintf(&header, "%s %zd", GOT_OBJ_LABEL_TREE, len) == -1) {
331 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
332 f91abf81 2019-04-14 stsp goto done;
333 f91abf81 2019-04-14 stsp }
334 f91abf81 2019-04-14 stsp headerlen = strlen(header) + 1;
335 f91abf81 2019-04-14 stsp SHA1Update(&sha1_ctx, header, headerlen);
336 f91abf81 2019-04-14 stsp
337 f91abf81 2019-04-14 stsp treefile = got_opentemp();
338 f91abf81 2019-04-14 stsp if (treefile == NULL) {
339 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
340 f91abf81 2019-04-14 stsp goto done;
341 f91abf81 2019-04-14 stsp }
342 f91abf81 2019-04-14 stsp
343 f91abf81 2019-04-14 stsp n = fwrite(header, 1, headerlen, treefile);
344 f91abf81 2019-04-14 stsp if (n != headerlen) {
345 f91abf81 2019-04-14 stsp err = got_ferror(treefile, GOT_ERR_IO);
346 f91abf81 2019-04-14 stsp goto done;
347 f91abf81 2019-04-14 stsp }
348 f91abf81 2019-04-14 stsp
349 56e0773d 2019-11-28 stsp for (i = 0; i < nentries; i++) {
350 56e0773d 2019-11-28 stsp te = sorted_entries[i];
351 7aadece8 2020-05-17 stsp err = te_mode2str(modebuf, sizeof(modebuf), te);
352 f91abf81 2019-04-14 stsp if (err)
353 f91abf81 2019-04-14 stsp goto done;
354 f91abf81 2019-04-14 stsp len = strlen(modebuf);
355 f91abf81 2019-04-14 stsp n = fwrite(modebuf, 1, len, treefile);
356 f91abf81 2019-04-14 stsp if (n != len) {
357 f91abf81 2019-04-14 stsp err = got_ferror(treefile, GOT_ERR_IO);
358 f91abf81 2019-04-14 stsp goto done;
359 f91abf81 2019-04-14 stsp }
360 f91abf81 2019-04-14 stsp SHA1Update(&sha1_ctx, modebuf, len);
361 f91abf81 2019-04-14 stsp
362 f91abf81 2019-04-14 stsp len = strlen(te->name) + 1; /* must include NUL */
363 f91abf81 2019-04-14 stsp n = fwrite(te->name, 1, len, treefile);
364 f91abf81 2019-04-14 stsp if (n != len) {
365 f91abf81 2019-04-14 stsp err = got_ferror(treefile, GOT_ERR_IO);
366 f91abf81 2019-04-14 stsp goto done;
367 f91abf81 2019-04-14 stsp }
368 f91abf81 2019-04-14 stsp SHA1Update(&sha1_ctx, te->name, len);
369 f91abf81 2019-04-14 stsp
370 f91abf81 2019-04-14 stsp len = SHA1_DIGEST_LENGTH;
371 56e0773d 2019-11-28 stsp n = fwrite(te->id.sha1, 1, len, treefile);
372 f91abf81 2019-04-14 stsp if (n != len) {
373 f91abf81 2019-04-14 stsp err = got_ferror(treefile, GOT_ERR_IO);
374 f91abf81 2019-04-14 stsp goto done;
375 f91abf81 2019-04-14 stsp }
376 56e0773d 2019-11-28 stsp SHA1Update(&sha1_ctx, te->id.sha1, len);
377 f91abf81 2019-04-14 stsp }
378 f91abf81 2019-04-14 stsp
379 f91abf81 2019-04-14 stsp *id = malloc(sizeof(**id));
380 f91abf81 2019-04-14 stsp if (*id == NULL) {
381 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
382 f91abf81 2019-04-14 stsp goto done;
383 f91abf81 2019-04-14 stsp }
384 4be2a0b4 2019-04-14 stsp SHA1Final((*id)->sha1, &sha1_ctx);
385 f91abf81 2019-04-14 stsp
386 f91abf81 2019-04-14 stsp if (fflush(treefile) != 0) {
387 638f9024 2019-05-13 stsp err = got_error_from_errno("fflush");
388 f91abf81 2019-04-14 stsp goto done;
389 f91abf81 2019-04-14 stsp }
390 f91abf81 2019-04-14 stsp rewind(treefile);
391 f91abf81 2019-04-14 stsp
392 76f564d5 2019-04-14 stsp err = create_object_file(*id, treefile, repo);
393 f91abf81 2019-04-14 stsp done:
394 f91abf81 2019-04-14 stsp free(header);
395 56e0773d 2019-11-28 stsp free(sorted_entries);
396 56b63ca4 2021-01-22 stsp if (treefile && fclose(treefile) == EOF && err == NULL)
397 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
398 de18fc63 2019-05-09 stsp if (err) {
399 de18fc63 2019-05-09 stsp free(*id);
400 de18fc63 2019-05-09 stsp *id = NULL;
401 de18fc63 2019-05-09 stsp }
402 de18fc63 2019-05-09 stsp return err;
403 de18fc63 2019-05-09 stsp }
404 de18fc63 2019-05-09 stsp
405 de18fc63 2019-05-09 stsp const struct got_error *
406 de18fc63 2019-05-09 stsp got_object_commit_create(struct got_object_id **id,
407 de18fc63 2019-05-09 stsp struct got_object_id *tree_id, struct got_object_id_queue *parent_ids,
408 de18fc63 2019-05-09 stsp int nparents, const char *author, time_t author_time,
409 de18fc63 2019-05-09 stsp const char *committer, time_t committer_time,
410 de18fc63 2019-05-09 stsp const char *logmsg, struct got_repository *repo)
411 de18fc63 2019-05-09 stsp {
412 de18fc63 2019-05-09 stsp const struct got_error *err = NULL;
413 de18fc63 2019-05-09 stsp SHA1_CTX sha1_ctx;
414 de18fc63 2019-05-09 stsp char *header = NULL, *tree_str = NULL;
415 de18fc63 2019-05-09 stsp char *author_str = NULL, *committer_str = NULL;
416 de18fc63 2019-05-09 stsp char *id_str = NULL;
417 de18fc63 2019-05-09 stsp size_t headerlen, len = 0, n;
418 de18fc63 2019-05-09 stsp FILE *commitfile = NULL;
419 de18fc63 2019-05-09 stsp struct got_object_qid *qid;
420 787c8eb6 2019-07-11 stsp char *msg0, *msg;
421 de18fc63 2019-05-09 stsp
422 de18fc63 2019-05-09 stsp *id = NULL;
423 de18fc63 2019-05-09 stsp
424 de18fc63 2019-05-09 stsp SHA1Init(&sha1_ctx);
425 787c8eb6 2019-07-11 stsp
426 787c8eb6 2019-07-11 stsp msg0 = strdup(logmsg);
427 787c8eb6 2019-07-11 stsp if (msg0 == NULL)
428 787c8eb6 2019-07-11 stsp return got_error_from_errno("strdup");
429 787c8eb6 2019-07-11 stsp msg = msg0;
430 787c8eb6 2019-07-11 stsp
431 10796104 2019-07-11 stsp while (isspace((unsigned char)msg[0]))
432 787c8eb6 2019-07-11 stsp msg++;
433 787c8eb6 2019-07-11 stsp len = strlen(msg);
434 10796104 2019-07-11 stsp while (len > 0 && isspace((unsigned char)msg[len - 1])) {
435 787c8eb6 2019-07-11 stsp msg[len - 1] = '\0';
436 787c8eb6 2019-07-11 stsp len--;
437 787c8eb6 2019-07-11 stsp }
438 de18fc63 2019-05-09 stsp
439 de18fc63 2019-05-09 stsp if (asprintf(&author_str, "%s%s %lld +0000\n",
440 1367695b 2020-09-26 naddy GOT_COMMIT_LABEL_AUTHOR, author, (long long)author_time) == -1)
441 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
442 de18fc63 2019-05-09 stsp
443 de18fc63 2019-05-09 stsp if (asprintf(&committer_str, "%s%s %lld +0000\n",
444 de18fc63 2019-05-09 stsp GOT_COMMIT_LABEL_COMMITTER, committer ? committer : author,
445 1367695b 2020-09-26 naddy (long long)(committer ? committer_time : author_time))
446 de18fc63 2019-05-09 stsp == -1) {
447 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
448 de18fc63 2019-05-09 stsp goto done;
449 de18fc63 2019-05-09 stsp }
450 de18fc63 2019-05-09 stsp
451 de18fc63 2019-05-09 stsp len = strlen(GOT_COMMIT_LABEL_TREE) + SHA1_DIGEST_STRING_LENGTH +
452 de18fc63 2019-05-09 stsp nparents *
453 de18fc63 2019-05-09 stsp (strlen(GOT_COMMIT_LABEL_PARENT) + SHA1_DIGEST_STRING_LENGTH) +
454 787c8eb6 2019-07-11 stsp + strlen(author_str) + strlen(committer_str) + 2 + strlen(msg);
455 de18fc63 2019-05-09 stsp
456 de18fc63 2019-05-09 stsp if (asprintf(&header, "%s %zd", GOT_OBJ_LABEL_COMMIT, len) == -1) {
457 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
458 de18fc63 2019-05-09 stsp goto done;
459 de18fc63 2019-05-09 stsp }
460 de18fc63 2019-05-09 stsp headerlen = strlen(header) + 1;
461 de18fc63 2019-05-09 stsp SHA1Update(&sha1_ctx, header, headerlen);
462 de18fc63 2019-05-09 stsp
463 de18fc63 2019-05-09 stsp commitfile = got_opentemp();
464 de18fc63 2019-05-09 stsp if (commitfile == NULL) {
465 638f9024 2019-05-13 stsp err = got_error_from_errno("got_opentemp");
466 de18fc63 2019-05-09 stsp goto done;
467 de18fc63 2019-05-09 stsp }
468 de18fc63 2019-05-09 stsp
469 de18fc63 2019-05-09 stsp n = fwrite(header, 1, headerlen, commitfile);
470 de18fc63 2019-05-09 stsp if (n != headerlen) {
471 de18fc63 2019-05-09 stsp err = got_ferror(commitfile, GOT_ERR_IO);
472 de18fc63 2019-05-09 stsp goto done;
473 de18fc63 2019-05-09 stsp }
474 de18fc63 2019-05-09 stsp
475 de18fc63 2019-05-09 stsp err = got_object_id_str(&id_str, tree_id);
476 de18fc63 2019-05-09 stsp if (err)
477 de18fc63 2019-05-09 stsp goto done;
478 de18fc63 2019-05-09 stsp if (asprintf(&tree_str, "%s%s\n", GOT_COMMIT_LABEL_TREE, id_str)
479 de18fc63 2019-05-09 stsp == -1) {
480 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
481 de18fc63 2019-05-09 stsp goto done;
482 de18fc63 2019-05-09 stsp }
483 de18fc63 2019-05-09 stsp len = strlen(tree_str);
484 de18fc63 2019-05-09 stsp SHA1Update(&sha1_ctx, tree_str, len);
485 de18fc63 2019-05-09 stsp n = fwrite(tree_str, 1, len, commitfile);
486 de18fc63 2019-05-09 stsp if (n != len) {
487 de18fc63 2019-05-09 stsp err = got_ferror(commitfile, GOT_ERR_IO);
488 de18fc63 2019-05-09 stsp goto done;
489 de18fc63 2019-05-09 stsp }
490 de18fc63 2019-05-09 stsp
491 3ce1b845 2019-07-15 stsp if (parent_ids) {
492 f259c4c1 2021-09-24 stsp free(id_str);
493 f259c4c1 2021-09-24 stsp id_str = NULL;
494 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(qid, parent_ids, entry) {
495 3ce1b845 2019-07-15 stsp char *parent_str = NULL;
496 de18fc63 2019-05-09 stsp
497 3ce1b845 2019-07-15 stsp err = got_object_id_str(&id_str, qid->id);
498 3ce1b845 2019-07-15 stsp if (err)
499 3ce1b845 2019-07-15 stsp goto done;
500 3ce1b845 2019-07-15 stsp if (asprintf(&parent_str, "%s%s\n",
501 3ce1b845 2019-07-15 stsp GOT_COMMIT_LABEL_PARENT, id_str) == -1) {
502 3ce1b845 2019-07-15 stsp err = got_error_from_errno("asprintf");
503 3ce1b845 2019-07-15 stsp goto done;
504 3ce1b845 2019-07-15 stsp }
505 3ce1b845 2019-07-15 stsp len = strlen(parent_str);
506 3ce1b845 2019-07-15 stsp SHA1Update(&sha1_ctx, parent_str, len);
507 3ce1b845 2019-07-15 stsp n = fwrite(parent_str, 1, len, commitfile);
508 3ce1b845 2019-07-15 stsp if (n != len) {
509 3ce1b845 2019-07-15 stsp err = got_ferror(commitfile, GOT_ERR_IO);
510 3ce1b845 2019-07-15 stsp free(parent_str);
511 3ce1b845 2019-07-15 stsp goto done;
512 3ce1b845 2019-07-15 stsp }
513 de18fc63 2019-05-09 stsp free(parent_str);
514 f259c4c1 2021-09-24 stsp free(id_str);
515 f259c4c1 2021-09-24 stsp id_str = NULL;
516 de18fc63 2019-05-09 stsp }
517 de18fc63 2019-05-09 stsp }
518 de18fc63 2019-05-09 stsp
519 de18fc63 2019-05-09 stsp len = strlen(author_str);
520 de18fc63 2019-05-09 stsp SHA1Update(&sha1_ctx, author_str, len);
521 de18fc63 2019-05-09 stsp n = fwrite(author_str, 1, len, commitfile);
522 de18fc63 2019-05-09 stsp if (n != len) {
523 de18fc63 2019-05-09 stsp err = got_ferror(commitfile, GOT_ERR_IO);
524 de18fc63 2019-05-09 stsp goto done;
525 de18fc63 2019-05-09 stsp }
526 de18fc63 2019-05-09 stsp
527 de18fc63 2019-05-09 stsp len = strlen(committer_str);
528 de18fc63 2019-05-09 stsp SHA1Update(&sha1_ctx, committer_str, len);
529 de18fc63 2019-05-09 stsp n = fwrite(committer_str, 1, len, commitfile);
530 de18fc63 2019-05-09 stsp if (n != len) {
531 de18fc63 2019-05-09 stsp err = got_ferror(commitfile, GOT_ERR_IO);
532 de18fc63 2019-05-09 stsp goto done;
533 de18fc63 2019-05-09 stsp }
534 de18fc63 2019-05-09 stsp
535 de18fc63 2019-05-09 stsp SHA1Update(&sha1_ctx, "\n", 1);
536 de18fc63 2019-05-09 stsp n = fwrite("\n", 1, 1, commitfile);
537 de18fc63 2019-05-09 stsp if (n != 1) {
538 de18fc63 2019-05-09 stsp err = got_ferror(commitfile, GOT_ERR_IO);
539 de18fc63 2019-05-09 stsp goto done;
540 de18fc63 2019-05-09 stsp }
541 de18fc63 2019-05-09 stsp
542 787c8eb6 2019-07-11 stsp len = strlen(msg);
543 787c8eb6 2019-07-11 stsp SHA1Update(&sha1_ctx, msg, len);
544 787c8eb6 2019-07-11 stsp n = fwrite(msg, 1, len, commitfile);
545 de18fc63 2019-05-09 stsp if (n != len) {
546 de18fc63 2019-05-09 stsp err = got_ferror(commitfile, GOT_ERR_IO);
547 de18fc63 2019-05-09 stsp goto done;
548 de18fc63 2019-05-09 stsp }
549 de18fc63 2019-05-09 stsp
550 de18fc63 2019-05-09 stsp SHA1Update(&sha1_ctx, "\n", 1);
551 de18fc63 2019-05-09 stsp n = fwrite("\n", 1, 1, commitfile);
552 de18fc63 2019-05-09 stsp if (n != 1) {
553 de18fc63 2019-05-09 stsp err = got_ferror(commitfile, GOT_ERR_IO);
554 de18fc63 2019-05-09 stsp goto done;
555 de18fc63 2019-05-09 stsp }
556 de18fc63 2019-05-09 stsp
557 de18fc63 2019-05-09 stsp *id = malloc(sizeof(**id));
558 de18fc63 2019-05-09 stsp if (*id == NULL) {
559 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
560 de18fc63 2019-05-09 stsp goto done;
561 de18fc63 2019-05-09 stsp }
562 de18fc63 2019-05-09 stsp SHA1Final((*id)->sha1, &sha1_ctx);
563 de18fc63 2019-05-09 stsp
564 de18fc63 2019-05-09 stsp if (fflush(commitfile) != 0) {
565 638f9024 2019-05-13 stsp err = got_error_from_errno("fflush");
566 de18fc63 2019-05-09 stsp goto done;
567 de18fc63 2019-05-09 stsp }
568 de18fc63 2019-05-09 stsp rewind(commitfile);
569 de18fc63 2019-05-09 stsp
570 de18fc63 2019-05-09 stsp err = create_object_file(*id, commitfile, repo);
571 de18fc63 2019-05-09 stsp done:
572 f259c4c1 2021-09-24 stsp free(id_str);
573 787c8eb6 2019-07-11 stsp free(msg0);
574 de18fc63 2019-05-09 stsp free(header);
575 de18fc63 2019-05-09 stsp free(tree_str);
576 de18fc63 2019-05-09 stsp free(author_str);
577 de18fc63 2019-05-09 stsp free(committer_str);
578 56b63ca4 2021-01-22 stsp if (commitfile && fclose(commitfile) == EOF && err == NULL)
579 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("fclose");
580 8e7bd50a 2019-08-22 stsp if (err) {
581 8e7bd50a 2019-08-22 stsp free(*id);
582 8e7bd50a 2019-08-22 stsp *id = NULL;
583 8e7bd50a 2019-08-22 stsp }
584 8e7bd50a 2019-08-22 stsp return err;
585 8e7bd50a 2019-08-22 stsp }
586 8e7bd50a 2019-08-22 stsp
587 8e7bd50a 2019-08-22 stsp const struct got_error *
588 8e7bd50a 2019-08-22 stsp got_object_tag_create(struct got_object_id **id,
589 8e7bd50a 2019-08-22 stsp const char *tag_name, struct got_object_id *object_id, const char *tagger,
590 8e7bd50a 2019-08-22 stsp time_t tagger_time, const char *tagmsg, struct got_repository *repo)
591 8e7bd50a 2019-08-22 stsp {
592 8e7bd50a 2019-08-22 stsp const struct got_error *err = NULL;
593 8e7bd50a 2019-08-22 stsp SHA1_CTX sha1_ctx;
594 8e7bd50a 2019-08-22 stsp char *header = NULL;
595 8e7bd50a 2019-08-22 stsp char *tag_str = NULL, *tagger_str = NULL;
596 8e7bd50a 2019-08-22 stsp char *id_str = NULL, *obj_str = NULL, *type_str = NULL;
597 8e7bd50a 2019-08-22 stsp size_t headerlen, len = 0, n;
598 8e7bd50a 2019-08-22 stsp FILE *tagfile = NULL;
599 8e7bd50a 2019-08-22 stsp char *msg0 = NULL, *msg;
600 8e7bd50a 2019-08-22 stsp const char *obj_type_str;
601 8e7bd50a 2019-08-22 stsp int obj_type;
602 8e7bd50a 2019-08-22 stsp
603 8e7bd50a 2019-08-22 stsp *id = NULL;
604 8e7bd50a 2019-08-22 stsp
605 8e7bd50a 2019-08-22 stsp SHA1Init(&sha1_ctx);
606 8e7bd50a 2019-08-22 stsp
607 8e7bd50a 2019-08-22 stsp err = got_object_id_str(&id_str, object_id);
608 8e7bd50a 2019-08-22 stsp if (err)
609 8e7bd50a 2019-08-22 stsp goto done;
610 8e7bd50a 2019-08-22 stsp if (asprintf(&obj_str, "%s%s\n", GOT_TAG_LABEL_OBJECT, id_str) == -1) {
611 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("asprintf");
612 8e7bd50a 2019-08-22 stsp goto done;
613 8e7bd50a 2019-08-22 stsp }
614 8e7bd50a 2019-08-22 stsp
615 8e7bd50a 2019-08-22 stsp err = got_object_get_type(&obj_type, repo, object_id);
616 8e7bd50a 2019-08-22 stsp if (err)
617 8e7bd50a 2019-08-22 stsp goto done;
618 8e7bd50a 2019-08-22 stsp
619 8e7bd50a 2019-08-22 stsp switch (obj_type) {
620 8e7bd50a 2019-08-22 stsp case GOT_OBJ_TYPE_BLOB:
621 8e7bd50a 2019-08-22 stsp obj_type_str = GOT_OBJ_LABEL_BLOB;
622 8e7bd50a 2019-08-22 stsp break;
623 8e7bd50a 2019-08-22 stsp case GOT_OBJ_TYPE_TREE:
624 8e7bd50a 2019-08-22 stsp obj_type_str = GOT_OBJ_LABEL_TREE;
625 8e7bd50a 2019-08-22 stsp break;
626 8e7bd50a 2019-08-22 stsp case GOT_OBJ_TYPE_COMMIT:
627 8e7bd50a 2019-08-22 stsp obj_type_str = GOT_OBJ_LABEL_COMMIT;
628 8e7bd50a 2019-08-22 stsp break;
629 8e7bd50a 2019-08-22 stsp case GOT_OBJ_TYPE_TAG:
630 8e7bd50a 2019-08-22 stsp obj_type_str = GOT_OBJ_LABEL_TAG;
631 8e7bd50a 2019-08-22 stsp break;
632 8e7bd50a 2019-08-22 stsp default:
633 8e7bd50a 2019-08-22 stsp err = got_error(GOT_ERR_OBJ_TYPE);
634 8e7bd50a 2019-08-22 stsp goto done;
635 8e7bd50a 2019-08-22 stsp }
636 8e7bd50a 2019-08-22 stsp
637 8e7bd50a 2019-08-22 stsp if (asprintf(&type_str, "%s%s\n", GOT_TAG_LABEL_TYPE,
638 8e7bd50a 2019-08-22 stsp obj_type_str) == -1) {
639 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("asprintf");
640 8e7bd50a 2019-08-22 stsp goto done;
641 8e7bd50a 2019-08-22 stsp }
642 8e7bd50a 2019-08-22 stsp
643 8e7bd50a 2019-08-22 stsp if (asprintf(&tag_str, "%s%s\n", GOT_TAG_LABEL_TAG, tag_name) == -1) {
644 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("asprintf");
645 8e7bd50a 2019-08-22 stsp goto done;
646 8e7bd50a 2019-08-22 stsp }
647 8e7bd50a 2019-08-22 stsp
648 8e7bd50a 2019-08-22 stsp if (asprintf(&tagger_str, "%s%s %lld +0000\n",
649 1367695b 2020-09-26 naddy GOT_TAG_LABEL_TAGGER, tagger, (long long)tagger_time) == -1)
650 8e7bd50a 2019-08-22 stsp return got_error_from_errno("asprintf");
651 8e7bd50a 2019-08-22 stsp
652 8e7bd50a 2019-08-22 stsp msg0 = strdup(tagmsg);
653 8e7bd50a 2019-08-22 stsp if (msg0 == NULL) {
654 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("strdup");
655 8e7bd50a 2019-08-22 stsp goto done;
656 8e7bd50a 2019-08-22 stsp }
657 8e7bd50a 2019-08-22 stsp msg = msg0;
658 8e7bd50a 2019-08-22 stsp
659 8e7bd50a 2019-08-22 stsp while (isspace((unsigned char)msg[0]))
660 8e7bd50a 2019-08-22 stsp msg++;
661 8e7bd50a 2019-08-22 stsp
662 8e7bd50a 2019-08-22 stsp len = strlen(obj_str) + strlen(type_str) + strlen(tag_str) +
663 8e7bd50a 2019-08-22 stsp strlen(tagger_str) + 1 + strlen(msg) + 1;
664 8e7bd50a 2019-08-22 stsp
665 8e7bd50a 2019-08-22 stsp if (asprintf(&header, "%s %zd", GOT_OBJ_LABEL_TAG, len) == -1) {
666 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("asprintf");
667 8e7bd50a 2019-08-22 stsp goto done;
668 8e7bd50a 2019-08-22 stsp }
669 8e7bd50a 2019-08-22 stsp
670 8e7bd50a 2019-08-22 stsp headerlen = strlen(header) + 1;
671 8e7bd50a 2019-08-22 stsp SHA1Update(&sha1_ctx, header, headerlen);
672 8e7bd50a 2019-08-22 stsp
673 8e7bd50a 2019-08-22 stsp tagfile = got_opentemp();
674 8e7bd50a 2019-08-22 stsp if (tagfile == NULL) {
675 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("got_opentemp");
676 8e7bd50a 2019-08-22 stsp goto done;
677 8e7bd50a 2019-08-22 stsp }
678 8e7bd50a 2019-08-22 stsp
679 8e7bd50a 2019-08-22 stsp n = fwrite(header, 1, headerlen, tagfile);
680 8e7bd50a 2019-08-22 stsp if (n != headerlen) {
681 8e7bd50a 2019-08-22 stsp err = got_ferror(tagfile, GOT_ERR_IO);
682 8e7bd50a 2019-08-22 stsp goto done;
683 8e7bd50a 2019-08-22 stsp }
684 8e7bd50a 2019-08-22 stsp len = strlen(obj_str);
685 8e7bd50a 2019-08-22 stsp SHA1Update(&sha1_ctx, obj_str, len);
686 8e7bd50a 2019-08-22 stsp n = fwrite(obj_str, 1, len, tagfile);
687 8e7bd50a 2019-08-22 stsp if (n != len) {
688 8e7bd50a 2019-08-22 stsp err = got_ferror(tagfile, GOT_ERR_IO);
689 8e7bd50a 2019-08-22 stsp goto done;
690 8e7bd50a 2019-08-22 stsp }
691 8e7bd50a 2019-08-22 stsp len = strlen(type_str);
692 8e7bd50a 2019-08-22 stsp SHA1Update(&sha1_ctx, type_str, len);
693 8e7bd50a 2019-08-22 stsp n = fwrite(type_str, 1, len, tagfile);
694 8e7bd50a 2019-08-22 stsp if (n != len) {
695 8e7bd50a 2019-08-22 stsp err = got_ferror(tagfile, GOT_ERR_IO);
696 8e7bd50a 2019-08-22 stsp goto done;
697 8e7bd50a 2019-08-22 stsp }
698 8e7bd50a 2019-08-22 stsp
699 8e7bd50a 2019-08-22 stsp len = strlen(tag_str);
700 8e7bd50a 2019-08-22 stsp SHA1Update(&sha1_ctx, tag_str, len);
701 8e7bd50a 2019-08-22 stsp n = fwrite(tag_str, 1, len, tagfile);
702 8e7bd50a 2019-08-22 stsp if (n != len) {
703 8e7bd50a 2019-08-22 stsp err = got_ferror(tagfile, GOT_ERR_IO);
704 8e7bd50a 2019-08-22 stsp goto done;
705 8e7bd50a 2019-08-22 stsp }
706 8e7bd50a 2019-08-22 stsp
707 8e7bd50a 2019-08-22 stsp len = strlen(tagger_str);
708 8e7bd50a 2019-08-22 stsp SHA1Update(&sha1_ctx, tagger_str, len);
709 8e7bd50a 2019-08-22 stsp n = fwrite(tagger_str, 1, len, tagfile);
710 8e7bd50a 2019-08-22 stsp if (n != len) {
711 8e7bd50a 2019-08-22 stsp err = got_ferror(tagfile, GOT_ERR_IO);
712 8e7bd50a 2019-08-22 stsp goto done;
713 8e7bd50a 2019-08-22 stsp }
714 8e7bd50a 2019-08-22 stsp
715 8e7bd50a 2019-08-22 stsp SHA1Update(&sha1_ctx, "\n", 1);
716 8e7bd50a 2019-08-22 stsp n = fwrite("\n", 1, 1, tagfile);
717 8e7bd50a 2019-08-22 stsp if (n != 1) {
718 8e7bd50a 2019-08-22 stsp err = got_ferror(tagfile, GOT_ERR_IO);
719 8e7bd50a 2019-08-22 stsp goto done;
720 8e7bd50a 2019-08-22 stsp }
721 8e7bd50a 2019-08-22 stsp
722 8e7bd50a 2019-08-22 stsp len = strlen(msg);
723 8e7bd50a 2019-08-22 stsp SHA1Update(&sha1_ctx, msg, len);
724 8e7bd50a 2019-08-22 stsp n = fwrite(msg, 1, len, tagfile);
725 8e7bd50a 2019-08-22 stsp if (n != len) {
726 8e7bd50a 2019-08-22 stsp err = got_ferror(tagfile, GOT_ERR_IO);
727 8e7bd50a 2019-08-22 stsp goto done;
728 8e7bd50a 2019-08-22 stsp }
729 8e7bd50a 2019-08-22 stsp
730 8e7bd50a 2019-08-22 stsp SHA1Update(&sha1_ctx, "\n", 1);
731 8e7bd50a 2019-08-22 stsp n = fwrite("\n", 1, 1, tagfile);
732 8e7bd50a 2019-08-22 stsp if (n != 1) {
733 8e7bd50a 2019-08-22 stsp err = got_ferror(tagfile, GOT_ERR_IO);
734 8e7bd50a 2019-08-22 stsp goto done;
735 8e7bd50a 2019-08-22 stsp }
736 8e7bd50a 2019-08-22 stsp
737 8e7bd50a 2019-08-22 stsp *id = malloc(sizeof(**id));
738 8e7bd50a 2019-08-22 stsp if (*id == NULL) {
739 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("malloc");
740 8e7bd50a 2019-08-22 stsp goto done;
741 8e7bd50a 2019-08-22 stsp }
742 8e7bd50a 2019-08-22 stsp SHA1Final((*id)->sha1, &sha1_ctx);
743 8e7bd50a 2019-08-22 stsp
744 8e7bd50a 2019-08-22 stsp if (fflush(tagfile) != 0) {
745 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("fflush");
746 8e7bd50a 2019-08-22 stsp goto done;
747 8e7bd50a 2019-08-22 stsp }
748 8e7bd50a 2019-08-22 stsp rewind(tagfile);
749 8e7bd50a 2019-08-22 stsp
750 8e7bd50a 2019-08-22 stsp err = create_object_file(*id, tagfile, repo);
751 8e7bd50a 2019-08-22 stsp done:
752 8e7bd50a 2019-08-22 stsp free(msg0);
753 8e7bd50a 2019-08-22 stsp free(header);
754 8e7bd50a 2019-08-22 stsp free(obj_str);
755 8e7bd50a 2019-08-22 stsp free(tagger_str);
756 56b63ca4 2021-01-22 stsp if (tagfile && fclose(tagfile) == EOF && err == NULL)
757 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
758 f91abf81 2019-04-14 stsp if (err) {
759 f91abf81 2019-04-14 stsp free(*id);
760 f91abf81 2019-04-14 stsp *id = NULL;
761 f91abf81 2019-04-14 stsp }
762 f91abf81 2019-04-14 stsp return err;
763 f91abf81 2019-04-14 stsp }