• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

systemd / systemd / 28272947092

26 Jun 2026 08:38PM UTC coverage: 72.893% (+0.2%) from 72.703%
28272947092

push

github

poettering
sysupdate: Address review feedback on CheckNew varlink scaffolding

Follow-up to #42422:

 - Rename process_image() to context_process_image(), since it now
   operates on a Context object.
 - Use IN_SET() in image_type_can_sysupdate() instead of a switch.
 - Name the return parameters of context_list_components() ret_xyz, per
   our coding style.
 - Drop a redundant "else" after a return in vl_method_check_new().

9 of 11 new or added lines in 1 file covered. (81.82%)

12567 existing lines in 144 files now uncovered.

341026 of 467845 relevant lines covered (72.89%)

1339355.33 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

95.6
/src/basic/utf8.c
1
/* SPDX-License-Identifier: LGPL-2.0-or-later */
2

3
/* Parts of this file are based on the GLIB utf8 validation functions. The original copyright follows.
4
 *
5
 * gutf8.c - Operations on UTF-8 strings.
6
 * Copyright (C) 1999 Tom Tromey
7
 * Copyright (C) 2000 Red Hat, Inc.
8
 */
9

10
#include "alloc-util.h"
11
#include "gunicode.h"
12
#include "hexdecoct.h"
13
#include "string-util.h"
14
#include "utf8.h"
15

16
bool unichar_is_valid(char32_t ch) {
97,434✔
17

18
        if (ch >= 0x110000) /* End of unicode space */
97,434✔
19
                return false;
20
        if ((ch & 0xFFFFF800) == 0xD800) /* Reserved area for UTF-16 */
97,434✔
21
                return false;
22
        if ((ch >= 0xFDD0) && (ch <= 0xFDEF)) /* Reserved */
97,434✔
23
                return false;
24
        if ((ch & 0xFFFE) == 0xFFFE) /* BOM (Byte Order Mark) */
97,434✔
25
                return false;
26✔
26

27
        return true;
28
}
29

30
static bool unichar_is_control(char32_t ch) {
122,868,472✔
31

32
        /*
33
          0 to ' '-1 is the C0 range.
34
          DEL=0x7F, and DEL+1 to 0x9F is C1 range.
35
          '\t' is in C0 range, but more or less harmless and commonly used.
36
        */
37

38
        return (ch < ' ' && !IN_SET(ch, '\t', '\n')) ||
122,868,472✔
39
                (0x7F <= ch && ch <= 0x9F);
122,868,291✔
40
}
41

42
/* count of characters used to encode one unicode char */
43
static size_t utf8_encoded_expected_len(uint8_t c) {
1,270,190,379✔
44
        if (c < 0x80)
1,270,190,379✔
45
                return 1;
46
        if ((c & 0xe0) == 0xc0)
311,992✔
47
                return 2;
48
        if ((c & 0xf0) == 0xe0)
284,514✔
49
                return 3;
50
        if ((c & 0xf8) == 0xf0)
757✔
51
                return 4;
52
        if ((c & 0xfc) == 0xf8)
91✔
53
                return 5;
54
        if ((c & 0xfe) == 0xfc)
91✔
55
                return 6;
×
56

57
        return 0;
58
}
59

60
/* decode one unicode char */
61
int utf8_encoded_to_unichar(const char *str, char32_t *ret_unichar) {
136,222,855✔
62
        char32_t unichar;
136,222,855✔
63
        size_t len;
136,222,855✔
64

65
        assert(str);
136,222,855✔
66
        assert(ret_unichar);
136,222,855✔
67

68
        len = utf8_encoded_expected_len(str[0]);
136,222,855✔
69

70
        switch (len) {
136,222,855✔
71
        case 1:
136,009,584✔
72
                *ret_unichar = (char32_t)str[0];
136,009,584✔
73
                return 1;
136,009,584✔
74
        case 2:
22,576✔
75
                unichar = str[0] & 0x1f;
22,576✔
76
                break;
22,576✔
77
        case 3:
190,255✔
78
                unichar = (char32_t)str[0] & 0x0f;
190,255✔
79
                break;
190,255✔
80
        case 4:
440✔
81
                unichar = (char32_t)str[0] & 0x07;
440✔
82
                break;
440✔
83
        case 5:
×
84
                unichar = (char32_t)str[0] & 0x03;
×
85
                break;
×
86
        case 6:
×
87
                unichar = (char32_t)str[0] & 0x01;
×
88
                break;
×
89
        default:
90
                return -EINVAL;
91
        }
92

93
        for (size_t i = 1; i < len; i++) {
617,669✔
94
                if (((char32_t)str[i] & 0xc0) != 0x80)
404,404✔
95
                        return -EINVAL;
96

97
                unichar <<= 6;
404,398✔
98
                unichar |= (char32_t)str[i] & 0x3f;
404,398✔
99
        }
100

101
        *ret_unichar = unichar;
213,265✔
102
        return len;
213,265✔
103
}
104

