summaryrefslogblamecommitdiffstats
path: root/innbbsd/connectsock.c
blob: 71203cfe2d53cddefe7e68ee08642caa3f888b14 (plain) (tree)
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



































































































































































































































































































































































































































































                                                                                      
#include "innbbsconf.h"
#include "daemon.h"
#include <signal.h>
#include <setjmp.h>

static jmp_buf timebuf;

static void
timeout(sig)
  int sig;
{
  longjmp(timebuf, sig);
}

extern int errno;
static void reapchild (s)
int s;
{
    int state;
    while (waitpid(-1,&state,WNOHANG|WUNTRACED)>0) {
    /*  printf("reaping child\n");*/
    }
}

void dokill(s)
int s;
{
   kill(0,SIGKILL);
}

static INETDstart = 0;
int startfrominetd(flag)
{
   INETDstart = flag ;
}


int standalonesetup(fd)
int fd;
{
        int on =1;
    struct linger foobar;
    if (setsockopt(fd,SOL_SOCKET, SO_REUSEADDR,(char *)&on,sizeof(on)) < 0)
       syslog(LOG_ERR, "setsockopt (SO_REUSEADDR): %m");
    foobar.l_onoff = 0;
    if (setsockopt(fd, SOL_SOCKET, SO_LINGER, (char*)&foobar, sizeof (foobar))<0)
       syslog(LOG_ERR, "setsockopt (SO_LINGER): %m");
}

static char *UNIX_SERVER_PATH;
static int (*halt)();

sethaltfunction(haltfunc)
int (*haltfunc)();
{
    halt = haltfunc;
}

void docompletehalt(s)
int s;
{
    /*printf("try to remove %s\n", UNIX_SERVER_PATH);
    unlink(UNIX_SERVER_PATH);*/
    exit(0);
    /*dokill();*/
}

void doremove(s)
int s;
{
   if (halt != NULL)
      (*halt)(s);
   else 
      docompletehalt(s);
}


initunixserver(path, protocol)
char *path;
char *protocol;
{
    struct sockaddr_un s_un;   
    /* unix endpoint address */
    struct protoent *pe;   /*protocol information entry*/
    int s;
    char *ptr;

    bzero((char*)&s_un,sizeof(s_un));
    s_un.sun_family= AF_UNIX;
    strcpy(s_un.sun_path, path);
    if (protocol==NULL)
         protocol="tcp";
        /* map protocol name to protocol number */
    pe=getprotobyname(protocol);
    if (pe==NULL) {
     fprintf(stderr,"%s: Unknown protocol.\n",protocol);
     return (-1);
    }

        /* Allocate a socket */
    s = socket(PF_UNIX,strcmp(protocol,"tcp")?SOCK_DGRAM:SOCK_STREAM,0);
    if (s<0) {
        printf("protocol %d\n", pe->p_proto);
        perror("socket");
        return -1;
    }
    /*standalonesetup(s);*/
        signal(SIGHUP, SIG_IGN);
        signal(SIGUSR1, SIG_IGN);
    signal(SIGCHLD,reapchild);
    UNIX_SERVER_PATH = path;
    signal(SIGINT,doremove);
    signal(SIGTERM,doremove);

    chdir("/");
    if (bind(s,(struct sockaddr*)&s_un,sizeof (struct sockaddr_un))<0){
        perror("bind");
        perror(path);
        return -1;
    }
    listen(s,10);
    return s;
}

