aboutsummaryrefslogtreecommitdiff
path: root/src/socket.c
blob: 5b37cf1a243c44c9f4254cac46a98f86a5f2f36b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
/*
 * socket.c
 * potd is licensed under the BSD license:
 *
 * Copyright (c) 2018 Toni Uhlig <matzeton@googlemail.com>
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * - Redistributions of source code must retain the above copyright notice,
 *   this list of conditions and the following disclaimer.
 *
 * - Redistributions in binary form must reproduce the above copyright notice,
 *   this list of conditions and the following disclaimer in the documentation
 *   and/or other materials provided with the distribution.
 *
 * - The names of its contributors may not be used to endorse or promote
 *   products derived from this
 *   software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <net/if.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <assert.h>

#include "socket.h"
#include "utils.h"

static int socket_setopts(int sockfd);
static inline void socket_freeaddr(struct addrinfo **results);


static int socket_setopts(int sockfd)
{
    int s, enable = 1;

    s = fcntl(sockfd, F_GETFL, 0);
    if (s < 0)
        return 1;
    s |= O_CLOEXEC;
    if (fcntl(sockfd, F_SETFL, s) == -1)
        return 1;

    s = setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &enable, sizeof(int));
    if (s)
        return 1;

    return 0;
}

static inline void socket_freeaddr(struct addrinfo **results)
{
    if (*results) {
        freeaddrinfo(*results);
        *results = NULL;
    }
}

int socket_nonblock(const psocket *psock)
{
    return set_fd_nonblock(psock->fd);
}

int socket_init_in(const char *addr,
                   const char *port, struct addrinfo **results)
{
    int s;
    struct addrinfo hints;

    assert(addr || port); /* getaddrinfo wants either node or service */

    memset(&hints, 0, sizeof(hints));
    hints.ai_family = AF_UNSPEC; /* IPV4 && IPV6 */
    hints.ai_socktype = SOCK_STREAM; /* TCP */
    hints.ai_flags = AI_PASSIVE; /* all interfaces */

    s = getaddrinfo(addr, port, &hints, results);
    if (s)
        socket_freeaddr(results);

    return s;
}

int socket_bind_in(psocket *psock, struct addrinfo **results)
{
    int s = 1, fd = -1, rv;
    struct addrinfo *rp = NULL;

    assert(psock && results && *results);
    psock->fd = -1;

    for (rp = *results; rp != NULL; rp = rp->ai_next) {
        fd = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
        if (fd < 0)
            continue;
        rv = bind(fd, rp->ai_addr, rp->ai_addrlen);
        if (!rv)
            break;
        close(fd);
    }

    if (!rp)
        goto finalise;

    s = socket_setopts(fd);
    if (s)
        goto finalise;

    psock->fd = fd;
    psock->addr_len = rp->ai_addrlen;
    psock->addr = *rp->ai_addr;
    psock->family = rp->ai_family;
    psock->socktype = rp->ai_socktype;
    psock->protocol = rp->ai_protocol;
    s = socket_nonblock(psock);

finalise:
    socket_freeaddr(results);

    /* suppress coverity fals-positive: fd out of scope */
    /* coverity[leaked_handle] */
    return s;
}

int socket_listen_in(psocket *psock)
{
    assert(psock);

    return listen(psock->fd, POTD_BACKLOG) != 0;
}

int socket_accept_in(const psocket *psock, psocket *client_psock)
{
    int fd;

    assert(psock && client_psock);

    *client_psock = *psock;
    fd = accept(psock->fd, &client_psock->addr,
                &client_psock->addr_len);
    if (fd < 0)
        return 1;
    if (socket_setopts(fd))
    {
        close(fd);
        return 1;
    }

    client_psock->fd = fd;
    if (socket_nonblock(client_psock)) {
        socket_close(client_psock);
        return 1;
    }

    return 0;
}

int socket_connect_in(psocket *psock, struct addrinfo **results)
{
    int s = 1, fd = -1, rv;
    struct addrinfo *rp = NULL;

    assert(psock && results && *results);
    psock->fd = -1;

    for (rp = *results; rp != NULL; rp = rp->ai_next) {
        fd = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
        if (fd < 0)
            continue;
        rv = connect(fd, rp->ai_addr, rp->ai_addrlen);
        if (!rv)
            break;
        close(fd);
    }

    if (!rp)
        goto finalise;

    s = socket_setopts(fd);
    if (s)
        goto finalise;

    psock->fd = fd;
    psock->addr_len = rp->ai_addrlen;
    psock->addr = *(rp->ai_addr);
    psock->family = rp->ai_family;
    psock->socktype = rp->ai_socktype;
    psock->protocol = rp->ai_protocol;
    s = socket_nonblock(psock);

finalise:
    socket_freeaddr(results);

    /* suppress coverity fals-positive: fd out of scope */
    /* coverity[leaked_handle] */
    return s;
}