105
bool utf8_is_printable_newline(const char* str, size_t length, bool allow_newline) {
4,415,189✔
106
        assert(str);
4,415,189✔
107

108
        for (const char *p = str; length > 0;) {
127,283,480✔
109
                int encoded_len;
122,868,473✔
110
                char32_t val;
122,868,473✔
111

112
                encoded_len = utf8_encoded_valid_unichar(p, length);
122,868,473✔
113
                if (encoded_len < 0)
122,868,473✔
114
                        return false;
182✔
115
                assert(encoded_len > 0 && (size_t) encoded_len <= length);
122,868,472✔
116

117
                if (utf8_encoded_to_unichar(p, &val) < 0 ||
122,868,472✔
118
                    unichar_is_control(val) ||
122,868,472✔
119
                    (!allow_newline && val == '\n'))
23,005,902✔
120
                        return false;
121

122
                length -= encoded_len;
122,868,291✔
123
                p += encoded_len;
122,868,291✔
124
        }
125

126
        return true;
127
}
128

129
char* utf8_is_valid_n(const char *str, size_t len_bytes) {
57,126,717✔
130
        /* Check if the string is composed of valid utf8 characters. If length len_bytes is given, stop after
131
         * len_bytes. Otherwise, stop at NUL. */
132

133
        assert(str);
57,126,717✔
134

135
        for (size_t i = 0; len_bytes != SIZE_MAX ? i < len_bytes : str[i] != '\0'; ) {
1,014,990,003✔
136
                int len;
957,864,427✔
137

138
                if (_unlikely_(str[i] == '\0'))
957,864,427✔
139
                        return NULL; /* embedded NUL */
140

141
                len = utf8_encoded_valid_unichar(str + i,
957,864,424✔
142
                                                 len_bytes != SIZE_MAX ? len_bytes - i : SIZE_MAX);
143
                if (_unlikely_(len < 0))
957,864,424✔
144
                        return NULL; /* invalid character */
145

146
                i += len;
957,863,286✔
147
        }
148

149
        return (char*) str;
150
}
151

152
char* utf8_escape_invalid(const char *str) {
16,020✔
153
        char *p, *s;
16,020✔
154

155
        assert(str);
16,020✔
156

157
        p = s = malloc(strlen(str) * 4 + 1);
16,020✔
158
        if (!p)
16,020✔
159
                return NULL;
160

161
        while (*str) {
350,336✔
162
                int len;
334,316✔
163

164
                len = utf8_encoded_valid_unichar(str, SIZE_MAX);
334,316✔
165
                if (len > 0) {
334,316✔
166
                        s = mempcpy(s, str, len);
334,264✔
167
                        str += len;
334,264✔
168
                } else {
169
                        s = stpcpy(s, UTF8_REPLACEMENT_CHARACTER);
52✔
170
                        str += 1;
52✔
171
                }
172
        }
173

174
        *s = '\0';
16,020✔
175
        return str_realloc(p);
16,020✔
176
}
177

178
int utf8_char_console_width(const char *str) {
10,628,500✔
179
        char32_t c;
10,628,500✔
180
        int r;
10,628,500✔
181

182
        r = utf8_encoded_to_unichar(str, &c);
10,628,500✔
183
        if (r < 0)
10,628,500✔
184
                return r;
10,628,500✔
185

186
        if (c == '\t')
10,628,499✔
187
                return 8; /* Assume a tab width of 8 */
188

189
        /* TODO: we should detect combining characters */
190

191
        return unichar_iswide(c) ? 2 : 1;
10,572,433✔
192
}
193

