File: virt-pki-validate.c

package info (click to toggle)
libvirt 11.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 199,880 kB
  • sloc: ansic: 531,532; xml: 289,675; python: 11,881; perl: 2,629; sh: 2,172; makefile: 447; javascript: 126; cpp: 22
file content (424 lines) | stat: -rw-r--r-- 15,944 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
/*
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#include <config.h>
#include "internal.h"

#include <getopt.h>
#include <stdio.h>
#include <stdlib.h>

#include <gnutls/gnutls.h>
#include <gnutls/x509.h>

#include "virgettext.h"
#include "virfile.h"
#include "virnettlsconfig.h"
#include "virnettlscert.h"
#include "virutil.h"
#include "virt-validate-common.h"

static bool
virPKIValidateFile(const char *file,
                   uid_t owner,
                   gid_t group,
                   mode_t mode)
{
    struct stat sb;
    if (stat(file, &sb) < 0)
        return false;

    if (sb.st_uid != owner ||
        sb.st_gid != group)
        return false;

    return (sb.st_mode & 0777) == mode;
}

#define FILE_REQUIRE_EXISTS(scope, path, message, hint, ...) \
    do { \
      virValidateCheck(scope, "%s", message); \
      if (!virFileExists(path)) { \
          virValidateFail(VIR_VALIDATE_FAIL, hint, __VA_ARGS__); \
          ok = false; \
          goto done; \
      } else { \
          virValidatePass(); \
      } \
    } while (0)

#define FILE_REQUIRE_ACCESS(scope, path, message, uid, gid, mode, hint, ...) \
    do { \
        virValidateCheck(scope, "%s", message); \
        if (!virPKIValidateFile(path, uid, gid, mode)) { \
            virValidateFail(VIR_VALIDATE_FAIL, hint, __VA_ARGS__); \
            ok = false; \
        } else { \
            virValidatePass(); \
        } \
    } while (0)

static bool
virPKIValidateTrust(bool system, const char *path)
{
    g_autofree char *cacert = NULL, *cacrl = NULL;
    bool ok = true;

    if (system) {
        virNetTLSConfigSystemTrust(&cacert,
                                   &cacrl);

        FILE_REQUIRE_EXISTS("TRUST",
                            LIBVIRT_PKI_DIR,
                            _("Checking if system PKI dir exists"),
                            _("The system PKI dir %1$s is usually installed as part of the base filesystem or openssl packages"),
                            LIBVIRT_PKI_DIR);

        FILE_REQUIRE_ACCESS("TRUST",
                            LIBVIRT_PKI_DIR,
                            _("Checking system PKI dir access"),
                            0, 0, 0755,
                            _("The system PKI dir %1$s must be accessible to all users. As root, run: chown root.root; chmod 0755 %2$s"),
                            LIBVIRT_PKI_DIR, LIBVIRT_PKI_DIR);


        FILE_REQUIRE_EXISTS("TRUST",
                            LIBVIRT_CACERT_DIR,
                            _("Checking if system CA dir exists"),
                            _("The system CA dir %1$s is usually installed as part of the base filesystem or openssl packages"),
                            LIBVIRT_CACERT_DIR);

        FILE_REQUIRE_ACCESS("TRUST",
                            LIBVIRT_CACERT_DIR,
                            _("Checking system CA dir access"),
                            0, 0, 0755,
                            _("The system CA dir %1$s must be accessible to all users. As root, run: chown root.root; chmod 0755 %2$s"),
                            LIBVIRT_CACERT_DIR, LIBVIRT_CACERT_DIR);
    } else if (path) {
        virNetTLSConfigCustomTrust(path,
                                   &cacert,
                                   &cacrl);

        FILE_REQUIRE_EXISTS("TRUST",
                            path,
                            _("Checking if custom PKI base dir exists"),
                            _("Create the dir %1$s"),
                            path);

        FILE_REQUIRE_ACCESS("TRUST",
                            path,
                            _("Checking custom PKI base dir access"),
                            getuid(), getgid(), 0700,
                            _("The PKI base dir %1$s must not be accessible to other users. Run: chown %2$d.%3$d %4$s; chmod 0700 %5$s"),
                            path, getuid(), getgid(), path, path);
    } else {
        g_autofree char *pkipath = virNetTLSConfigUserPKIBaseDir();

        virNetTLSConfigUserTrust(&cacert,
                                 &cacrl);

        FILE_REQUIRE_EXISTS("TRUST",
                            pkipath,
                            _("Checking if user PKI base dir exists"),
                            _("Create the dir %1$s"),
                            pkipath);

        FILE_REQUIRE_ACCESS("TRUST",
                            pkipath,
                            _("Checking user PKI base dir access"),
                            getuid(), getgid(), 0700,
                            _("The PKI base dir %1$s must not be accessible to other users. Run: chown %2$d.%3$d %4$s; chmod 0700 %5$s"),
                            pkipath, getuid(), getgid(), pkipath, pkipath);
    }

    FILE_REQUIRE_EXISTS("TRUST",
                        cacert,
                        _("Checking if CA cert exists"),
                        _("The machine cannot act as a client or server. See https://libvirt.org/kbase/tlscerts.html#setting-up-a-certificate-authority-ca on how to install %1$s"),
                        cacert);

    if (system) {
        FILE_REQUIRE_ACCESS("TRUST",
                            cacert,
                            _("Checking CA cert access"),
                            0, 0, 0644,
                            _("The CA certificate %1$s must be accessible to all users. As root run: chown root.root %2$s; chmod 0644 %3$s"),
                            cacert, cacert, cacert);
    } else {
        FILE_REQUIRE_ACCESS("TRUST",
                            cacert,
                            _("Checking CA cert access"),
                            getuid(), getgid(), 0600,
                            _("The CA certificate %1$s must not be accessible to other users. As this user, run: chown %2$d.%3$d %4$s; chmod 0600 %5$s"),
                            cacert, getuid(), getgid(), cacert, cacert);
    }

 done:
    return ok;
}

static bool
virPKIValidateIdentity(bool isServer, bool system, const char *path)
{
    g_autofree char *cacert = NULL, *cacrl = NULL;
    g_autofree char *cert = NULL, *key = NULL;
    bool ok = true;
    const char *scope = isServer ? "SERVER" : "CLIENT";

    if (system) {
        virNetTLSConfigSystemTrust(&cacert,
                                   &cacrl);
        virNetTLSConfigSystemIdentity(isServer,
                                      &cert,
                                      &key);

        FILE_REQUIRE_EXISTS(scope,
                            LIBVIRT_CERT_DIR,
                            _("Checking if system cert dir exists"),
                            _("The system cert dir %1$s is usually installed as part of the libvirt package"),
                            LIBVIRT_CERT_DIR);

        FILE_REQUIRE_ACCESS(scope,
                            LIBVIRT_CERT_DIR,
                            _("Checking system cert dir access"),
                            0, 0, 0755,
                            _("The system cert dir %1$s must be accessible to all users. As root, run: chown root.root; chmod 0755 %2$s"),
                            LIBVIRT_CERT_DIR, LIBVIRT_CERT_DIR);

        FILE_REQUIRE_EXISTS(scope,
                            LIBVIRT_KEY_DIR,
                            _("Checking if system key dir exists"),
                            _("The system key dir %1$s is usually installed as part of the libvirt package"),
                            LIBVIRT_KEY_DIR);

        FILE_REQUIRE_ACCESS(scope,
                            LIBVIRT_KEY_DIR,
                            _("Checking system key dir access"),
                            0, 0, 0755,
                            _("The system key dir %1$s must be accessible to all users. As root, run: chown root.root; chmod 0755 %2$s"),
                            LIBVIRT_KEY_DIR, LIBVIRT_KEY_DIR);
    } else if (path) {
        virNetTLSConfigCustomTrust(path,
                                   &cacert,
                                   &cacrl);
        virNetTLSConfigCustomIdentity(path,
                                      isServer,
                                      &cert,
                                      &key);
    } else {
        virNetTLSConfigUserTrust(&cacert,
                                 &cacrl);
        virNetTLSConfigUserIdentity(isServer,
                                    &cert,
                                    &key);
    }

    FILE_REQUIRE_EXISTS(scope,
                        key,
                        _("Checking if key exists"),
                        isServer ?
                        _("The machine cannot act as a server. See https://libvirt.org/kbase/tlscerts.html#issuing-server-certificates on how to regenerate %1$s") :
                        _("The machine cannot act as a client. See https://libvirt.org/kbase/tlscerts.html#issuing-client-certificates on how to regenerate %1$s"),
                        key);

    if (system) {
        FILE_REQUIRE_ACCESS(scope,
                            key,
                            _("Checking key access"),
                            0, 0, isServer ? 0600 : 0644,
                            isServer ?
                            _("The server key %1$s must not be accessible to unprivileged users. As root run: chown root.root %2$s; chmod 0600 %3$s") :
                            _("The client key %1$s must be accessible to all users. As root run: chown root.root %2$s; chmod 0644 %3$s"),
                            key, key, key);
    } else {
        FILE_REQUIRE_ACCESS(scope,
                            key,
                            _("Checking key access"),
                            getuid(), getgid(), 0600,
                            isServer ?
                            _("The server key %1$s must be not be accessible to other users. As this user, run: chown %2$d.%3$d %4$s; chmod 0600 %5$s") :
                            _("The client key %1$s must be not be accessible to other users. As this user, run: chown %2$d.%3$d %4$s; chmod 0600 %5$s"),
                            key, getuid(), getgid(), key, key);
    }

    FILE_REQUIRE_EXISTS(scope,
                        cert,
                        _("Checking if cert exists"),
                        isServer ?
                        _("The machine cannot act as a server. See https://libvirt.org/kbase/tlscerts.html#issuing-server-certificates on how to regenerate %1$s") :
                        _("The machine cannot act as a client. See https://libvirt.org/kbase/tlscerts.html#issuing-client-certificates on how to regenerate %1$s"),
                        cert);

    if (system) {
        FILE_REQUIRE_ACCESS(scope,
                            cert,
                            _("Checking cert access"),
                            0, 0, 0644,
                            isServer ?
                            _("The server cert %1$s must be accessible to all users. As root run: chown root.root %2$s; chmod 0644 %3$s") :
                            _("The client cert %1$s must be accessible to all users. As root run: chown root.root %2$s; chmod 0644 %3$s"),
                            cert, cert, cert);
    } else {
        FILE_REQUIRE_ACCESS(scope,
                            cert,
                            _("Checking cert access"),
                            getuid(), getgid(), 0600,
                            isServer ?
                            _("The server cert %1$s must be restricted to this user. As this user, run: chown %2$d.%3$d %4$s; chmod 0600 %5$s") :
                            _("The client cert %1$s must be restricted to this user. As this user, run: chown %2$d.%3$d %4$s; chmod 0600 %5$s"),
                            cert, getuid(), getgid(), cert, cert);
    }

    virValidateCheck(scope, "%s", _("Checking cert properties"));

    if (virNetTLSCertSanityCheck(isServer,
                                 cacert,
                                 cert) < 0) {
        virValidateFail(VIR_VALIDATE_FAIL, "%s",
                        virGetLastErrorMessage());
        ok = false;
    } else {
        virValidatePass();
    }

    if (isServer) {
        gnutls_x509_crt_t crt;

        virValidateCheck(scope, "%s", _("Checking cert hostname match"));

        if (!(crt = virNetTLSCertLoadFromFile(cert, true))) {
            virValidateFail(VIR_VALIDATE_FAIL,
                            _("Unable to load %1$s: %2$s"),
                            cert, virGetLastErrorMessage());
        } else {
            g_autofree char *hostname = virGetHostname();
            int ret = gnutls_x509_crt_check_hostname(crt, hostname);
            gnutls_x509_crt_deinit(crt);
            if (!ret) {
                /* Only warning, since there can be valid reasons for mis-match */
                virValidateFail(VIR_VALIDATE_WARN,
                                _("Certificate %1$s owner does not match the hostname %2$s"),
                                cert, hostname);
                ok = false;
            } else {
                virValidatePass();
            }
        }
    }

 done:
    return ok;
}


