shm: introduce shmp_index
[lttng-ust.git] / libringbuffer / shm.h
... / ...
CommitLineData
1#ifndef _LIBRINGBUFFER_SHM_H
2#define _LIBRINGBUFFER_SHM_H
3
4/*
5 * libringbuffer/shm.h
6 *
7 * Copyright 2011 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 *
9 * Dual LGPL v2.1/GPL v2 license.
10 */
11
12#include <stdint.h>
13#include <ust/usterr-signal-safe.h>
14#include "ust/core.h"
15#include "shm_types.h"
16
17/*
18 * Pointer dereferencing. We don't trust the shm_ref, so we validate
19 * both the index and offset with known boundaries.
20 */
21static inline
22char *_shmp_offset(struct shm_object_table *table, struct shm_ref *ref,
23 size_t offset)
24{
25 struct shm_object *obj;
26 size_t index, ref_offset;
27
28 index = (size_t) ref->index;
29 if (unlikely(index >= table->allocated_len))
30 return NULL;
31 obj = &table->objects[index];
32 ref_offset = (size_t) ref->offset;
33 ref_offset += offset;
34 if (unlikely(ref_offset >= obj->memory_map_size))
35 return NULL;
36 return &obj->memory_map[ref_offset];
37}
38
39#define shmp_index(handle, ref, offset) \
40 ({ \
41 __typeof__((ref)._type) ____ptr_ret; \
42 ____ptr_ret = (__typeof__(____ptr_ret)) _shmp_offset((handle)->table, &(ref)._ref, ((offset) * sizeof(*____ptr_ret))); \
43 ____ptr_ret; \
44 })
45
46#define shmp(handle, ref) shmp_index(handle, ref, 0)
47
48static inline
49void _set_shmp(struct shm_ref *ref, struct shm_ref src)
50{
51 *ref = src;
52}
53
54#define set_shmp(ref, src) _set_shmp(&(ref)._ref, src)
55
56struct shm_object_table *shm_object_table_create(size_t max_nb_obj);
57void shm_object_table_destroy(struct shm_object_table *table);
58struct shm_object *shm_object_table_append(struct shm_object_table *table,
59 size_t memory_map_size);
60
61/*
62 * zalloc_shm - allocate memory within a shm object.
63 *
64 * Shared memory is already zeroed by shmget.
65 * *NOT* multithread-safe (should be protected by mutex).
66 * Returns a -1, -1 tuple on error.
67 */
68struct shm_ref zalloc_shm(struct shm_object *obj, size_t len);
69void align_shm(struct shm_object *obj, size_t align);
70
71static inline
72int shm_get_wakeup_fd(struct shm_handle *handle, struct shm_ref *ref)
73{
74 struct shm_object_table *table = handle->table;
75 struct shm_object *obj;
76 size_t index;
77
78 index = (size_t) ref->index;
79 if (unlikely(index >= table->allocated_len))
80 return -EPERM;
81 obj = &table->objects[index];
82 return obj->wait_fd[1];
83
84}
85
86static inline
87int shm_get_wait_fd(struct shm_handle *handle, struct shm_ref *ref)
88{
89 struct shm_object_table *table = handle->table;
90 struct shm_object *obj;
91 size_t index;
92
93 index = (size_t) ref->index;
94 if (unlikely(index >= table->allocated_len))
95 return -EPERM;
96 obj = &table->objects[index];
97 return obj->wait_fd[0];
98}
99
100#endif /* _LIBRINGBUFFER_SHM_H */
This page took 0.02238 seconds and 4 git commands to generate.