]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/journal-remote/microhttpd-util.c
coccinelle: make use of SYNTHETIC_ERRNO
[thirdparty/systemd.git] / src / journal-remote / microhttpd-util.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
e64690a8
ZJS
2
3#include <stddef.h>
4#include <stdio.h>
f12be7e8 5#include <string.h>
e64690a8 6
349cc4a5 7#if HAVE_GNUTLS
f12be7e8
ZJS
8#include <gnutls/gnutls.h>
9#include <gnutls/x509.h>
10#endif
11
b5efdb8a 12#include "alloc-util.h"
07630cea
LP
13#include "log.h"
14#include "macro.h"
cf0fbc49 15#include "microhttpd-util.h"
07630cea
LP
16#include "string-util.h"
17#include "strv.h"
18#include "util.h"
07630cea 19
e64690a8 20void microhttpd_logger(void *arg, const char *fmt, va_list ap) {
4dd5da7f 21 char *f;
bcfce235 22
63c372cb 23 f = strjoina("microhttpd: ", fmt);
bcfce235
LP
24
25 DISABLE_WARNING_FORMAT_NONLITERAL;
79008bdd 26 log_internalv(LOG_INFO, 0, NULL, 0, NULL, f, ap);
bcfce235 27 REENABLE_WARNING;
e64690a8 28}
cafc7f91 29
e7216d11
ZJS
30static int mhd_respond_internal(struct MHD_Connection *connection,
31 enum MHD_RequestTerminationCode code,
f5e757f1 32 const char *buffer,
e7216d11
ZJS
33 size_t size,
34 enum MHD_ResponseMemoryMode mode) {
f12be7e8 35 struct MHD_Response *response;
e7216d11 36 int r;
f12be7e8
ZJS
37
38 assert(connection);
39
f5e757f1 40 response = MHD_create_response_from_buffer(size, (char*) buffer, mode);
f12be7e8
ZJS
41 if (!response)
42 return MHD_NO;
43
595bfe7d 44 log_debug("Queueing response %u: %s", code, buffer);
f12be7e8 45 MHD_add_response_header(response, "Content-Type", "text/plain");
e7216d11 46 r = MHD_queue_response(connection, code, response);
f12be7e8
ZJS
47 MHD_destroy_response(response);
48
e7216d11 49 return r;
f12be7e8
ZJS
50}
51
e7216d11
ZJS
52int mhd_respond(struct MHD_Connection *connection,
53 enum MHD_RequestTerminationCode code,
54 const char *message) {
55
f5e757f1
ZJS
56 const char *fmt;
57
58 fmt = strjoina(message, "\n");
59
e7216d11 60 return mhd_respond_internal(connection, code,
f5e757f1 61 fmt, strlen(message) + 1,
e7216d11
ZJS
62 MHD_RESPMEM_PERSISTENT);
63}
64
65int mhd_respond_oom(struct MHD_Connection *connection) {
f5e757f1 66 return mhd_respond(connection, MHD_HTTP_SERVICE_UNAVAILABLE, "Out of memory.");
e7216d11
ZJS
67}
68
69int mhd_respondf(struct MHD_Connection *connection,
1b4cd646 70 int error,
e7216d11
ZJS
71 enum MHD_RequestTerminationCode code,
72 const char *format, ...) {
f12be7e8 73
f5e757f1 74 const char *fmt;
f12be7e8
ZJS
75 char *m;
76 int r;
77 va_list ap;
78
79 assert(connection);
80 assert(format);
81
1b4cd646
ZJS
82 if (error < 0)
83 error = -error;
84 errno = -error;
f5e757f1 85 fmt = strjoina(format, "\n");
f12be7e8 86 va_start(ap, format);
c8304ba9
ZJS
87#pragma GCC diagnostic push
88#pragma GCC diagnostic ignored "-Wformat-nonliteral"
f5e757f1 89 r = vasprintf(&m, fmt, ap);
c8304ba9 90#pragma GCC diagnostic pop
f12be7e8
ZJS
91 va_end(ap);
92
93 if (r < 0)
94 return respond_oom(connection);
95
4dd5da7f 96 return mhd_respond_internal(connection, code, m, r, MHD_RESPMEM_MUST_FREE);
f12be7e8
ZJS
97}
98
349cc4a5 99#if HAVE_GNUTLS
cafc7f91 100
5937a4d4
ZJS
101static struct {
102 const char *const names[4];
103 int level;
104 bool enabled;
105} gnutls_log_map[] = {
106 { {"0"}, LOG_DEBUG },
107 { {"1", "audit"}, LOG_WARNING, true}, /* gnutls session audit */
108 { {"2", "assert"}, LOG_DEBUG }, /* gnutls assert log */
109 { {"3", "hsk", "ext"}, LOG_DEBUG }, /* gnutls handshake log */
110 { {"4", "rec"}, LOG_DEBUG }, /* gnutls record log */
111 { {"5", "dtls"}, LOG_DEBUG }, /* gnutls DTLS log */
112 { {"6", "buf"}, LOG_DEBUG },
113 { {"7", "write", "read"}, LOG_DEBUG },
114 { {"8"}, LOG_DEBUG },
115 { {"9", "enc", "int"}, LOG_DEBUG },
cafc7f91
ZJS
116};
117
d357562c 118static void log_func_gnutls(int level, const char *message) {
cafc7f91
ZJS
119 assert_se(message);
120
5937a4d4
ZJS
121 if (0 <= level && level < (int) ELEMENTSOF(gnutls_log_map)) {
122 if (gnutls_log_map[level].enabled)
79008bdd 123 log_internal(gnutls_log_map[level].level, 0, NULL, 0, NULL, "gnutls %d/%s: %s", level, gnutls_log_map[level].names[1], message);
5937a4d4
ZJS
124 } else {
125 log_debug("Received GNUTLS message with unknown level %d.", level);
79008bdd 126 log_internal(LOG_DEBUG, 0, NULL, 0, NULL, "gnutls: %s", message);
5937a4d4
ZJS
127 }
128}
129
d357562c
ZJS
130static void log_reset_gnutls_level(void) {
131 int i;
132
133 for (i = ELEMENTSOF(gnutls_log_map) - 1; i >= 0; i--)
134 if (gnutls_log_map[i].enabled) {
135 log_debug("Setting gnutls log level to %d", i);
136 gnutls_global_set_log_level(i);
137 break;
138 }
139}
140
141static int log_enable_gnutls_category(const char *cat) {
5937a4d4
ZJS
142 unsigned i;
143
144 if (streq(cat, "all")) {
145 for (i = 0; i < ELEMENTSOF(gnutls_log_map); i++)
146 gnutls_log_map[i].enabled = true;
147 log_reset_gnutls_level();
148 return 0;
149 } else
150 for (i = 0; i < ELEMENTSOF(gnutls_log_map); i++)
151 if (strv_contains((char**)gnutls_log_map[i].names, cat)) {
152 gnutls_log_map[i].enabled = true;
153 log_reset_gnutls_level();
154 return 0;
155 }
baaa35ad 156 return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "No such log category: %s", cat);
5937a4d4
ZJS
157}
158
d357562c
ZJS
159int setup_gnutls_logger(char **categories) {
160 char **cat;
161 int r;
cafc7f91 162
d357562c
ZJS
163 gnutls_global_set_log_function(log_func_gnutls);
164
165 if (categories) {
166 STRV_FOREACH(cat, categories) {
167 r = log_enable_gnutls_category(*cat);
168 if (r < 0)
169 return r;
5937a4d4 170 }
d357562c
ZJS
171 } else
172 log_reset_gnutls_level();
173
174 return 0;
cafc7f91
ZJS
175}
176
f12be7e8
ZJS
177static int verify_cert_authorized(gnutls_session_t session) {
178 unsigned status;
179 gnutls_certificate_type_t type;
180 gnutls_datum_t out;
181 int r;
182
183 r = gnutls_certificate_verify_peers2(session, &status);
23bbb0de
MS
184 if (r < 0)
185 return log_error_errno(r, "gnutls_certificate_verify_peers2 failed: %m");
f12be7e8
ZJS
186
187 type = gnutls_certificate_type_get(session);
188 r = gnutls_certificate_verification_status_print(status, type, &out, 0);
23bbb0de
MS
189 if (r < 0)
190 return log_error_errno(r, "gnutls_certificate_verification_status_print failed: %m");
f12be7e8 191
0e72da6f 192 log_debug("Certificate status: %s", out.data);
9c3cf969 193 gnutls_free(out.data);
f12be7e8
ZJS
194
195 return status == 0 ? 0 : -EPERM;
196}
197
198static int get_client_cert(gnutls_session_t session, gnutls_x509_crt_t *client_cert) {
199 const gnutls_datum_t *pcert;
200 unsigned listsize;
201 gnutls_x509_crt_t cert;
202 int r;
203
204 assert(session);
205 assert(client_cert);
206
207 pcert = gnutls_certificate_get_peers(session, &listsize);
baaa35ad
ZJS
208 if (!pcert || !listsize)
209 return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
210 "Failed to retrieve certificate chain");
f12be7e8
ZJS
211
212 r = gnutls_x509_crt_init(&cert);
213 if (r < 0) {
214 log_error("Failed to initialize client certificate");
215 return r;
216 }
217
218 /* Note that by passing values between 0 and listsize here, you
219 can get access to the CA's certs */
220 r = gnutls_x509_crt_import(cert, &pcert[0], GNUTLS_X509_FMT_DER);
221 if (r < 0) {
222 log_error("Failed to import client certificate");
223 gnutls_x509_crt_deinit(cert);
224 return r;
225 }
226
227 *client_cert = cert;
228 return 0;
229}
230
231static int get_auth_dn(gnutls_x509_crt_t client_cert, char **buf) {
232 size_t len = 0;
233 int r;
234
235 assert(buf);
236 assert(*buf == NULL);
237
238 r = gnutls_x509_crt_get_dn(client_cert, NULL, &len);
239 if (r != GNUTLS_E_SHORT_MEMORY_BUFFER) {
240 log_error("gnutls_x509_crt_get_dn failed");
241 return r;
242 }
243
244 *buf = malloc(len);
245 if (!*buf)
246 return log_oom();
247
248 gnutls_x509_crt_get_dn(client_cert, *buf, &len);
249 return 0;
250}
251
32c3d714
MS
252static inline void gnutls_x509_crt_deinitp(gnutls_x509_crt_t *p) {
253 gnutls_x509_crt_deinit(*p);
254}
255
8201af08 256int check_permissions(struct MHD_Connection *connection, int *code, char **hostname) {
f12be7e8
ZJS
257 const union MHD_ConnectionInfo *ci;
258 gnutls_session_t session;
32c3d714 259 _cleanup_(gnutls_x509_crt_deinitp) gnutls_x509_crt_t client_cert = NULL;
c8b32e11 260 _cleanup_free_ char *buf = NULL;
f12be7e8
ZJS
261 int r;
262
263 assert(connection);
264 assert(code);
265
266 *code = 0;
267
268 ci = MHD_get_connection_info(connection,
269 MHD_CONNECTION_INFO_GNUTLS_SESSION);
270 if (!ci) {
cc64d017 271 log_error("MHD_get_connection_info failed: session is unencrypted");
e7216d11
ZJS
272 *code = mhd_respond(connection, MHD_HTTP_FORBIDDEN,
273 "Encrypted connection is required");
cc64d017 274 return -EPERM;
f12be7e8
ZJS
275 }
276 session = ci->tls_session;
277 assert(session);
278
279 r = get_client_cert(session, &client_cert);
280 if (r < 0) {
e7216d11
ZJS
281 *code = mhd_respond(connection, MHD_HTTP_UNAUTHORIZED,
282 "Authorization through certificate is required");
f12be7e8
ZJS
283 return -EPERM;
284 }
285
286 r = get_auth_dn(client_cert, &buf);
287 if (r < 0) {
e7216d11
ZJS
288 *code = mhd_respond(connection, MHD_HTTP_UNAUTHORIZED,
289 "Failed to determine distinguished name from certificate");
f12be7e8
ZJS
290 return -EPERM;
291 }
292
0e72da6f 293 log_debug("Connection from %s", buf);
f12be7e8 294
1cc6c93a
YW
295 if (hostname)
296 *hostname = TAKE_PTR(buf);
8201af08 297
f12be7e8
ZJS
298 r = verify_cert_authorized(session);
299 if (r < 0) {
cc64d017 300 log_warning("Client is not authorized");
e7216d11
ZJS
301 *code = mhd_respond(connection, MHD_HTTP_UNAUTHORIZED,
302 "Client certificate not signed by recognized authority");
f12be7e8
ZJS
303 }
304 return r;
305}
306
307#else
93c0969c 308int check_permissions(struct MHD_Connection *connection, int *code, char **hostname) {
f12be7e8
ZJS
309 return -EPERM;
310}
d357562c
ZJS
311
312int setup_gnutls_logger(char **categories) {
313 if (categories)
314 log_notice("Ignoring specified gnutls logging categories — gnutls not available.");
315 return 0;
316}
cafc7f91 317#endif