chiark / gitweb /
test: skip instead of fail if crypto kmods are not available
[elogind.git] / src / test / test-id128.c
1 /***
2   This file is part of systemd.
3
4   Copyright 2011 Lennart Poettering
5
6   systemd is free software; you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License as published by
8   the Free Software Foundation; either version 2.1 of the License, or
9   (at your option) any later version.
10
11   systemd is distributed in the hope that it will be useful, but
12   WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14   Lesser General Public License for more details.
15
16   You should have received a copy of the GNU Lesser General Public License
17   along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <string.h>
21
22 #include "sd-daemon.h"
23 #include "sd-id128.h"
24
25 #include "alloc-util.h"
26 #include "fd-util.h"
27 #include "fileio.h"
28 #include "id128-util.h"
29 #include "macro.h"
30 #include "string-util.h"
31 #include "util.h"
32
33 #define ID128_WALDI SD_ID128_MAKE(01, 02, 03, 04, 05, 06, 07, 08, 09, 0a, 0b, 0c, 0d, 0e, 0f, 10)
34 #define STR_WALDI "0102030405060708090a0b0c0d0e0f10"
35 #define UUID_WALDI "01020304-0506-0708-090a-0b0c0d0e0f10"
36
37 int main(int argc, char *argv[]) {
38         sd_id128_t id, id2;
39         char t[33], q[37];
40         _cleanup_free_ char *b = NULL;
41         _cleanup_close_ int fd = -1;
42         int r;
43
44         assert_se(sd_id128_randomize(&id) == 0);
45         printf("random: %s\n", sd_id128_to_string(id, t));
46
47         assert_se(sd_id128_from_string(t, &id2) == 0);
48         assert_se(sd_id128_equal(id, id2));
49
50         if (sd_booted() > 0) {
51                 assert_se(sd_id128_get_machine(&id) == 0);
52                 printf("machine: %s\n", sd_id128_to_string(id, t));
53
54                 assert_se(sd_id128_get_boot(&id) == 0);
55                 printf("boot: %s\n", sd_id128_to_string(id, t));
56         }
57
58         printf("waldi: %s\n", sd_id128_to_string(ID128_WALDI, t));
59         assert_se(streq(t, STR_WALDI));
60
61         assert_se(asprintf(&b, SD_ID128_FORMAT_STR, SD_ID128_FORMAT_VAL(ID128_WALDI)) == 32);
62         printf("waldi2: %s\n", b);
63         assert_se(streq(t, b));
64
65         printf("waldi3: %s\n", id128_to_uuid_string(ID128_WALDI, q));
66         assert_se(streq(q, UUID_WALDI));
67
68         b = mfree(b);
69         assert_se(asprintf(&b, ID128_UUID_FORMAT_STR, SD_ID128_FORMAT_VAL(ID128_WALDI)) == 36);
70         printf("waldi4: %s\n", b);
71         assert_se(streq(q, b));
72
73         assert_se(sd_id128_from_string(STR_WALDI, &id) >= 0);
74         assert_se(sd_id128_equal(id, ID128_WALDI));
75
76         assert_se(sd_id128_from_string(UUID_WALDI, &id) >= 0);
77         assert_se(sd_id128_equal(id, ID128_WALDI));
78
79         assert_se(sd_id128_from_string("", &id) < 0);
80         assert_se(sd_id128_from_string("01020304-0506-0708-090a-0b0c0d0e0f101", &id) < 0);
81         assert_se(sd_id128_from_string("01020304-0506-0708-090a-0b0c0d0e0f10-", &id) < 0);
82         assert_se(sd_id128_from_string("01020304-0506-0708-090a0b0c0d0e0f10", &id) < 0);
83         assert_se(sd_id128_from_string("010203040506-0708-090a-0b0c0d0e0f10", &id) < 0);
84
85         assert_se(id128_is_valid(STR_WALDI));
86         assert_se(id128_is_valid(UUID_WALDI));
87         assert_se(!id128_is_valid(""));
88         assert_se(!id128_is_valid("01020304-0506-0708-090a-0b0c0d0e0f101"));
89         assert_se(!id128_is_valid("01020304-0506-0708-090a-0b0c0d0e0f10-"));
90         assert_se(!id128_is_valid("01020304-0506-0708-090a0b0c0d0e0f10"));
91         assert_se(!id128_is_valid("010203040506-0708-090a-0b0c0d0e0f10"));
92
93         fd = open_tmpfile_unlinkable(NULL, O_RDWR|O_CLOEXEC);
94         assert_se(fd >= 0);
95
96         /* First, write as UUID */
97         assert_se(sd_id128_randomize(&id) >= 0);
98         assert_se(id128_write_fd(fd, ID128_UUID, id, false) >= 0);
99
100         assert_se(lseek(fd, 0, SEEK_SET) == 0);
101         assert_se(id128_read_fd(fd, ID128_PLAIN, &id2) == -EINVAL);
102
103         assert_se(lseek(fd, 0, SEEK_SET) == 0);
104         assert_se(id128_read_fd(fd, ID128_UUID, &id2) >= 0);
105         assert_se(sd_id128_equal(id, id2));
106
107         assert_se(lseek(fd, 0, SEEK_SET) == 0);
108         assert_se(id128_read_fd(fd, ID128_ANY, &id2) >= 0);
109         assert_se(sd_id128_equal(id, id2));
110
111         /* Second, write as plain */
112         assert_se(lseek(fd, 0, SEEK_SET) == 0);
113         assert_se(ftruncate(fd, 0) >= 0);
114
115         assert_se(sd_id128_randomize(&id) >= 0);
116         assert_se(id128_write_fd(fd, ID128_PLAIN, id, false) >= 0);
117
118         assert_se(lseek(fd, 0, SEEK_SET) == 0);
119         assert_se(id128_read_fd(fd, ID128_UUID, &id2) == -EINVAL);
120
121         assert_se(lseek(fd, 0, SEEK_SET) == 0);
122         assert_se(id128_read_fd(fd, ID128_PLAIN, &id2) >= 0);
123         assert_se(sd_id128_equal(id, id2));
124
125         assert_se(lseek(fd, 0, SEEK_SET) == 0);
126         assert_se(id128_read_fd(fd, ID128_ANY, &id2) >= 0);
127         assert_se(sd_id128_equal(id, id2));
128
129         /* Third, write plain without trailing newline */
130         assert_se(lseek(fd, 0, SEEK_SET) == 0);
131         assert_se(ftruncate(fd, 0) >= 0);
132
133         assert_se(sd_id128_randomize(&id) >= 0);
134         assert_se(write(fd, sd_id128_to_string(id, t), 32) == 32);
135
136         assert_se(lseek(fd, 0, SEEK_SET) == 0);
137         assert_se(id128_read_fd(fd, ID128_UUID, &id2) == -EINVAL);
138
139         assert_se(lseek(fd, 0, SEEK_SET) == 0);
140         assert_se(id128_read_fd(fd, ID128_PLAIN, &id2) >= 0);
141         assert_se(sd_id128_equal(id, id2));
142
143         /* Third, write UUID without trailing newline */
144         assert_se(lseek(fd, 0, SEEK_SET) == 0);
145         assert_se(ftruncate(fd, 0) >= 0);
146
147         assert_se(sd_id128_randomize(&id) >= 0);
148         assert_se(write(fd, id128_to_uuid_string(id, q), 36) == 36);
149
150         assert_se(lseek(fd, 0, SEEK_SET) == 0);
151         assert_se(id128_read_fd(fd, ID128_PLAIN, &id2) == -EINVAL);
152
153         assert_se(lseek(fd, 0, SEEK_SET) == 0);
154         assert_se(id128_read_fd(fd, ID128_UUID, &id2) >= 0);
155         assert_se(sd_id128_equal(id, id2));
156
157         r = sd_id128_get_machine_app_specific(SD_ID128_MAKE(f0,3d,aa,eb,1c,33,4b,43,a7,32,17,29,44,bf,77,2e), &id);
158         if (r == -EAFNOSUPPORT) {
159                 log_info("khash not supported on this kernel, skipping sd_id128_get_machine_app_specific() checks");
160         } else {
161                 assert_se(r >= 0);
162                 assert_se(sd_id128_get_machine_app_specific(SD_ID128_MAKE(f0,3d,aa,eb,1c,33,4b,43,a7,32,17,29,44,bf,77,2e), &id2) >= 0);
163                 assert_se(sd_id128_equal(id, id2));
164                 assert_se(sd_id128_get_machine_app_specific(SD_ID128_MAKE(51,df,0b,4b,c3,b0,4c,97,80,e2,99,b9,8c,a3,73,b8), &id2) >= 0);
165                 assert_se(!sd_id128_equal(id, id2));
166         }
167
168         /* Query the invocation ID */
169         r = sd_id128_get_invocation(&id);
170         if (r < 0)
171                 log_warning_errno(r, "Failed to get invocation ID, ignoring: %m");
172         else
173                 log_info("Invocation ID: " SD_ID128_FORMAT_STR, SD_ID128_FORMAT_VAL(id));
174
175         return 0;
176 }