1 2 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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
|
/* nbdkit
* Copyright Red Hat
*
* 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.
*
* * Neither the name of Red Hat nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY RED HAT 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 RED HAT 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 <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <stdint.h>
#include <inttypes.h>
#include <string.h>
#include <unistd.h>
#include <assert.h>
#include <pthread.h>
#include <curl/curl.h>
#include <nbdkit-plugin.h>
#include "cleanup.h"
#include "vector.h"
#include "curldefs.h"
/* Use '-D curl.worker=1' to debug the worker thread. */
NBDKIT_DLL_PUBLIC int curl_debug_worker = 0;
unsigned connections = 16;
/* Pipe used to notify background thread that a command is pending in
* the queue. A pointer to the 'struct command' is sent over the
* pipe.
*/
static int self_pipe[2] = { -1, -1 };
/* The curl multi handle. */
static CURLM *multi;
/* List of running easy handles. We only need to maintain this so we
* can remove them from the multi handle when cleaning up. Curl 8.3.1
* added a semi-experimental feature to allow us to read the handles
* out of the multi which we can use instead if available.
*/
#ifndef HAVE_CURL_MULTI_GET_HANDLES
DEFINE_VECTOR_TYPE (curl_handle_list, struct curl_handle *);
static curl_handle_list curl_handles = empty_vector;
#endif
static const char *
command_type_to_string (enum command_type type)
{
switch (type) {
case EASY_HANDLE: return "EASY_HANDLE";
case STOP: return "STOP";
default: abort ();
}
}
int
worker_get_ready (void)
{
multi = curl_multi_init ();
if (multi == NULL) {
nbdkit_error ("curl_multi_init failed: %m");
return -1;
}
#ifdef HAVE_CURLMOPT_MAX_TOTAL_CONNECTIONS
curl_multi_setopt(multi, CURLMOPT_MAX_TOTAL_CONNECTIONS, (long) connections);
#endif
return 0;
}
/* Start and stop the background worker thread. */
static pthread_t thread;
static bool thread_running;
static void *worker_thread (void *);
int
worker_after_fork (void)
{
int err;
if (pipe (self_pipe) == -1) {
nbdkit_error ("pipe: %m");
return -1;
}
/* Start the background worker thread where all the curl work is done. */
err = pthread_create (&thread, NULL, worker_thread, NULL);
if (err != 0) {
errno = err;
nbdkit_error ("pthread_create: %m");
return -1;
}
thread_running = true;
return 0;
}
/* Unload the background worker thread. */
void
worker_unload (void)
{
if (thread_running) {
/* Stop the background thread. */
struct command cmd = { .type = STOP };
send_command_to_worker_and_wait (&cmd);
pthread_join (thread, NULL);
thread_running = false;
}
if (self_pipe[0] >= 0) {
close (self_pipe[0]);
self_pipe[0] = -1;
}
if (self_pipe[1] >= 0) {
close (self_pipe[1]);
self_pipe[1] = -1;
}
/* Remove and free any easy handles in the multi. */
if (multi) {
size_t i;
#ifndef HAVE_CURL_MULTI_GET_HANDLES
for (i = 0; i < curl_handles.len; ++i) {
curl_multi_remove_handle (multi, curl_handles.ptr[i]->c);
free_handle (curl_handles.ptr[i]);
}
#else
CURL **list = curl_multi_get_handles (multi);
for (i = 0; list[i] != NULL; ++i) {
curl_multi_remove_handle (multi, list[i]);
free_handle (list[i]);
}
curl_free (list);
#endif
curl_multi_cleanup (multi);
multi = NULL;
}
}
/* Command queue. */
static _Atomic uint64_t id; /* next command ID */
/* Send command to the background worker thread and wait for
* completion. This is only called by one of the nbdkit threads.
*/
CURLcode
send_command_to_worker_and_wait (struct command *cmd)
{
cmd->id = id++;
/* CURLcode is 0 (CURLE_OK) or > 0, so use -1 as a sentinel to
* indicate that the command has not yet been completed and status
* set.
*/
cmd->status = -1;
/* This will be used to signal command completion back to us. */
pthread_mutex_init (&cmd->mutex, NULL);
pthread_cond_init (&cmd->cond, NULL);
/* Send the command to the background thread. */
if (write (self_pipe[1], &cmd, sizeof cmd) != sizeof cmd)
abort ();
/* Wait for the command to be completed by the background thread. */
{
ACQUIRE_LOCK_FOR_CURRENT_SCOPE (&cmd->mutex);
while (cmd->status == -1) /* for -1, see above */
pthread_cond_wait (&cmd->cond, &cmd->mutex);
}
pthread_mutex_destroy (&cmd->mutex);
pthread_cond_destroy (&cmd->cond);
/* Note the main thread must call nbdkit_error on error! */
return cmd->status;
}
/* The background worker thread. */
static struct command *process_multi_handle (void);
static void check_for_finished_handles (void);
static void retire_command (struct command *cmd, CURLcode code);
static void do_easy_handle (struct command *cmd);
static void *
worker_thread (void *vp)
{
bool stop = false;
if (curl_debug_worker)
nbdkit_debug ("curl: background worker thread started");
while (!stop) {
struct command *cmd = NULL;
cmd = process_multi_handle ();
if (cmd == NULL)
continue; /* or die?? */
if (curl_debug_worker)
nbdkit_debug ("curl: dispatching %s command %" PRIu64,
command_type_to_string (cmd->type), cmd->id);
switch (cmd->type) {
case STOP:
stop = true;
retire_command (cmd, CURLE_OK);
break;
case EASY_HANDLE:
do_easy_handle (cmd);
break;
}
} /* while (!stop) */
if (curl_debug_worker)
nbdkit_debug ("curl: background worker thread stopped");
return NULL;
}
/* Process the multi handle, and look out for new commands. Returns
* when there is a new command.
*/
static struct command *
process_multi_handle (void)
{
struct curl_waitfd extra_fds[1] =
{ { .fd = self_pipe[0], .events = CURL_WAIT_POLLIN } };
CURLMcode mc;
int numfds, running_handles;
struct command *cmd = NULL;
#ifndef HAVE_CURL_MULTI_POLL
int repeats = 0;
#endif
while (!cmd) {
/* Process the multi handle. */
mc = curl_multi_perform (multi, &running_handles);
if (mc != CURLM_OK) {
nbdkit_error ("curl_multi_perform: %s", curl_multi_strerror (mc));
return NULL;
}
check_for_finished_handles ();
#ifdef HAVE_CURL_MULTI_POLL
mc = curl_multi_poll (multi, extra_fds, 1, 1000000, &numfds);
if (mc != CURLM_OK) {
nbdkit_error ("curl_multi_poll: %s", curl_multi_strerror (mc));
return NULL;
}
#else
/* This is the older curl_multi_wait function. For unclear
* reasons this often gets "stuck" in the nbdkit_nanosleep case
* below, wasting large amounts of time. Luckily the newer curl
* no longer uses this function.
*/
mc = curl_multi_wait (multi, extra_fds, 1, 1000000, &numfds);
if (mc != CURLM_OK) {
nbdkit_error ("curl_multi_wait: %s", curl_multi_strerror (mc));
return NULL;
}
if (numfds == 0) {
repeats++;
if (repeats > 1)
nbdkit_nanosleep (1, 0);
continue;
}
else
repeats = 0;
#endif
if (curl_debug_worker)
nbdkit_debug (
#ifdef HAVE_CURL_MULTI_POLL
"curl_multi_poll"
#else
"curl_multi_wait"
#endif
": running_handles=%d numfds=%d",
running_handles, numfds);
if (extra_fds[0].revents == CURL_WAIT_POLLIN) {
/* There's a command waiting. */
if (read (self_pipe[0], &cmd, sizeof cmd) != sizeof cmd)
abort ();
}
}
return cmd;
}
/* This checks if any easy handles in the multi have
* finished and retires the associated commands.
*/
static void
check_for_finished_handles (void)
{
CURLMsg *msg;
int msgs_in_queue;
while ((msg = curl_multi_info_read (multi, &msgs_in_queue)) != NULL) {
if (msg->msg == CURLMSG_DONE) {
CURL *c = msg->easy_handle;
struct curl_handle *ch;
curl_easy_getinfo (c, CURLINFO_PRIVATE, &ch);
assert (c == ch->c);
#ifndef HAVE_CURL_MULTI_GET_HANDLES
size_t i;
/* Find this curl_handle and remove it from curl_handles. */
for (i = 0; i < curl_handles.len; ++i) {
if (curl_handles.ptr[i]->c == c) {
curl_handle_list_remove (&curl_handles, i);
break;
}
}
#endif
curl_multi_remove_handle (multi, c);
retire_command (ch->cmd, msg->data.result);
}
}
}
/* Retire a command. status is a CURLcode. */
static void
retire_command (struct command *cmd, CURLcode status)
{
if (curl_debug_worker)
nbdkit_debug ("curl: retiring %s command %" PRIu64,
command_type_to_string (cmd->type), cmd->id);
ACQUIRE_LOCK_FOR_CURRENT_SCOPE (&cmd->mutex);
cmd->status = status;
pthread_cond_signal (&cmd->cond);
}
static void
do_easy_handle (struct command *cmd)
{
CURLMcode mc;
cmd->ch->cmd = cmd;
/* Add the handle to the multi. */
mc = curl_multi_add_handle (multi, cmd->ch->c);
if (mc != CURLM_OK) {
nbdkit_error ("curl_multi_add_handle: %s", curl_multi_strerror (mc));
goto err;
}
#ifndef HAVE_CURL_MULTI_GET_HANDLES
if (curl_handle_list_append (&curl_handles, cmd->ch) == -1)
goto err;
#endif
return;
err:
retire_command (cmd, CURLE_OUT_OF_MEMORY);
}
|