194
char* utf8_escape_non_printable_full(const char *str, size_t console_width, bool force_ellipsis) {
4,196✔
195
        char *p, *s, *prev_s;
4,196✔
196
        size_t n = 0; /* estimated print width */
4,196✔
197

198
        assert(str);
4,196✔
199

200
        if (console_width == 0)
4,196✔
201
                return strdup("");
9✔
202

203
        size_t body = strlen(str) * 4;
4,187✔
204
        p = s = prev_s = malloc(body + STRLEN("…") + 1);
4,187✔
205
        if (!p)
4,187✔
206
                return NULL;
207

208
        for (;;) {
408,011✔
209
                int len;
206,099✔
210
                char *saved_s = s;
206,099✔
211

212
                if (!*str) { /* done! */
206,099✔
213
                        if (force_ellipsis)
4,113✔
214
                                goto truncation;
68✔
215
                        else
216
                                goto finish;
4,045✔
217
                }
218

219
                len = utf8_encoded_valid_unichar(str, SIZE_MAX);
201,986✔
220
                if (len > 0) {
201,986✔
221
                        if (utf8_is_printable(str, len)) {
201,890✔
222
                                int w;
201,724✔
223

224
                                w = utf8_char_console_width(str);
201,724✔
225
                                assert(w >= 0);
201,724✔
226
                                if (n + w > console_width)
201,724✔
227
                                        goto truncation;
34✔
228

229
                                s = mempcpy(s, str, len);
201,690✔
230
                                str += len;
201,690✔
231
                                n += w;
201,690✔
232

233
                        } else {
234
                                for (; len > 0; len--) {
294✔
235
                                        if (n + 4 > console_width)
166✔
236
                                                goto truncation;
38✔
237

238
                                        *(s++) = '\\';
128✔
239
                                        *(s++) = 'x';
128✔
240
                                        *(s++) = hexchar((int) *str >> 4);
128✔
241
                                        *(s++) = hexchar((int) *str);
128✔
242

243
                                        str += 1;
128✔
244
                                        n += 4;
128✔
245
                                }
246
                        }
247
                } else {
248
                        if (n + 1 > console_width)
96✔
249
                                goto truncation;
2✔
250

251
                        s = mempcpy(s, UTF8_REPLACEMENT_CHARACTER, strlen(UTF8_REPLACEMENT_CHARACTER));
94✔
252
                        str += 1;
94✔
253
                        n += 1;
94✔
254
                }
255

256
                prev_s = saved_s;
201,912✔
257
        }
258

259
 truncation:
142✔
260
        /* Try to go back one if we don't have enough space for the ellipsis */
261
        if (n + 1 > console_width)
142✔
262
                s = prev_s;
82✔
263

264
        s = mempcpy(s, "…", strlen("…"));
142✔
265

266
 finish:
4,187✔
267
        *s = '\0';
4,187✔
268
        return str_realloc(p);
4,187✔
269
}
270

271
char* ascii_is_valid_n(const char *str, size_t len) {
107,838✔
272
        /* Check whether the string consists of valid ASCII bytes, i.e values between 1 and 127, inclusive.
273
         * Stops at len, or NUL byte if len is SIZE_MAX. */
274

275
        assert(str);
107,838✔
276

277
        for (size_t i = 0; len != SIZE_MAX ? i < len : str[i] != '\0'; i++)
2,663,947✔
278
                if ((unsigned char) str[i] >= 128 || str[i] == '\0')
2,559,515✔
279
                        return NULL;
280

281
        return (char*) str;
282
}
283

284
int utf8_to_ascii(const char *str, char replacement_char, char **ret) {
50✔
285
        /* Convert to a string that has only ASCII chars, replacing anything that is not ASCII
286
         * by replacement_char. */
287

288
        assert(str);
50✔
289
        assert(ret);
50✔
290

291
        _cleanup_free_ char *ans = new(char, strlen(str) + 1);
100✔
292
        if (!ans)
50✔
293
                return -ENOMEM;
294

295
        char *q = ans;
296

297
        for (const char *p = str; *p; q++) {
389✔
298
                int l;
341✔
299

300
                l = utf8_encoded_valid_unichar(p, SIZE_MAX);
341✔
301
                if (l < 0)  /* Non-UTF-8, let's not even try to propagate the garbage */
341✔
302
                        return l;
303

304
                if (l == 1)
339✔
305
                        *q = *p;
322✔
306
                else
307
                        /* non-ASCII, we need to replace it */
308
                        *q = replacement_char;
17✔
309

310
                p += l;
339✔
311
        }
312
        *q = '\0';
48✔
313

314
        *ret = TAKE_PTR(ans);
48✔
315
        return 0;
48✔
316
}
317

