summaryrefslogtreecommitdiffstats
path: root/src/server/server.c
blob: 0f75935db4d0fafaf1cede4ab705b8a8c7249bad (plain) (blame)
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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
		/*
 * This file is part of the Distributed Network Block Device 3
 *
 * Copyright(c) 2011-2012 Johann Latocha <johann@latocha.de>
 *
 * This file may be licensed under the terms of the
 * GNU General Public License Version 2 (the ``GPL'').
 *
 * Software distributed under the License is distributed
 * on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
 * express or implied. See the GPL for the specific language
 * governing rights and limitations.
 *
 * You should have received a copy of the GPL along with this
 * program. If not, go to http://www.gnu.org/licenses/gpl.html
 * or write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 */

#include "server.h"
#include "helper.h"

#include "locks.h"
#include "image.h"
#include "uplink.h"
#include "net.h"
#include "altservers.h"
#include "integrity.h"
#include "threadpool.h"
#include "rpc.h"
#include "fuse.h"

#include <dnbd3/version.h>
#include <dnbd3/build.h>
#include <dnbd3/shared/sockhelper.h>
#include <dnbd3/shared/timing.h>

#include <signal.h>
#include <getopt.h>
#include <assert.h>
#include <sys/types.h>
#include <unistd.h>

#define LONGOPT_CRC4       1000
#define LONGOPT_ASSERT     1001
#define LONGOPT_CREATE     1002
#define LONGOPT_REVISION   1003
#define LONGOPT_SIZE       1004
#define LONGOPT_ERRORMSG   1005

typedef struct _job job_t;

struct _job {
	job_t *next;
	void *(*startRoutine)(void *);
	void *arg;
	ticks dueDate;
	int intervalSecs;
};

static job_t *jobHead;
static _Atomic(job_t *) newJob;
static bool hasTimerThread = false;
static pthread_t timerThread;

static pid_t mainPid;
static pthread_t mainThread;

#define DEFAULT_TIMER_TIMEOUT (60)

static poll_list_t *listeners = NULL;

/**
 * Time the server was started
 */
static ticks startupTime;
static bool sigReload = false, sigLogCycle = false;

/**
 * Copied to in signal handler so we can print info
 * later on
 */
static siginfo_t lastSignal;

void printSignal();

static poll_list_t* setupNetwork(char *bindAddress);

static dnbd3_client_t* dnbd3_prepareClient(struct sockaddr_storage *client, int fd);

static void dnbd3_handleSignal(int signum);

static void dnbd3_handleSignal2(int signum, siginfo_t *info, void *data);

static void* server_asyncImageListLoad(void *data);

static void* timerMainloop(void*);

static int handlePendingJobs(void);

static void queueJobInternal(job_t *job);

/**
 * Print help text for usage instructions
 */
void dnbd3_printHelp(char *argv_0)
{
	printf( "Version: %s\n\n", DNBD3_VERSION_LONG );
	printf( "Built: %s\n", DNBD3_BUILD_DATE );
	printf( "Usage: %s [OPTIONS]...\n", argv_0 );
	printf( "Start the DNBD3 server\n" );
	printf( "-c or --config      Configuration directory (default /etc/dnbd3-server/)\n" );
#ifdef DNBD3_SERVER_FUSE
	printf( "-m or --mount       FUSE mount point\n");
#endif
	printf( "-n or --nodaemon    Start server in foreground\n" );
	printf( "-b or --bind        Local Address to bind to\n" );
	printf( "-h or --help        Show this help text and quit\n" );
	printf( "-v or --version     Show version and quit\n" );
	printf( "\nManagement functions:\n" );
	printf( "--crc [image-file]  Generate crc block list for given image\n" );
	printf( "--create [image-name] --revision [rid] --size [filesize]\n"
			"\tCreate a local empty image file with a zeroed cache-map for the specified image\n" );
	printf( "--errormsg [text]   Just serve given error message via HTTP, no service otherwise\n" );
	printf( "\n" );
	exit( 0 );
}

/**
 * Print version information
 */
void dnbd3_printVersion()
{
	printf( "dnbd3-server version: %s\n", DNBD3_VERSION_LONG );
	printf( "Built: %s\n", DNBD3_BUILD_DATE );
	exit( 0 );
}

/**
 * Clean up structs, connections, write out data, then exit
 */