initinetserver(service,protocol)
char *service;
char *protocol;
{
        struct servent *se;    /*service information entry*/
    struct hostent *he;    /*host information entry*/
    struct protoent *pe;   /*protocol information entry*/
    struct sockaddr_in sin;/*Internet endpoint address*/
    int port,s;
    int randomport=0;

    bzero((char*)&sin,sizeof(sin));
    sin.sin_family= AF_INET;
    if (!strcmp("0",service)) {
        randomport = 1;
        sin.sin_addr.s_addr = INADDR_ANY;
    }

    if (service==NULL) 
         service=DEFAULTPORT;
    if (protocol==NULL)
         protocol="tcp";
        /* map service name to port number */
    /* service ---> port */
    se = getservbyname(service,protocol);
    if (se==NULL) {
      port = htons((u_short)atoi(service)); 
      if (port==0 && !randomport) {
       fprintf (stderr, "%s/%s: Unknown service.\n",service,protocol);
       return (-1);
      }
        } else 
            port=se->s_port;
    sin.sin_port = port;

        /* map protocol name to protocol number */
    pe=getprotobyname(protocol);
    if (pe==NULL) {
     fprintf(stderr,"%s: Unknown protocol.\n",protocol);
     return (-1);
    }

        /* Allocate a socket */
    s = socket(PF_INET,strcmp(protocol,"tcp")?SOCK_DGRAM:SOCK_STREAM,pe->p_proto);
    if (s<0) {
        perror("socket");
        return -1;
    }
    standalonesetup(s);
        signal(SIGHUP, SIG_IGN);
        signal(SIGUSR1, SIG_IGN);
    signal(SIGCHLD,reapchild);
    signal(SIGINT,dokill);
    signal(SIGTERM,dokill);

    chdir("/");
    if (bind(s,(struct sockaddr*)&sin,sizeof (struct sockaddr_in))<0){
        perror("bind");
        return -1;
    }
    listen(s,10);
#ifdef DEBUG
    { int length=sizeof(sin);
    getsockname(s,&sin,&length);
    printf("portnum alocalted %d\n",sin.sin_port);
    }
#endif
    return s;
}

int open_unix_listen(path,protocol,initfunc)
char *path;
char *protocol;
int (*initfunc) ARG((int));
{
    int s;
    s = initunixserver(path,protocol);
    if (s<0) {
        return -1;
    }
    if (initfunc != NULL) {
       printf("in inetsingleserver before initfunc s %d\n",s);
       if ((*initfunc)(s)<0) {
        perror("initfunc error");
        return -1;
       }
       printf("end inetsingleserver before initfunc \n");
        }
    return s;
}

int open_listen(service,protocol,initfunc)
char *service;
char *protocol;
int (*initfunc) ARG((int));
{
    int s;
    if (! INETDstart)
      s = initinetserver(service,protocol);
        else
      s = 0;
    if (s<0) {
        return -1;
    }
    if (initfunc != NULL) {
       printf("in inetsingleserver before initfunc s %d\n",s);
       if ((*initfunc)(s)<0) {
        perror("initfunc error");
        return -1;
       }
       printf("end inetsingleserver before initfunc \n");
        }
    return s;
}

int inetsingleserver(service,protocol,serverfunc,initfunc)
char *service;
char *protocol;
int (*initfunc) ARG((int));
int (*serverfunc) ARG((int));
{
    int s;
    if (!INETDstart)
      s = initinetserver(service,protocol);
        else
      s = 0;
    if (s<0) {
        return -1;
    }
    if (initfunc != NULL) {
       printf("in inetsingleserver before initfunc s %d\n",s);
       if ((*initfunc)(s)<0) {
        perror("initfunc error");
        return -1;
       }
       printf("end inetsingleserver before initfunc \n");
        }
    {
        int ns=tryaccept(s);
        int result=0;
        if (ns < 0 && errno != EINTR){
#ifdef DEBUGSERVER
            perror("accept");
#endif
        }
        close(s);
        if (serverfunc != NULL)
           result = (*serverfunc)(ns);
        close(ns);
        return(result);
    }
}


int tryaccept(s)
int s;
{
    int ns,fromlen;
    struct sockaddr sockaddr;/*Internet endpoint address*/
    fromlen=sizeof (struct sockaddr_in);

#ifdef DEBUGSERVER
    fputs("Listening again\n",stdout);
#endif
    do {
       ns = accept(s,&sockaddr,&fromlen);
       errno = 0;
    } while ( ns < 0 && errno == EINTR );
    return ns;
}

