| [1] | 1 | |
|---|
| 2 | #undef ALLOC_DEBUG |
|---|
| 3 | |
|---|
| 4 | #include <stdio.h> |
|---|
| 5 | #include <assert.h> |
|---|
| 6 | #include <limits.h> |
|---|
| 7 | #include <string.h> |
|---|
| 8 | #include <stdlib.h> |
|---|
| [11] | 9 | |
|---|
| [1] | 10 | /* mmap */ |
|---|
| [11] | 11 | #ifdef ZEND_WIN32 |
|---|
| 12 | # define ftruncate chsize |
|---|
| 13 | # define getuid() 0 |
|---|
| [57] | 14 | # define XCacheCreateFileMapping(size, perm, name) \ |
|---|
| [11] | 15 | CreateFileMapping(INVALID_HANDLE_VALUE, NULL, perm, (sizeof(xc_shmsize_t) > 4) ? size >> 32 : 0, size & 0xffffffff, name) |
|---|
| 16 | # define XCACHE_MAP_FAILED NULL |
|---|
| 17 | # define munmap(p, s) UnmapViewOfFile(p) |
|---|
| 18 | #else |
|---|
| 19 | # include <unistd.h> |
|---|
| [79] | 20 | /* make sure to mark(change) it to NULL to keep consistent */ |
|---|
| [11] | 21 | # define XCACHE_MAP_FAILED MAP_FAILED |
|---|
| 22 | #endif |
|---|
| 23 | |
|---|
| [1] | 24 | #include <sys/types.h> |
|---|
| 25 | #include <sys/stat.h> |
|---|
| 26 | #include <fcntl.h> |
|---|
| [11] | 27 | |
|---|
| 28 | #ifndef ZEND_WIN32 |
|---|
| [1] | 29 | #include <sys/mman.h> |
|---|
| [11] | 30 | #endif |
|---|
| [1] | 31 | |
|---|
| 32 | #include "php.h" |
|---|
| 33 | #include "myshm.h" |
|---|
| 34 | |
|---|
| 35 | #ifndef max |
|---|
| 36 | #define max(a, b) ((a) < (b) ? (b) : (a)) |
|---|
| 37 | #endif |
|---|
| 38 | |
|---|
| 39 | // {{{ xc_shm_t |
|---|
| 40 | struct _xc_shm_t { |
|---|
| 41 | void *ptr; |
|---|
| 42 | void *ptr_ro; |
|---|
| 43 | long diff; |
|---|
| 44 | xc_shmsize_t size; |
|---|
| [11] | 45 | char *name; |
|---|
| [57] | 46 | int newfile; |
|---|
| [11] | 47 | #ifdef ZEND_WIN32 |
|---|
| 48 | HANDLE hmap; |
|---|
| 49 | HANDLE hmap_ro; |
|---|
| 50 | #endif |
|---|
| [1] | 51 | }; |
|---|
| 52 | |
|---|
| [11] | 53 | #undef NDEBUG |
|---|
| [1] | 54 | #ifdef ALLOC_DEBUG |
|---|
| 55 | # define inline |
|---|
| 56 | #else |
|---|
| 57 | # define NDEBUG |
|---|
| 58 | #endif |
|---|
| 59 | #include <assert.h> |
|---|
| 60 | /* }}} */ |
|---|
| 61 | #define CHECK(x, e) do { if ((x) == NULL) { zend_error(E_ERROR, "XCache: " e); goto err; } } while (0) |
|---|
| [11] | 62 | #define PTR_ADD(ptr, v) (((char *) (ptr)) + (v)) |
|---|
| 63 | #define PTR_SUB(ptr, v) (((char *) (ptr)) - (v)) |
|---|
| [1] | 64 | |
|---|
| 65 | int xc_shm_can_readonly(xc_shm_t *shm) /* {{{ */ |
|---|
| 66 | { |
|---|
| 67 | return shm->ptr_ro != NULL; |
|---|
| 68 | } |
|---|
| 69 | /* }}} */ |
|---|
| 70 | int xc_shm_is_readwrite(xc_shm_t *shm, const void *p) /* {{{ */ |
|---|
| 71 | { |
|---|
| 72 | return p >= shm->ptr && (char *)p < (char *)shm->ptr + shm->size; |
|---|
| 73 | } |
|---|
| 74 | /* }}} */ |
|---|
| 75 | int xc_shm_is_readonly(xc_shm_t *shm, const void *p) /* {{{ */ |
|---|
| 76 | { |
|---|
| 77 | return xc_shm_can_readonly(shm) && p >= shm->ptr_ro && (char *)p < (char *)shm->ptr_ro + shm->size; |
|---|
| 78 | } |
|---|
| 79 | /* }}} */ |
|---|
| 80 | void *xc_shm_to_readwrite(xc_shm_t *shm, void *p) /* {{{ */ |
|---|
| 81 | { |
|---|
| 82 | if (shm->diff) { |
|---|
| 83 | assert(xc_shm_is_readonly(p)); |
|---|
| [59] | 84 | p = PTR_SUB(p, shm->diff); |
|---|
| [1] | 85 | } |
|---|
| 86 | assert(xc_shm_is_readwrite(p)); |
|---|
| 87 | return p; |
|---|
| 88 | } |
|---|
| 89 | /* }}} */ |
|---|
| 90 | void *xc_shm_to_readonly(xc_shm_t *shm, void *p) /* {{{ */ |
|---|
| 91 | { |
|---|
| 92 | assert(xc_shm_is_readwrite(p)); |
|---|
| 93 | if (shm->diff) { |
|---|
| [11] | 94 | p = PTR_ADD(p, shm->diff); |
|---|
| [1] | 95 | assert(xc_shm_is_readonly(p)); |
|---|
| 96 | } |
|---|
| 97 | return p; |
|---|
| 98 | } |
|---|
| 99 | /* }}} */ |
|---|
| 100 | |
|---|
| 101 | void xc_shm_destroy(xc_shm_t *shm) /* {{{ */ |
|---|
| 102 | { |
|---|
| 103 | if (shm->ptr_ro) { |
|---|
| 104 | munmap(shm->ptr_ro, shm->size); |
|---|
| 105 | /* |
|---|
| 106 | shm->ptr_ro = NULL; |
|---|
| 107 | */ |
|---|
| 108 | } |
|---|
| 109 | if (shm->ptr) { |
|---|
| 110 | /* shm->size depends on shm->ptr */ |
|---|
| 111 | munmap(shm->ptr, shm->size); |
|---|
| 112 | /* |
|---|
| 113 | shm->ptr = NULL; |
|---|
| 114 | */ |
|---|
| 115 | } |
|---|
| [11] | 116 | #ifdef ZEND_WIN32 |
|---|
| 117 | if (shm->hmap) { |
|---|
| 118 | CloseHandle(shm->hmap); |
|---|
| 119 | } |
|---|
| 120 | if (shm->hmap_ro) { |
|---|
| 121 | CloseHandle(shm->hmap_ro); |
|---|
| 122 | } |
|---|
| 123 | #endif |
|---|
| 124 | |
|---|
| 125 | if (shm->name) { |
|---|
| 126 | #ifdef __CYGWIN__ |
|---|
| [57] | 127 | if (shm->newfile) { |
|---|
| 128 | unlink(shm->name); |
|---|
| 129 | } |
|---|
| [11] | 130 | #endif |
|---|
| 131 | free(shm->name); |
|---|
| 132 | } |
|---|
| [1] | 133 | /* |
|---|
| 134 | shm->size = NULL; |
|---|
| 135 | shm->diff = 0; |
|---|
| 136 | */ |
|---|
| 137 | |
|---|
| 138 | free(shm); |
|---|
| 139 | return; |
|---|
| 140 | } |
|---|
| 141 | /* }}} */ |
|---|
| 142 | xc_shm_t *xc_shm_init(const char *path, xc_shmsize_t size, zend_bool readonly_protection) /* {{{ */ |
|---|
| 143 | { |
|---|
| [21] | 144 | #ifdef ZEND_WIN32 |
|---|
| 145 | # define TMP_PATH "XCache" |
|---|
| 146 | #else |
|---|
| 147 | # define TMP_PATH "/tmp/XCache" |
|---|
| 148 | #endif |
|---|
| [1] | 149 | xc_shm_t *shm = NULL; |
|---|
| [11] | 150 | int fd = -1; |
|---|
| [1] | 151 | int ro_ok; |
|---|
| 152 | volatile void *romem; |
|---|
| [21] | 153 | char tmpname[sizeof(TMP_PATH) - 1 + 100]; |
|---|
| [1] | 154 | |
|---|
| 155 | CHECK(shm = calloc(1, sizeof(xc_shm_t)), "shm OOM"); |
|---|
| 156 | shm->size = size; |
|---|
| [11] | 157 | |
|---|
| [1] | 158 | if (path == NULL || !path[0]) { |
|---|
| [11] | 159 | static int inc = 0; |
|---|
| [21] | 160 | snprintf(tmpname, sizeof(tmpname) - 1, "%s.%d.%d.%d", TMP_PATH, (int) getuid(), inc ++, rand()); |
|---|
| [11] | 161 | path = tmpname; |
|---|
| [1] | 162 | } |
|---|
| [11] | 163 | |
|---|
| 164 | shm->name = strdup(path); |
|---|
| 165 | |
|---|
| 166 | #ifndef ZEND_WIN32 |
|---|
| 167 | # define XCACHE_MMAP_PERMISSION (S_IRUSR | S_IWUSR) |
|---|
| 168 | fd = open(shm->name, O_RDWR, XCACHE_MMAP_PERMISSION); |
|---|
| [1] | 169 | if (fd == -1) { |
|---|
| [61] | 170 | /* do not create file in /dev */ |
|---|
| 171 | if (strncmp(shm->name, "/dev", 4) == 0) { |
|---|
| 172 | goto err; |
|---|
| 173 | } |
|---|
| [11] | 174 | fd = open(shm->name, O_CREAT | O_RDWR, XCACHE_MMAP_PERMISSION); |
|---|
| [57] | 175 | shm->newfile = 1; |
|---|
| [1] | 176 | if (fd == -1) { |
|---|
| 177 | goto err; |
|---|
| 178 | } |
|---|
| 179 | } |
|---|
| 180 | ftruncate(fd, size); |
|---|
| [11] | 181 | #endif |
|---|
| [1] | 182 | |
|---|
| [11] | 183 | #ifdef ZEND_WIN32 |
|---|
| [57] | 184 | shm->hmap = XCacheCreateFileMapping(size, PAGE_READWRITE, shm->name); |
|---|
| [11] | 185 | shm->ptr = (LPSTR) MapViewOfFile(shm->hmap, FILE_MAP_WRITE, 0, 0, 0); |
|---|
| 186 | #else |
|---|
| [1] | 187 | shm->ptr = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); |
|---|
| [11] | 188 | #endif |
|---|
| 189 | |
|---|
| 190 | if (shm->ptr == XCACHE_MAP_FAILED) { |
|---|
| [1] | 191 | shm->ptr = NULL; |
|---|
| 192 | goto err; |
|---|
| 193 | } |
|---|
| 194 | |
|---|
| [79] | 195 | /* {{{ readonly protection, mmap it readonly and check if ptr_ro works */ |
|---|
| [1] | 196 | if (readonly_protection) { |
|---|
| [79] | 197 | ro_ok = 0; |
|---|
| 198 | |
|---|
| [11] | 199 | #ifdef ZEND_WIN32 |
|---|
| [57] | 200 | shm->hmap_ro = XCacheCreateFileMapping(size, PAGE_READONLY, shm->name); |
|---|
| [11] | 201 | shm->ptr_ro = (LPSTR) MapViewOfFile(shm->hmap_ro, FILE_MAP_READ, 0, 0, 0); |
|---|
| 202 | #else |
|---|
| [1] | 203 | shm->ptr_ro = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0); |
|---|
| [11] | 204 | #endif |
|---|
| [79] | 205 | if (shm->ptr_ro == XCACHE_MAP_FAILED) { |
|---|
| 206 | shm->ptr_ro = NULL; |
|---|
| 207 | } |
|---|
| [1] | 208 | romem = shm->ptr_ro; |
|---|
| 209 | |
|---|
| 210 | do { |
|---|
| [79] | 211 | if (romem == NULL || romem == shm->ptr) { |
|---|
| [1] | 212 | break; |
|---|
| 213 | } |
|---|
| 214 | *(char *)shm->ptr = 1; |
|---|
| 215 | if (*(char *)romem != 1) { |
|---|
| 216 | break; |
|---|
| 217 | } |
|---|
| 218 | *(char *)shm->ptr = 2; |
|---|
| 219 | if (*(char *)romem != 2) { |
|---|
| 220 | break; |
|---|
| 221 | } |
|---|
| 222 | ro_ok = 1; |
|---|
| 223 | } while (0); |
|---|
| 224 | |
|---|
| [79] | 225 | if (ro_ok) { |
|---|
| 226 | shm->diff = PTR_SUB(shm->ptr_ro, (char *) shm->ptr); |
|---|
| 227 | /* no overlap */ |
|---|
| 228 | assert(abs(shm->diff) >= size); |
|---|
| [1] | 229 | } |
|---|
| [79] | 230 | else { |
|---|
| 231 | if (shm->ptr_ro) { |
|---|
| 232 | munmap(shm->ptr_ro, size); |
|---|
| 233 | } |
|---|
| 234 | #ifdef ZEND_WIN32 |
|---|
| 235 | if (shm->hmap_ro) { |
|---|
| 236 | CloseHandle(shm->hmap_ro); |
|---|
| 237 | } |
|---|
| 238 | #endif |
|---|
| 239 | shm->ptr_ro = NULL; |
|---|
| 240 | shm->diff = 0; |
|---|
| 241 | } |
|---|
| [1] | 242 | } |
|---|
| [79] | 243 | |
|---|
| [1] | 244 | /* }}} */ |
|---|
| 245 | |
|---|
| 246 | close(fd); |
|---|
| [11] | 247 | #ifndef __CYGWIN__ |
|---|
| [57] | 248 | if (shm->newfile) { |
|---|
| 249 | unlink(shm->name); |
|---|
| 250 | } |
|---|
| [11] | 251 | #endif |
|---|
| [1] | 252 | |
|---|
| 253 | return shm; |
|---|
| 254 | |
|---|
| 255 | err: |
|---|
| [11] | 256 | if (fd != -1) { |
|---|
| 257 | close(fd); |
|---|
| 258 | } |
|---|
| [1] | 259 | if (shm) { |
|---|
| 260 | xc_shm_destroy(shm); |
|---|
| 261 | } |
|---|
| 262 | return NULL; |
|---|
| 263 | } |
|---|
| 264 | /* }}} */ |
|---|
| 265 | |
|---|
| 266 | void *xc_shm_ptr(xc_shm_t *shm) /* {{{ */ |
|---|
| 267 | { |
|---|
| 268 | return shm->ptr; |
|---|
| 269 | } |
|---|
| 270 | /* }}} */ |
|---|