318
/**
319
 * utf8_encode_unichar() - Encode single UCS-4 character as UTF-8
320
 * @out_utf8: output buffer of at least 4 bytes or NULL
321
 * @g: UCS-4 character to encode
322
 *
323
 * This encodes a single UCS-4 character as UTF-8 and writes it into @out_utf8.
324
 * The length of the character is returned. It is not zero-terminated! If the
325
 * output buffer is NULL, only the length is returned.
326
 *
327
 * Returns: The length in bytes that the UTF-8 representation does or would
328
 *          occupy.
329
 */
330
size_t utf8_encode_unichar(char *out_utf8, char32_t g) {
82,860✔
331

332
        if (g < (1 << 7)) {
82,860✔
333
                if (out_utf8)
82,736✔
334
                        out_utf8[0] = g & 0x7f;
82,736✔
335
                return 1;
336
        } else if (g < (1 << 11)) {
124✔
337
                if (out_utf8) {
17✔
338
                        out_utf8[0] = 0xc0 | ((g >> 6) & 0x1f);
17✔
339
                        out_utf8[1] = 0x80 | (g & 0x3f);
17✔
340
                }
341
                return 2;
342
        } else if (g < (1 << 16)) {
107✔
343
                if (out_utf8) {
96✔
344
                        out_utf8[0] = 0xe0 | ((g >> 12) & 0x0f);
96✔
345
                        out_utf8[1] = 0x80 | ((g >> 6) & 0x3f);
96✔
346
                        out_utf8[2] = 0x80 | (g & 0x3f);
96✔
347
                }
348
                return 3;
349
        } else if (g < (1 << 21)) {
11✔
350
                if (out_utf8) {
11✔
351
                        out_utf8[0] = 0xf0 | ((g >> 18) & 0x07);
11✔
352
                        out_utf8[1] = 0x80 | ((g >> 12) & 0x3f);
11✔
353
                        out_utf8[2] = 0x80 | ((g >> 6) & 0x3f);
11✔
354
                        out_utf8[3] = 0x80 | (g & 0x3f);
11✔
355
                }
356
                return 4;
357
        }
358

359
        return 0;
360
}
361

362
char* utf16_to_utf8(const char16_t *s, size_t length /* bytes! */) {
2,555✔
363
        const uint8_t *f;
2,555✔
364
        char *r, *t;
2,555✔
365

366
        if (length == 0)
2,555✔
367
                return new0(char, 1);
×
368

369
        assert(s);
2,555✔
370

371
        if (length == SIZE_MAX) {
2,555✔
372
                length = char16_strlen(s);
6✔
373

374
                if (length > SIZE_MAX/2)
6✔
375
                        return NULL; /* overflow */
376

377
                length *= 2;
6✔
378
        }
379

380
        /* Input length is in bytes, i.e. the shortest possible character takes 2 bytes. Each unicode character may
381
         * take up to 4 bytes in UTF-8. Let's also account for a trailing NUL byte. */
382
        if (length > (SIZE_MAX - 1) / 2)
2,555✔
383
                return NULL; /* overflow */
384

385
        r = new(char, length * 2 + 1);
2,555✔
386
        if (!r)
2,555✔
387
                return NULL;
388

389
        f = (const uint8_t*) s;
390
        t = r;
391

392
        while (f + 1 < (const uint8_t*) s + length) {
85,208✔
393
                char16_t w1, w2;
82,653✔
394

395
                /* see RFC 2781 section 2.2 */
396

397
                w1 = f[1] << 8 | f[0];
82,653✔
398
                f += 2;
82,653✔
399

400
                if (!utf16_is_surrogate(w1)) {
82,653✔
401
                        t += utf8_encode_unichar(t, w1);
82,646✔
402
                        continue;
82,646✔
403
                }
404

405
                if (utf16_is_trailing_surrogate(w1))
7✔
406
                        continue; /* spurious trailing surrogate, ignore */
1✔
407

408
                if (f + 1 >= (const uint8_t*) s + length)
6✔
409
                        break;
410

411
                w2 = f[1] << 8 | f[0];
6✔
412
                f += 2;
6✔
413

414
                if (!utf16_is_trailing_surrogate(w2)) {
6✔
415
                        f -= 2;
1✔
416
                        continue; /* surrogate missing its trailing surrogate, ignore */
1✔
417
                }
418

419
                t += utf8_encode_unichar(t, utf16_surrogate_pair_to_unichar(w1, w2));
5✔
420
        }
421

422
        *t = 0;
2,555✔
423
        return r;
2,555✔
424
}
425

