4 * Copyright 2011 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6 * Dual LGPL v2.1/GPL v2 license.
13 #include <sys/stat.h> /* For mode constants */
14 #include <fcntl.h> /* For O_* constants */
16 #include <ust/align.h>
18 struct shm_object_table
*shm_object_table_create(size_t max_nb_obj
)
20 struct shm_object_table
*table
;
22 table
= zmalloc(sizeof(struct shm_object_table
) +
23 max_nb_obj
* sizeof(table
->objects
[0]));
24 table
->size
= max_nb_obj
;
28 struct shm_object
*shm_object_table_append(struct shm_object_table
*table
,
29 size_t memory_map_size
)
31 int shmfd
, waitfd
[2], ret
, i
;
32 struct shm_object
*obj
;
35 if (table
->allocated_len
>= table
->size
)
37 obj
= &table
->objects
[table
->allocated_len
];
39 /* wait_fd: create pipe */
45 for (i
= 0; i
< 2; i
++) {
46 ret
= fcntl(waitfd
[i
], F_SETFD
, FD_CLOEXEC
);
52 /* The write end of the pipe needs to be non-blocking */
53 ret
= fcntl(waitfd
[1], F_SETFL
, O_NONBLOCK
);
58 memcpy(obj
->wait_fd
, waitfd
, sizeof(waitfd
));
60 /* shm_fd: create shm */
63 * Allocate shm, and immediately unlink its shm oject, keeping
64 * only the file descriptor as a reference to the object. If it
65 * already exists (caused by short race window during which the
66 * global object exists in a concurrent shm_open), simply retry.
67 * We specifically do _not_ use the / at the beginning of the
68 * pathname so that some OS implementations can keep it local to
69 * the process (POSIX leaves this implementation-defined).
72 shmfd
= shm_open("ust-shm-tmp",
73 O_CREAT
| O_EXCL
| O_RDWR
, 0700);
74 } while (shmfd
< 0 && errno
== EEXIST
);
79 ret
= shm_unlink("ust-shm-tmp");
84 ret
= ftruncate(shmfd
, memory_map_size
);
91 /* memory_map: mmap */
92 memory_map
= mmap(NULL
, memory_map_size
, PROT_READ
| PROT_WRITE
,
93 MAP_SHARED
, shmfd
, 0);
94 if (memory_map
== MAP_FAILED
) {
98 obj
->memory_map
= memory_map
;
99 obj
->memory_map_size
= memory_map_size
;
100 obj
->allocated_len
= 0;
102 table
->allocated_len
++;
115 for (i
= 0; i
< 2; i
++) {
116 ret
= close(waitfd
[i
]);
129 void shmp_object_destroy(struct shm_object
*obj
)
133 ret
= munmap(obj
->memory_map
, obj
->memory_map_size
);
138 ret
= close(obj
->shm_fd
);
143 for (i
= 0; i
< 2; i
++) {
144 ret
= close(obj
->wait_fd
[i
]);
152 void shm_object_table_destroy(struct shm_object_table
*table
)
156 for (i
= 0; i
< table
->allocated_len
; i
++)
157 shmp_object_destroy(&table
->objects
[i
]);
162 * zalloc_shm - allocate memory within a shm object.
164 * Shared memory is already zeroed by shmget.
165 * *NOT* multithread-safe (should be protected by mutex).
166 * Returns a -1, -1 tuple on error.
168 struct shm_ref
zalloc_shm(struct shm_object
*obj
, size_t len
)
171 struct shm_ref shm_ref_error
= { -1, -1 };
173 if (obj
->memory_map_size
- obj
->allocated_len
< len
)
174 return shm_ref_error
;
175 ref
.index
= obj
->index
;
176 ref
.offset
= obj
->allocated_len
;
177 obj
->allocated_len
+= len
;
181 void align_shm(struct shm_object
*obj
, size_t align
)
183 size_t offset_len
= offset_align(obj
->allocated_len
, align
);
184 obj
->allocated_len
+= offset_len
;
This page took 0.033398 seconds and 4 git commands to generate.