]> git.pond.sub.org Git - empserver/blob - src/lib/gen/tcp_listen.c
Update copyright notice
[empserver] / src / lib / gen / tcp_listen.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2008, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  tcp_listen.c: Create a socket and listen on it
29  * 
30  *  Known contributors to this file:
31  *     Markus Armbruster, 2005
32  */
33
34 #include <config.h>
35
36 #include <ctype.h>
37 #include <errno.h>
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <string.h>
41 #include <sys/types.h>
42 #include <sys/socket.h>
43 #include <netinet/in.h>
44 #include <arpa/inet.h>
45 #include <netdb.h>
46 #include <unistd.h>
47 #include "prototypes.h"
48
49 static void cant_listen(char *, char *, const char *);
50
51 int
52 tcp_listen(char *host, char *serv, size_t *addrlenp)
53 {
54     int fd;
55     int on = 1;
56 #ifdef HAVE_GETADDRINFO
57     /*
58      * Inspired by example code from W. Richard Stevens: UNIX Network
59      * Programming, Vol. 1
60      */
61     int n;
62     struct addrinfo hints, *res, *ressave;
63
64     memset(&hints, 0, sizeof(struct addrinfo));
65     hints.ai_flags = AI_PASSIVE;
66     hints.ai_family = AF_UNSPEC;
67     hints.ai_socktype = SOCK_STREAM;
68
69     if ((n = getaddrinfo(host, serv, &hints, &res)) != 0)
70         cant_listen(host, serv, gai_strerror(n));
71     ressave = res;
72
73     do {
74         fd = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
75         if (fd < 0)
76             continue;           /* error, try next one */
77
78         if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) < 0)
79             cant_listen(host, serv, strerror(errno));
80         if (bind(fd, res->ai_addr, res->ai_addrlen) == 0)
81             break;              /* success */
82
83         close(fd);              /* error, close and try next one */
84     } while ((res = res->ai_next) != NULL);
85
86     if (res == NULL)         /* errno from final socket() or bind() */
87         cant_listen(host, serv, strerror(errno));
88
89     if (listen(fd, SOMAXCONN) < 0)
90         cant_listen(host, serv, strerror(errno));
91
92     if (addrlenp)
93         *addrlenp = res->ai_addrlen;
94
95     freeaddrinfo(ressave);
96
97 #else  /* !HAVE_GETADDRINFO */
98     struct sockaddr_in sin;
99     struct hostent *hp;
100     struct servent *sp;
101
102     memset(&sin, 0, sizeof(sin));
103     sin.sin_family = AF_INET;
104     if (!host)
105         sin.sin_addr.s_addr = htonl(INADDR_ANY);
106     else if (isdigit(*host))
107         sin.sin_addr.s_addr = inet_addr(host);
108     else {
109         hp = gethostbyname(host);
110         if (!hp)
111             cant_listen(host, serv, strerror(errno));
112         memcpy(&sin.sin_addr, hp->h_addr, sizeof(sin.sin_addr));
113     }
114     if (isdigit(*serv))
115         sin.sin_port = htons(atoi(serv));
116     else {
117         sp = getservbyname(serv, "tcp");
118         if (!sp)
119             cant_listen(host, serv, strerror(errno));
120         sin.sin_port = sp->s_port;
121     }
122     if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0)
123         cant_listen(host, serv, strerror(errno));
124     if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) < 0)
125         cant_listen(host, serv, strerror(errno));
126     if (bind(fd, (struct sockaddr *)&sin, sizeof(sin)) < 0)
127         cant_listen(host, serv, strerror(errno));
128     if (listen(fd, SOMAXCONN) < 0)
129         cant_listen(host, serv, strerror(errno));
130
131     if (addrlenp)
132         *addrlenp = sizeof(struct sockaddr_in);
133
134 #endif /* !HAVE_GETADDRINFO */
135
136     return fd;
137 }
138
139 static void
140 cant_listen(char *host, char *serv, const char *err)
141 {
142     fprintf(stderr, "Can't listen on %s%s%s: %s\n",
143             host ? host : "", host ? ":" : "", serv, err);
144     exit(1);
145 }