blob: 1845a00649e9a2a701c00f93097431a585dd9f78 [file] [log] [blame]
Benny Prijono5dcb38d2005-11-21 01:55:47 +00001/* $Id$ */
2/*
Benny Prijonoa771a512007-02-19 01:13:53 +00003 * Copyright (C)2003-2007 Benny Prijono <benny@prijono.org>
Benny Prijono5dcb38d2005-11-21 01:55:47 +00004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19#include <pj/addr_resolv.h>
20#include <pj/assert.h>
21#include <pj/string.h>
Benny Prijono5dcb38d2005-11-21 01:55:47 +000022#include <pj/errno.h>
Benny Prijono594e4c52006-09-14 18:51:01 +000023#include <pj/compat/socket.h>
Benny Prijono5dcb38d2005-11-21 01:55:47 +000024
25
26PJ_DEF(pj_status_t) pj_gethostbyname(const pj_str_t *hostname, pj_hostent *phe)
27{
28 struct hostent *he;
29 char copy[PJ_MAX_HOSTNAME];
30
31 pj_assert(hostname && hostname ->slen < PJ_MAX_HOSTNAME);
32
33 if (hostname->slen >= PJ_MAX_HOSTNAME)
34 return PJ_ENAMETOOLONG;
35
36 pj_memcpy(copy, hostname->ptr, hostname->slen);
37 copy[ hostname->slen ] = '\0';
38
39 he = gethostbyname(copy);
Benny Prijono64df0eb2007-01-26 17:09:14 +000040 if (!he) {
41 return pj_get_netos_error();
42 }
Benny Prijono5dcb38d2005-11-21 01:55:47 +000043
44 phe->h_name = he->h_name;
45 phe->h_aliases = he->h_aliases;
46 phe->h_addrtype = he->h_addrtype;
47 phe->h_length = he->h_length;
48 phe->h_addr_list = he->h_addr_list;
49
50 return PJ_SUCCESS;
51}
52
Benny Prijono594e4c52006-09-14 18:51:01 +000053/* Resolve the IP address of local machine */
54pj_status_t pj_gethostip(pj_in_addr *addr)
55{
56 const pj_str_t *hostname = pj_gethostname();
57 struct pj_hostent he;
58 pj_str_t cp;
59 pj_in_addr loopip;
60 pj_status_t status;
61
62 cp = pj_str("127.0.0.1");
63 loopip = pj_inet_addr(&cp);
64
Benny Prijono5fb99e52007-01-23 04:17:56 +000065#ifdef _MSC_VER
66 /* Get rid of "uninitialized he variable" with MS compilers */
67 pj_bzero(&he, sizeof(he));
68#endif
69
Benny Prijono594e4c52006-09-14 18:51:01 +000070 /* Try with resolving local hostname first */
71 status = pj_gethostbyname(hostname, &he);
72 if (status == PJ_SUCCESS) {
73 *addr = *(pj_in_addr*)he.h_addr;
74 }
75
76
77 /* If we end up with 127.0.0.1, resolve the IP by getting the default
78 * interface to connect to some public host.
79 */
80 if (status != PJ_SUCCESS || addr->s_addr == loopip.s_addr) {
81 pj_sock_t fd;
82 pj_sockaddr_in a;
83 int len;
84
85 status = pj_sock_socket(PJ_AF_INET, PJ_SOCK_DGRAM, 0, &fd);
86 if (status != PJ_SUCCESS) {
87 return status;
88 }
89
90 cp = pj_str("1.1.1.1");
91 pj_sockaddr_in_init(&a, &cp, 53);
92
93 status = pj_sock_connect(fd, &a, sizeof(a));
94 if (status != PJ_SUCCESS) {
95 pj_sock_close(fd);
Benny Prijonob43bad72007-01-20 05:11:08 +000096 /* Return 127.0.0.1 as the address */
97 return PJ_SUCCESS;
Benny Prijono594e4c52006-09-14 18:51:01 +000098 }
99
100 len = sizeof(a);
101 status = pj_sock_getsockname(fd, &a, &len);
102 if (status != PJ_SUCCESS) {
103 pj_sock_close(fd);
Benny Prijonob43bad72007-01-20 05:11:08 +0000104 /* Return 127.0.0.1 as the address */
105 return PJ_SUCCESS;
Benny Prijono594e4c52006-09-14 18:51:01 +0000106 }
107
108 pj_sock_close(fd);
109
110 *addr = a.sin_addr;
111 }
112
113 return status;
114}
115
116