Add oid_name_to_oid(), oid_to_dotstring() and id_name_to_dotstring()
[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.12 2003-05-14 13:49:02 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 = SUN_LEN(&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         cnew->state = CS_ST_ACCEPT;
392         cnew->event = CS_NONE;
393         h->state = CS_ST_IDLE;
394
395         h = cnew;
396     }
397     if (h->state == CS_ST_ACCEPT)
398     {
399     }
400     else
401     {
402         h->cerrno = CSOUTSTATE;
403         return 0;
404     }
405     h->io_pending = 0;
406     h->state = CS_ST_DATAXFER;
407     h->event = CS_DATA;
408     return h;
409 }
410
411 #define CS_UNIX_BUFCHUNK 4096
412
413 /*
414  * Return: -1 error, >1 good, len of buffer, ==1 incomplete buffer,
415  * 0=connection closed.
416  */
417 static int unix_get(COMSTACK h, char **buf, int *bufsize)
418 {
419     unix_state *sp = (unix_state *)h->cprivate;
420     char *tmpc;
421     int tmpi, berlen, rest, req, tomove;
422     int hasread = 0, res;
423
424     TRC(fprintf(stderr, "unix_get: bufsize=%d\n", *bufsize));
425     if (sp->altlen) /* switch buffers */
426     {
427         TRC(fprintf(stderr, "  %d bytes in altbuf (0x%x)\n", sp->altlen,
428                     (unsigned) sp->altbuf));
429         tmpc = *buf;
430         tmpi = *bufsize;
431         *buf = sp->altbuf;
432         *bufsize = sp->altsize;
433         hasread = sp->altlen;
434         sp->altlen = 0;
435         sp->altbuf = tmpc;
436         sp->altsize = tmpi;
437     }
438     h->io_pending = 0;
439     while (!(berlen = (*sp->complete)((unsigned char *)*buf, hasread)))
440     {
441         if (!*bufsize)
442         {
443             if (!(*buf = (char *)xmalloc(*bufsize = CS_UNIX_BUFCHUNK)))
444                 return -1;
445         }
446         else if (*bufsize - hasread < CS_UNIX_BUFCHUNK)
447             if (!(*buf =(char *)xrealloc(*buf, *bufsize *= 2)))
448                 return -1;
449         res = recv(h->iofile, *buf + hasread, CS_UNIX_BUFCHUNK, 0);
450         TRC(fprintf(stderr, "  recv res=%d, hasread=%d\n", res, hasread));
451         if (res < 0)
452         {
453             if (yaz_errno() == EWOULDBLOCK
454 #ifdef EAGAIN
455 #if EAGAIN != EWOULDBLOCK
456                 || yaz_errno() == EAGAIN
457 #endif
458 #endif
459                 || yaz_errno() == EINPROGRESS
460                 )
461             {
462                 h->io_pending = CS_WANT_READ;
463                 break;
464             }
465             else if (yaz_errno() == 0)
466                 continue;
467             else
468                 return -1;
469         }
470         else if (!res)
471             return 0;
472         hasread += res;
473     }
474     TRC (fprintf (stderr, "  Out of read loop with hasread=%d, berlen=%d\n",
475                   hasread, berlen));
476     /* move surplus buffer (or everything if we didn't get a BER rec.) */
477     if (hasread > berlen)
478     {
479         tomove = req = hasread - berlen;
480         rest = tomove % CS_UNIX_BUFCHUNK;
481         if (rest)
482             req += CS_UNIX_BUFCHUNK - rest;
483         if (!sp->altbuf)
484         {
485             if (!(sp->altbuf = (char *)xmalloc(sp->altsize = req)))
486                 return -1;
487         } else if (sp->altsize < req)
488             if (!(sp->altbuf =(char *)xrealloc(sp->altbuf, sp->altsize = req)))
489                 return -1;
490         TRC(fprintf(stderr, "  Moving %d bytes to altbuf(0x%x)\n", tomove,
491                     (unsigned) sp->altbuf));
492         memcpy(sp->altbuf, *buf + berlen, sp->altlen = tomove);
493     }
494     if (berlen < CS_UNIX_BUFCHUNK - 1)
495         *(*buf + berlen) = '\0';
496     return berlen ? berlen : 1;
497 }
498
499
500
501 /*
502  * Returns 1, 0 or -1
503  * In nonblocking mode, you must call again with same buffer while
504  * return value is 1.
505  */
506 static int unix_put(COMSTACK h, char *buf, int size)
507 {
508     int res;
509     struct unix_state *state = (struct unix_state *)h->cprivate;
510
511     TRC(fprintf(stderr, "unix_put: size=%d\n", size));
512     h->io_pending = 0;
513     h->event = CS_DATA;
514     if (state->towrite < 0)
515     {
516         state->towrite = size;
517         state->written = 0;
518     }
519     else if (state->towrite != size)
520     {
521         h->cerrno = CSWRONGBUF;
522         return -1;
523     }
524     while (state->towrite > state->written)
525     {
526         if ((res =
527              send(h->iofile, buf + state->written, size -
528                   state->written,
529 #ifdef MSG_NOSIGNAL
530                   MSG_NOSIGNAL
531 #else
532                   0
533 #endif
534                  )) < 0)
535         {
536             if (
537                 yaz_errno() == EWOULDBLOCK
538 #ifdef EAGAIN
539 #if EAGAIN != EWOULDBLOCK
540                 || yaz_errno() == EAGAIN
541 #endif
542 #endif
543                 )
544             {
545                 TRC(fprintf(stderr, "  Flow control stop\n"));
546                 h->io_pending = CS_WANT_WRITE;
547                 return 1;
548             }
549             h->cerrno = CSYSERR;
550             return -1;
551         }
552         state->written += res;
553         TRC(fprintf(stderr, "  Wrote %d, written=%d, nbytes=%d\n",
554                     res, state->written, size));
555     }
556     state->towrite = state->written = -1;
557     TRC(fprintf(stderr, "  Ok\n"));
558     return 0;
559 }
560
561 static int unix_close(COMSTACK h)
562 {
563     unix_state *sp = (struct unix_state *)h->cprivate;
564
565     TRC(fprintf(stderr, "unix_close\n"));
566     if (h->iofile != -1)
567     {
568         close(h->iofile);
569     }
570     if (sp->altbuf)
571         xfree(sp->altbuf);
572     xfree(sp);
573     xfree(h);
574     return 0;
575 }
576
577 static char *unix_addrstr(COMSTACK h)
578 {
579     unix_state *sp = (struct unix_state *)h->cprivate;
580     char *buf = sp->buf;
581     sprintf(buf, "unix:%s", sp->addr.sun_path);
582     return buf;
583 }
584
585 static int unix_set_blocking(COMSTACK p, int blocking)
586 {
587     unsigned long flag;
588
589     if (p->blocking == blocking)
590         return 1;
591     flag = fcntl(p->iofile, F_GETFL, 0);
592     if(!blocking)
593         flag = flag & ~O_NONBLOCK;
594     else
595         flag = flag | O_NONBLOCK;
596     if (fcntl(p->iofile, F_SETFL, flag) < 0)
597         return 0;
598     p->blocking = blocking;
599     return 1;
600 }
601 #endif