Blame


1 7b19e0f1 2017-11-05 stsp /*
2 72bcf0f9 2018-01-12 stsp * Copyright (c) 2018 Stefan Sperling <stsp@openbsd.org>
3 7b19e0f1 2017-11-05 stsp *
4 7b19e0f1 2017-11-05 stsp * Permission to use, copy, modify, and distribute this software for any
5 7b19e0f1 2017-11-05 stsp * purpose with or without fee is hereby granted, provided that the above
6 7b19e0f1 2017-11-05 stsp * copyright notice and this permission notice appear in all copies.
7 7b19e0f1 2017-11-05 stsp *
8 7b19e0f1 2017-11-05 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 7b19e0f1 2017-11-05 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 7b19e0f1 2017-11-05 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 7b19e0f1 2017-11-05 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 7b19e0f1 2017-11-05 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 7b19e0f1 2017-11-05 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 7b19e0f1 2017-11-05 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 7b19e0f1 2017-11-05 stsp */
16 7b19e0f1 2017-11-05 stsp
17 91a3d81f 2018-11-11 stsp #include <sys/queue.h>
18 91a3d81f 2018-11-11 stsp
19 f334529e 2018-01-12 stsp #include <errno.h>
20 8251fdbc 2018-01-12 stsp #include <stdio.h>
21 f334529e 2018-01-12 stsp #include <stdlib.h>
22 f334529e 2018-01-12 stsp #include <string.h>
23 91a3d81f 2018-11-11 stsp #include <sha1.h>
24 91a3d81f 2018-11-11 stsp #include <zlib.h>
25 09589288 2019-03-10 stsp #include <uuid.h>
26 f334529e 2018-01-12 stsp
27 4027f31a 2017-11-04 stsp #include "got_error.h"
28 91a3d81f 2018-11-11 stsp #include "got_object.h"
29 4027f31a 2017-11-04 stsp
30 91a3d81f 2018-11-11 stsp #include "got_lib_delta.h"
31 91a3d81f 2018-11-11 stsp #include "got_lib_inflate.h"
32 91a3d81f 2018-11-11 stsp #include "got_lib_object.h"
33 91a3d81f 2018-11-11 stsp #include "got_lib_sha1.h"
34 91a3d81f 2018-11-11 stsp
35 2b4402a2 2017-11-05 stsp #ifndef nitems
36 2b4402a2 2017-11-05 stsp #define nitems(_a) (sizeof(_a) / sizeof((_a)[0]))
37 2b4402a2 2017-11-05 stsp #endif
38 4027f31a 2017-11-04 stsp
39 4027f31a 2017-11-04 stsp const struct got_error *
40 4027f31a 2017-11-04 stsp got_error(int code)
41 4027f31a 2017-11-04 stsp {
42 4027f31a 2017-11-04 stsp int i;
43 4027f31a 2017-11-04 stsp
44 4027f31a 2017-11-04 stsp for (i = 0; i < nitems(got_errors); i++) {
45 4027f31a 2017-11-04 stsp if (code == got_errors[i].code)
46 4027f31a 2017-11-04 stsp return &got_errors[i];
47 4027f31a 2017-11-04 stsp }
48 4027f31a 2017-11-04 stsp
49 f334529e 2018-01-12 stsp abort();
50 4027f31a 2017-11-04 stsp }
51 f334529e 2018-01-12 stsp
52 f334529e 2018-01-12 stsp const struct got_error *
53 91a3d81f 2018-11-11 stsp got_error_msg(int code, const char *msg)
54 91a3d81f 2018-11-11 stsp {
55 91a3d81f 2018-11-11 stsp static struct got_error err;
56 91a3d81f 2018-11-11 stsp int i;
57 91a3d81f 2018-11-11 stsp
58 91a3d81f 2018-11-11 stsp for (i = 0; i < nitems(got_errors); i++) {
59 91a3d81f 2018-11-11 stsp if (code == got_errors[i].code) {
60 91a3d81f 2018-11-11 stsp err.code = code;
61 91a3d81f 2018-11-11 stsp err.msg = msg;
62 8fa9fd14 2018-11-11 stsp return &err;
63 91a3d81f 2018-11-11 stsp }
64 91a3d81f 2018-11-11 stsp }
65 91a3d81f 2018-11-11 stsp
66 91a3d81f 2018-11-11 stsp abort();
67 91a3d81f 2018-11-11 stsp }
68 91a3d81f 2018-11-11 stsp
69 91a3d81f 2018-11-11 stsp const struct got_error *
70 f334529e 2018-01-12 stsp got_error_from_errno()
71 f334529e 2018-01-12 stsp {
72 f334529e 2018-01-12 stsp static struct got_error err;
73 f334529e 2018-01-12 stsp
74 f334529e 2018-01-12 stsp err.code = GOT_ERR_ERRNO;
75 b4691ea5 2018-04-02 stsp err.msg = strerror(errno);
76 f334529e 2018-01-12 stsp return &err;
77 f334529e 2018-01-12 stsp }
78 8251fdbc 2018-01-12 stsp
79 8251fdbc 2018-01-12 stsp const struct got_error *
80 1a76625f 2018-10-22 stsp got_error_set_errno(int code)
81 1a76625f 2018-10-22 stsp {
82 1a76625f 2018-10-22 stsp errno = code;
83 1a76625f 2018-10-22 stsp return got_error_from_errno();
84 1a76625f 2018-10-22 stsp }
85 1a76625f 2018-10-22 stsp
86 1a76625f 2018-10-22 stsp const struct got_error *
87 8251fdbc 2018-01-12 stsp got_ferror(FILE *f, int code)
88 8251fdbc 2018-01-12 stsp {
89 8251fdbc 2018-01-12 stsp if (ferror(f))
90 8251fdbc 2018-01-12 stsp return got_error_from_errno();
91 8251fdbc 2018-01-12 stsp return got_error(code);
92 8251fdbc 2018-01-12 stsp }
93 91a3d81f 2018-11-11 stsp
94 91a3d81f 2018-11-11 stsp const struct got_error *
95 91a3d81f 2018-11-11 stsp got_error_no_obj(struct got_object_id *id)
96 91a3d81f 2018-11-11 stsp {
97 91a3d81f 2018-11-11 stsp static char msg[sizeof("object not found") +
98 91a3d81f 2018-11-11 stsp SHA1_DIGEST_STRING_LENGTH];
99 91a3d81f 2018-11-11 stsp char id_str[SHA1_DIGEST_STRING_LENGTH];
100 91a3d81f 2018-11-11 stsp int ret;
101 91a3d81f 2018-11-11 stsp
102 91a3d81f 2018-11-11 stsp if (!got_sha1_digest_to_str(id->sha1, id_str, sizeof(id_str)))
103 91a3d81f 2018-11-11 stsp return got_error(GOT_ERR_NO_OBJ);
104 91a3d81f 2018-11-11 stsp
105 91a3d81f 2018-11-11 stsp ret = snprintf(msg, sizeof(msg), "object %s not found", id_str);
106 91a3d81f 2018-11-11 stsp if (ret == -1 || ret >= sizeof(msg))
107 91a3d81f 2018-11-11 stsp return got_error(GOT_ERR_NO_OBJ);
108 91a3d81f 2018-11-11 stsp
109 91a3d81f 2018-11-11 stsp return got_error_msg(GOT_ERR_NO_OBJ, msg);
110 91a3d81f 2018-11-11 stsp }
111 2aa0475c 2019-02-03 stsp
112 2aa0475c 2019-02-03 stsp const struct got_error *
113 2aa0475c 2019-02-03 stsp got_error_not_ref(const char *refname)
114 2aa0475c 2019-02-03 stsp {
115 2aa0475c 2019-02-03 stsp static char msg[sizeof("reference not found") + 1004];
116 2aa0475c 2019-02-03 stsp int ret;
117 2aa0475c 2019-02-03 stsp
118 2aa0475c 2019-02-03 stsp ret = snprintf(msg, sizeof(msg), "reference %s not found", refname);
119 2aa0475c 2019-02-03 stsp if (ret == -1 || ret >= sizeof(msg))
120 2aa0475c 2019-02-03 stsp return got_error(GOT_ERR_NOT_REF);
121 2aa0475c 2019-02-03 stsp
122 2aa0475c 2019-02-03 stsp return got_error_msg(GOT_ERR_NOT_REF, msg);
123 2aa0475c 2019-02-03 stsp }
124 09589288 2019-03-10 stsp
125 09589288 2019-03-10 stsp const struct got_error *
126 09589288 2019-03-10 stsp got_error_uuid(uint32_t uuid_status)
127 09589288 2019-03-10 stsp {
128 09589288 2019-03-10 stsp switch (uuid_status) {
129 09589288 2019-03-10 stsp case uuid_s_ok:
130 09589288 2019-03-10 stsp return NULL;
131 09589288 2019-03-10 stsp case uuid_s_bad_version:
132 09589288 2019-03-10 stsp return got_error(GOT_ERR_UUID_VERSION);
133 09589288 2019-03-10 stsp case uuid_s_invalid_string_uuid:
134 09589288 2019-03-10 stsp return got_error(GOT_ERR_UUID_INVALID);
135 09589288 2019-03-10 stsp case uuid_s_no_memory:
136 09589288 2019-03-10 stsp return got_error_set_errno(ENOMEM);
137 09589288 2019-03-10 stsp default:
138 09589288 2019-03-10 stsp return got_error(GOT_ERR_UUID);
139 09589288 2019-03-10 stsp }
140 09589288 2019-03-10 stsp }