-
Notifications
You must be signed in to change notification settings - Fork 198
/
Copy pathapc_mmap.c
119 lines (101 loc) · 3.89 KB
/
apc_mmap.c
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
/*
+----------------------------------------------------------------------+
| APC |
+----------------------------------------------------------------------+
| Copyright (c) 2006-2011 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Rasmus Lerdorf <rasmus@php.net> |
+----------------------------------------------------------------------+
This software was contributed to PHP by Community Connect Inc. in 2002
and revised in 2005 by Yahoo! Inc. to add support for PHP 5.1.
Future revisions and derivatives of this source code must acknowledge
Community Connect Inc. as the original contributor of this module by
leaving this note intact in the source code.
All other licensing and usage conditions are those of the PHP Group.
*/
#include "apc.h"
#include "apc_mmap.h"
#include "apc_lock.h"
#ifdef APC_MMAP
#include <fcntl.h>
#include <sys/types.h>
#include <sys/mman.h>
/*
* Some operating systems (like FreeBSD) have a MAP_NOSYNC flag that
* tells whatever update daemons might be running to not flush dirty
* vm pages to disk unless absolutely necessary. My guess is that
* most systems that don't have this probably default to only synching
* to disk when absolutely necessary.
*/
#ifndef MAP_NOSYNC
#define MAP_NOSYNC 0
#endif
/* support for systems where MAP_ANONYMOUS is defined but not MAP_ANON, ie: HP-UX bug #14615 */
#if !defined(MAP_ANON) && defined(MAP_ANONYMOUS)
# define MAP_ANON MAP_ANONYMOUS
#endif
void *apc_mmap(char *file_mask, size_t size)
{
void *shmaddr;
int fd = -1;
int flags = MAP_SHARED | MAP_NOSYNC;
/* If no filename was provided, do an anonymous mmap */
if (!file_mask || (file_mask && !strlen(file_mask))) {
#if !defined(MAP_ANON)
zend_error_noreturn(E_CORE_ERROR, "Anonymous mmap does not appear to be available on this system (MAP_ANON/MAP_ANONYMOUS). Please see the apc.mmap_file_mask INI option.");
#else
fd = -1;
flags = MAP_SHARED | MAP_ANON;
#endif
} else if (!strcmp(file_mask,"/dev/zero")) {
fd = open("/dev/zero", O_RDWR, S_IRUSR | S_IWUSR);
if (fd == -1) {
zend_error_noreturn(E_CORE_ERROR, "apc_mmap: open on /dev/zero failed");
}
} else {
/* Otherwise we do a normal filesystem mmap */
fd = mkstemp(file_mask);
if (fd == -1) {
zend_error_noreturn(E_CORE_ERROR, "apc_mmap: mkstemp on %s failed", file_mask);
}
if (ftruncate(fd, size) < 0) {
close(fd);
unlink(file_mask);
zend_error_noreturn(E_CORE_ERROR, "apc_mmap: ftruncate failed");
}
unlink(file_mask);
}
shmaddr = (void *)mmap(NULL, size, PROT_READ | PROT_WRITE, flags, fd, 0);
if ((long)shmaddr == -1) {
zend_error_noreturn(E_CORE_ERROR, "apc_mmap: Failed to mmap %zu bytes. Is your apc.shm_size too large?", size);
}
#ifdef MADV_HUGEPAGE
/* enable transparent huge pages to reduce TLB misses (Linux only) */
madvise(shmaddr, size, MADV_HUGEPAGE);
#endif
if (fd != -1) close(fd);
return shmaddr;
}
void apc_unmap(void *shmaddr, size_t size)
{
if (munmap(shmaddr, size) < 0) {
apc_warning("apc_unmap: munmap failed");
}
}
#endif
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim>600: noexpandtab sw=4 ts=4 sts=4 fdm=marker
* vim<600: noexpandtab sw=4 ts=4 sts=4
*/