-
Notifications
You must be signed in to change notification settings - Fork 203
/
unix.c
468 lines (430 loc) · 13.1 KB
/
unix.c
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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
/*
Copyright (c) 2015 Martin Sustrik
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom
the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
*/
#include <errno.h>
#include <fcntl.h>
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <unistd.h>
#include "debug.h"
#include "libmill.h"
#include "utils.h"
#ifndef MILL_UNIX_BUFLEN
#define MILL_UNIX_BUFLEN (4096)
#endif
enum mill_unixtype {
MILL_UNIXLISTENER,
MILL_UNIXCONN
};
struct mill_unixsock_ {
enum mill_unixtype type;
};
struct mill_unixlistener {
struct mill_unixsock_ sock;
int fd;
};
struct mill_unixconn {
struct mill_unixsock_ sock;
int fd;
size_t ifirst;
size_t ilen;
size_t olen;
char ibuf[MILL_UNIX_BUFLEN];
char obuf[MILL_UNIX_BUFLEN];
};
static void mill_unixtune(int s) {
/* Make the socket non-blocking. */
int opt = fcntl(s, F_GETFL, 0);
if (opt == -1)
opt = 0;
int rc = fcntl(s, F_SETFL, opt | O_NONBLOCK);
mill_assert(rc != -1);
/* If possible, prevent SIGPIPE signal when writing to the connection
already closed by the peer. */
#ifdef SO_NOSIGPIPE
opt = 1;
rc = setsockopt (s, SOL_SOCKET, SO_NOSIGPIPE, &opt, sizeof (opt));
mill_assert (rc == 0 || errno == EINVAL);
#endif
}
static int mill_unixresolve(const char *addr, struct sockaddr_un *su) {
mill_assert(su);
if (strlen(addr) >= sizeof(su->sun_path)) {
errno = EINVAL;
return -1;
}
su->sun_family = AF_UNIX;
strncpy(su->sun_path, addr, sizeof(su->sun_path));
errno = 0;
return 0;
}
static void unixconn_init(struct mill_unixconn *conn, int fd) {
conn->sock.type = MILL_UNIXCONN;
conn->fd = fd;
conn->ifirst = 0;
conn->ilen = 0;
conn->olen = 0;
}
struct mill_unixsock_ *mill_unixlisten_(const char *addr, int backlog) {
struct sockaddr_un su;
int rc = mill_unixresolve(addr, &su);
if (rc != 0) {
return NULL;
}
/* Open the listening socket. */
int s = socket(AF_UNIX, SOCK_STREAM, 0);
if(s == -1)
return NULL;
mill_unixtune(s);
/* Start listening. */
rc = bind(s, (struct sockaddr*)&su, sizeof(struct sockaddr_un));
if(rc != 0)
return NULL;
rc = listen(s, backlog);
if(rc != 0)
return NULL;
/* Create the object. */
struct mill_unixlistener *l = malloc(sizeof(struct mill_unixlistener));
if(!l) {
fdclean(s);
close(s);
errno = ENOMEM;
return NULL;
}
l->sock.type = MILL_UNIXLISTENER;
l->fd = s;
errno = 0;
return &l->sock;
}
struct mill_unixsock_ *mill_unixaccept_(struct mill_unixsock_ *s,
int64_t deadline) {
if(s->type != MILL_UNIXLISTENER)
mill_panic("trying to accept on a socket that isn't listening");
struct mill_unixlistener *l = (struct mill_unixlistener*)s;
while(1) {
/* Try to get new connection (non-blocking). */
int as = accept(l->fd, NULL, NULL);
if (as >= 0) {
mill_unixtune(as);
struct mill_unixconn *conn = malloc(sizeof(struct mill_unixconn));
if(!conn) {
fdclean(as);
close(as);
errno = ENOMEM;
return NULL;
}
unixconn_init(conn, as);
errno = 0;
return (struct mill_unixsock_*)conn;
}
mill_assert(as == -1);
if(errno != EAGAIN && errno != EWOULDBLOCK)
return NULL;
/* Wait till new connection is available. */
int rc = fdwait(l->fd, FDW_IN, deadline);
if(rc == 0) {
errno = ETIMEDOUT;
return NULL;
}
if(rc & FDW_ERR)
return NULL;
mill_assert(rc == FDW_IN);
}
}
struct mill_unixsock_ *mill_unixconnect_(const char *addr) {
struct sockaddr_un su;
int rc = mill_unixresolve(addr, &su);
if (rc != 0) {
return NULL;
}
/* Open a socket. */
int s = socket(AF_UNIX, SOCK_STREAM, 0);
if(s == -1)
return NULL;
mill_unixtune(s);
/* Connect to the remote endpoint. */
rc = connect(s, (struct sockaddr*)&su, sizeof(struct sockaddr_un));
if(rc != 0) {
int err = errno;
mill_assert(rc == -1);
fdclean(s);
close(s);
errno = err;
return NULL;
}
/* Create the object. */
struct mill_unixconn *conn = malloc(sizeof(struct mill_unixconn));
if(!conn) {
fdclean(s);
close(s);
errno = ENOMEM;
return NULL;
}
unixconn_init(conn, s);
errno = 0;
return (struct mill_unixsock_*)conn;
}
void mill_unixpair_(struct mill_unixsock_ **a, struct mill_unixsock_ **b) {
if(!a || !b) {
errno = EINVAL;
return;
}
int fd[2];
int rc = socketpair(AF_UNIX, SOCK_STREAM, 0, fd);
if (rc != 0)
return;
mill_unixtune(fd[0]);
mill_unixtune(fd[1]);
struct mill_unixconn *conn = malloc(sizeof(struct mill_unixconn));
if(!conn) {
fdclean(fd[0]);
close(fd[0]);
fdclean(fd[1]);
close(fd[1]);
errno = ENOMEM;
return;
}
unixconn_init(conn, fd[0]);
*a = (struct mill_unixsock_*)conn;
conn = malloc(sizeof(struct mill_unixconn));
if(!conn) {
free(*a);
fdclean(fd[0]);
close(fd[0]);
fdclean(fd[1]);
close(fd[1]);
errno = ENOMEM;
return;
}
unixconn_init(conn, fd[1]);
*b = (struct mill_unixsock_*)conn;
errno = 0;
}
size_t mill_unixsend_(struct mill_unixsock_ *s, const void *buf, size_t len,
int64_t deadline) {
if(s->type != MILL_UNIXCONN)
mill_panic("trying to send to an unconnected socket");
struct mill_unixconn *conn = (struct mill_unixconn*)s;
/* If it fits into the output buffer copy it there and be done. */
if(conn->olen + len <= MILL_UNIX_BUFLEN) {
memcpy(&conn->obuf[conn->olen], buf, len);
conn->olen += len;
errno = 0;
return len;
}
/* If it doesn't fit, flush the output buffer first. */
unixflush(s, deadline);
if(errno != 0)
return 0;
/* Try to fit it into the buffer once again. */
if(conn->olen + len <= MILL_UNIX_BUFLEN) {
memcpy(&conn->obuf[conn->olen], buf, len);
conn->olen += len;
errno = 0;
return len;
}
/* The data chunk to send is longer than the output buffer.
Let's do the sending in-place. */
char *pos = (char*)buf;
size_t remaining = len;
while(remaining) {
ssize_t sz = send(conn->fd, pos, remaining, 0);
if(sz == -1) {
/* Operating systems are inconsistent w.r.t. returning EPIPE and
ECONNRESET. Let's paper over it like this. */
if(errno == EPIPE) {
errno = ECONNRESET;
return 0;
}
if(errno != EAGAIN && errno != EWOULDBLOCK)
return 0;
int rc = fdwait(conn->fd, FDW_OUT, deadline);
if(rc == 0) {
errno = ETIMEDOUT;
return len - remaining;
}
continue;
}
pos += sz;
remaining -= sz;
}
errno = 0;
return len;
}
void mill_unixflush_(struct mill_unixsock_ *s, int64_t deadline) {
if(s->type != MILL_UNIXCONN)
mill_panic("trying to send to an unconnected socket");
struct mill_unixconn *conn = (struct mill_unixconn*)s;
if(!conn->olen) {
errno = 0;
return;
}
char *pos = conn->obuf;
size_t remaining = conn->olen;
while(remaining) {
ssize_t sz = send(conn->fd, pos, remaining, 0);
if(sz == -1) {
/* Operating systems are inconsistent w.r.t. returning EPIPE and
ECONNRESET. Let's paper over it like this. */
if(errno == EPIPE) {
errno = ECONNRESET;
return;
}
if(errno != EAGAIN && errno != EWOULDBLOCK)
return;
int rc = fdwait(conn->fd, FDW_OUT, deadline);
if(rc == 0) {
errno = ETIMEDOUT;
return;
}
continue;
}
pos += sz;
remaining -= sz;
}
conn->olen = 0;
errno = 0;
}
size_t mill_unixrecv_(struct mill_unixsock_ *s, void *buf, size_t len,
int64_t deadline) {
if(s->type != MILL_UNIXCONN)
mill_panic("trying to receive from an unconnected socket");
struct mill_unixconn *conn = (struct mill_unixconn*)s;
/* If there's enough data in the buffer it's easy. */
if(conn->ilen >= len) {
memcpy(buf, &conn->ibuf[conn->ifirst], len);
conn->ifirst += len;
conn->ilen -= len;
errno = 0;
return len;
}
/* Let's move all the data from the buffer first. */
char *pos = (char*)buf;
size_t remaining = len;
memcpy(pos, &conn->ibuf[conn->ifirst], conn->ilen);
pos += conn->ilen;
remaining -= conn->ilen;
conn->ifirst = 0;
conn->ilen = 0;
mill_assert(remaining);
while(1) {
if(remaining > MILL_UNIX_BUFLEN) {
/* If we still have a lot to read try to read it in one go directly
into the destination buffer. */
ssize_t sz = recv(conn->fd, pos, remaining, 0);
if(!sz) {
errno = ECONNRESET;
return len - remaining;
}
if(sz == -1) {
if(errno != EAGAIN && errno != EWOULDBLOCK)
return len - remaining;
sz = 0;
}
if((size_t)sz == remaining) {
errno = 0;
return len;
}
pos += sz;
remaining -= sz;
}
else {
/* If we have just a little to read try to read the full connection
buffer to minimise the number of system calls. */
ssize_t sz = recv(conn->fd, conn->ibuf, MILL_UNIX_BUFLEN, 0);
if(!sz) {
errno = ECONNRESET;
return len - remaining;
}
if(sz == -1) {
if(errno != EAGAIN && errno != EWOULDBLOCK)
return len - remaining;
sz = 0;
}
if((size_t)sz < remaining) {
memcpy(pos, conn->ibuf, sz);
pos += sz;
remaining -= sz;
conn->ifirst = 0;
conn->ilen = 0;
}
else {
memcpy(pos, conn->ibuf, remaining);
conn->ifirst = remaining;
conn->ilen = sz - remaining;
errno = 0;
return len;
}
}
/* Wait till there's more data to read. */
int res = fdwait(conn->fd, FDW_IN, deadline);
if(!res) {
errno = ETIMEDOUT;
return len - remaining;
}
}
}
size_t mill_unixrecvuntil_(struct mill_unixsock_ *s, void *buf, size_t len,
const char *delims, size_t delimcount, int64_t deadline) {
if(s->type != MILL_UNIXCONN)
mill_panic("trying to receive from an unconnected socket");
unsigned char *pos = (unsigned char*)buf;
size_t i;
for(i = 0; i != len; ++i, ++pos) {
size_t res = unixrecv(s, pos, 1, deadline);
if(res == 1) {
size_t j;
for(j = 0; j != delimcount; ++j)
if(*pos == delims[j])
return i + 1;
}
if (errno != 0)
return i + res;
}
errno = ENOBUFS;
return len;
}
void mill_unixshutdown_(struct mill_unixsock_ *s, int how) {
mill_assert(s->type == MILL_UNIXCONN);
struct mill_unixconn *c = (struct mill_unixconn*)s;
int rc = shutdown(c->fd, how);
mill_assert(rc == 0 || errno == ENOTCONN);
}
void mill_unixclose_(struct mill_unixsock_ *s) {
if(s->type == MILL_UNIXLISTENER) {
struct mill_unixlistener *l = (struct mill_unixlistener*)s;
fdclean(l->fd);
int rc = close(l->fd);
mill_assert(rc == 0);
free(l);
return;
}
if(s->type == MILL_UNIXCONN) {
struct mill_unixconn *c = (struct mill_unixconn*)s;
fdclean(c->fd);
int rc = close(c->fd);
mill_assert(rc == 0);
free(c);
return;
}
mill_assert(0);
}