Coverage Report

Created: 2025-10-13 06:24

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/avahi/avahi-common/alternative.c
Line
Count
Source
1
/***
2
  This file is part of avahi.
3
4
  avahi is free software; you can redistribute it and/or modify it
5
  under the terms of the GNU Lesser General Public License as
6
  published by the Free Software Foundation; either version 2.1 of the
7
  License, or (at your option) any later version.
8
9
  avahi is distributed in the hope that it will be useful, but WITHOUT
10
  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11
  or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
12
  Public License for more details.
13
14
  You should have received a copy of the GNU Lesser General Public
15
  License along with avahi; if not, write to the Free Software
16
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
17
  USA.
18
***/
19
20
#ifdef HAVE_CONFIG_H
21
#include <config.h>
22
#endif
23
24
#include <limits.h>
25
#include <string.h>
26
#include <stdlib.h>
27
#include <ctype.h>
28
#include <assert.h>
29
30
#include "alternative.h"
31
#include "malloc.h"
32
#include "domain.h"
33
#include "utf8.h"
34
35
1.05k
static void drop_incomplete_utf8(char *c) {
36
1.05k
    char *e;
37
38
1.05k
    e = strchr(c, 0) - 1;
39
40
1.11k
    while (e >= c) {
41
42
984
        if (avahi_utf8_valid(c))
43
917
            break;
44
45
984
        assert(*e & 128);
46
67
        *e = 0;
47
48
67
        e--;
49
67
    }
50
1.05k
}
51
52
905
char *avahi_alternative_host_name(const char *s) {
53
905
    char label[AVAHI_LABEL_MAX], alternative[AVAHI_LABEL_MAX*4+1];
54
905
    char *alt, *r, *ret;
55
905
    const char *e;
56
905
    size_t len;
57
58
905
    assert(s);
59
60
905
    if (!avahi_is_valid_host_name(s))
61
523
        return NULL;
62
63
382
    if (!avahi_unescape_label(&s, label, sizeof(label)))
64
0
        return NULL;
65
66
382
    if ((e = strrchr(label, '-'))) {
67
110
        const char *p;
68
69
110
        e++;
70
71
812
        for (p = e; *p; p++)
72
717
            if (!isdigit(*p)) {
73
15
                e = NULL;
74
15
                break;
75
15
            }
76
77
110
        if (e && (*e == '0' || *e == 0))
78
8
            e = NULL;
79
110
    }
80
81
382
    if (e) {
82
87
        char *c, *m;
83
87
        int n;
84
85
87
        n = atoi(e);
86
87
        if (n == INT_MAX)
87
2
            n = 1;
88
85
        else
89
85
            n++;
90
87
        if (!(m = avahi_strdup_printf("%i", n)))
91
0
            return NULL;
92
93
87
        len = e-label-1;
94
95
87
        if (len >= AVAHI_LABEL_MAX-1-strlen(m)-1)
96
5
            len = AVAHI_LABEL_MAX-1-strlen(m)-1;
97
98
87
        if (!(c = avahi_strndup(label, len))) {
99
0
            avahi_free(m);
100
0
            return NULL;
101
0
        }
102
103
87
        drop_incomplete_utf8(c);
104
105
87
        r = avahi_strdup_printf("%s-%s", c, m);
106
87
        avahi_free(c);
107
87
        avahi_free(m);
108
109
295
    } else {
110
295
        char *c;
111
112
295
        if (!(c = avahi_strndup(label, AVAHI_LABEL_MAX-1-2)))
113
0
            return NULL;
114
115
295
        drop_incomplete_utf8(c);
116
117
295
        r = avahi_strdup_printf("%s-2", c);
118
295
        avahi_free(c);
119
295
    }
120
121
382
    alt = alternative;
122
382
    len = sizeof(alternative);
123
382
    ret = avahi_escape_label(r, strlen(r), &alt, &len);
124
125
382
    avahi_free(r);
126
382
    r = avahi_strdup(ret);
127
128
382
    assert(avahi_is_valid_host_name(r));
129
130
382
    return r;
131
382
}
132
133
905
char *avahi_alternative_service_name(const char *s) {
134
905
    const char *e;
135
905
    char *r;
136
137
905
    assert(s);
138
139
905
    if (!avahi_is_valid_service_name(s))
140
236
        return NULL;
141
142
669
    if ((e = strstr(s, " #"))) {
143
112
        const char *n, *p;
144
112
        e += 2;
145
146
207
        while ((n = strstr(e, " #")))
147
95
            e = n + 2;
148
149
781
        for (p = e; *p; p++)
150
688
            if (!isdigit(*p)) {
151
19
                e = NULL;
152
19
                break;
153
19
            }
154
155
112
        if (e && (*e == '0' || *e == 0))
156
10
            e = NULL;
157
112
    }
158
159
669
    if (e) {
160
83
        char *c, *m;
161
83
        size_t l;
162
83
        int n;
163
164
83
        n = atoi(e);
165
83
        if (n == INT_MAX)
166
2
            n = 1;
167
81
        else
168
81
            n++;
169
83
        if (!(m = avahi_strdup_printf("%i", n)))
170
0
            return NULL;
171
172
83
        l = e-s-2;
173
174
83
        if (l >= AVAHI_LABEL_MAX-1-strlen(m)-2)
175
7
            l = AVAHI_LABEL_MAX-1-strlen(m)-2;
176
177
83
        if (!(c = avahi_strndup(s, l))) {
178
0
            avahi_free(m);
179
0
            return NULL;
180
0
        }
181
182
83
        drop_incomplete_utf8(c);
183
184
83
        r = avahi_strdup_printf("%s #%s", c, m);
185
83
        avahi_free(c);
186
83
        avahi_free(m);
187
586
    } else {
188
586
        char *c;
189
190
586
        if (!(c = avahi_strndup(s, AVAHI_LABEL_MAX-1-3)))
191
0
            return NULL;
192
193
586
        drop_incomplete_utf8(c);
194
195
586
        r = avahi_strdup_printf("%s #2", c);
196
586
        avahi_free(c);
197
586
    }
198
199
669
    assert(avahi_is_valid_service_name(r));
200
201
669
    return r;
202
669
}