summaryrefslogtreecommitdiff
path: root/ipc.c
blob: b6b822f73b32a32ee74f38aae2ff6222561b1620 (plain)
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
/* SPDX-License-Identifier: GPL-2.0 */

#include <sys/wait.h>
#include <stdio.h>
#include <inttypes.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <string.h>
#include <assert.h>
#include <sys/stat.h>
#include <stddef.h>
#include <limits.h>
#include <sys/param.h>
#include <stdbool.h>

#include "gcc-compat.h"
#include "str.h"
#include "log.h"
#include "gcc-compat.h"
#include "err.h"
#include "ipc.h"

#if (defined(__GNUC__) && defined(__i386__))
#define get16bits(d) (*((const uint16_t *) (d)))
#else
#define get16bits(d) ((((uint32_t)(((const uint8_t *)(d))[1])) << 8)\
		+(uint32_t)(((const uint8_t *)(d))[0]) )
#endif

/*
 * SuperFastHash, by Paul Hsieh.
 * http://www.azillionmonkeys.com/qed/hash.html
 */
uint32_t super_fast_hash(const uint8_t *data, uint32_t len, uint32_t hash)
{
	uint32_t tmp;
	int rem = len & 3;

	len >>= 2;

	for (;len > 0; len--) {
		hash  += get16bits (data);
		tmp    = (get16bits (data+2) << 11) ^ hash;
		hash   = (hash << 16) ^ tmp;
		data  += 2*sizeof (uint16_t);
		hash  += hash >> 11;
	}

	/* Handle end cases */
	switch (rem) {
	case 3:
		hash += get16bits (data);
		hash ^= hash << 16;
		hash ^= data[sizeof (uint16_t)] << 18;
		hash += hash >> 11;
		break;
	case 2:
		hash += get16bits (data);
		hash ^= hash << 11;
		hash += hash >> 17;
		break;
	case 1:
		hash += *data;
		hash ^= hash << 10;
		hash += hash >> 1;
	}
	/* Force "avalanching" of final 127 bits */
	hash ^= hash << 3;
	hash += hash >> 5;
	hash ^= hash << 4;
	hash += hash >> 17;
	hash ^= hash << 25;
	hash += hash >> 6;
	return hash;
}

static int mutex_get(key_t key, int flags)
{
	int ret;

	DSS_DEBUG_LOG("getting semaphore 0x%lx\n", (long)key);
	ret = semget(key, 2, flags);
	if (ret < 0)
		return -ERRNO_TO_DSS_ERROR(errno);
	return ret;
}

static int do_semop(int id, struct sembuf *sops, int num)
{
	int ret;

	DSS_DEBUG_LOG("calling semop\n");
	do {
		ret = semop(id, sops, num);
		if (ret >= 0)
			return 1;
	} while (errno == EINTR);
	return -ERRNO_TO_DSS_ERROR(errno);
}

static bool mutex_is_locked(int id)
{
	struct sembuf sops;
	int ret;

	DSS_DEBUG_LOG("trying to lock\n");

	sops.sem_num = 0;
	sops.sem_op = 0;
	sops.sem_flg = SEM_UNDO | IPC_NOWAIT;

	ret = do_semop(id, &sops, 1);
	if (ret < 0)
		return true;
	return false;
}

int lock_dss(uint32_t key)
{
	int ret, id;
	struct sembuf sops[4];

	ret = mutex_get(key, IPC_CREAT | 0600);
	if (ret < 0)
		return ret;
	id = ret;

	sops[0].sem_num = 0;
	sops[0].sem_op = 0;
	sops[0].sem_flg = SEM_UNDO | IPC_NOWAIT;

	sops[1].sem_num = 0;
	sops[1].sem_op = 1;
	sops[1].sem_flg = SEM_UNDO | IPC_NOWAIT;

	sops[2].sem_num = 1;
	sops[2].sem_op = 0;
	sops[2].sem_flg = SEM_UNDO | IPC_NOWAIT;

	sops[3].sem_num = 1;
	sops[3].sem_op = 1;
	sops[3].sem_flg = SEM_UNDO | IPC_NOWAIT;

	return do_semop(id, sops, 4);
}

int get_dss_pid(uint32_t key, pid_t *pid)
{
	int ret, semid;

	if (pid)
		*pid = 0;
	ret = mutex_get(key, 0);
	if (ret < 0)
		return ret == -ERRNO_TO_DSS_ERROR(ENOENT)? -E_NOT_RUNNING : ret;
	semid = ret;
	ret = semctl(semid, 1, GETPID);
	if (ret < 0)
		return -E_NOT_RUNNING;
	if (pid)
		*pid = ret;
	return mutex_is_locked(semid)? 1 : -E_NOT_RUNNING;
}