Coverage Report

Created: 2026-04-12 06:04

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.12k
static void drop_incomplete_utf8(char *c) {
36
1.12k
    char *e;
37
38
1.12k
    e = strchr(c, 0) - 1;
39
40
1.19k
    while (e >= c) {
41
42
1.06k
        if (avahi_utf8_valid(c))
43
989
            break;
44
45
1.06k
        assert(*e & 128);
46
76
        *e = 0;
47
48
76
        e--;
49
76
    }
50
1.12k
}
51
52
948
char *avahi_alternative_host_name(const char *s) {
53
948
    char label[AVAHI_LABEL_MAX], alternative[AVAHI_LABEL_MAX*4+1];
54
948
    char *alt, *r, *ret;
55
948
    const char *e;
56
948
    size_t len;
57
58
948
    assert(s);
59
60
948
    if (!avahi_is_valid_host_name(s))
61
530
        return NULL;
62
63
418
    if (!avahi_unescape_label(&s, label, sizeof(label)))
64
0
        return NULL;
65
66
418
    if ((e = strrchr(label, '-'))) {
67
117
        const char *p;
68
69
117
        e++;
70
71
741
        for (p = e; *p; p++)
72
646
            if (!isdigit(*p)) {
73
22
                e = NULL;
74
22
                break;
75
22
            }
76
77
117
        if (e && (*e == '0' || *e == 0))
78
10
            e = NULL;
79
117
    }
80
81
418
    if (e) {
82
85
        char *c, *m;
83
85
        int n;
84
85
85
        n = atoi(e);
86
85
        if (n == INT_MAX)
87
3
            n = 1;
88
82
        else
89
82
            n++;
90
85
        if (!(m = avahi_strdup_printf("%i", n)))
91
0
            return NULL;
92
93
85
        len = e-label-1;
94
95
85
        if (len >= AVAHI_LABEL_MAX-1-strlen(m)-1)
96
7
            len = AVAHI_LABEL_MAX-1-strlen(m)-1;
97
98
85
        if (!(c = avahi_strndup(label, len))) {
99
0
            avahi_free(m);
100
0
            return NULL;
101
0
        }
102
103
85
        drop_incomplete_utf8(c);
104
105
85
        r = avahi_strdup_printf("%s-%s", c, m);
106
85
        avahi_free(c);
107
85
        avahi_free(m);
108
109
333
    } else {
110
333
        char *c;
111
112
333
        if (!(c = avahi_strndup(label, AVAHI_LABEL_MAX-1-2)))
113
0
            return NULL;
114
115
333
        drop_incomplete_utf8(c);
116
117
333
        r = avahi_strdup_printf("%s-2", c);
118
333
        avahi_free(c);
119
333
    }
120
121
418
    alt = alternative;
122
418
    len = sizeof(alternative);
123
418
    ret = avahi_escape_label(r, strlen(r), &alt, &len);
124
125
418
    avahi_free(r);
126
418
    r = avahi_strdup(ret);
127
128
418
    assert(avahi_is_valid_host_name(r));
129
130
418
    return r;
131
418
}
132
133
948
char *avahi_alternative_service_name(const char *s) {
134
948
    const char *e;
135
948
    char *r;
136
137
948
    assert(s);
138
139
948
    if (!avahi_is_valid_service_name(s))
140
244
        return NULL;
141
142
704
    if ((e = strstr(s, " #"))) {
143
117
        const char *n, *p;
144
117
        e += 2;
145
146
207
        while ((n = strstr(e, " #")))
147
90
            e = n + 2;
148
149
780
        for (p = e; *p; p++)
150
683
            if (!isdigit(*p)) {
151
20
                e = NULL;
152
20
                break;
153
20
            }
154
155
117
        if (e && (*e == '0' || *e == 0))
156
8
            e = NULL;
157
117
    }
158
159
704
    if (e) {
160
89
        char *c, *m;
161
89
        size_t l;
162
89
        int n;
163
164
89
        n = atoi(e);
165
89
        if (n == INT_MAX)
166
2
            n = 1;
167
87
        else
168
87
            n++;
169
89
        if (!(m = avahi_strdup_printf("%i", n)))
170
0
            return NULL;
171
172
89
        l = e-s-2;
173
174
89
        if (l >= AVAHI_LABEL_MAX-1-strlen(m)-2)
175
7
            l = AVAHI_LABEL_MAX-1-strlen(m)-2;
176
177
89
        if (!(c = avahi_strndup(s, l))) {
178
0
            avahi_free(m);
179
0
            return NULL;
180
0
        }
181
182
89
        drop_incomplete_utf8(c);
183
184
89
        r = avahi_strdup_printf("%s #%s", c, m);
185
89
        avahi_free(c);
186
89
        avahi_free(m);
187
615
    } else {
188
615
        char *c;
189
190
615
        if (!(c = avahi_strndup(s, AVAHI_LABEL_MAX-1-3)))
191
0
            return NULL;
192
193
615
        drop_incomplete_utf8(c);
194
195
615
        r = avahi_strdup_printf("%s #2", c);
196
615
        avahi_free(c);
197
615
    }
198
199
704
    assert(avahi_is_valid_service_name(r));
200
201
704
    return r;
202
704
}