1 /* $Id: getaddrinfo.c,v 1.6 2007-07-09 20:00:41 adam Exp $
2 Copyright (c) 2006-2007, Index Data.
4 This file is part of Pazpar2.
6 Pazpar2 is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
11 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with Pazpar2; see the file LICENSE. If not, write to the
18 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
26 #include "sel_thread.h"
32 #include <sys/types.h>
33 #include <sys/socket.h>
35 #include <netinet/in.h>
39 #include <yaz/tcpip.h>
42 #include "connection.h"
46 char *hostport; /* hostport to be resolved in separate thread */
47 char *ipport; /* result or NULL if it could not be resolved */
48 struct host *host; /* host that we're dealing with - mother thread */
51 static int log_level = YLOG_LOG;
53 void perform_getaddrinfo(struct work *w)
58 struct addrinfo *addrinfo, hints;
62 char *hostport = xstrdup(w->hostport);
64 if ((port = strchr(hostport, ':')))
71 hints.ai_family = PF_INET;
72 hints.ai_socktype = SOCK_STREAM;
73 hints.ai_protocol = IPPROTO_TCP;
76 hints.ai_canonname = 0;
78 // This is not robust code. It assumes that getaddrinfo always
79 // returns AF_INET address.
80 if ((res = getaddrinfo(hostport, port, &hints, &addrinfo)))
82 yaz_log(YLOG_WARN, "Failed to resolve %s: %s",
83 w->hostport, gai_strerror(res));
88 unsigned char addrbuf[4];
89 assert(addrinfo->ai_family == PF_INET);
91 &((struct sockaddr_in*)addrinfo->ai_addr)->sin_addr.s_addr, 4);
92 sprintf(ipport, "%u.%u.%u.%u:%s",
93 addrbuf[0], addrbuf[1], addrbuf[2], addrbuf[3], port);
94 freeaddrinfo(addrinfo);
95 w->ipport = xstrdup(ipport);
96 yaz_log(log_level, "Resolved %s -> %s", hostport, ipport);
99 hp = gethostbyname(hostport);
102 yaz_log(YLOG_WARN|YLOG_ERRNO, "Failed to resolve %s", hostport);
107 unsigned char addrbuf[4];
109 memcpy(addrbuf, *hp->h_addr_list, 4 * sizeof(unsigned char));
110 sprintf(ipport, "%u.%u.%u.%u:%s",
111 addrbuf[0], addrbuf[1], addrbuf[2], addrbuf[3], port);
112 w->ipport = xstrdup(ipport);
113 yaz_log(log_level, "Resolved %s -> %s", hostport, ipport);
119 static void work_handler(void *vp)
123 int sec = 0; /* >0 for debugging/testing purposes */
126 yaz_log(log_level, "waiting %d seconds", sec);
129 perform_getaddrinfo(w);
132 void iochan_handler(struct iochan *i, int event)
134 sel_thread_t p = iochan_getdata(i);
136 if (event & EVENT_INPUT)
138 struct work *w = sel_thread_result(p);
139 w->host->ipport = w->ipport;
140 connect_resolver_host(w->host);
145 static sel_thread_t resolver_thread = 0;
147 static void getaddrinfo_start(void)
150 sel_thread_t p = resolver_thread =
151 sel_thread_create(work_handler, 0 /* work_destroy */, &fd,
152 3 /* no of resolver threads */);
155 yaz_log(YLOG_FATAL|YLOG_ERRNO, "sel_create_create failed");
160 IOCHAN chan = iochan_create(fd, iochan_handler, EVENT_INPUT);
161 iochan_setdata(chan, p);
162 pazpar2_add_channel(chan);
164 yaz_log(log_level, "resolver start");
168 int host_getaddrinfo(struct host *host)
170 struct work *w = xmalloc(sizeof(*w));
171 int use_thread = 1; /* =0 to disable threading entirely */
173 w->hostport = host->hostport;
178 if (resolver_thread == 0)
180 assert(resolver_thread);
181 sel_thread_add(resolver_thread, w);
185 perform_getaddrinfo(w);
186 host->ipport = w->ipport;
197 * indent-tabs-mode: nil
199 * vim: shiftwidth=4 tabstop=8 expandtab