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
|
/* $OpenBSD: listen.c,v 1.21 2013/03/13 08:28:34 ratchov Exp $ */
/*
* Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/signal.h>
#include <sys/stat.h>
#include <sys/un.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <netdb.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>
#include <poll.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "conf.h"
#include "listen.h"
#include "sock.h"
#include "dbg.h"
struct fileops listen_ops = {
"listen",
sizeof(struct listen),
listen_close,
NULL, /* read */
NULL, /* write */
NULL, /* start */
NULL, /* stop */
listen_nfds,
listen_pollfd,
listen_revents
};
struct listen *listen_list = NULL;
void
listen_new_un(char *path)
{
int sock, oldumask;
struct sockaddr_un sockname;
struct listen *f;
sock = socket(AF_UNIX, SOCK_STREAM, 0);
if (sock < 0)
err(1, "socket");
if (unlink(path) < 0 && errno != ENOENT) {
perror("unlink");
goto bad_close;
}
sockname.sun_family = AF_UNIX;
strlcpy(sockname.sun_path, path, sizeof(sockname.sun_path));
oldumask = umask(0111);
if (bind(sock, (struct sockaddr *)&sockname,
sizeof(struct sockaddr_un)) < 0) {
perror("bind");
goto bad_close;
}
umask(oldumask);
f = (struct listen *)file_new(&listen_ops, path, 1);
if (f == NULL)
goto bad_close;
f->path = strdup(path);
if (f->path == NULL)
err(1, "strdup");
f->fd = sock;
f->next = listen_list;
listen_list = f;
return;
bad_close:
close(sock);
exit(1);
}
void
listen_new_tcp(char *addr, unsigned int port)
{
char *host, serv[sizeof(unsigned int) * 3 + 1];
struct addrinfo *ailist, *ai, aihints;
struct listen *f;
int s, error, opt = 1, n = 0;
/*
* obtain a list of possible addresses for the host/port
*/
memset(&aihints, 0, sizeof(struct addrinfo));
snprintf(serv, sizeof(serv), "%u", port);
host = strcmp(addr, "-") == 0 ? NULL : addr;
aihints.ai_flags |= AI_PASSIVE;
aihints.ai_socktype = SOCK_STREAM;
aihints.ai_protocol = IPPROTO_TCP;
error = getaddrinfo(host, serv, &aihints, &ailist);
if (error)
errx(1, "%s: %s", addr, gai_strerror(error));
/*
* for each address, try create a listening socket bound on
* that address
*/
for (ai = ailist; ai != NULL; ai = ai->ai_next) {
s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
if (s < 0) {
perror("socket");
continue;
}
opt = 1;
if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(int)) < 0) {
perror("setsockopt");
goto bad_close;
}
if (bind(s, ai->ai_addr, ai->ai_addrlen) < 0) {
perror("bind");
goto bad_close;
}
f = (struct listen *)file_new(&listen_ops, addr, 1);
if (f == NULL) {
bad_close:
close(s);
continue;
}
f->path = NULL;
f->fd = s;
f->next = listen_list;
listen_list = f;
n++;
}
freeaddrinfo(ailist);
if (n == 0)
exit(1);
}
int
listen_init(struct listen *f)
{
if (listen(f->fd, 1) < 0) {
perror("listen");
return 0;
}
return 1;
}
int
listen_nfds(struct file *f) {
return 1;
}
int
listen_pollfd(struct file *file, struct pollfd *pfd, int events)
{
struct listen *f = (struct listen *)file;
if (file_slowaccept)
return 0;
pfd->fd = f->fd;
pfd->events = POLLIN;
return 1;
}
int
listen_revents(struct file *file, struct pollfd *pfd)
{
struct listen *f = (struct listen *)file;
struct sockaddr caddr;
socklen_t caddrlen;
int sock, opt;
if (pfd->revents & POLLIN) {
caddrlen = sizeof(caddrlen);
while ((sock = accept(f->fd, &caddr, &caddrlen)) < 0) {
if (errno == EINTR)
continue;
if (errno == ENFILE || errno == EMFILE)
file_slowaccept = 1;
else if (errno != ECONNABORTED && errno != EWOULDBLOCK)
perror("accept");
return 0;
}
if (fcntl(sock, F_SETFL, O_NONBLOCK) < 0) {
perror("fcntl(sock, O_NONBLOCK)");
close(sock);
return 0;
}
if (f->path == NULL) {
opt = 1;
if (setsockopt(sock, IPPROTO_TCP, TCP_NODELAY,
&opt, sizeof(int)) < 0) {
perror("setsockopt");
close(sock);
return 0;
}
}
if (sock_new(&sock_ops, sock) == NULL) {
close(sock);
return 0;
}
}
return 0;
}
void
listen_close(struct file *file)
{
struct listen *f = (struct listen *)file, **pf;
if (f->path != NULL) {
unlink(f->path);
free(f->path);
}
close(f->fd);
for (pf = &listen_list; *pf != f; pf = &(*pf)->next) {
#ifdef DEBUG
if (*pf == NULL) {
dbg_puts("listen_close: not on list\n");
dbg_panic();
}
#endif
}
*pf = f->next;
}
|