Coverage Report

Created: 2025-07-12 06:54

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