_Noreturn static void dnbd3_cleanup()
{
	int retries;

	_shutdown = true;
	logadd( LOG_INFO, "Cleanup..." );

	dfuse_shutdown();

	if ( hasTimerThread ) {
		pthread_kill( timerThread, SIGINT );
		thread_join( timerThread, NULL );
	}

	if ( listeners != NULL ) {
		sock_destroyPollList( listeners );
	}
	listeners = NULL;

	// Kill connection to all clients
	net_disconnectAll();

	// Disable threadpool
	threadpool_close();

	// Terminate all uplinks
	image_killUplinks();

	// Terminate integrity checker
	integrity_shutdown();

	// Wait for clients to disconnect
	net_waitForAllDisconnected();

	threadpool_waitEmpty();

	// Clean up images
	retries = 5;
	while ( !image_tryFreeAll() && --retries > 0 ) {
		logadd( LOG_INFO, "Waiting for images to free...\n" );
		sleep( 1 );
	}

	free( _basePath );
	free( _configDir );
	exit( EXIT_SUCCESS );
}

/**
 * Program entry point
 */
int main(int argc, char *argv[])
{
	int demonize = 1;
	int opt = 0;
	int longIndex = 0;
	char *paramCreate = NULL;
	char *bindAddress = NULL;
	char *errorMsg = NULL;
	char *mountDir = NULL;
	int64_t paramSize = -1;
	int paramRevision = -1;
	static const char *optString = "b:c:m:d:hnv?";
	static const struct option longOpts[] = {
			{ "config", required_argument, NULL, 'c' },
			{ "mount", required_argument, NULL, 'm' },
			{ "nodaemon", no_argument, NULL, 'n' },
			{ "reload", no_argument, NULL, 'r' },
			{ "help", no_argument, NULL, 'h' },
			{ "version", no_argument, NULL, 'v' },
			{ "bind", required_argument, NULL, 'b' },
			{ "crc", required_argument, NULL, LONGOPT_CRC4 },
			{ "assert", no_argument, NULL, LONGOPT_ASSERT },
			{ "create", required_argument, NULL, LONGOPT_CREATE },
			{ "revision", required_argument, NULL, LONGOPT_REVISION },
			{ "size", required_argument, NULL, LONGOPT_SIZE },
			{ "errormsg", required_argument, NULL, LONGOPT_ERRORMSG },
			{ 0, 0, 0, 0 }
	};

	log_init();

	/* set proper output stream for AFL */
#ifdef DNBD3_SERVER_AFL
	if ( log_setConsoleOutputStream(stderr) < 0 ) {
		logadd( LOG_ERROR, "Failed to set output stream for AFL to stderr" );
		exit( EXIT_FAILURE );
	}
#endif

	mainPid = getpid();
	mainThread = pthread_self();
	opt = getopt_long( argc, argv, optString, longOpts, &longIndex );

	while ( opt != -1 ) {
		switch ( opt ) {
		case 'c':
			_configDir = strdup( optarg );
			break;
		case 'm':
#ifndef DNBD3_SERVER_FUSE
			fprintf( stderr, "FUSE support not enabled at build time.\n" );
			return 8;
#endif
			mountDir = strdup( optarg );
			break;
		case 'n':
			demonize = 0;
			break;
		case 'h':
		case '?':
			dnbd3_printHelp( argv[0] );
			break;
		case 'v':
			dnbd3_printVersion();
			break;
		case 'b':
			bindAddress = strdup( optarg );
			break;
		case LONGOPT_CRC4:
			return image_generateCrcFile( optarg ) ? 0 : EXIT_FAILURE;
		case LONGOPT_ASSERT:
			printf( "Now leaking memory:\n" );
			char *bla = malloc( 10 );
			bla[2] = 3;
			bla = NULL;
			printf( "Testing use after free:\n" );
			char *test = malloc( 10 );
			test[0] = 1;
			free( (void*)test );
			test[1] = 2;
			printf( "Testing a failing assertion:\n" );
			assert( 4 == 5 );
			printf( "Assertion 4 == 5 seems to hold. ;-)\n" );
			return EXIT_SUCCESS;
		case LONGOPT_CREATE:
			paramCreate = strdup( optarg );
			break;
		case LONGOPT_REVISION:
			paramRevision = atoi( optarg );
			break;
		case LONGOPT_SIZE:
			paramSize = strtoll( optarg, NULL, 10 );
			break;
		case LONGOPT_ERRORMSG:
			errorMsg = strdup( optarg );
			break;
		}
		opt = getopt_long( argc, argv, optString, longOpts, &longIndex );
	}


	// Load general config

	if ( _configDir == NULL ) _configDir = strdup( "/etc/dnbd3-server" );
	globals_loadConfig();
	if ( _basePath == NULL && errorMsg == NULL ) {
		logadd( LOG_ERROR, "Aborting, set proper basePath in %s/%s", _configDir, CONFIG_FILENAME );
		exit( EXIT_FAILURE );
	}

	timing_setBase();
	timing_get( &startupTime );

#ifdef DNBD3_SERVER_AFL
	image_serverStartup();
	net_init();
	uplink_globalsInit();
	rpc_init();
	if ( !image_loadAll( NULL ) || _shutdown ) {
		fprintf( stderr, "Error loading images\n" );
		exit( 3 );
	}
	{
		struct sockaddr_storage client;
		memset( &client, 0, sizeof client );
		client.ss_family = AF_INET;
		dnbd3_client_t *dnbd3_client = dnbd3_prepareClient( &client, 1 );
		if ( dnbd3_client == NULL ) {
			fprintf( stderr, "New client failed\n" );
			exit( 1 );
		}
#ifdef __AFL_HAVE_MANUAL_CONTROL
		__AFL_INIT();
#endif
		net_handleNewConnection( dnbd3_client );
		exit( 0 );
	}
#endif  /* DNBD3_SERVER_AFL */


	// One-shots first:

	if ( paramCreate != NULL ) {
		return image_create( paramCreate, paramRevision, paramSize ) ? 0 : EXIT_FAILURE;
	}

	// No one-shot detected, normal server operation or errormsg serving
	if ( demonize ) {
		logadd( LOG_INFO, "Forking into background, see log file for further information" );
		if ( daemon( 0, 0 ) == -1 ) {
			logadd( LOG_ERROR, "Could not daemon(): errno=%d", errno );
			exit( 1 );
		}
	}
	if ( errorMsg != NULL ) {
		setupNetwork( bindAddress );
		logadd( LOG_INFO, "Running errormsg server" );
		while ( true ) {
			const int fd = sock_accept( listeners, NULL, NULL );
			if ( fd >= 0 ) {
				rpc_sendErrorMessage( fd, errorMsg );
			} else {
				const int err = errno;
				if ( err == EINTR || err == EAGAIN ) continue;
				logadd( LOG_ERROR, "Client accept failure (err=%d)", err );
				usleep( 10000 ); // 10ms
			}
		}
		exit( 0 );
	}
	image_serverStartup();
	altservers_init();
	integrity_init();
	net_init();
	uplink_globalsInit();
	rpc_init();
	if ( mountDir != NULL && !dfuse_init( "-oallow_other", mountDir ) ) {
		logadd( LOG_ERROR, "Cannot mount fuse directory to %s", mountDir );
		dnbd3_cleanup();
		return EXIT_FAILURE;
	}
	logadd( LOG_INFO, "DNBD3 server starting...." );
	logadd( LOG_INFO, "Machine type: " DNBD3_ENDIAN_MODE );
	logadd( LOG_INFO, "Build Type: %s", DNBD3_BUILD );
	logadd( LOG_INFO, "Version: %s, built %s", DNBD3_VERSION_LONG, DNBD3_BUILD_DATE );

	if ( altservers_load() < 0 ) {
		logadd( LOG_WARNING, "Could not load alt-servers. Does the file exist in %s?", _configDir );
	}

	// setup signal handler
	struct sigaction sa = {
		.sa_sigaction = dnbd3_handleSignal2,
		.sa_flags = SA_SIGINFO,
	};
	sigaction( SIGTERM, &sa, NULL );
	sigaction( SIGINT, &sa, NULL );
	sigaction( SIGUSR1, &sa, NULL );
	sigaction( SIGHUP, &sa, NULL );
	sigaction( SIGUSR2, &sa, NULL );
	signal( SIGPIPE, SIG_IGN );

	logadd( LOG_INFO, "Loading images...." );
	// Load all images in base path
	if ( !image_loadAll( NULL ) || _shutdown ) {
		if ( _shutdown ) {
			logadd( LOG_ERROR, "Received shutdown request while loading images." );
		} else {
			logadd( LOG_ERROR, "Could not load images." );
		}
		free( bindAddress );
		dnbd3_cleanup();
		return _shutdown ? 0 : 1;
	}

	// Give other threads some time to start up before accepting connections
	usleep( 100000 );

	// setup network
	listeners = setupNetwork( bindAddress );

	// Initialize thread pool
	if ( !threadpool_init( 8 ) ) {
		logadd( LOG_ERROR, "Could not init thread pool!\n" );
		dnbd3_cleanup();
		exit( EXIT_FAILURE );
	}

	logadd( LOG_INFO, "Server is ready." );

	if ( thread_create( &timerThread, NULL, &timerMainloop, NULL ) == 0 ) {
		hasTimerThread = true;
	}

	// +++++++++++++++++++++++++++++++++++++++++++++++++++ main loop
	struct sockaddr_storage client;
	socklen_t len;
	int fd;
	while ( !_shutdown ) {
		// Handle signals
		printSignal();
		if ( sigReload ) {
			sigReload = false;
			logadd( LOG_INFO, "SIGHUP received, re-scanning image directory" );
			threadpool_run( &server_asyncImageListLoad, NULL, "IMAGE_RELOAD" );
		}
		if ( sigLogCycle ) {
			sigLogCycle = false;
			logadd( LOG_INFO, "SIGUSR2 received, reopening log file..." );
			if ( log_openLogFile( NULL ) )
				logadd( LOG_INFO, "Log file has been reopened." );
			else
				logadd( LOG_WARNING, "Could not cycle log file." );
		}
		//
		len = sizeof(client);
		fd = sock_accept( listeners, &client, &len );
		if ( fd == -1 ) {
			const int err = errno;
			if ( err == EINTR || err == EAGAIN ) continue;
			logadd( LOG_ERROR, "Client accept failure (err=%d)", err );
			usleep( 10000 ); // 10ms
			continue;
		}

		dnbd3_client_t *dnbd3_client = dnbd3_prepareClient( &client, fd );
		if ( dnbd3_client == NULL ) {
			close( fd );
			continue;
		}

		if ( !threadpool_run( &net_handleNewConnection, (void *)dnbd3_client, "CLIENT" ) ) {
			logadd( LOG_ERROR, "Could not start thread for new connection." );
			free( dnbd3_client );
			continue;
		}
	}
	printSignal();
	free( bindAddress );
	dnbd3_cleanup();
	return 0;
}

