blob: 9e64378b154c9eff9bb05beb56d9f0b8ab057e4c [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) {
Benny Prijono129287a2007-03-01 16:52:45 +000041 return PJ_ERESOLVE;
42 /* DO NOT use pj_get_netos_error() since host resolution error
43 * is reported in h_errno instead of errno!
Benny Prijono64df0eb2007-01-26 17:09:14 +000044 return pj_get_netos_error();
Benny Prijono129287a2007-03-01 16:52:45 +000045 */
Benny Prijono64df0eb2007-01-26 17:09:14 +000046 }
Benny Prijono5dcb38d2005-11-21 01:55:47 +000047
48 phe->h_name = he->h_name;
49 phe->h_aliases = he->h_aliases;
50 phe->h_addrtype = he->h_addrtype;
51 phe->h_length = he->h_length;
52 phe->h_addr_list = he->h_addr_list;
53
54 return PJ_SUCCESS;
55}
56
Benny Prijono594e4c52006-09-14 18:51:01 +000057/* Resolve the IP address of local machine */
Benny Prijonod5971742007-03-10 23:15:36 +000058PJ_DEF(pj_status_t) pj_gethostip(pj_in_addr *addr)
Benny Prijono594e4c52006-09-14 18:51:01 +000059{
60 const pj_str_t *hostname = pj_gethostname();
61 struct pj_hostent he;
Benny Prijono594e4c52006-09-14 18:51:01 +000062 pj_status_t status;
63
Benny Prijono594e4c52006-09-14 18:51:01 +000064
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
Benny Prijono56f4bb72007-03-01 17:29:53 +000077 /* If we end up with 127.x.x.x, resolve the IP by getting the default
Benny Prijono594e4c52006-09-14 18:51:01 +000078 * interface to connect to some public host.
79 */
Benny Prijono56f4bb72007-03-01 17:29:53 +000080 if (status != PJ_SUCCESS || (pj_ntohl(addr->s_addr) >> 24)==127) {
Benny Prijono594e4c52006-09-14 18:51:01 +000081 pj_sock_t fd;
Benny Prijono56f4bb72007-03-01 17:29:53 +000082 pj_str_t cp;
Benny Prijono594e4c52006-09-14 18:51:01 +000083 pj_sockaddr_in a;
84 int len;
85
86 status = pj_sock_socket(PJ_AF_INET, PJ_SOCK_DGRAM, 0, &fd);
87 if (status != PJ_SUCCESS) {
88 return status;
89 }
90
91 cp = pj_str("1.1.1.1");
92 pj_sockaddr_in_init(&a, &cp, 53);
93
94 status = pj_sock_connect(fd, &a, sizeof(a));
95 if (status != PJ_SUCCESS) {
96 pj_sock_close(fd);
Benny Prijonob43bad72007-01-20 05:11:08 +000097 /* Return 127.0.0.1 as the address */
98 return PJ_SUCCESS;
Benny Prijono594e4c52006-09-14 18:51:01 +000099 }
100
101 len = sizeof(a);
102 status = pj_sock_getsockname(fd, &a, &len);
103 if (status != PJ_SUCCESS) {
104 pj_sock_close(fd);
Benny Prijonob43bad72007-01-20 05:11:08 +0000105 /* Return 127.0.0.1 as the address */
106 return PJ_SUCCESS;
Benny Prijono594e4c52006-09-14 18:51:01 +0000107 }
108
109 pj_sock_close(fd);
110
111 *addr = a.sin_addr;
112 }
113
114 return status;
115}
116
117