Fix rare SEGV in unix_addrstr with bad reference of UNIX socket path.
[yaz-moved-to-github.git] / comstack / unix.c
1 /*
2  * Copyright (c) 1995-2003, Index Data
3  * See the file LICENSE for details.
4  *
5  * $Id: unix.c,v 1.13 2003-09-16 20:48:28 adam Exp $
6  * UNIX socket COMSTACK. By Morten Bøgeskov.
7  */
8 #ifndef WIN32
9
10 #include <stdio.h>
11 #include <string.h>
12 #include <stdlib.h>
13 #include <unistd.h>
14 #include <errno.h>
15 #include <fcntl.h>
16 #include <signal.h>
17
18 #include <sys/socket.h>
19 #include <sys/stat.h>
20 #include <sys/un.h>
21
22 #include <yaz/comstack.h>
23 #include <yaz/unix.h>
24 #include <yaz/log.h>
25 #include <yaz/nmem.h>
26
27 #ifndef YAZ_SOCKLEN_T
28 #define YAZ_SOCKLEN_T int
29 #endif
30
31 static int unix_close(COMSTACK h);
32 static int unix_put(COMSTACK h, char *buf, int size);
33 static int unix_get(COMSTACK h, char **buf, int *bufsize);
34 static int unix_connect(COMSTACK h, void *address);
35 static int unix_more(COMSTACK h);
36 static int unix_rcvconnect(COMSTACK h);
37 static int unix_bind(COMSTACK h, void *address, int mode);
38 static int unix_listen(COMSTACK h, char *raddr, int *addrlen,
39                 int (*check_ip)(void *cd, const char *a, int len, int type),
40                 void *cd);
41 static int unix_set_blocking(COMSTACK p, int blocking);
42
43
44 static COMSTACK unix_accept(COMSTACK h);
45 static char *unix_addrstr(COMSTACK h);
46 static void *unix_straddr(COMSTACK h, const char *str);
47
48 #ifndef SUN_LEN
49 #define SUN_LEN(ptr) ((size_t) (((struct sockaddr_un *) 0)->sun_path) \
50                       + strlen ((ptr)->sun_path))
51 #endif
52 #if 0
53 #define TRC(x) x
54 #else
55 #define TRC(X)
56 #endif
57
58 /* this state is used for both SSL and straight TCP/IP */
59 typedef struct unix_state
60 {
61     char *altbuf; /* alternate buffer for surplus data */
62     int altsize;  /* size as xmalloced */
63     int altlen;   /* length of data or 0 if none */
64
65     int written;  /* -1 if we aren't writing */
66     int towrite;  /* to verify against user input */
67     int (*complete)(const unsigned char *buf, int len); /* length/comple. */
68     struct sockaddr_un addr;  /* returned by cs_straddr */
69     char buf[128]; /* returned by cs_addrstr */
70 } unix_state;
71
72 static int unix_init (void)
73 {
74     return 1;
75 }
76
77 /*
78  * This function is always called through the cs_create() macro.
79  * s >= 0: socket has already been established for us.
80  */
81 COMSTACK unix_type(int s, int blocking, int protocol, void *vp)
82 {
83     COMSTACK p;
84     unix_state *state;
85     int new_socket;
86
87     if (!unix_init ())
88         return 0;
89     if (s < 0)
90     {
91         if ((s = socket(AF_UNIX, SOCK_STREAM, 0)) < 0)
92             return 0;
93         new_socket = 1;
94     }
95     else
96         new_socket = 0;
97     if (!(p = (struct comstack *)xmalloc(sizeof(struct comstack))))
98         return 0;
99     if (!(state = (struct unix_state *)(p->cprivate =
100                                         xmalloc(sizeof(unix_state)))))
101         return 0;
102
103     if (!(p->blocking = blocking))
104     {
105         if (fcntl(s, F_SETFL, O_NONBLOCK) < 0)
106             return 0;
107 #ifndef MSG_NOSIGNAL
108         signal (SIGPIPE, SIG_IGN);
109 #endif
110     }
111
112     p->io_pending = 0;
113     p->iofile = s;
114     p->type = unix_type;
115     p->protocol = (enum oid_proto) protocol;
116
117     p->f_connect = unix_connect;
118     p->f_rcvconnect = unix_rcvconnect;
119     p->f_get = unix_get;
120     p->f_put = unix_put;
121     p->f_close = unix_close;
122     p->f_more = unix_more;
123     p->f_bind = unix_bind;
124     p->f_listen = unix_listen;
125     p->f_accept = unix_accept;
126     p->f_addrstr = unix_addrstr;
127     p->f_straddr = unix_straddr;
128     p->f_set_blocking = unix_set_blocking;
129
130     p->state = new_socket ? CS_ST_UNBND : CS_ST_IDLE; /* state of line */
131     p->event = CS_NONE;
132     p->cerrno = 0;
133     p->stackerr = 0;
134
135     state->altbuf = 0;
136     state->altsize = state->altlen = 0;
137     state->towrite = state->written = -1;
138     if (protocol == PROTO_WAIS)
139         state->complete = completeWAIS;
140     else
141         state->complete = cs_complete_auto;
142
143     p->timeout = COMSTACK_DEFAULT_TIMEOUT;
144     TRC(fprintf(stderr, "Created new UNIX comstack\n"));
145
146     return p;
147 }
148
149
150 static int unix_strtoaddr_ex(const char *str, struct sockaddr_un *add)
151 {
152     char *cp;
153     if (!unix_init ())
154         return 0;
155     TRC(fprintf(stderr, "unix_strtoaddress: %s\n", str ? str : "NULL"));
156     add->sun_family = AF_UNIX;
157     strncpy(add->sun_path, str, sizeof(add->sun_path));
158     cp = strchr (add->sun_path, ':');
159     if (cp)
160         *cp = '\0';
161     return 1;
162 }
163
164 static void *unix_straddr(COMSTACK h, const char *str)
165 {
166     unix_state *sp = (unix_state *)h->cprivate;
167
168     TRC(fprintf(stderr, "unix_straddr: %s\n", str ? str : "NULL"));
169
170     if (!unix_strtoaddr_ex (str, &sp->addr))
171         return 0;
172     return &sp->addr;
173 }
174
175 struct sockaddr_un *unix_strtoaddr(const char *str)
176 {
177     static struct sockaddr_un add;
178
179     TRC(fprintf(stderr, "unix_strtoaddr: %s\n", str ? str : "NULL"));
180
181     if (!unix_strtoaddr_ex (str, &add))
182         return 0;
183     return &add;
184 }
185
186 static int unix_more(COMSTACK h)
187 {
188     unix_state *sp = (unix_state *)h->cprivate;
189
190     return sp->altlen && (*sp->complete)((unsigned char *) sp->altbuf,
191                                          sp->altlen);
192 }
193
194 /*
195  * connect(2) will block (sometimes) - nothing we can do short of doing
196  * weird things like spawning subprocesses or threading or some weird junk
197  * like that.
198  */
199 static int unix_connect(COMSTACK h, void *address)
200 {
201     struct sockaddr_un *add = (struct sockaddr_un *)address;
202     int r;
203
204     TRC(fprintf(stderr, "unix_connect\n"));
205     h->io_pending = 0;
206     if (h->state != CS_ST_UNBND)
207     {
208         h->cerrno = CSOUTSTATE;
209         return -1;
210     }
211     r = connect(h->iofile, (struct sockaddr *) add, SUN_LEN(add));
212     if (r < 0)
213     {
214         if (yaz_errno() == EINPROGRESS)
215         {
216             h->event = CS_CONNECT;
217             h->state = CS_ST_CONNECTING;
218             h->io_pending = CS_WANT_WRITE|CS_WANT_READ;
219             return 1;
220         }
221         h->cerrno = CSYSERR;
222         return -1;
223     }
224     h->event = CS_CONNECT;
225     h->state = CS_ST_CONNECTING;
226
227     return unix_rcvconnect (h);
228 }
229
230 /*
231  * nop
232  */
233 static int unix_rcvconnect(COMSTACK h)
234 {
235     TRC(fprintf(stderr, "unix_rcvconnect\n"));
236
237     if (h->state == CS_ST_DATAXFER)
238         return 0;
239     if (h->state != CS_ST_CONNECTING)
240     {
241         h->cerrno = CSOUTSTATE;
242         return -1;
243     }
244     h->event = CS_DATA;
245     h->state = CS_ST_DATAXFER;
246     return 0;
247 }
248
249 #define CERTF "ztest.pem"
250 #define KEYF "ztest.pem"
251
252 static int unix_bind(COMSTACK h, void *address, int mode)
253 {
254     struct sockaddr *addr = (struct sockaddr *)address;
255     const char * path = ((struct sockaddr_un *)addr)->sun_path;
256     struct stat stat_buf;
257
258     TRC (fprintf (stderr, "unix_bind\n"));
259
260     if(stat(path, &stat_buf) != -1) {
261         struct sockaddr_un socket_unix;
262         int socket_out = -1;
263         if(! S_ISSOCK(stat_buf.st_mode)) {
264             h->cerrno = CSYSERR;
265             yaz_set_errno(EEXIST); /* Not a socket (File exists) */
266             return -1;
267         }
268         if((socket_out = socket(AF_UNIX, SOCK_STREAM, 0)) < 0) {
269             h->cerrno = CSYSERR;
270             return -1;
271         }
272         socket_unix.sun_family = AF_UNIX;
273         strncpy(socket_unix.sun_path, path, sizeof(socket_unix.sun_path));
274         if(connect(socket_out, (struct sockaddr *) &socket_unix, SUN_LEN(&socket_unix)) < 0) {
275             if(yaz_errno() == ECONNREFUSED) {
276                 TRC (fprintf (stderr, "Socket exists but nobody is listening\n"));
277             } else {
278                 h->cerrno = CSYSERR;
279                 return -1;
280             }
281         } else {
282             close(socket_out);
283             h->cerrno = CSYSERR;
284             yaz_set_errno(EADDRINUSE);
285             return -1;
286         }
287         unlink(path);
288     }
289
290     if (bind(h->iofile, (struct sockaddr *) addr, SUN_LEN((struct sockaddr_un *)addr)))
291     {
292         h->cerrno = CSYSERR;
293         return -1;
294     }
295     chmod(path, 0777);
296     if (mode == CS_SERVER && listen(h->iofile, 3) < 0)
297     {
298         h->cerrno = CSYSERR;
299         return -1;
300     }
301     h->state = CS_ST_IDLE;
302     h->event = CS_LISTEN;
303     return 0;
304 }
305
306 static int unix_listen(COMSTACK h, char *raddr, int *addrlen,
307                     int (*check_ip)(void *cd, const char *a, int len, int t),
308                     void *cd)
309 {
310     struct sockaddr_un addr;
311     YAZ_SOCKLEN_T len = sizeof(addr);
312
313     TRC(fprintf(stderr, "unix_listen pid=%d\n", getpid()));
314     if (h->state != CS_ST_IDLE)
315     {
316         h->cerrno = CSOUTSTATE;
317         return -1;
318     }
319     h->newfd = accept(h->iofile, (struct sockaddr*)&addr, &len);
320     if (h->newfd < 0)
321     {
322         if (
323             yaz_errno() == EWOULDBLOCK
324 #ifdef EAGAIN
325 #if EAGAIN != EWOULDBLOCK
326             || yaz_errno() == EAGAIN
327 #endif
328 #endif
329             )
330             h->cerrno = CSNODATA;
331         else
332             h->cerrno = CSYSERR;
333         return -1;
334     }
335     if (addrlen && (size_t) (*addrlen) >= sizeof(struct sockaddr_un))
336         memcpy(raddr, &addr, *addrlen = sizeof(struct sockaddr_un));
337     else if (addrlen)
338         *addrlen = 0;
339     h->state = CS_ST_INCON;
340     return 0;
341 }
342
343 static COMSTACK unix_accept(COMSTACK h)
344 {
345     COMSTACK cnew;
346     unix_state *state, *st = (unix_state *)h->cprivate;
347
348     TRC(fprintf(stderr, "unix_accept\n"));
349     if (h->state == CS_ST_INCON)
350     {
351         if (!(cnew = (COMSTACK)xmalloc(sizeof(*cnew))))
352         {
353             h->cerrno = CSYSERR;
354             close(h->newfd);
355             h->newfd = -1;
356             return 0;
357         }
358         memcpy(cnew, h, sizeof(*h));
359         cnew->iofile = h->newfd;
360         cnew->io_pending = 0;
361         if (!(state = (unix_state *)
362               (cnew->cprivate = xmalloc(sizeof(unix_state)))))
363         {
364             h->cerrno = CSYSERR;
365             if (h->newfd != -1)
366             {
367                 close(h->newfd);
368                 h->newfd = -1;
369             }
370             return 0;
371         }
372         if (!cnew->blocking &&
373             (!cnew->blocking && fcntl(cnew->iofile, F_SETFL, O_NONBLOCK) < 0)
374             )
375         {
376             h->cerrno = CSYSERR;
377             if (h->newfd != -1)
378             {
379                 close(h->newfd);
380                 h->newfd = -1;
381             }
382             xfree (cnew);
383             xfree (state);
384             return 0;
385         }
386         h->newfd = -1;
387         state->altbuf = 0;
388         state->altsize = state->altlen = 0;
389         state->towrite = state->written = -1;
390         state->complete = st->complete;
391         memcpy(&state->addr, &st->addr, sizeof(state->addr));
392         cnew->state = CS_ST_ACCEPT;
393         cnew->event = CS_NONE;
394         h->state = CS_ST_IDLE;
395
396         h = cnew;
397     }
398     if (h->state == CS_ST_ACCEPT)
399     {
400     }
401     else
402     {
403         h->cerrno = CSOUTSTATE;
404         return 0;
405     }
406     h->io_pending = 0;
407     h->state = CS_ST_DATAXFER;
408     h->event = CS_DATA;
409     return h;
410 }
411
412 #define CS_UNIX_BUFCHUNK 4096
413
414 /*
415  * Return: -1 error, >1 good, len of buffer, ==1 incomplete buffer,
416  * 0=connection closed.
417  */
418 static int unix_get(COMSTACK h, char **buf, int *bufsize)
419 {
420     unix_state *sp = (unix_state *)h->cprivate;
421     char *tmpc;
422     int tmpi, berlen, rest, req, tomove;
423     int hasread = 0, res;
424
425     TRC(fprintf(stderr, "unix_get: bufsize=%d\n", *bufsize));
426     if (sp->altlen) /* switch buffers */
427     {
428         TRC(fprintf(stderr, "  %d bytes in altbuf (0x%x)\n", sp->altlen,
429                     (unsigned) sp->altbuf));
430         tmpc = *buf;
431         tmpi = *bufsize;
432         *buf = sp->altbuf;
433         *bufsize = sp->altsize;
434         hasread = sp->altlen;
435         sp->altlen = 0;
436         sp->altbuf = tmpc;
437         sp->altsize = tmpi;
438     }
439     h->io_pending = 0;
440     while (!(berlen = (*sp->complete)((unsigned char *)*buf, hasread)))
441     {
442         if (!*bufsize)
443         {
444             if (!(*buf = (char *)xmalloc(*bufsize = CS_UNIX_BUFCHUNK)))
445                 return -1;
446         }
447         else if (*bufsize - hasread < CS_UNIX_BUFCHUNK)
448             if (!(*buf =(char *)xrealloc(*buf, *bufsize *= 2)))
449                 return -1;
450         res = recv(h->iofile, *buf + hasread, CS_UNIX_BUFCHUNK, 0);
451         TRC(fprintf(stderr, "  recv res=%d, hasread=%d\n", res, hasread));
452         if (res < 0)
453         {
454             if (yaz_errno() == EWOULDBLOCK
455 #ifdef EAGAIN
456 #if EAGAIN != EWOULDBLOCK
457                 || yaz_errno() == EAGAIN
458 #endif
459 #endif
460                 || yaz_errno() == EINPROGRESS
461                 )
462             {
463                 h->io_pending = CS_WANT_READ;
464                 break;
465             }
466             else if (yaz_errno() == 0)
467                 continue;
468             else
469                 return -1;
470         }
471         else if (!res)
472             return 0;
473         hasread += res;
474     }
475     TRC (fprintf (stderr, "  Out of read loop with hasread=%d, berlen=%d\n",
476                   hasread, berlen));
477     /* move surplus buffer (or everything if we didn't get a BER rec.) */
478     if (hasread > berlen)
479     {
480         tomove = req = hasread - berlen;
481         rest = tomove % CS_UNIX_BUFCHUNK;
482         if (rest)
483             req += CS_UNIX_BUFCHUNK - rest;
484         if (!sp->altbuf)
485         {
486             if (!(sp->altbuf = (char *)xmalloc(sp->altsize = req)))
487                 return -1;
488         } else if (sp->altsize < req)
489             if (!(sp->altbuf =(char *)xrealloc(sp->altbuf, sp->altsize = req)))
490                 return -1;
491         TRC(fprintf(stderr, "  Moving %d bytes to altbuf(0x%x)\n", tomove,
492                     (unsigned) sp->altbuf));
493         memcpy(sp->altbuf, *buf + berlen, sp->altlen = tomove);
494     }
495     if (berlen < CS_UNIX_BUFCHUNK - 1)
496         *(*buf + berlen) = '\0';
497     return berlen ? berlen : 1;
498 }
499
500
501
502 /*
503  * Returns 1, 0 or -1
504  * In nonblocking mode, you must call again with same buffer while
505  * return value is 1.
506  */
507 static int unix_put(COMSTACK h, char *buf, int size)
508 {
509     int res;
510     struct unix_state *state = (struct unix_state *)h->cprivate;
511
512     TRC(fprintf(stderr, "unix_put: size=%d\n", size));
513     h->io_pending = 0;
514     h->event = CS_DATA;
515     if (state->towrite < 0)
516     {
517         state->towrite = size;
518         state->written = 0;
519     }
520     else if (state->towrite != size)
521     {
522         h->cerrno = CSWRONGBUF;
523         return -1;
524     }
525     while (state->towrite > state->written)
526     {
527         if ((res =
528              send(h->iofile, buf + state->written, size -
529                   state->written,
530 #ifdef MSG_NOSIGNAL
531                   MSG_NOSIGNAL
532 #else
533                   0
534 #endif
535                  )) < 0)
536         {
537             if (
538                 yaz_errno() == EWOULDBLOCK
539 #ifdef EAGAIN
540 #if EAGAIN != EWOULDBLOCK
541                 || yaz_errno() == EAGAIN
542 #endif
543 #endif
544                 )
545             {
546                 TRC(fprintf(stderr, "  Flow control stop\n"));
547                 h->io_pending = CS_WANT_WRITE;
548                 return 1;
549             }
550             h->cerrno = CSYSERR;
551             return -1;
552         }
553         state->written += res;
554         TRC(fprintf(stderr, "  Wrote %d, written=%d, nbytes=%d\n",
555                     res, state->written, size));
556     }
557     state->towrite = state->written = -1;
558     TRC(fprintf(stderr, "  Ok\n"));
559     return 0;
560 }
561
562 static int unix_close(COMSTACK h)
563 {
564     unix_state *sp = (struct unix_state *)h->cprivate;
565
566     TRC(fprintf(stderr, "unix_close\n"));
567     if (h->iofile != -1)
568     {
569         close(h->iofile);
570     }
571     if (sp->altbuf)
572         xfree(sp->altbuf);
573     xfree(sp);
574     xfree(h);
575     return 0;
576 }
577
578 static char *unix_addrstr(COMSTACK h)
579 {
580     unix_state *sp = (struct unix_state *)h->cprivate;
581     char *buf = sp->buf;
582     sprintf(buf, "unix:%s", sp->addr.sun_path);
583     return buf;
584 }
585
586 static int unix_set_blocking(COMSTACK p, int blocking)
587 {
588     unsigned long flag;
589
590     if (p->blocking == blocking)
591         return 1;
592     flag = fcntl(p->iofile, F_GETFL, 0);
593     if(!blocking)
594         flag = flag & ~O_NONBLOCK;
595     else
596         flag = flag | O_NONBLOCK;
597     if (fcntl(p->iofile, F_SETFL, flag) < 0)
598         return 0;
599     p->blocking = blocking;
600     return 1;
601 }
602 #endif