int inetserver(service,protocol,serverfunc)
char *service;
char *protocol;
int (*serverfunc) ARG((int));
{
    int port,s;

        if (!INETDstart)
     s = initinetserver(service,protocol);
        else
     s = 0;
    if (s<0) {
        return -1;
    }
    for (;;) {
        int ns=tryaccept(s);
        int result=0;
        int pid;
        if (ns < 0 && errno != EINTR){
#ifdef DEBUGSERVER
            perror("accept");
#endif
            continue;
        }
#ifdef DEBUGSERVER
        fputs("Accept OK\n",stdout);
#endif
        pid = fork();
        if (pid==0) {
            close(s);
            if (serverfunc != NULL)
               result = (*serverfunc)(ns);
            close(ns);
            exit(result);
        } else if (pid < 0) {
            perror("fork");
            return -1;
        }
        close(ns);
    }
    return 0;
}

int inetclient(server,service,protocol) 
char *server;
char *protocol;
char *service;
{
        struct servent *se;    /*service information entry*/
    struct hostent *he;    /*host information entry*/
    struct protoent *pe;   /*protocol information entry*/
    struct sockaddr_in sin;/*Internet endpoint address*/
    int port,s;

    bzero((char*)&sin,sizeof(sin));
    sin.sin_family= AF_INET;

    if (service==NULL) 
         service=DEFAULTPORT;
    if (protocol==NULL)
         protocol="tcp";
    if (server==NULL)
         server=DEFAULTSERVER;
        /* map service name to port number */
    /* service ---> port */
    se = getservbyname(service,protocol);
    if (se==NULL) {
      port = htons((u_short)atoi(service)); 
      if (port==0) {
       fprintf (stderr, "%s/%s: Unknown service.\n",service,protocol);
       return (-1);
      }
        } else 
            port=se->s_port;
    sin.sin_port = port;

    /* map server hostname to IP address, allowing for dotted decimal */
    he=gethostbyname(server);
    if (he==NULL) {
      sin.sin_addr.s_addr = inet_addr(server);
      if (sin.sin_addr.s_addr==INADDR_NONE) {
       fprintf (stderr, "%s: Unknown host.\n",server);
       return (-1);
      }
    } else
      bcopy(he->h_addr,(char*)&sin.sin_addr,he->h_length);

        /* map protocol name to protocol number */
    pe=getprotobyname(protocol);
    if (pe==NULL) {
     fprintf(stderr,"%s: Unknown protocol.\n",protocol);
     return (-1);
    }

        /* Allocate a socket */
    s = socket(PF_INET,strcmp(protocol,"tcp")?SOCK_DGRAM:SOCK_STREAM,pe->p_proto);
    if (s<0) {
        perror("socket");
        return -1;
    }

       if (setjmp(timebuf) == 0)
       {
        signal(SIGALRM, timeout);
        alarm(5);
        if (connect(s,(struct sockaddr*)&sin,sizeof(sin))<0)
          {
                alarm(0);
                return -1;
          }
       }
       else
       {
                alarm(0);
                return -1;
       }
        alarm(0);

    return s;
}

int unixclient(path,protocol) 
char *path;
char *protocol;
{
    struct protoent *pe;    /*protocol information entry*/
    struct sockaddr_un s_un;/*unix endpoint address*/
    int s;

    bzero((char*)&s_un,sizeof(s_un));
    s_un.sun_family= AF_UNIX;

    if (path==NULL) 
         path=DEFAULTPATH;
    if (protocol==NULL)
         protocol="tcp";
    strcpy(s_un.sun_path , path);

        /* map protocol name to protocol number */
    pe=getprotobyname(protocol);
    if (pe==NULL) {
     fprintf(stderr,"%s: Unknown protocol.\n",protocol);
     return (-1);
    }
        /* Allocate a socket */
    s = socket(PF_UNIX,strcmp(protocol,"tcp")?SOCK_DGRAM:SOCK_STREAM,0);
    if (s<0) {
        perror("socket");
        return -1;
    }
    /* Connect the socket to the server */
    if (connect(s,(struct sockaddr*)&s_un,sizeof(s_un))<0) {
        /*perror("connect");*/
        return -1;
    }
    return s;
}