Global.cxx 6.82 KB
Newer Older
1
/*
2
 * Copyright (C) 2008-2016 Max Kellermann <max.kellermann@gmail.com>
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * - Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
 *
 * - Redistributions in binary form must reproduce the above copyright
 * notice, this list of conditions and the following disclaimer in the
 * documentation and/or other materials provided with the
 * distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
 * FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include "Global.hxx"
#include "Request.hxx"
#include "Log.hxx"
33
#include "event/Loop.hxx"
34 35 36
#include "event/SocketMonitor.hxx"
#include "util/RuntimeError.hxx"
#include "util/Domain.hxx"
37
#include "config.h"
38 39 40 41 42 43 44 45 46 47

static constexpr Domain curlm_domain("curlm");

/**
 * Monitor for one socket created by CURL.
 */
class CurlSocket final : SocketMonitor {
	CurlGlobal &global;

public:
48
	CurlSocket(CurlGlobal &_global, EventLoop &_loop, SocketDescriptor _fd)
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
		:SocketMonitor(_fd, _loop), global(_global) {}

	~CurlSocket() {
		/* TODO: sometimes, CURL uses CURL_POLL_REMOVE after
		   closing the socket, and sometimes, it uses
		   CURL_POLL_REMOVE just to move the (still open)
		   connection to the pool; in the first case,
		   Abandon() would be most appropriate, but it breaks
		   the second case - is that a CURL bug?  is there a
		   better solution? */
	}

	/**
	 * Callback function for CURLMOPT_SOCKETFUNCTION.
	 */
	static int SocketFunction(CURL *easy,
				  curl_socket_t s, int action,
66
				  void *userp, void *socketp) noexcept;
67

68
	bool OnSocketReady(unsigned flags) noexcept override;
69 70

private:
71
	static constexpr int FlagsToCurlCSelect(unsigned flags) noexcept {
72 73 74 75 76 77
		return (flags & (READ | HANGUP) ? CURL_CSELECT_IN : 0) |
			(flags & WRITE ? CURL_CSELECT_OUT : 0) |
			(flags & ERROR ? CURL_CSELECT_ERR : 0);
	}

	gcc_const
78
	static unsigned CurlPollToFlags(int action) noexcept {
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
		switch (action) {
		case CURL_POLL_NONE:
			return 0;

		case CURL_POLL_IN:
			return READ;

		case CURL_POLL_OUT:
			return WRITE;

		case CURL_POLL_INOUT:
			return READ|WRITE;
		}

		assert(false);
		gcc_unreachable();
	}
};

CurlGlobal::CurlGlobal(EventLoop &_loop)
99
	:defer_read_info(_loop, BIND_THIS_METHOD(ReadInfo)),
100
	 timeout_event(_loop, BIND_THIS_METHOD(OnTimeout))
101 102 103 104 105 106 107 108 109 110 111
{
	multi.SetOption(CURLMOPT_SOCKETFUNCTION, CurlSocket::SocketFunction);
	multi.SetOption(CURLMOPT_SOCKETDATA, this);

	multi.SetOption(CURLMOPT_TIMERFUNCTION, TimerFunction);
	multi.SetOption(CURLMOPT_TIMERDATA, this);
}

int
CurlSocket::SocketFunction(gcc_unused CURL *easy,
			   curl_socket_t s, int action,
112
			   void *userp, void *socketp) noexcept {
113 114 115
	auto &global = *(CurlGlobal *)userp;
	CurlSocket *cs = (CurlSocket *)socketp;

116
	assert(global.GetEventLoop().IsInside());
117 118 119 120 121 122 123

	if (action == CURL_POLL_REMOVE) {
		delete cs;
		return 0;
	}

	if (cs == nullptr) {
124 125
		cs = new CurlSocket(global, global.GetEventLoop(),
				    SocketDescriptor(s));
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
		global.Assign(s, *cs);
	} else {
#ifdef USE_EPOLL
		/* when using epoll, we need to unregister the socket
		   each time this callback is invoked, because older
		   CURL versions may omit the CURL_POLL_REMOVE call
		   when the socket has been closed and recreated with
		   the same file number (bug found in CURL 7.26, CURL
		   7.33 not affected); in that case, epoll refuses the
		   EPOLL_CTL_MOD because it does not know the new
		   socket yet */
		cs->Cancel();
#endif
	}

	unsigned flags = CurlPollToFlags(action);
	if (flags != 0)
		cs->Schedule(flags);
	return 0;
}