void printSignal()
{
	if ( lastSignal.si_signo != 0 ) {
		logadd( LOG_INFO, "Signal %d (via %d) by pid %u, uid %u",
				lastSignal.si_signo, lastSignal.si_code,
				(unsigned int)lastSignal.si_pid, (unsigned int)lastSignal.si_uid );
		if ( lastSignal.si_pid != 0 ) {
			char buffer[500], path[100];
			snprintf( path, sizeof(path), "/proc/%u/exe", (unsigned int)lastSignal.si_pid );
			ssize_t len = readlink( path, buffer, sizeof(buffer) );
			if ( len > 0 ) {
				logadd( LOG_INFO, "%u is %.*s", (unsigned int)lastSignal.si_pid, (int)len, buffer );
			}
		}
		lastSignal.si_signo = 0;
	}
}

static poll_list_t* setupNetwork(char *bindAddress)
{
	listeners = sock_newPollList();
	if ( listeners == NULL ) {
		logadd( LOG_ERROR, "Didnt get a poll list!" );
		exit( EXIT_FAILURE );
	}
	if ( !sock_listen( listeners, bindAddress, (uint16_t)_listenPort ) ) {
		logadd( LOG_ERROR, "Could not listen on any local interface." );
		exit( EXIT_FAILURE );
	}
	return listeners;
}