int socket_connectaddr_in(psocket *psock, struct addrinfo **results,
                          char host_buf[NI_MAXHOST],
                          char service_buf[NI_MAXSERV])
{
    if (socket_connect_in(psock, results))
        return -1;
    return socket_addrtostr_in(psock, host_buf, service_buf);
}

int socket_addrtostr_in(const psocket *psock,
                        char hbuf[NI_MAXHOST], char sbuf[NI_MAXSERV])
{
    int s;

    assert(psock);
    s = getnameinfo(&psock->addr,
                    psock->addr_len,
                    &hbuf[0], NI_MAXHOST,
                    &sbuf[0], NI_MAXSERV,
                    NI_NUMERICHOST | NI_NUMERICSERV);

    return s;
}

int socket_reconnect_in(psocket *psock)
{
    int rv;

    assert(psock);
    if (psock->fd >= 0)
        return 1;

    psock->fd = socket(psock->family, psock->socktype, psock->protocol);
    if (psock->fd < 0)
        return 1;
    rv = connect(psock->fd, &psock->addr, psock->addr_len);
    if (rv) {
        socket_close(psock);
        return 1;
    }

    if (socket_setopts(psock->fd)) {
        socket_close(psock);
        return 1;
    }

    return socket_nonblock(psock);
}

int socket_close(psocket *psock)
{
    int rv;

    assert(psock);
    if (psock->fd < 0)
        return 0;
    rv = close(psock->fd);
    psock->fd = -1;

    return rv;
}

void socket_clone(const psocket *src, psocket *dst)
{
    assert(src && dst);

    memcpy(dst, src, sizeof(*dst));
    dst->fd = -1;
}

ssize_t socket_get_ifnames(const psocket *test_sock, char name[][IFNAMSIZ],
                           size_t siz, int loopback_only)
{
    struct ifreq ifr;
    struct ifreq *it, *end;
    struct ifconf ifc;
    char buf[1024];
    int sock;
    size_t rc = 0;

    assert(test_sock);
    sock = socket(test_sock->family, test_sock->socktype,
                  test_sock->protocol);
    if (sock < 0)
        return -1;

    ifc.ifc_len = sizeof buf;
    ifc.ifc_buf = buf;
    if (ioctl(sock, SIOCGIFCONF, &ifc) == -1) {
        close(sock);
        return -1;
    }
    it = ifc.ifc_req;
    end = it + (ifc.ifc_len / sizeof(struct ifreq));

    for (; it != end; ++it) {
        strncpy(ifr.ifr_name, it->ifr_name, IFNAMSIZ);

        if (ioctl(sock, SIOCGIFFLAGS, &ifr) == 0) {
            if (loopback_only && !(ifr.ifr_flags & IFF_LOOPBACK))
                continue;
            if (ioctl(sock, SIOCGIFHWADDR, &ifr) == 0) {
                strncpy(name[rc++], it->ifr_name, IFNAMSIZ);
                if (siz == rc)
                    break;
            }
        }
    }

    close(sock);

    return rc;
}

int socket_set_ifaddr(const psocket *test_sock,
                      const char *ifname, const char *addr, const char *mask)
{
    struct ifreq ifr;
    int sock;

    assert(test_sock);
    memset(&ifr, 0, sizeof ifr);
    sock = socket(test_sock->family, test_sock->socktype,
                  test_sock->protocol);
    if (sock < 0)
        return 1;
    strncpy(ifr.ifr_name, ifname, IFNAMSIZ);

    ifr.ifr_addr.sa_family = AF_INET;
    inet_pton(AF_INET, addr, ifr.ifr_addr.sa_data + 2);
    ioctl(sock, SIOCSIFADDR, &ifr);

    inet_pton(AF_INET, mask, ifr.ifr_addr.sa_data + 2);
    ioctl(sock, SIOCSIFNETMASK, &ifr);

    ioctl(sock, SIOCGIFFLAGS, &ifr);
    /* coverity[buffer_size_warning] */
    strncpy(ifr.ifr_name, ifname, IFNAMSIZ);
    ifr.ifr_flags |= (IFF_UP | IFF_RUNNING);

    ioctl(sock, SIOCSIFFLAGS, &ifr);
    close(sock);

    return 0;
}