static void
print_usage(const char *progname,
            FILE *out)
{
  fprintf(out,
          _("Usage:\n"
            "  %1$s { -v | -h } [TRUST|SERVER|CLIENT]\n"
            "\n"
            "Validate TLS certificate configuration\n"
            "\n"
            "options:\n"
            "  -s     | --system   validate system certificates (default)\n"
            "  -u     | --user     validate user certificates\n"
            "  -p DIR | --path DIR validate custom certificate path\n"
            "  -h     | --help     display this help and exit\n"
            "  -v     | --version  output version information and exit\n"),
          progname);
}

int main(int argc, char **argv)
{
    const char *scope = NULL;
    bool system = false;
    bool user = false;
    const char *path = NULL;
    bool quiet = false;
    int arg = 0;
    bool ok = true;
    const char *progname = argv[0];
    struct option opt[] = {
        { "help", no_argument, NULL, 'h' },
        { "version", no_argument, NULL, 'v' },
        { "system", no_argument, NULL, 's' },
        { "user", no_argument, NULL, 'u' },
        { "path", required_argument, NULL, 'p' },
        { NULL, 0, NULL, 0 },
    };

    if (virGettextInitialize() < 0)
        return EXIT_FAILURE;

    while ((arg = getopt_long(argc, argv, "hvsup:", opt, NULL)) != -1) {
        switch (arg) {
        case 's':
            system = true;
            break;

        case 'u':
            user = true;
            break;

        case 'p':
            path = optarg;
            break;

        case 'v':
            printf("%s\n", PACKAGE_VERSION);
            return EXIT_SUCCESS;

        case 'h':
            print_usage(progname, stdout);
            return EXIT_SUCCESS;

        case 'q':
            quiet = true;
            break;

        case '?':
        default:
            print_usage(progname, stderr);
            return EXIT_FAILURE;
        }
    }

    if ((argc - optind) > 2) {
        fprintf(stderr, _("%1$s: too many command line arguments\n"), argv[0]);
        print_usage(progname, stderr);
        return EXIT_FAILURE;
    }

    if (argc > 1)
        scope = argv[optind];

    virValidateSetQuiet(quiet);

    if ((system && user) ||
        (system && path) ||
        (user && path)) {
        g_printerr("--system, --user & --path are mutually exclusive\n");
        return EXIT_FAILURE;
    }

    if (!system && !user && !path)
        system = true;

    if ((!scope || g_str_equal(scope, "trust")) &&
        !virPKIValidateTrust(system, path))
        ok = false;
    if ((!scope || g_str_equal(scope, "server")) &&
        !virPKIValidateIdentity(true, system, path))
        ok = false;
    if ((!scope || g_str_equal(scope, "client")) &&
        !virPKIValidateIdentity(false, system, path))
        ok = false;

    if (!ok)
        return EXIT_FAILURE;

    return EXIT_SUCCESS;
}