/**
 * Initialize and partially populate the client struct - called when an incoming
 * connection is accepted. As this might be an HTTP request we don't initialize the
 * locks, that would happen later once we know.
 */
static dnbd3_client_t* dnbd3_prepareClient(struct sockaddr_storage *client, int fd)
{
	dnbd3_client_t *dnbd3_client = calloc( 1, sizeof(dnbd3_client_t) );
	if ( dnbd3_client == NULL ) { // This will never happen thanks to memory overcommit
		logadd( LOG_ERROR, "Could not alloc dnbd3_client_t for new client." );
		return NULL;
	}

	if ( client->ss_family == AF_INET ) {
		struct sockaddr_in *v4 = (struct sockaddr_in *)client;
		dnbd3_client->host.type = HOST_IP4;
		memcpy( dnbd3_client->host.addr, &(v4->sin_addr), 4 );
		dnbd3_client->host.port = v4->sin_port;
	} else if ( client->ss_family == AF_INET6 ) {
		struct sockaddr_in6 *v6 = (struct sockaddr_in6 *)client;
		dnbd3_client->host.type = HOST_IP6;
		memcpy( dnbd3_client->host.addr, &(v6->sin6_addr), 16 );
		dnbd3_client->host.port = v6->sin6_port;
	} else {
		logadd( LOG_ERROR, "New client has unknown address family %d, disconnecting...", (int)client->ss_family );
		free( dnbd3_client );
		return NULL;
	}
	dnbd3_client->sock = fd;
	return dnbd3_client;
}

static void dnbd3_handleSignal(int signum)
{
	if ( _shutdown ) return;
	if ( signum == SIGINT || signum == SIGTERM ) {
		_shutdown = true;
	} else if ( signum == SIGUSR1 || signum == SIGHUP ) {
		sigReload = true;
	} else if ( signum == SIGUSR2 ) {
		sigLogCycle = true;
	}
}

static void dnbd3_handleSignal2(int signum, siginfo_t *info, void *data UNUSED)
{
	if ( info->si_pid != mainPid ) { // Source is not this process
		memcpy( &lastSignal, info, sizeof(siginfo_t) ); // Copy signal info
		if ( info->si_pid != 0 && !pthread_equal( pthread_self(), mainThread ) ) {
			pthread_kill( mainThread, info->si_signo ); // And relay signal if we're not the main thread
		}
		// Source is not this process -- only then do we honor signals
		if ( pthread_equal( pthread_self(), mainThread ) ) {
			// Signal received by main thread -- handle
			dnbd3_handleSignal( signum );
		}
	}
}

uint32_t dnbd3_serverUptime()
{
	ticks now;
	timing_get( &now );
	return timing_diff( &startupTime, &now );
}

static void* server_asyncImageListLoad(void *data UNUSED)
{
	setThreadName( "img-list-loader" );
	globals_loadConfig();
	image_loadAll( NULL );
	return NULL;
}

static void* timerMainloop(void* stuff UNUSED)
{
	setThreadName( "timer" );
	while ( !_shutdown ) {
		// Handle jobs/timer events; returns timeout until next event
		int to = handlePendingJobs();
		sleep( MIN( MAX( 1, to ), DEFAULT_TIMER_TIMEOUT ) );
	}
	logadd( LOG_DEBUG1, "Timer thread done" );
	return NULL;
}

static int handlePendingJobs(void)
{
	declare_now;
	job_t *todo, **temp, *old;
	int diff;
	todo = jobHead;
	for ( temp = &todo; *temp != NULL; temp = &(*temp)->next ) {
		diff = (int)timing_diff( &now, &(*temp)->dueDate );
		if ( diff > 0 ) // Found one that's in the future
			break;
	}
	jobHead = *temp; // Make it list head
	*temp = NULL; // Split off part before that
	while ( todo != NULL ) {
		threadpool_run( todo->startRoutine, todo->arg, "TIMER_TASK" );
		old = todo;
		todo = todo->next;
		if ( old->intervalSecs == 0 ) {
			free( old ); // oneshot
		} else {
			timing_set( &old->dueDate, &now, old->intervalSecs );
			queueJobInternal( old ); // repeated
		}
	}
	// See if any new jobs have been queued
	while ( newJob != NULL ) {
		todo = newJob;
		// NULL should never happen since we're the only consumer
		assert( todo != NULL );
		if ( !atomic_compare_exchange_weak( &newJob, &todo, NULL ) )
			continue;
		do {
			old = todo;
			todo = todo->next;
			queueJobInternal( old );
		} while ( todo != NULL );
	}
	// Return new timeout
	if ( jobHead == NULL )
		return DEFAULT_TIMER_TIMEOUT;
	return (int)timing_diff( &now, &jobHead->dueDate );
}

static void queueJobInternal(job_t *job)
{
	assert( job != NULL );
	job_t **it;
	for ( it = &jobHead; *it != NULL; it = &(*it)->next ) {
		if ( timing_1le2( &job->dueDate, &(*it)->dueDate ) )
			break;
	}
	job->next = *it;
	*it = job;
}

void server_addJob(void *(*startRoutine)(void *), void *arg, int delaySecs, int intervalSecs)
{
	declare_now;
	job_t *new = malloc( sizeof(*new) );
	new->startRoutine = startRoutine;
	new->arg = arg;
	new->intervalSecs = intervalSecs;
	timing_set( &new->dueDate, &now, delaySecs );
	for ( ;; ) {
		new->next = newJob;
		if ( atomic_compare_exchange_weak( &newJob, &new->next, new ) )
			break;
	}
}