426
size_t utf16_encode_unichar(char16_t *out, char32_t c) {
16✔
427
        assert(out);
16✔
428

429
        /* Note that this encodes as little-endian. */
430

431
        switch (c) {
16✔
432

433
        case 0 ... 0xd7ffU:
12✔
434
        case 0xe000U ... 0xffffU:
435
                out[0] = htole16(c);
12✔
436
                return 1;
12✔
437

438
        case 0x10000U ... 0x10ffffU:
4✔
439
                c -= 0x10000U;
4✔
440
                out[0] = htole16((c >> 10) + 0xd800U);
4✔
441
                out[1] = htole16((c & 0x3ffU) + 0xdc00U);
4✔
442
                return 2;
4✔
443

444
        default: /* A surrogate (invalid) */
445
                return 0;
446
        }
447
}
448

449
char16_t *utf8_to_utf16(const char *s, size_t length) {
691✔
450
        char16_t *n, *p;
691✔
451
        int r;
691✔
452

453
        if (length == 0)
691✔
UNCOV
454
                return new0(char16_t, 1);
×
455

456
        assert(s);
691✔
457

458
        if (length == SIZE_MAX)
691✔
459
                length = strlen(s);
690✔
460

461
        if (length > SIZE_MAX - 1)
690✔
462
                return NULL; /* overflow */
463

464
        n = new(char16_t, length + 1);
691✔
465
        if (!n)
691✔
466
                return NULL;
467

468
        p = n;
469

470
        for (size_t i = 0; i < length;) {
12,228✔
471
                char32_t unichar;
11,537✔
472
                size_t e;
11,537✔
473

474
                e = utf8_encoded_expected_len(s[i]);
11,537✔
475
                if (e <= 1) /* Invalid and single byte characters are copied as they are */
11,537✔
476
                        goto copy;
11,521✔
477

478
                if (i + e > length) /* sequence longer than input buffer, then copy as-is */
16✔
UNCOV
479
                        goto copy;
×
480

481
                r = utf8_encoded_to_unichar(s + i, &unichar);
16✔
482
                if (r < 0) /* sequence invalid, then copy as-is */
16✔
UNCOV
483
                        goto copy;
×
484

485
                p += utf16_encode_unichar(p, unichar);
16✔
486
                i += e;
16✔
487
                continue;
16✔
488

489
        copy:
11,521✔
490
                *(p++) = htole16(s[i++]);
11,521✔
491
        }
492

493
        *p = 0;
691✔
494
        return n;
691✔
495
}
496

497
size_t char16_strlen(const char16_t *s) {
955✔
498
        size_t n = 0;
955✔
499

500
        assert(s);
955✔
501

502
        while (*s != 0)
15,673✔
503
                n++, s++;
14,718✔
504

505
        return n;
955✔
506
}
507

508
size_t char16_strsize(const char16_t *s) {
3✔
509
        POINTER_MAY_BE_NULL(s);
3✔
510

511
        return s ? (char16_strlen(s) + 1) * sizeof(*s) : 0;
3✔
512
}
513

514
/* expected size used to encode one unicode char */
515
static int utf8_unichar_to_encoded_len(char32_t unichar) {
97,424✔
516

517
        if (unichar < 0x80)
97,424✔
518
                return 1;
519
        if (unichar < 0x800)
97,424✔
520
                return 2;
521
        if (unichar < 0x10000)
92,850✔
522
                return 3;
523
        if (unichar < 0x200000)
220✔
524
                return 4;
525
        if (unichar < 0x4000000)
×
UNCOV
526
                return 5;
×
527

528
        return 6;
529
}
530

