merged from lp:~mvo/apt/mvo
[ntk/apt.git] / methods / connect.cc
1 // -*- mode: cpp; mode: fold -*-
2 // Description /*{{{*/
3 // $Id: connect.cc,v 1.10.2.1 2004/01/16 18:58:50 mdz Exp $
4 /* ######################################################################
5
6 Connect - Replacement connect call
7
8 This was originally authored by Jason Gunthorpe <jgg@debian.org>
9 and is placed in the Public Domain, do with it what you will.
10
11 ##################################################################### */
12 /*}}}*/
13 // Include Files /*{{{*/
14 #include "connect.h"
15 #include <apt-pkg/error.h>
16 #include <apt-pkg/fileutl.h>
17
18 #include <stdio.h>
19 #include <errno.h>
20 #include <unistd.h>
21 #include <sstream>
22
23 #include<set>
24 #include<string>
25
26 // Internet stuff
27 #include <netinet/in.h>
28 #include <sys/socket.h>
29 #include <arpa/inet.h>
30 #include <netdb.h>
31
32 #include "rfc2553emu.h"
33 #include <apti18n.h>
34 /*}}}*/
35
36 static string LastHost;
37 static int LastPort = 0;
38 static struct addrinfo *LastHostAddr = 0;
39 static struct addrinfo *LastUsed = 0;
40
41 // Set of IP/hostnames that we timed out before or couldn't resolve
42 static std::set<string> bad_addr;
43
44 // RotateDNS - Select a new server from a DNS rotation /*{{{*/
45 // ---------------------------------------------------------------------
46 /* This is called during certain errors in order to recover by selecting a
47 new server */
48 void RotateDNS()
49 {
50 if (LastUsed != 0 && LastUsed->ai_next != 0)
51 LastUsed = LastUsed->ai_next;
52 else
53 LastUsed = LastHostAddr;
54 }
55 /*}}}*/
56 // DoConnect - Attempt a connect operation /*{{{*/
57 // ---------------------------------------------------------------------
58 /* This helper function attempts a connection to a single address. */
59 static bool DoConnect(struct addrinfo *Addr,string Host,
60 unsigned long TimeOut,int &Fd,pkgAcqMethod *Owner)
61 {
62 // Show a status indicator
63 char Name[NI_MAXHOST];
64 char Service[NI_MAXSERV];
65
66 Name[0] = 0;
67 Service[0] = 0;
68 getnameinfo(Addr->ai_addr,Addr->ai_addrlen,
69 Name,sizeof(Name),Service,sizeof(Service),
70 NI_NUMERICHOST|NI_NUMERICSERV);
71 Owner->Status(_("Connecting to %s (%s)"),Host.c_str(),Name);
72
73 // if that addr did timeout before, we do not try it again
74 if(bad_addr.find(string(Name)) != bad_addr.end())
75 return false;
76
77 /* If this is an IP rotation store the IP we are using.. If something goes
78 wrong this will get tacked onto the end of the error message */
79 if (LastHostAddr->ai_next != 0)
80 {
81 std::stringstream ss;
82 ioprintf(ss, _("[IP: %s %s]"),Name,Service);
83 Owner->SetIP(ss.str());
84 }
85
86 // Get a socket
87 if ((Fd = socket(Addr->ai_family,Addr->ai_socktype,
88 Addr->ai_protocol)) < 0)
89 return _error->Errno("socket",_("Could not create a socket for %s (f=%u t=%u p=%u)"),
90 Name,Addr->ai_family,Addr->ai_socktype,Addr->ai_protocol);
91
92 SetNonBlock(Fd,true);
93 if (connect(Fd,Addr->ai_addr,Addr->ai_addrlen) < 0 &&
94 errno != EINPROGRESS)
95 return _error->Errno("connect",_("Cannot initiate the connection "
96 "to %s:%s (%s)."),Host.c_str(),Service,Name);
97
98 /* This implements a timeout for connect by opening the connection
99 nonblocking */
100 if (WaitFd(Fd,true,TimeOut) == false) {
101 bad_addr.insert(bad_addr.begin(), string(Name));
102 Owner->SetFailReason("Timeout");
103 return _error->Error(_("Could not connect to %s:%s (%s), "
104 "connection timed out"),Host.c_str(),Service,Name);
105 }
106
107 // Check the socket for an error condition
108 unsigned int Err;
109 unsigned int Len = sizeof(Err);
110 if (getsockopt(Fd,SOL_SOCKET,SO_ERROR,&Err,&Len) != 0)
111 return _error->Errno("getsockopt",_("Failed"));
112
113 if (Err != 0)
114 {
115 errno = Err;
116 if(errno == ECONNREFUSED)
117 Owner->SetFailReason("ConnectionRefused");
118 else if (errno == ETIMEDOUT)
119 Owner->SetFailReason("ConnectionTimedOut");
120 bad_addr.insert(bad_addr.begin(), string(Name));
121 return _error->Errno("connect",_("Could not connect to %s:%s (%s)."),Host.c_str(),
122 Service,Name);
123 }
124
125 return true;
126 }
127 /*}}}*/
128 // Connect - Connect to a server /*{{{*/
129 // ---------------------------------------------------------------------
130 /* Performs a connection to the server */
131 bool Connect(string Host,int Port,const char *Service,int DefPort,int &Fd,
132 unsigned long TimeOut,pkgAcqMethod *Owner)
133 {
134 if (_error->PendingError() == true)
135 return false;
136
137 // Convert the port name/number
138 char ServStr[300];
139 if (Port != 0)
140 snprintf(ServStr,sizeof(ServStr),"%u",Port);
141 else
142 snprintf(ServStr,sizeof(ServStr),"%s",Service);
143
144 /* We used a cached address record.. Yes this is against the spec but
145 the way we have setup our rotating dns suggests that this is more
146 sensible */
147 if (LastHost != Host || LastPort != Port)
148 {
149 Owner->Status(_("Connecting to %s"),Host.c_str());
150
151 // Free the old address structure
152 if (LastHostAddr != 0)
153 {
154 freeaddrinfo(LastHostAddr);
155 LastHostAddr = 0;
156 LastUsed = 0;
157 }
158
159 // We only understand SOCK_STREAM sockets.
160 struct addrinfo Hints;
161 memset(&Hints,0,sizeof(Hints));
162 Hints.ai_socktype = SOCK_STREAM;
163 Hints.ai_flags = AI_ADDRCONFIG;
164 Hints.ai_protocol = 0;
165
166 // if we couldn't resolve the host before, we don't try now
167 if(bad_addr.find(Host) != bad_addr.end())
168 return _error->Error(_("Could not resolve '%s'"),Host.c_str());
169
170 // Resolve both the host and service simultaneously
171 while (1)
172 {
173 int Res;
174 if ((Res = getaddrinfo(Host.c_str(),ServStr,&Hints,&LastHostAddr)) != 0 ||
175 LastHostAddr == 0)
176 {
177 if (Res == EAI_NONAME || Res == EAI_SERVICE)
178 {
179 if (DefPort != 0)
180 {
181 snprintf(ServStr,sizeof(ServStr),"%u",DefPort);
182 DefPort = 0;
183 continue;
184 }
185 bad_addr.insert(bad_addr.begin(), Host);
186 Owner->SetFailReason("ResolveFailure");
187 return _error->Error(_("Could not resolve '%s'"),Host.c_str());
188 }
189
190 if (Res == EAI_AGAIN)
191 {
192 Owner->SetFailReason("TmpResolveFailure");
193 return _error->Error(_("Temporary failure resolving '%s'"),
194 Host.c_str());
195 }
196 return _error->Error(_("Something wicked happened resolving '%s:%s' (%i - %s)"),
197 Host.c_str(),ServStr,Res,gai_strerror(Res));
198 }
199 break;
200 }
201
202 LastHost = Host;
203 LastPort = Port;
204 }
205
206 // When we have an IP rotation stay with the last IP.
207 struct addrinfo *CurHost = LastHostAddr;
208 if (LastUsed != 0)
209 CurHost = LastUsed;
210
211 while (CurHost != 0)
212 {
213 if (DoConnect(CurHost,Host,TimeOut,Fd,Owner) == true)
214 {
215 LastUsed = CurHost;
216 return true;
217 }
218 close(Fd);
219 Fd = -1;
220
221 // Ignore UNIX domain sockets
222 do
223 {
224 CurHost = CurHost->ai_next;
225 }
226 while (CurHost != 0 && CurHost->ai_family == AF_UNIX);
227
228 /* If we reached the end of the search list then wrap around to the
229 start */
230 if (CurHost == 0 && LastUsed != 0)
231 CurHost = LastHostAddr;
232
233 // Reached the end of the search cycle
234 if (CurHost == LastUsed)
235 break;
236
237 if (CurHost != 0)
238 _error->Discard();
239 }
240
241 if (_error->PendingError() == true)
242 return false;
243 return _error->Error(_("Unable to connect to %s:%s:"),Host.c_str(),ServStr);
244 }
245 /*}}}*/