bool
148
CurlSocket::OnSocketReady(unsigned flags) noexcept
149
{
150
	assert(GetEventLoop().IsInside());
151

152
	global.SocketAction(GetSocket().Get(), FlagsToCurlCSelect(flags));
153 154 155 156 157 158 159 160 161 162 163
	return true;
}

/**
 * Runs in the I/O thread.  No lock needed.
 *
 * Throws std::runtime_error on error.
 */
void
CurlGlobal::Add(CURL *easy, CurlRequest &request)
{
164
	assert(GetEventLoop().IsInside());
165 166 167 168 169 170 171 172 173 174 175 176 177
	assert(easy != nullptr);

	curl_easy_setopt(easy, CURLOPT_PRIVATE, &request);

	CURLMcode mcode = curl_multi_add_handle(multi.Get(), easy);
	if (mcode != CURLM_OK)
		throw FormatRuntimeError("curl_multi_add_handle() failed: %s",
					 curl_multi_strerror(mcode));

	InvalidateSockets();
}

void
178
CurlGlobal::Remove(CURL *easy) noexcept
179
{
180
	assert(GetEventLoop().IsInside());
181 182 183
	assert(easy != nullptr);

	curl_multi_remove_handle(multi.Get(), easy);
184 185

	InvalidateSockets();
186 187 188
}

static CurlRequest *
189
ToRequest(CURL *easy) noexcept
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
{
	void *p;
	CURLcode code = curl_easy_getinfo(easy, CURLINFO_PRIVATE, &p);
	if (code != CURLE_OK)
		return nullptr;

	return (CurlRequest *)p;
}

/**
 * Check for finished HTTP responses.
 *
 * Runs in the I/O thread.  The caller must not hold locks.
 */
inline void
205
CurlGlobal::ReadInfo() noexcept
206
{
207
	assert(GetEventLoop().IsInside());
208 209 210 211 212 213 214 215 216 217 218 219 220 221

	CURLMsg *msg;
	int msgs_in_queue;

	while ((msg = curl_multi_info_read(multi.Get(),
					   &msgs_in_queue)) != nullptr) {
		if (msg->msg == CURLMSG_DONE) {
			auto *request = ToRequest(msg->easy_handle);
			if (request != nullptr)
				request->Done(msg->data.result);
		}
	}
}

222
inline void
223
CurlGlobal::UpdateTimeout(long timeout_ms) noexcept
224 225
{
	if (timeout_ms < 0) {
226
		timeout_event.Cancel();
227
		return;
228 229
	}

230
	if (timeout_ms < 10)
231 232 233 234 235 236
		/* CURL 7.21.1 likes to report "timeout=0", which
		   means we're running in a busy loop.  Quite a bad
		   idea to waste so much CPU.  Let's use a lower limit
		   of 10ms. */
		timeout_ms = 10;

237
	timeout_event.Schedule(std::chrono::milliseconds(timeout_ms));
238 239 240
}

int
241 242
CurlGlobal::TimerFunction(gcc_unused CURLM *_global, long timeout_ms,
			  void *userp) noexcept
243 244 245 246 247
{
	auto &global = *(CurlGlobal *)userp;
	assert(_global == global.multi.Get());

	global.UpdateTimeout(timeout_ms);
248 249 250 251
	return 0;
}

void
252
CurlGlobal::OnTimeout() noexcept
253 254 255 256 257
{
	SocketAction(CURL_SOCKET_TIMEOUT, 0);
}

void
258
CurlGlobal::SocketAction(curl_socket_t fd, int ev_bitmask) noexcept
259 260 261 262 263 264 265 266 267
{
	int running_handles;
	CURLMcode mcode = curl_multi_socket_action(multi.Get(), fd, ev_bitmask,
						   &running_handles);
	if (mcode != CURLM_OK)
		FormatError(curlm_domain,
			    "curl_multi_socket_action() failed: %s",
			    curl_multi_strerror(mcode));

268
	defer_read_info.Schedule();
269
}