-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathshmem.h
150 lines (138 loc) · 4.24 KB
/
shmem.h
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
/*
* shmem.h
*
* Created on: Aug 13, 2009
* Author: Ben Langmead
*/
#ifndef SHMEM_H_
#define SHMEM_H_
#ifdef BOWTIE_SHARED_MEM
#include <iostream>
#include <string>
#include <sys/shm.h>
#include <unistd.h>
#include <sys/shm.h>
#include <errno.h>
#include <stdint.h>
#include <stdexcept>
#include "str_util.h"
#include "btypes.h"
extern void notifySharedMem(void *mem, size_t len);
extern void waitSharedMem(void *mem, size_t len);
#define ALLOC_SHARED_U allocSharedMem<TIndexOffU>
#define ALLOC_SHARED_U8 allocSharedMem<uint8_t>
#define ALLOC_SHARED_U32 allocSharedMem<uint32_t>
#define FREE_SHARED shmdt
#define NOTIFY_SHARED notifySharedMem
#define WAIT_SHARED waitSharedMem
#define SHMEM_UNINIT 0xafba4242
#define SHMEM_INIT 0xffaa6161
/**
* Tries to allocate a shared-memory chunk for a given file of a given size.
*/
template <typename T>
bool allocSharedMem(std::string fname,
size_t len,
T ** dst,
const char *memName,
bool verbose)
{
using namespace std;
int shmid = -1;
// Calculate key given string
key_t key = (key_t)hash_string(fname);
shmid_ds ds;
int ret;
// Reserve 4 bytes at the end for silly synchronization
size_t shmemLen = len + 4;
if(verbose) {
cerr << "Reading " << len << "+4 bytes into shared memory for " << memName << endl;
}
T *ptr = NULL;
while(true) {
// Create the shrared-memory block
if((shmid = shmget(key, shmemLen, IPC_CREAT | 0666)) < 0) {
if(errno == ENOMEM) {
cerr << "Out of memory allocating shared area " << memName << endl;
} else if(errno == EACCES) {
cerr << "EACCES" << endl;
} else if(errno == EEXIST) {
cerr << "EEXIST" << endl;
} else if(errno == EINVAL) {
cerr << "Warning: shared-memory chunk's segment size doesn't match expected size (" << (shmemLen) << ")" << endl
<< "Deleting old shared memory block and trying again." << endl;
shmid = shmget(key, 0, 0);
if((ret = shmctl(shmid, IPC_RMID, &ds)) < 0) {
cerr << "shmctl returned " << ret
<< " for IPC_RMID, errno is " << errno
<< ", shmid is " << shmid << endl;
throw 1;
} else {
cerr << "Deleted shared mem chunk with shmid " << shmid << endl;
}
continue;
} else if(errno == ENOENT) {
cerr << "ENOENT" << endl;
} else if(errno == ENOSPC) {
cerr << "ENOSPC" << endl;
} else {
cerr << "shmget returned " << shmid << " for and errno is " << errno << endl;
}
throw 1;
}
ptr = (T*)shmat(shmid, 0, 0);
if(ptr == (void*)-1) {
cerr << "Failed to attach " << memName << " to shared memory with shmat()." << endl;
throw 1;
}
if(ptr == NULL) {
cerr << memName << " pointer returned by shmat() was NULL." << endl;
throw 1;
}
// Did I create it, or did I just attach to one created by
// another process?
if((ret = shmctl(shmid, IPC_STAT, &ds)) < 0) {
cerr << "shmctl returned " << ret << " for IPC_STAT and errno is " << errno << endl;
throw 1;
}
if((size_t)ds.shm_segsz != shmemLen) {
cerr << "Warning: shared-memory chunk's segment size (" << ds.shm_segsz
<< ") doesn't match expected size (" << shmemLen << ")" << endl
<< "Deleting old shared memory block and trying again." << endl;
if((ret = shmctl(shmid, IPC_RMID, &ds)) < 0) {
cerr << "shmctl returned " << ret << " for IPC_RMID and errno is " << errno << endl;
throw 1;
}
} else {
break;
}
} // while(true)
*dst = ptr;
bool initid = (((volatile uint32_t*)((char*)ptr + len))[0] == SHMEM_INIT);
if(ds.shm_cpid == getpid() && !initid) {
if(verbose) {
cerr << " I (pid = " << getpid() << ") created the "
<< "shared memory for " << memName << endl;
}
// Set this value just off the end of the chunk to
// indicate that the data hasn't been read yet.
((volatile uint32_t*)((char*)ptr + len))[0] = SHMEM_UNINIT;
return true;
} else {
if(verbose) {
cerr << " I (pid = " << getpid()
<< ") did not create the shared memory for "
<< memName << ". Pid " << ds.shm_cpid << " did." << endl;
}
return false;
}
}
#else
#define ALLOC_SHARED_U(...) 0
#define ALLOC_SHARED_U8(...) 0
#define ALLOC_SHARED_U32(...) 0
#define FREE_SHARED(...)
#define NOTIFY_SHARED(...)
#define WAIT_SHARED(...)
#endif /*BOWTIE_SHARED_MEM*/
#endif /* SHMEM_H_ */