* Port locate_host() to IPv6
[citadel.git] / webcit / locate_host.c
1 /*
2  * $Id$
3  *
4  * Given a socket, supply the name of the host at the other end.
5  *
6  * Copyright (c) 1996-2010 by the citadel.org team
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 #include "webcit.h"
24
25
26 #ifdef CTDL_IPV6
27
28 void locate_host(StrBuf *tbuf, int client_socket)
29 {
30         struct sockaddr_in6 clientaddr;
31         unsigned int addrlen = sizeof(clientaddr);
32         char str[256];
33
34         getpeername(client_socket, (struct sockaddr *)&clientaddr, &addrlen);
35         if(inet_ntop(AF_INET6, &clientaddr.sin6_addr, str, sizeof(str))) {
36                 StrBufAppendBufPlain(tbuf, str, -1, 0);
37         }
38         else {
39                 StrBufAppendBufPlain(tbuf, HKEY("<unknown>"), 0);
40         }
41 }
42
43 #else /* CTDL_IPV6 */
44
45 void locate_host(StrBuf *tbuf, int client_socket)
46 {
47         struct sockaddr_in cs;
48         struct hostent *ch;
49         socklen_t len;
50         char *i;
51         int a1, a2, a3, a4;
52
53         len = sizeof(cs);
54         if (getpeername(client_socket, (struct sockaddr *) &cs, &len) < 0) {
55                 StrBufAppendBufPlain(tbuf, HKEY("<unknown>"), 0);
56                 return;
57         }
58         if ((ch = gethostbyaddr((char *) &cs.sin_addr, sizeof(cs.sin_addr),
59                                 AF_INET)) == NULL) {
60                 i = (char *) &cs.sin_addr;
61                 a1 = ((*i++) & 0xff);
62                 a2 = ((*i++) & 0xff);
63                 a3 = ((*i++) & 0xff);
64                 a4 = ((*i++) & 0xff);
65                 StrBufPrintf(tbuf, "%d.%d.%d.%d", a1, a2, a3, a4);
66                 return;
67         }
68         StrBufAppendBufPlain(tbuf, ch->h_name, -1, 0);
69 }
70
71 #endif /* CTDL_IPV6 */