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 51130c02 2019-04-13 stsp #include <errno.h>
22 44edeea7 2019-04-11 stsp #include <fcntl.h>
23 44edeea7 2019-04-11 stsp #include <stdio.h>
24 44edeea7 2019-04-11 stsp #include <stdlib.h>
25 44edeea7 2019-04-11 stsp #include <string.h>
26 44edeea7 2019-04-11 stsp #include <stdint.h>
27 44edeea7 2019-04-11 stsp #include <sha1.h>
28 a14a8cf6 2019-04-11 stsp #include <unistd.h>
29 44edeea7 2019-04-11 stsp #include <zlib.h>
30 44edeea7 2019-04-11 stsp
31 44edeea7 2019-04-11 stsp #include "got_error.h"
32 44edeea7 2019-04-11 stsp #include "got_object.h"
33 44edeea7 2019-04-11 stsp #include "got_repository.h"
34 44edeea7 2019-04-11 stsp #include "got_opentemp.h"
35 44edeea7 2019-04-11 stsp
36 44edeea7 2019-04-11 stsp #include "got_lib_sha1.h"
37 44edeea7 2019-04-11 stsp #include "got_lib_deflate.h"
38 44edeea7 2019-04-11 stsp #include "got_lib_delta.h"
39 44edeea7 2019-04-11 stsp #include "got_lib_object.h"
40 44edeea7 2019-04-11 stsp #include "got_lib_lockfile.h"
41 44edeea7 2019-04-11 stsp #include "got_lib_path.h"
42 44edeea7 2019-04-11 stsp
43 44edeea7 2019-04-11 stsp #ifndef nitems
44 44edeea7 2019-04-11 stsp #define nitems(_a) (sizeof(_a) / sizeof((_a)[0]))
45 44edeea7 2019-04-11 stsp #endif
46 44edeea7 2019-04-11 stsp
47 44edeea7 2019-04-11 stsp const struct got_error *
48 f970685c 2019-04-13 stsp got_object_blob_create(struct got_object_id **id, const char *ondisk_path,
49 f970685c 2019-04-13 stsp struct got_repository *repo)
50 44edeea7 2019-04-11 stsp {
51 44edeea7 2019-04-11 stsp const struct got_error *err = NULL, *unlock_err = NULL;
52 81984c6b 2019-04-11 stsp char *header = NULL, *objpath = NULL, *outpath = NULL;
53 a14a8cf6 2019-04-11 stsp FILE *blobfile = NULL, *outfile = NULL;
54 44edeea7 2019-04-11 stsp int fd = -1;
55 44edeea7 2019-04-11 stsp struct stat sb;
56 44edeea7 2019-04-11 stsp SHA1_CTX sha1_ctx;
57 44edeea7 2019-04-11 stsp uint8_t digest[SHA1_DIGEST_LENGTH];
58 44edeea7 2019-04-11 stsp struct got_lockfile *lf = NULL;
59 ffb286fd 2019-04-11 stsp size_t outlen = 0, headerlen = 0;
60 44edeea7 2019-04-11 stsp
61 44edeea7 2019-04-11 stsp *id = NULL;
62 44edeea7 2019-04-11 stsp
63 44edeea7 2019-04-11 stsp SHA1Init(&sha1_ctx);
64 44edeea7 2019-04-11 stsp
65 44edeea7 2019-04-11 stsp fd = open(ondisk_path, O_RDONLY | O_NOFOLLOW);
66 44edeea7 2019-04-11 stsp if (fd == -1)
67 44edeea7 2019-04-11 stsp return got_error_from_errno();
68 44edeea7 2019-04-11 stsp
69 44edeea7 2019-04-11 stsp if (fstat(fd, &sb) == -1) {
70 44edeea7 2019-04-11 stsp err = got_error_from_errno();
71 44edeea7 2019-04-11 stsp goto done;
72 44edeea7 2019-04-11 stsp }
73 44edeea7 2019-04-11 stsp
74 44edeea7 2019-04-11 stsp if (asprintf(&header, "%s %lld", GOT_OBJ_LABEL_BLOB,
75 44edeea7 2019-04-11 stsp sb.st_size) == -1) {
76 44edeea7 2019-04-11 stsp err = got_error_from_errno();
77 44edeea7 2019-04-11 stsp goto done;
78 44edeea7 2019-04-11 stsp }
79 ffb286fd 2019-04-11 stsp headerlen = strlen(header) + 1;
80 ffb286fd 2019-04-11 stsp SHA1Update(&sha1_ctx, header, headerlen);
81 44edeea7 2019-04-11 stsp
82 81984c6b 2019-04-11 stsp blobfile = got_opentemp();
83 81984c6b 2019-04-11 stsp if (blobfile == NULL) {
84 81984c6b 2019-04-11 stsp err = got_error_from_errno();
85 44edeea7 2019-04-11 stsp goto done;
86 81984c6b 2019-04-11 stsp }
87 44edeea7 2019-04-11 stsp
88 ffb286fd 2019-04-11 stsp outlen = fwrite(header, 1, headerlen, blobfile);
89 ffb286fd 2019-04-11 stsp if (outlen != headerlen) {
90 f16c2465 2019-04-11 stsp err = got_ferror(blobfile, GOT_ERR_IO);
91 f16c2465 2019-04-11 stsp goto done;
92 f16c2465 2019-04-11 stsp }
93 44edeea7 2019-04-11 stsp while (1) {
94 44edeea7 2019-04-11 stsp char buf[8192];
95 a14a8cf6 2019-04-11 stsp ssize_t inlen;
96 a14a8cf6 2019-04-11 stsp size_t outlen;
97 44edeea7 2019-04-11 stsp
98 a14a8cf6 2019-04-11 stsp inlen = read(fd, buf, sizeof(buf));
99 a14a8cf6 2019-04-11 stsp if (inlen == -1) {
100 a14a8cf6 2019-04-11 stsp err = got_error_from_errno();
101 a14a8cf6 2019-04-11 stsp goto done;
102 44edeea7 2019-04-11 stsp }
103 a14a8cf6 2019-04-11 stsp if (inlen == 0)
104 a14a8cf6 2019-04-11 stsp break; /* EOF */
105 44edeea7 2019-04-11 stsp SHA1Update(&sha1_ctx, buf, inlen);
106 44edeea7 2019-04-11 stsp outlen = fwrite(buf, 1, inlen, blobfile);
107 44edeea7 2019-04-11 stsp if (outlen != inlen) {
108 44edeea7 2019-04-11 stsp err = got_ferror(blobfile, GOT_ERR_IO);
109 44edeea7 2019-04-11 stsp goto done;
110 44edeea7 2019-04-11 stsp }
111 44edeea7 2019-04-11 stsp }
112 44edeea7 2019-04-11 stsp
113 44edeea7 2019-04-11 stsp SHA1Final(digest, &sha1_ctx);
114 44edeea7 2019-04-11 stsp *id = malloc(sizeof(**id));
115 44edeea7 2019-04-11 stsp if (*id == NULL) {
116 44edeea7 2019-04-11 stsp err = got_error_from_errno();
117 44edeea7 2019-04-11 stsp goto done;
118 44edeea7 2019-04-11 stsp }
119 44edeea7 2019-04-11 stsp memcpy((*id)->sha1, digest, SHA1_DIGEST_LENGTH);
120 44edeea7 2019-04-11 stsp
121 44edeea7 2019-04-11 stsp if (fflush(blobfile) != 0) {
122 44edeea7 2019-04-11 stsp err = got_error_from_errno();
123 44edeea7 2019-04-11 stsp goto done;
124 44edeea7 2019-04-11 stsp }
125 44edeea7 2019-04-11 stsp rewind(blobfile);
126 44edeea7 2019-04-11 stsp
127 44edeea7 2019-04-11 stsp err = got_object_get_path(&objpath, *id, repo);
128 44edeea7 2019-04-11 stsp if (err)
129 44edeea7 2019-04-11 stsp goto done;
130 44edeea7 2019-04-11 stsp
131 44edeea7 2019-04-11 stsp err = got_opentemp_named(&outpath, &outfile, objpath);
132 51130c02 2019-04-13 stsp if (err) {
133 51130c02 2019-04-13 stsp char *parent_path;
134 51130c02 2019-04-13 stsp if (!(err->code == GOT_ERR_ERRNO && errno == ENOENT))
135 51130c02 2019-04-13 stsp goto done;
136 51130c02 2019-04-13 stsp err = got_path_dirname(&parent_path, objpath);
137 51130c02 2019-04-13 stsp if (err)
138 51130c02 2019-04-13 stsp goto done;
139 51130c02 2019-04-13 stsp err = got_path_mkdir(parent_path);
140 51130c02 2019-04-13 stsp free(parent_path);
141 51130c02 2019-04-13 stsp if (err)
142 51130c02 2019-04-13 stsp goto done;
143 51130c02 2019-04-13 stsp err = got_opentemp_named(&outpath, &outfile, objpath);
144 51130c02 2019-04-13 stsp if (err)
145 51130c02 2019-04-13 stsp goto done;
146 51130c02 2019-04-13 stsp }
147 44edeea7 2019-04-11 stsp
148 44edeea7 2019-04-11 stsp err = got_deflate_to_file(&outlen, blobfile, outfile);
149 44edeea7 2019-04-11 stsp if (err)
150 44edeea7 2019-04-11 stsp goto done;
151 44edeea7 2019-04-11 stsp
152 44edeea7 2019-04-11 stsp err = got_lockfile_lock(&lf, objpath);
153 44edeea7 2019-04-11 stsp if (err)
154 44edeea7 2019-04-11 stsp goto done;
155 44edeea7 2019-04-11 stsp
156 44edeea7 2019-04-11 stsp if (rename(outpath, objpath) != 0) {
157 44edeea7 2019-04-11 stsp err = got_error_from_errno();
158 44edeea7 2019-04-11 stsp goto done;
159 44edeea7 2019-04-11 stsp }
160 44edeea7 2019-04-11 stsp free(outpath);
161 44edeea7 2019-04-11 stsp outpath = NULL;
162 44edeea7 2019-04-11 stsp
163 44edeea7 2019-04-11 stsp if (chmod(objpath, GOT_DEFAULT_FILE_MODE) != 0) {
164 44edeea7 2019-04-11 stsp err = got_error_from_errno();
165 44edeea7 2019-04-11 stsp goto done;
166 44edeea7 2019-04-11 stsp }
167 44edeea7 2019-04-11 stsp done:
168 44edeea7 2019-04-11 stsp free(header);
169 f488e73c 2019-04-11 stsp free(objpath);
170 44edeea7 2019-04-11 stsp if (outpath) {
171 44edeea7 2019-04-11 stsp if (unlink(outpath) != 0 && err == NULL)
172 44edeea7 2019-04-11 stsp err = got_error_from_errno();
173 44edeea7 2019-04-11 stsp free(outpath);
174 44edeea7 2019-04-11 stsp }
175 44edeea7 2019-04-11 stsp if (fd != -1 && close(fd) != 0 && err == NULL)
176 44edeea7 2019-04-11 stsp err = got_error_from_errno();
177 44edeea7 2019-04-11 stsp if (blobfile && fclose(blobfile) != 0 && err == NULL)
178 44edeea7 2019-04-11 stsp err = got_error_from_errno();
179 44edeea7 2019-04-11 stsp if (outfile && fclose(outfile) != 0 && err == NULL)
180 44edeea7 2019-04-11 stsp err = got_error_from_errno();
181 44edeea7 2019-04-11 stsp if (err) {
182 44edeea7 2019-04-11 stsp free(*id);
183 44edeea7 2019-04-11 stsp *id = NULL;
184 44edeea7 2019-04-11 stsp }
185 44edeea7 2019-04-11 stsp if (lf)
186 44edeea7 2019-04-11 stsp unlock_err = got_lockfile_unlock(lf);
187 44edeea7 2019-04-11 stsp return err ? err : unlock_err;
188 44edeea7 2019-04-11 stsp }