1 /* This file is part of Pazpar2.
2 Copyright (C) 2006-2013 Index Data
4 Pazpar2 is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
9 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24 #include "sel_thread.h"
32 #include <sys/types.h>
34 #include <sys/socket.h>
46 #include <yaz/tcpip.h>
49 #include "connection.h"
52 /* Only use a threaded resolver on Unix that offers getaddrinfo.
53 gethostbyname is NOT reentrant.
56 #define USE_THREADED_RESOLVER 1
60 char *hostport; /* hostport to be resolved in separate thread */
61 char *ipport; /* result or NULL if it could not be resolved */
62 struct host *host; /* host that we're dealing with - mother thread */
63 iochan_man_t iochan_man; /* iochan manager */
66 static int log_level = YLOG_LOG;
68 static void perform_getaddrinfo(struct work *w)
70 struct addrinfo hints, *res;
76 hints.ai_family = AF_UNSPEC;
77 hints.ai_socktype = SOCK_STREAM;
78 hints.ai_protocol = 0;
81 hints.ai_canonname = NULL;
84 strncpy(host, w->hostport, sizeof(host)-1);
85 host[sizeof(host)-1] = 0;
86 if ((cp = strrchr(host, ':')))
91 error = getaddrinfo(host, port ? port : "210", &hints, &res);
94 yaz_log(YLOG_WARN, "Failed to resolve %s: %s",
95 w->hostport, gai_strerror(error));
100 if (getnameinfo((struct sockaddr *) res->ai_addr, res->ai_addrlen,
101 n_host, sizeof(n_host)-1,
103 NI_NUMERICHOST) == 0)
105 w->ipport = xmalloc(strlen(n_host) + (port ? strlen(port) : 0) + 2);
106 strcpy(w->ipport, n_host);
109 strcat(w->ipport, ":");
110 strcat(w->ipport, port);
112 yaz_log(log_level, "Resolved %s -> %s", w->hostport, w->ipport);
116 yaz_log(YLOG_LOG|YLOG_ERRNO, "getnameinfo failed for %s",
123 static void work_handler(void *vp)
127 int sec = 0; /* >0 for debugging/testing purposes */
130 yaz_log(log_level, "waiting %d seconds", sec);
135 perform_getaddrinfo(w);
138 #if USE_THREADED_RESOLVER
139 void iochan_handler(struct iochan *i, int event)
141 sel_thread_t p = iochan_getdata(i);
143 if (event & EVENT_INPUT)
145 struct work *w = sel_thread_result(p);
146 w->host->ipport = w->ipport;
147 connect_resolver_host(w->host, w->iochan_man);
152 static sel_thread_t resolver_thread = 0;
154 static void getaddrinfo_start(iochan_man_t iochan_man)
157 sel_thread_t p = resolver_thread =
158 sel_thread_create(work_handler, 0 /* work_destroy */, &fd,
159 3 /* no of resolver threads */);
162 yaz_log(YLOG_FATAL|YLOG_ERRNO, "sel_create_create failed");
167 IOCHAN chan = iochan_create(fd, iochan_handler, EVENT_INPUT,
168 "getaddrinfo_socket");
169 iochan_setdata(chan, p);
170 iochan_add(iochan_man, chan);
172 yaz_log(log_level, "resolver start");
177 int host_getaddrinfo(struct host *host, iochan_man_t iochan_man)
179 struct work *w = xmalloc(sizeof(*w));
180 int use_thread = 1; /* =0 to disable threading entirely */
182 w->hostport = host->tproxy ? host->tproxy : host->proxy;
185 w->iochan_man = iochan_man;
186 #if USE_THREADED_RESOLVER
189 if (resolver_thread == 0)
190 getaddrinfo_start(iochan_man);
191 assert(resolver_thread);
192 sel_thread_add(resolver_thread, w);
196 perform_getaddrinfo(w);
197 host->ipport = w->ipport;
207 * c-file-style: "Stroustrup"
208 * indent-tabs-mode: nil
210 * vim: shiftwidth=4 tabstop=8 expandtab