531
/* validate one encoded unicode char and return its length */
532
int utf8_encoded_valid_unichar(const char *str, size_t length /* bytes */) {
1,133,955,987✔
533
        char32_t unichar;
1,133,955,987✔
534
        size_t len;
1,133,955,987✔
535
        int r;
1,133,955,987✔
536

537
        assert(str);
1,133,955,987✔
538
        assert(length > 0);
1,133,955,987✔
539

540
        /* We read until NUL, at most length bytes. SIZE_MAX may be used to disable the length check. */
541

542
        len = utf8_encoded_expected_len(str[0]);
1,133,955,987✔
543
        if (len == 0)
1,133,955,987✔
544
                return -EINVAL;
1,133,955,987✔
545

546
        /* Do we have a truncated multi-byte character? */
547
        if (len > length)
1,133,955,896✔
548
                return -EINVAL;
549

550
        /* ascii is valid */
551
        if (len == 1)
1,133,955,888✔
552
                return 1;
553

554
        /* check if expected encoded chars are available */
555
        for (size_t i = 0; i < len; i++)
388,170✔
556
                if ((str[i] & 0x80) != 0x80)
290,741✔
557
                        return -EINVAL;
558

559
        r = utf8_encoded_to_unichar(str, &unichar);
97,429✔
560
        if (r < 0)
97,429✔
561
                return r;
562

563
        /* check if encoded length matches encoded value */
564
        if (utf8_unichar_to_encoded_len(unichar) != (int) len)
97,424✔
565
                return -EINVAL;
566

567
        /* check if value has valid range */
568
        if (!unichar_is_valid(unichar))
97,424✔
569
                return -EINVAL;
26✔
570

571
        return (int) len;
572
}
573

574
size_t utf8_n_codepoints(const char *str) {
6✔
575
        size_t n = 0;
6✔
576

577
        assert(str);
6✔
578

579
        /* Returns the number of UTF-8 codepoints in this string, or SIZE_MAX if the string is not valid UTF-8. */
580

581
        while (*str != 0) {
34✔
582
                int k;
29✔
583

584
                k = utf8_encoded_valid_unichar(str, SIZE_MAX);
29✔
585
                if (k < 0)
29✔
586
                        return SIZE_MAX;
587

588
                str += k;
28✔
589
                n++;
28✔
590
        }
591

592
        return n;
593
}
594

595
size_t utf8_console_width(const char *str) {
558,163✔
596
        POINTER_MAY_BE_NULL(str);
558,163✔
597

598
        if (isempty(str))
558,163✔
599
                return 0;
600

601
        /* Returns the approximate width a string will take on screen when printed on a character cell
602
         * terminal/console. */
603

604
        size_t n = 0;
605
        while (*str) {
7,713,757✔
606
                int w;
7,178,653✔
607

608
                w = utf8_char_console_width(str);
7,178,653✔
609
                if (w < 0)
7,178,653✔
610
                        return SIZE_MAX;
611

612
                n += w;
7,178,652✔
613
                str = utf8_next_char(str);
7,178,652✔
614
        }
615

616
        return n;
617
}
618

619
size_t utf8_last_length(const char *s, size_t n) {
9✔
620
        int r;
9✔
621

622
        assert(s);
9✔
623

624
        if (n == SIZE_MAX)
9✔
625
                n = strlen(s);
7✔
626

627
        /* Determines length in bytes of last UTF-8 codepoint in string. If the string is empty, returns
628
         * zero. Treats invalid UTF-8 codepoints as 1 sized ones. */
629

630
        for (size_t last = 0;;) {
9✔
631
                if (n == 0)
28✔
632
                        return last;
9✔
633

634
                r = utf8_encoded_valid_unichar(s, n);
19✔
635
                if (r <= 0)
19✔
UNCOV
636
                        r = 1; /* treat invalid UTF-8 as byte-wide */
×
637

638
                s += r;
19✔
639
                n -= r;
19✔
640
                last = r;
19✔
641
        }
642
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc