summaryrefslogtreecommitdiffstats
path: root/src/shared/fdsignal.inc/pipe64.c
blob: 4f0614b9ead5c04cf8e5bfc41c1c64d3f98a5045 (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
#include <poll.h>
#include <inttypes.h>
#include <errno.h>
#include <unistd.h>
#include <fcntl.h>

#define P_READ (0)
#define P_WRITE (1)

/*
 * Generic (posix) implelentation of signals, using pipes.
 * 64bit version, packing two ints into a pointer.
 * This version requires that you use -fno-strict-aliasing
 * since it's doing evil pointer casting.
 */

dnbd3_signal_t* signal_new()
{
	int fds[2];
	if ( pipe( fds ) == -1 ) return NULL;
	fcntl( fds[P_READ], F_SETFL, O_NONBLOCK );
	fcntl( fds[P_WRITE], F_SETFL, O_NONBLOCK );
	return (dnbd3_signal_t*)*((uintptr_t*)fds);
}

dnbd3_signal_t* signal_newBlocking()
{
	int fds[2];
	if ( pipe( fds ) == -1 ) return NULL;
	return (dnbd3_signal_t*)*((uintptr_t*)fds);
}

int signal_call(const dnbd3_signal_t* const signal)
{
	if ( signal == NULL ) return SIGNAL_ERROR;
	static char one = 1;
	const int* fds = (int*)&signal;
	// Write one byte on every call, so the number of bytes read will
	// match the number of events
	return write( fds[P_WRITE], &one, 1 ) > 0 ? SIGNAL_OK : SIGNAL_ERROR;
}

int signal_wait(const dnbd3_signal_t* const signal, int timeoutMs)
{
	if ( signal == NULL ) return SIGNAL_ERROR;
	const int* fds = (int*)&signal;
	struct pollfd ps = {
		.fd = fds[P_READ],
		.events = POLLIN
	};
	int ret = poll( &ps, 1, timeoutMs );
	if ( ret == 0 ) return SIGNAL_TIMEOUT;
	if ( ret == -1 ) return SIGNAL_ERROR;
	if ( ps.revents & ( POLLERR | POLLNVAL ) ) return SIGNAL_ERROR;
	return signal_clear( signal );
}

int signal_clear(const dnbd3_signal_t* const signal)
{
	if ( signal == NULL ) return SIGNAL_ERROR;
	char throwaway[100];
	const int* fds = (int*)&signal;
	ssize_t ret, total = 0;
	do {
		ret = read( fds[P_READ], throwaway, sizeof throwaway );
		if ( ret < 0 ) {
			if ( errno == EAGAIN ) return total;
			return SIGNAL_ERROR;
		}
		total += ret;
	} while ( (size_t)ret == sizeof throwaway );
	return (int)total;
}

void signal_close(const dnbd3_signal_t* const signal)
{
	const int* fds = (int*)&signal;
	close( fds[P_READ] );
	close( fds[P_WRITE] );
}

int signal_getWaitFd(const dnbd3_signal_t* const signal)
{
	if ( signal == NULL ) return -1;
	const int* fds = (int*)&signal;
	return fds[P_READ];
}