summaryrefslogtreecommitdiff
path: root/shmem/unix/shmem.c
blob: 294da7e0599d7bb161184e8e401571ca00115340 (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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
/* ====================================================================
 * The Apache Software License, Version 1.1
 *
 * Copyright (c) 2000-2001 The Apache Software Foundation.  All rights
 * reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *
 * 3. The end-user documentation included with the redistribution,
 *    if any, must include the following acknowledgment:
 *       "This product includes software developed by the
 *        Apache Software Foundation (http://www.apache.org/)."
 *    Alternately, this acknowledgment may appear in the software itself,
 *    if and wherever such third-party acknowledgments normally appear.
 *
 * 4. The names "Apache" and "Apache Software Foundation" must
 *    not be used to endorse or promote products derived from this
 *    software without prior written permission. For written
 *    permission, please contact apache@apache.org.
 *
 * 5. Products derived from this software may not be called "Apache",
 *    nor may "Apache" appear in their name, without prior written
 *    permission of the Apache Software Foundation.
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 * ====================================================================
 *
 * This software consists of voluntary contributions made by many
 * individuals on behalf of the Apache Software Foundation.  For more
 * information on the Apache Software Foundation, please see
 * <http://www.apache.org/>.
 */

#include "apr_general.h"
#include "apr_shmem.h"
#include "apr_lock.h"
#include "apr_portable.h"
#include "apr_errno.h"
#define APR_WANT_MEMFUNC
#include "apr_want.h"

/*
 * This is the Unix implementation of shared memory.
 *
 * Currently, this code supports the following shared memory techniques:
 *
 * - mmap on a temporary file
 * - mmap/shm_open on a temporary file (POSIX.1)
 * - mmap with MAP_ANON (4.4BSD)
 * - mmap /dev/zero (SVR4)
 * - shmget (SysV)
 * - create_area (BeOS)
 */

#if APR_USE_SHMEM_MMAP_TMP || APR_USE_SHMEM_MMAP_SHM || APR_USE_SHMEM_MMAP_ZERO || APR_USE_SHMEM_MMAP_ANON
#include <sys/mman.h>
#elif APR_USE_SHMEM_SHMGET
#include <sys/ipc.h>
#include <sys/shm.h>
#include <sys/file.h>
#elif APR_USE_SHMEM_BEOS
#include <kernel/OS.h>
#endif

struct shmem_t {
    void *mem;
    void *curmem;
    apr_size_t length;
    apr_lock_t *lock;
    char *filename;
#if APR_USE_SHMEM_MMAP_TMP || APR_USE_SHMEM_MMAP_SHM || APR_USE_SHMEM_MMAP_ZERO
    apr_file_t *file; 
#elif APR_USE_SHMEM_MMAP_ANON
    /* Nothing else. */
#elif APR_USE_SHMEM_SHMGET
    apr_os_file_t file;
#elif APR_USE_SHMEM_BEOS
    area_id areaid; 
#endif
};

APR_DECLARE(apr_status_t) apr_shm_init(apr_shmem_t **m, apr_size_t reqsize, 
                                       const char *filename, apr_pool_t *pool)
{
    apr_shmem_t *new_m;
    int tmpfd;
    void *mem;

#if APR_USE_SHMEM_SHMGET
    struct shmid_ds shmbuf;
#else
    apr_status_t stat;
#endif

    new_m = apr_palloc(pool, sizeof(apr_shmem_t));
    if (!new_m)
        return APR_ENOMEM;

/* These implementations are very similar except for opening the file. */
#if APR_USE_SHMEM_MMAP_TMP || APR_USE_SHMEM_MMAP_SHM || APR_USE_SHMEM_MMAP_ZERO
    /* FIXME: Ignore error for now. *
     *stat = apr_file_remove(filename, pool);*/
    
#if APR_USE_SHMEM_MMAP_TMP
    /* FIXME: Is APR_OS_DEFAULT sufficient? */
    stat = apr_file_open(new_m->file, filename, 
                         APR_READ | APR_WRITE | APR_CREATE, APR_OS_DEFAULT,
                         pool);
    if (stat != APR_SUCCESS)
        return APR_EGENERAL;

    tmpfd = apr_os_file_get(&tmpfd, new_m->file);
    stat = apr_file_trunc(new_m->file, reqsize);
    if (stat != APR_SUCCESS)
        return APR_EGENERAL;

#elif APR_USE_SHMEM_MMAP_SHM
    /* FIXME: Is APR_OS_DEFAULT sufficient? */
    tmpfd = shm_open(filename, O_RDWR | O_CREAT, APR_OS_DEFAULT);
    if (tmpfd == -1)
        return errno + APR_OS_START_SYSERR;

    apr_os_file_put(new_m->file, &tmpfd, pool); 
    stat = apr_file_trunc(new_m->file, reqsize);
    if (stat != APR_SUCCESS)
    {
        shm_unlink(filename);
        return APR_EGENERAL;
    }
#elif APR_USE_SHMEM_MMAP_ZERO
    stat = apr_file_open(new_m->file, "/dev/zero", APR_READ | APR_WRITE, 
                         APR_OS_DEFAULT);
    if (stat != APR_SUCCESS)
        return APR_EGENERAL;
    tmpfd = apr_os_file_get(&tmpfd, new_m->file);
#endif

    mem = mmap(NULL, reqsize, PROT_READ|PROT_WRITE, MAP_SHARED, tmpfd, 0);

#elif APR_USE_SHMEM_MMAP_ANON
    mem = mmap(NULL, reqsize, PROT_READ|PROT_WRITE, MAP_ANON|MAP_SHARED, -1, 0);
#elif APR_USE_SHMEM_SHMGET
    tmpfd = shmget(IPC_PRIVATE, reqsize, (SHM_R|SHM_W|IPC_CREAT));
    if (tmpfd == -1)
        return errno + APR_OS_START_SYSERR;

    new_m->file = tmpfd;

    mem = shmat(new_m->file, NULL, 0);

    /* FIXME: Handle errors. */
    if (shmctl(new_m->file, IPC_STAT, &shmbuf) == -1)
        return errno + APR_OS_START_SYSERR;

    apr_current_userid(&shmbuf.shm_perm.uid, &shmbuf.shm_perm.gid, pool);

    if (shmctl(new_m->file, IPC_SET, &shmbuf) == -1)
        return errno + APR_OS_START_SYSERR;

#elif APR_USE_SHMEM_BEOS
    new_m->area_id = create_area("mm", (void*)&mem, B_ANY_ADDRESS, reqsize, 
                                 B_LAZY_LOCK, B_READ_AREA|B_WRITE_AREA);
    /* FIXME: error code? */
    if (new_m->area_id < 0)
        return APR_EGENERAL;

#endif

    new_m->mem = mem;
    new_m->curmem = mem;
    new_m->length = reqsize;

    apr_lock_create(&new_m->lock, APR_MUTEX, APR_CROSS_PROCESS, NULL, pool);
    if (!new_m->lock)
        return APR_EGENERAL;

    *m = new_m; 
    return APR_SUCCESS;
}

APR_DECLARE(apr_status_t) apr_shm_destroy(apr_shmem_t *m)
{
#if APR_USE_SHMEM_MMAP_TMP || APR_USE_SHMEM_MMAP_SHM || APR_USE_SHMEM_MMAP_ZERO
    munmap(m->mem, m->length);
    apr_file_close(m->file);
#elif APR_USE_SHMEM_MMAP_ANON
    munmap(m->mem, m->length);
#elif APR_USE_SHMEM_SHMGET
    shmdt(m->mem);
#elif APR_USE_SHMEM_BEOS
    delete_area(new_m->area_id);
#endif

    return APR_SUCCESS;
}

APR_DECLARE(void *) apr_shm_malloc(apr_shmem_t *m, apr_size_t reqsize)
{
    void *new;
    new = NULL;

    apr_lock_acquire(m->lock);
    /* Do we have enough space? */
    if ((m->curmem - m->mem + reqsize) <= m->length)
    {
        new = m->curmem;
        m->curmem += reqsize;
    }
    apr_lock_release(m->lock);
    return new;
}

APR_DECLARE(void *) apr_shm_calloc(apr_shmem_t *m, apr_size_t reqsize) 
{
    void *new = apr_shm_malloc(m, reqsize);
    memset(new, '\0', reqsize);
    return new;
}

APR_DECLARE(apr_status_t) apr_shm_free(apr_shmem_t *shared, void *entity)
{
    /* Without a memory management scheme within our shared memory, it
     * is impossible to implement free. */
    return APR_SUCCESS;
}

APR_DECLARE(apr_status_t) apr_shm_name_get(apr_shmem_t *c, 
                                           apr_shm_name_t **name)
{
#if APR_USES_ANONYMOUS_SHM
    *name = NULL;
    return APR_ANONYMOUS;
/* Currently, we are not supporting name based shared memory on Unix
 * systems.  This may change in the future however, so I will leave
 * this in here for now.  Plus, this gives other platforms a good idea
 * of how to proceed.
 */
#elif APR_USES_FILEBASED_SHM
#elif APR_USES_KEYBASED_SHM
#endif
}

APR_DECLARE(apr_status_t) apr_shm_name_set(apr_shmem_t *c, 
                                           apr_shm_name_t *name)
{
#if APR_USES_ANONYMOUS_SHM
    return APR_ANONYMOUS;
/* Currently, we are not supporting name based shared memory on Unix
 * systems.  This may change in the future however, so I will leave
 * this in here for now.  Plus, this gives other platforms a good idea
 * of how to proceed.
 */
#elif APR_USES_FILEBASED_SHM
#elif APR_USES_KEYBASED_SHM
#endif
}

APR_DECLARE(apr_status_t) apr_shm_open(apr_shmem_t *c)
{
#if APR_USES_ANONYMOUS_SHM

/* we don't need to open shared memory segments in child segments, so 
 * just return immediately.
 */
    return APR_SUCCESS;
/* Currently, we are not supporting name based shared memory on Unix
 * systems.  This may change in the future however, so I will leave
 * this in here for now.  Plus, this gives other platforms a good idea
 * of how to proceed.
 */
#elif APR_USES_FILEBASED_SHM
#elif APR_USES_KEYBASED_SHM
#endif
}

APR_DECLARE(apr_status_t) apr_shm_avail(apr_shmem_t *m, apr_size_t *size)
{
    apr_status_t stat;

    stat = APR_ENOSHMAVAIL;

    apr_lock_acquire(m->lock);

    *size = m->length - (m->curmem - m->mem);
    if (*size)
        stat = APR_SUCCESS;

    apr_lock_release(m->lock);
    return stat;
}