blob: 1ee5e95df2999e9e2e7ca80c62fb0f81bb0baea6 [file] [log] [blame]
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001/*
Ed Warnickecb9cada2015-12-08 15:45:58 -07002 *------------------------------------------------------------------
Dave Barach8a7fb0c2016-07-08 14:44:23 -04003 * svm.c - shared VM allocation, mmap(...MAP_FIXED...)
Ed Warnickecb9cada2015-12-08 15:45:58 -07004 * library
5 *
6 * Copyright (c) 2009 Cisco and/or its affiliates.
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at:
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 *------------------------------------------------------------------
19 */
20
21#include <stdio.h>
22#include <stdlib.h>
23#include <sys/types.h>
24#include <sys/mman.h>
25#include <sys/stat.h>
26#include <netinet/in.h>
27#include <signal.h>
28#include <pthread.h>
29#include <unistd.h>
30#include <time.h>
31#include <fcntl.h>
32#include <string.h>
33#include <vppinfra/clib.h>
34#include <vppinfra/vec.h>
35#include <vppinfra/hash.h>
36#include <vppinfra/bitmap.h>
37#include <vppinfra/fifo.h>
38#include <vppinfra/time.h>
39#include <vppinfra/mheap.h>
40#include <vppinfra/heap.h>
41#include <vppinfra/pool.h>
42#include <vppinfra/format.h>
43
44#include "svm.h"
45
46static svm_region_t *root_rp;
47static int root_rp_refcount;
48
49#define MAXLOCK 2
Dave Barach8a7fb0c2016-07-08 14:44:23 -040050static pthread_mutex_t *mutexes_held[MAXLOCK];
Ed Warnickecb9cada2015-12-08 15:45:58 -070051static int nheld;
52
Dave Barach8a7fb0c2016-07-08 14:44:23 -040053svm_region_t *
54svm_get_root_rp (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -070055{
Dave Barach8a7fb0c2016-07-08 14:44:23 -040056 return root_rp;
Ed Warnickecb9cada2015-12-08 15:45:58 -070057}
58
59#define MUTEX_DEBUG
60
Dave Barach8a7fb0c2016-07-08 14:44:23 -040061static void
62region_lock (svm_region_t * rp, int tag)
Ed Warnickecb9cada2015-12-08 15:45:58 -070063{
Dave Barach8a7fb0c2016-07-08 14:44:23 -040064 pthread_mutex_lock (&rp->mutex);
Ed Warnickecb9cada2015-12-08 15:45:58 -070065#ifdef MUTEX_DEBUG
Dave Barach8a7fb0c2016-07-08 14:44:23 -040066 rp->mutex_owner_pid = getpid ();
67 rp->mutex_owner_tag = tag;
68#endif
69 ASSERT (nheld < MAXLOCK);
70 /*
71 * Keep score of held mutexes so we can try to exit
72 * cleanly if the world comes to an end at the worst possible
73 * moment
74 */
75 mutexes_held[nheld++] = &rp->mutex;
Ed Warnickecb9cada2015-12-08 15:45:58 -070076}
77
Dave Barach8a7fb0c2016-07-08 14:44:23 -040078static void
79region_unlock (svm_region_t * rp)
Ed Warnickecb9cada2015-12-08 15:45:58 -070080{
Dave Barach8a7fb0c2016-07-08 14:44:23 -040081 int i, j;
Ed Warnickecb9cada2015-12-08 15:45:58 -070082#ifdef MUTEX_DEBUG
Dave Barach8a7fb0c2016-07-08 14:44:23 -040083 rp->mutex_owner_pid = 0;
84 rp->mutex_owner_tag = 0;
85#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -070086
Dave Barach8a7fb0c2016-07-08 14:44:23 -040087 for (i = nheld - 1; i >= 0; i--)
88 {
89 if (mutexes_held[i] == &rp->mutex)
90 {
91 for (j = i; j < MAXLOCK - 1; j++)
92 mutexes_held[j] = mutexes_held[j + 1];
93 nheld--;
94 goto found;
95 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070096 }
Dave Barach8a7fb0c2016-07-08 14:44:23 -040097 ASSERT (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070098
99found:
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400100 CLIB_MEMORY_BARRIER ();
101 pthread_mutex_unlock (&rp->mutex);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102}
103
104
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400105static u8 *
106format_svm_flags (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700107{
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400108 uword f = va_arg (*args, uword);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400110 if (f & SVM_FLAGS_MHEAP)
111 s = format (s, "MHEAP ");
112 if (f & SVM_FLAGS_FILE)
113 s = format (s, "FILE ");
114 if (f & SVM_FLAGS_NODATA)
115 s = format (s, "NODATA ");
116 if (f & SVM_FLAGS_NEED_DATA_INIT)
117 s = format (s, "INIT ");
118
119 return (s);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120}
121
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400122static u8 *
123format_svm_size (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124{
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400125 uword size = va_arg (*args, uword);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400127 if (size >= (1 << 20))
128 {
129 s = format (s, "(%d mb)", size >> 20);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130 }
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400131 else if (size >= (1 << 10))
132 {
133 s = format (s, "(%d kb)", size >> 10);
134 }
135 else
136 {
137 s = format (s, "(%d bytes)", size);
138 }
139 return (s);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140}
141
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400142u8 *
143format_svm_region (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144{
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400145 svm_region_t *rp = va_arg (*args, svm_region_t *);
146 int verbose = va_arg (*args, int);
147 int i;
148 uword lo, hi;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400150 s = format (s, "%s: base va 0x%x size 0x%x %U\n",
151 rp->region_name, rp->virtual_base,
152 rp->virtual_size, format_svm_size, rp->virtual_size);
153 s = format (s, " user_ctx 0x%x, bitmap_size %d\n",
154 rp->user_ctx, rp->bitmap_size);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400156 if (verbose)
157 {
158 s = format (s, " flags: 0x%x %U\n", rp->flags,
159 format_svm_flags, rp->flags);
160 s = format (s,
161 " region_heap 0x%x data_base 0x%x data_heap 0x%x\n",
162 rp->region_heap, rp->data_base, rp->data_heap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163 }
164
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400165 s = format (s, " %d clients, pids: ", vec_len (rp->client_pids));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400167 for (i = 0; i < vec_len (rp->client_pids); i++)
168 s = format (s, "%d ", rp->client_pids[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400170 s = format (s, "\n");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400172 if (verbose)
173 {
174 lo = hi = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400176 s = format (s, " VM in use: ");
177
178 for (i = 0; i < rp->bitmap_size; i++)
179 {
180 if (clib_bitmap_get_no_check (rp->bitmap, i) != 0)
181 {
182 if (lo == ~0)
183 {
184 hi = lo = rp->virtual_base + i * MMAP_PAGESIZE;
185 }
186 else
187 {
188 hi = rp->virtual_base + i * MMAP_PAGESIZE;
189 }
190 }
191 else
192 {
193 if (lo != ~0)
194 {
195 hi = rp->virtual_base + i * MMAP_PAGESIZE - 1;
196 s = format (s, " 0x%x - 0x%x (%dk)\n", lo, hi,
197 (hi - lo) >> 10);
198 lo = hi = ~0;
199 }
200 }
201 }
202 s = format (s, " rgn heap stats: %U", format_mheap,
203 rp->region_heap, 0);
204 if ((rp->flags & SVM_FLAGS_MHEAP) && rp->data_heap)
205 {
206 s = format (s, "\n data heap stats: %U", format_mheap,
207 rp->data_heap, 1);
208 }
209 s = format (s, "\n");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700210 }
211
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400212 return (s);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213}
214
215/*
216 * rnd_pagesize
217 * Round to a pagesize multiple, presumably 4k works
218 */
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400219static unsigned int
220rnd_pagesize (unsigned int size)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221{
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400222 unsigned int rv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400224 rv = (size + (MMAP_PAGESIZE - 1)) & ~(MMAP_PAGESIZE - 1);
225 return (rv);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226}
227
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400228/*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229 * svm_data_region_setup
230 */
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400231static int
232svm_data_region_create (svm_map_region_args_t * a, svm_region_t * rp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700233{
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400234 int fd;
235 u8 junk = 0;
236 uword map_size;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400238 map_size = rp->virtual_size - (MMAP_PAGESIZE + SVM_PVT_MHEAP_SIZE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400240 if (a->flags & SVM_FLAGS_FILE)
241 {
242 struct stat statb;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400244 fd = open (a->backing_file, O_RDWR | O_CREAT, 0777);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400246 if (fd < 0)
247 {
248 clib_unix_warning ("open");
249 return -1;
250 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700251
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400252 if (fstat (fd, &statb) < 0)
253 {
254 clib_unix_warning ("fstat");
255 close (fd);
256 return -2;
257 }
258
259 if (statb.st_mode & S_IFREG)
260 {
261 if (statb.st_size == 0)
262 {
263 if (lseek (fd, map_size, SEEK_SET) == (off_t) - 1)
264 {
265 clib_unix_warning ("seek region size");
266 close (fd);
267 return -3;
268 }
269 if (write (fd, &junk, 1) != 1)
270 {
271 clib_unix_warning ("set region size");
272 close (fd);
273 return -3;
274 }
275 }
276 else
277 {
278 map_size = rnd_pagesize (statb.st_size);
279 }
280 }
281 else
282 {
283 map_size = a->backing_mmap_size;
284 }
285
286 ASSERT (map_size <= rp->virtual_size -
287 (MMAP_PAGESIZE + SVM_PVT_MHEAP_SIZE));
288
289 if (mmap (rp->data_base, map_size, PROT_READ | PROT_WRITE,
290 MAP_SHARED | MAP_FIXED, fd, 0) == MAP_FAILED)
291 {
292 clib_unix_warning ("mmap");
293 close (fd);
294 return -3;
295 }
296 close (fd);
297 rp->backing_file = (char *) format (0, "%s\0", a->backing_file);
298 rp->flags |= SVM_FLAGS_FILE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299 }
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400300
301 if (a->flags & SVM_FLAGS_MHEAP)
302 {
303 rp->data_heap =
304 mheap_alloc_with_flags ((void *) (rp->data_base), map_size,
305 MHEAP_FLAG_DISABLE_VM);
306 rp->flags |= SVM_FLAGS_MHEAP;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700307 }
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400308 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309}
310
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400311static int
312svm_data_region_map (svm_map_region_args_t * a, svm_region_t * rp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700313{
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400314 int fd;
315 u8 junk = 0;
316 uword map_size;
317 struct stat statb;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700318
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400319 map_size = rp->virtual_size - (MMAP_PAGESIZE + SVM_PVT_MHEAP_SIZE);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700320
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400321 if (a->flags & SVM_FLAGS_FILE)
322 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700323
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400324 fd = open (a->backing_file, O_RDWR, 0777);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400326 if (fd < 0)
327 {
328 clib_unix_warning ("open");
329 return -1;
330 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700331
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400332 if (fstat (fd, &statb) < 0)
333 {
334 clib_unix_warning ("fstat");
335 close (fd);
336 return -2;
337 }
338
339 if (statb.st_mode & S_IFREG)
340 {
341 if (statb.st_size == 0)
342 {
343 if (lseek (fd, map_size, SEEK_SET) == (off_t) - 1)
344 {
345 clib_unix_warning ("seek region size");
346 close (fd);
347 return -3;
348 }
349 if (write (fd, &junk, 1) != 1)
350 {
351 clib_unix_warning ("set region size");
352 close (fd);
353 return -3;
354 }
355 }
356 else
357 {
358 map_size = rnd_pagesize (statb.st_size);
359 }
360 }
361 else
362 {
363 map_size = a->backing_mmap_size;
364 }
365
366 ASSERT (map_size <= rp->virtual_size
367 - (MMAP_PAGESIZE + SVM_PVT_MHEAP_SIZE));
368
369 if (mmap (rp->data_base, map_size, PROT_READ | PROT_WRITE,
370 MAP_SHARED | MAP_FIXED, fd, 0) == MAP_FAILED)
371 {
372 clib_unix_warning ("mmap");
373 close (fd);
374 return -3;
375 }
376 close (fd);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377 }
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400378 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700379}
380
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400381u8 *
382shm_name_from_svm_map_region_args (svm_map_region_args_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383{
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400384 u8 *path;
385 u8 *shm_name;
386 u8 *split_point;
387 u8 *mkdir_arg = 0;
388 int root_path_offset = 0;
389 int name_offset = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700390
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400391 if (a->root_path)
392 {
393 /* Tolerate present or absent slashes */
394 if (a->root_path[0] == '/')
395 root_path_offset++;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700396
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400397 /* create the root_path under /dev/shm
398 iterate through path creating directories */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700399
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400400 path = format (0, "/dev/shm/%s%c", &a->root_path[root_path_offset], 0);
401 split_point = path + 1;
402 vec_add1 (mkdir_arg, '-');
403
404 while (*split_point)
405 {
406 while (*split_point && *split_point != '/')
407 {
408 vec_add1 (mkdir_arg, *split_point);
409 split_point++;
410 }
411 vec_add1 (mkdir_arg, 0);
412
413 /* ready to descend another level */
414 mkdir_arg[vec_len (mkdir_arg) - 1] = '-';
415 split_point++;
416 }
417 vec_free (mkdir_arg);
418 vec_free (path);
419
420 if (a->name[0] == '/')
421 name_offset = 1;
422
423 shm_name = format (0, "/%s-%s%c", a->root_path,
424 &a->name[name_offset], 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700425 }
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400426 else
427 shm_name = format (0, "%s%c", a->name, 0);
428 return (shm_name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700429}
430
431/*
432 * svm_map_region
433 */
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400434void *
435svm_map_region (svm_map_region_args_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700436{
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400437 int svm_fd;
438 svm_region_t *rp;
439 pthread_mutexattr_t attr;
440 pthread_condattr_t cattr;
441 int deadman = 0;
442 u8 junk = 0;
443 void *oldheap;
444 int overhead_space;
445 int rv;
446 uword data_base;
447 int nbits, words, bit;
448 int pid_holding_region_lock;
449 u8 *shm_name;
450 int dead_region_recovery = 0;
451 int time_left;
452 struct stat stat;
453 struct timespec ts, tsrem;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700454
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400455 if (CLIB_DEBUG > 1)
456 clib_warning ("[%d] map region %s", getpid (), a->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700457
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400458 ASSERT ((a->size & ~(MMAP_PAGESIZE - 1)) == a->size);
459 ASSERT (a->name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700460
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400461 shm_name = shm_name_from_svm_map_region_args (a);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700462
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400463 svm_fd = shm_open ((char *) shm_name, O_RDWR | O_CREAT | O_EXCL, 0777);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700464
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400465 if (svm_fd >= 0)
466 {
467 if (fchmod (svm_fd, 0770) < 0)
468 clib_unix_warning ("segment chmod");
469 /* This turns out to fail harmlessly if the client starts first */
470 if (fchown (svm_fd, a->uid, a->gid) < 0)
471 clib_unix_warning ("segment chown [ok if client starts first]");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700472
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400473 vec_free (shm_name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700474
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400475 if (lseek (svm_fd, a->size, SEEK_SET) == (off_t) - 1)
476 {
477 clib_warning ("seek region size");
478 close (svm_fd);
479 return (0);
480 }
481 if (write (svm_fd, &junk, 1) != 1)
482 {
483 clib_warning ("set region size");
484 close (svm_fd);
485 return (0);
486 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700487
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400488 rp = mmap ((void *) a->baseva, a->size,
489 PROT_READ | PROT_WRITE, MAP_SHARED | MAP_FIXED, svm_fd, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700490
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400491 if (rp == (svm_region_t *) MAP_FAILED)
492 {
493 clib_unix_warning ("mmap create");
494 close (svm_fd);
495 return (0);
496 }
497 close (svm_fd);
498 memset (rp, 0, sizeof (*rp));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700499
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400500 if (pthread_mutexattr_init (&attr))
501 clib_unix_warning ("mutexattr_init");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700502
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400503 if (pthread_mutexattr_setpshared (&attr, PTHREAD_PROCESS_SHARED))
504 clib_unix_warning ("mutexattr_setpshared");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700505
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400506 if (pthread_mutex_init (&rp->mutex, &attr))
507 clib_unix_warning ("mutex_init");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700508
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400509 if (pthread_mutexattr_destroy (&attr))
510 clib_unix_warning ("mutexattr_destroy");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700511
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400512 if (pthread_condattr_init (&cattr))
513 clib_unix_warning ("condattr_init");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700514
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400515 if (pthread_condattr_setpshared (&cattr, PTHREAD_PROCESS_SHARED))
516 clib_unix_warning ("condattr_setpshared");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700517
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400518 if (pthread_cond_init (&rp->condvar, &cattr))
519 clib_unix_warning ("cond_init");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700520
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400521 if (pthread_condattr_destroy (&cattr))
522 clib_unix_warning ("condattr_destroy");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700523
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400524 region_lock (rp, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700525
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400526 rp->virtual_base = a->baseva;
527 rp->virtual_size = a->size;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700528
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400529 rp->region_heap =
530 mheap_alloc_with_flags ((void *) (a->baseva + MMAP_PAGESIZE),
531 SVM_PVT_MHEAP_SIZE, MHEAP_FLAG_DISABLE_VM);
532 oldheap = svm_push_pvt_heap (rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700533
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400534 rp->region_name = (char *) format (0, "%s%c", a->name, 0);
535 vec_add1 (rp->client_pids, getpid ());
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400537 nbits = rp->virtual_size / MMAP_PAGESIZE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700538
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400539 ASSERT (nbits > 0);
540 rp->bitmap_size = nbits;
541 words = (nbits + BITS (uword) - 1) / BITS (uword);
542 vec_validate (rp->bitmap, words - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700543
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400544 overhead_space = MMAP_PAGESIZE /* header */ +
545 SVM_PVT_MHEAP_SIZE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700546
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400547 bit = 0;
548 data_base = (uword) rp->virtual_base;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700549
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400550 if (a->flags & SVM_FLAGS_NODATA)
551 rp->flags |= SVM_FLAGS_NEED_DATA_INIT;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700552
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400553 do
554 {
555 clib_bitmap_set_no_check (rp->bitmap, bit, 1);
556 bit++;
557 overhead_space -= MMAP_PAGESIZE;
558 data_base += MMAP_PAGESIZE;
559 }
560 while (overhead_space > 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700561
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400562 rp->data_base = (void *) data_base;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700563
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400564 /*
565 * Note: although the POSIX spec guarantees that only one
566 * process enters this block, we have to play games
567 * to hold off clients until e.g. the mutex is ready
568 */
569 rp->version = SVM_VERSION;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700570
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400571 /* setup the data portion of the region */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700572
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400573 rv = svm_data_region_create (a, rp);
574 if (rv)
575 {
576 clib_warning ("data_region_create: %d", rv);
577 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700578
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400579 region_unlock (rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700580
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400581 svm_pop_heap (oldheap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700582
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400583 return ((void *) rp);
584 }
585 else
586 {
587 svm_fd = shm_open ((char *) shm_name, O_RDWR, 0777);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700588
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400589 vec_free (shm_name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700590
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400591 if (svm_fd < 0)
592 {
593 perror ("svm_region_map(mmap open)");
594 return (0);
595 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700596
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400597 time_left = 20;
598 while (1)
599 {
600 if (0 != fstat (svm_fd, &stat))
601 {
602 clib_warning ("fstat failed: %d", errno);
603 close (svm_fd);
604 return (0);
605 }
606 if (stat.st_size > 0)
607 {
608 break;
609 }
610 if (0 == time_left)
611 {
612 clib_warning ("waiting for resize of shm file timed out");
613 close (svm_fd);
614 return (0);
615 }
616 ts.tv_sec = 0;
617 ts.tv_nsec = 100000000;
618 while (nanosleep (&ts, &tsrem) < 0)
619 ts = tsrem;
620 time_left--;
621 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700622
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400623 rp = mmap (0, MMAP_PAGESIZE,
624 PROT_READ | PROT_WRITE, MAP_SHARED, svm_fd, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700625
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400626 if (rp == (svm_region_t *) MAP_FAILED)
627 {
628 close (svm_fd);
629 clib_warning ("mmap");
630 return (0);
631 }
632 /*
633 * We lost the footrace to create this region; make sure
634 * the winner has crossed the finish line.
635 */
636 while (rp->version == 0 && deadman++ < 5)
637 {
638 sleep (1);
639 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700640
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400641 /*
642 * <bleep>-ed?
643 */
644 if (rp->version == 0)
645 {
646 clib_warning ("rp->version %d not %d", rp->version, SVM_VERSION);
647 close (svm_fd);
648 munmap (rp, a->size);
649 return (0);
650 }
651 /* Remap now that the region has been placed */
652 a->baseva = rp->virtual_base;
653 a->size = rp->virtual_size;
654 munmap (rp, MMAP_PAGESIZE);
655
656 rp = (void *) mmap ((void *) a->baseva, a->size,
657 PROT_READ | PROT_WRITE,
658 MAP_SHARED | MAP_FIXED, svm_fd, 0);
659 if ((uword) rp == (uword) MAP_FAILED)
660 {
661 clib_unix_warning ("mmap");
662 close (svm_fd);
663 return (0);
664 }
665
666 if ((uword) rp != rp->virtual_base)
667 {
668 clib_warning ("mmap botch");
669 }
670
671 /*
672 * Try to fix the region mutex if it is held by
673 * a dead process
674 */
675 pid_holding_region_lock = rp->mutex_owner_pid;
676 if (pid_holding_region_lock && kill (pid_holding_region_lock, 0) < 0)
677 {
678 clib_warning
679 ("region %s mutex held by dead pid %d, tag %d, force unlock",
680 rp->region_name, pid_holding_region_lock, rp->mutex_owner_tag);
681 /* owner pid is nonexistent */
682 rp->mutex.__data.__owner = 0;
683 rp->mutex.__data.__lock = 0;
684 dead_region_recovery = 1;
685 }
686
687 if (dead_region_recovery)
688 clib_warning ("recovery: attempt to re-lock region");
689
690 region_lock (rp, 2);
691 oldheap = svm_push_pvt_heap (rp);
692 vec_add1 (rp->client_pids, getpid ());
693
694 if (dead_region_recovery)
695 clib_warning ("recovery: attempt svm_data_region_map");
696
697 rv = svm_data_region_map (a, rp);
698 if (rv)
699 {
700 clib_warning ("data_region_map: %d", rv);
701 }
702
703 if (dead_region_recovery)
704 clib_warning ("unlock and continue");
705
706 region_unlock (rp);
707
708 svm_pop_heap (oldheap);
709
710 return ((void *) rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700711
712 }
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400713 return 0; /* NOTREACHED */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700714}
715
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400716static void
717svm_mutex_cleanup (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700718{
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400719 int i;
720 for (i = 0; i < nheld; i++)
721 {
722 pthread_mutex_unlock (mutexes_held[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700723 }
724}
725
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400726static void
727svm_region_init_internal (char *root_path, int uid, int gid)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700728{
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400729 svm_region_t *rp;
730 svm_map_region_args_t _a, *a = &_a;
731 u64 ticks = clib_cpu_time_now ();
732 uword randomize_baseva;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700733
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400734 /* guard against klutz calls */
735 if (root_rp)
736 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700737
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400738 root_rp_refcount++;
Dave Barach16c75df2016-05-31 14:05:46 -0400739
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400740 atexit (svm_mutex_cleanup);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700741
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400742 /* Randomize the shared-VM base at init time */
743 if (MMAP_PAGESIZE <= (4 << 10))
744 randomize_baseva = (ticks & 15) * MMAP_PAGESIZE;
745 else
746 randomize_baseva = (ticks & 3) * MMAP_PAGESIZE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700747
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400748 memset (a, 0, sizeof (*a));
749 a->root_path = root_path;
750 a->name = SVM_GLOBAL_REGION_NAME;
751 a->baseva = SVM_GLOBAL_REGION_BASEVA + randomize_baseva;
752 a->size = SVM_GLOBAL_REGION_SIZE;
753 a->flags = SVM_FLAGS_NODATA;
754 a->uid = uid;
755 a->gid = gid;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700756
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400757 rp = svm_map_region (a);
758 ASSERT (rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700759
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400760 region_lock (rp, 3);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700761
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400762 /* Set up the main region data structures */
763 if (rp->flags & SVM_FLAGS_NEED_DATA_INIT)
764 {
765 svm_main_region_t *mp = 0;
766 void *oldheap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700767
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400768 rp->flags &= ~(SVM_FLAGS_NEED_DATA_INIT);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700769
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400770 oldheap = svm_push_pvt_heap (rp);
771 vec_validate (mp, 0);
772 mp->name_hash = hash_create_string (0, sizeof (uword));
773 mp->root_path = root_path ? format (0, "%s%c", root_path, 0) : 0;
774 rp->data_base = mp;
775 svm_pop_heap (oldheap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700776 }
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400777 region_unlock (rp);
778 root_rp = rp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700779}
780
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400781void
782svm_region_init (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700783{
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400784 svm_region_init_internal (0, 0 /* uid */ , 0 /* gid */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700785}
786
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400787void
788svm_region_init_chroot (char *root_path)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700789{
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400790 svm_region_init_internal (root_path, 0 /* uid */ , 0 /* gid */ );
Dave Barach16c75df2016-05-31 14:05:46 -0400791}
792
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400793void
794svm_region_init_chroot_uid_gid (char *root_path, int uid, int gid)
Dave Barach16c75df2016-05-31 14:05:46 -0400795{
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400796 svm_region_init_internal (root_path, uid, gid);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700797}
798
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400799void *
800svm_region_find_or_create (svm_map_region_args_t * a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700801{
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400802 svm_main_region_t *mp;
803 svm_region_t *rp;
804 uword need_nbits;
805 int index, i;
806 void *oldheap;
807 uword *p;
808 u8 *name;
809 svm_subregion_t *subp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700810
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400811 ASSERT (root_rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700812
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400813 a->size += MMAP_PAGESIZE + SVM_PVT_MHEAP_SIZE;
814 a->size = rnd_pagesize (a->size);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700815
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400816 region_lock (root_rp, 4);
817 oldheap = svm_push_pvt_heap (root_rp);
818 mp = root_rp->data_base;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700819
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400820 ASSERT (mp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700821
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400822 /* Map the named region from the correct chroot environment */
823 a->root_path = (char *) mp->root_path;
824
825 /*
826 * See if this region is already known. If it is, we're
827 * almost done...
828 */
829 p = hash_get_mem (mp->name_hash, a->name);
830
831 if (p)
832 {
833 rp = svm_map_region (a);
834 region_unlock (root_rp);
835 svm_pop_heap (oldheap);
836 return rp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700837 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700838
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400839 /* Create the region. */
840 ASSERT ((a->size & ~(MMAP_PAGESIZE - 1)) == a->size);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700841
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400842 need_nbits = a->size / MMAP_PAGESIZE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700843
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400844 index = 1; /* $$$ fixme, figure out how many bit to really skip */
845
846 /*
847 * Scan the virtual space allocation bitmap, looking for a large
848 * enough chunk
849 */
850 do
851 {
852 if (clib_bitmap_get_no_check (root_rp->bitmap, index) == 0)
853 {
854 for (i = 0; i < (need_nbits - 1); i++)
855 {
856 if (clib_bitmap_get_no_check (root_rp->bitmap, index + i) == 1)
857 {
858 index = index + i;
859 goto next;
860 }
861 }
862 break;
863 }
864 index++;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700865 next:;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700866 }
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400867 while (index < root_rp->bitmap_size);
868
869 /* Completely out of VM? */
870 if (index >= root_rp->bitmap_size)
871 {
872 clib_warning ("region %s: not enough VM to allocate 0x%x",
873 root_rp->region_name, a->size);
874 svm_pop_heap (oldheap);
875 region_unlock (root_rp);
876 return 0;
877 }
878
879 /*
880 * Mark virtual space allocated
881 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700882#if CLIB_DEBUG > 1
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400883 clib_warning ("set %d bits at index %d", need_nbits, index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700884#endif
885
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400886 for (i = 0; i < need_nbits; i++)
887 {
888 clib_bitmap_set_no_check (root_rp->bitmap, index + i, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700889 }
890
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400891 /* Place this region where it goes... */
892 a->baseva = root_rp->virtual_base + index * MMAP_PAGESIZE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700893
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400894 rp = svm_map_region (a);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700895
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400896 pool_get (mp->subregions, subp);
897 name = format (0, "%s%c", a->name, 0);
898 subp->subregion_name = name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700899
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400900 hash_set_mem (mp->name_hash, name, subp - mp->subregions);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700901
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400902 svm_pop_heap (oldheap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700903
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400904 region_unlock (root_rp);
905
906 return (rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700907}
908
909/*
910 * svm_region_unmap
911 *
912 * Let go of the indicated region. If the calling process
913 * is the last customer, throw it away completely.
914 * The root region mutex guarantees atomicity with respect to
915 * a new region client showing up at the wrong moment.
916 */
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400917void
918svm_region_unmap (void *rp_arg)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700919{
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400920 int i, mypid = getpid ();
921 int nclients_left;
922 void *oldheap;
923 uword virtual_base, virtual_size;
924 svm_region_t *rp = rp_arg;
925 char *name;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700926
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400927 /*
928 * If we take a signal while holding one or more shared-memory
929 * mutexes, we may end up back here from an otherwise
930 * benign exit handler. Bail out to avoid a recursive
931 * mutex screw-up.
932 */
933 if (nheld)
934 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700935
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400936 ASSERT (rp);
937 ASSERT (root_rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700938
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400939 if (CLIB_DEBUG > 1)
940 clib_warning ("[%d] unmap region %s", getpid (), rp->region_name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700941
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400942 region_lock (root_rp, 5);
943 region_lock (rp, 6);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700944
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400945 oldheap = svm_push_pvt_heap (rp); /* nb vec_delete() in the loop */
946
947 /* Remove the caller from the list of mappers */
948 for (i = 0; i < vec_len (rp->client_pids); i++)
949 {
950 if (rp->client_pids[i] == mypid)
951 {
952 vec_delete (rp->client_pids, 1, i);
953 goto found;
954 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700955 }
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400956 clib_warning ("pid %d AWOL", mypid);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700957
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400958found:
Ed Warnickecb9cada2015-12-08 15:45:58 -0700959
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400960 svm_pop_heap (oldheap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700961
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400962 nclients_left = vec_len (rp->client_pids);
963 virtual_base = rp->virtual_base;
964 virtual_size = rp->virtual_size;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700965
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400966 if (nclients_left == 0)
967 {
968 int index, nbits, i;
969 svm_main_region_t *mp;
970 uword *p;
971 svm_subregion_t *subp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700972
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400973 /* Kill the region, last guy on his way out */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700974
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400975 oldheap = svm_push_pvt_heap (root_rp);
976 name = vec_dup (rp->region_name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700977
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400978 virtual_base = rp->virtual_base;
979 virtual_size = rp->virtual_size;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700980
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400981 /* Figure out which bits to clear in the root region bitmap */
982 index = (virtual_base - root_rp->virtual_base) / MMAP_PAGESIZE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700983
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400984 nbits = (virtual_size + MMAP_PAGESIZE - 1) / MMAP_PAGESIZE;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700985
986#if CLIB_DEBUG > 1
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400987 clib_warning ("clear %d bits at index %d", nbits, index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700988#endif
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400989 /* Give back the allocated VM */
990 for (i = 0; i < nbits; i++)
991 {
992 clib_bitmap_set_no_check (root_rp->bitmap, index + i, 0);
993 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700994
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400995 mp = root_rp->data_base;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700996
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400997 p = hash_get_mem (mp->name_hash, name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700998
Dave Barach8a7fb0c2016-07-08 14:44:23 -0400999 /* Better never happen ... */
1000 if (p == NULL)
1001 {
1002 region_unlock (rp);
1003 region_unlock (root_rp);
1004 svm_pop_heap (oldheap);
1005 clib_warning ("Region name '%s' not found?", name);
1006 return;
1007 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001008
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001009 /* Remove from the root region subregion pool */
1010 subp = mp->subregions + p[0];
1011 pool_put (mp->subregions, subp);
1012
1013 hash_unset_mem (mp->name_hash, name);
1014
1015 vec_free (name);
1016
1017 region_unlock (rp);
1018 shm_unlink (rp->region_name);
1019 munmap ((void *) virtual_base, virtual_size);
1020 region_unlock (root_rp);
1021 svm_pop_heap (oldheap);
1022 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001023 }
1024
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001025 region_unlock (rp);
1026 region_unlock (root_rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001027
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001028 munmap ((void *) virtual_base, virtual_size);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001029}
1030
1031/*
1032 * svm_region_exit
1033 * There is no clean way to unlink the
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001034 * root region when all clients go away,
Ed Warnickecb9cada2015-12-08 15:45:58 -07001035 * so remove the pid entry and call it a day.
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001036 */
1037void
1038svm_region_exit ()
Ed Warnickecb9cada2015-12-08 15:45:58 -07001039{
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001040 void *oldheap;
1041 int i, mypid = getpid ();
1042 uword virtual_base, virtual_size;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001043
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001044 /* It felt so nice we did it twice... */
1045 if (root_rp == 0)
1046 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001047
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001048 if (--root_rp_refcount > 0)
1049 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001050
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001051 /*
1052 * If we take a signal while holding one or more shared-memory
1053 * mutexes, we may end up back here from an otherwise
1054 * benign exit handler. Bail out to avoid a recursive
1055 * mutex screw-up.
1056 */
1057 if (nheld)
1058 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001059
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001060 region_lock (root_rp, 7);
1061 oldheap = svm_push_pvt_heap (root_rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001062
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001063 virtual_base = root_rp->virtual_base;
1064 virtual_size = root_rp->virtual_size;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001065
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001066 for (i = 0; i < vec_len (root_rp->client_pids); i++)
1067 {
1068 if (root_rp->client_pids[i] == mypid)
1069 {
1070 vec_delete (root_rp->client_pids, 1, i);
1071 goto found;
1072 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001073 }
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001074 clib_warning ("pid %d AWOL", mypid);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001075
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001076found:
Ed Warnickecb9cada2015-12-08 15:45:58 -07001077
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001078 region_unlock (root_rp);
1079 svm_pop_heap (oldheap);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001080
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001081 root_rp = 0;
1082 munmap ((void *) virtual_base, virtual_size);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001083}
1084
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001085void
1086svm_client_scan_this_region_nolock (svm_region_t * rp)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001087{
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001088 int j;
1089 int mypid = getpid ();
1090 void *oldheap;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001091
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001092 for (j = 0; j < vec_len (rp->client_pids); j++)
1093 {
1094 if (mypid == rp->client_pids[j])
1095 continue;
1096 if (rp->client_pids[j] && (kill (rp->client_pids[j], 0) < 0))
1097 {
1098 clib_warning ("%s: cleanup ghost pid %d",
1099 rp->region_name, rp->client_pids[j]);
1100 /* nb: client vec in rp->region_heap */
1101 oldheap = svm_push_pvt_heap (rp);
1102 vec_delete (rp->client_pids, 1, j);
1103 j--;
1104 svm_pop_heap (oldheap);
1105 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001106 }
1107}
1108
1109
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001110/*
Ed Warnickecb9cada2015-12-08 15:45:58 -07001111 * Scan svm regions for dead clients
1112 */
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001113void
1114svm_client_scan (char *root_path)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001115{
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001116 int i, j;
1117 svm_main_region_t *mp;
1118 svm_map_region_args_t *a = 0;
1119 svm_region_t *root_rp;
1120 svm_region_t *rp;
1121 svm_subregion_t *subp;
1122 u8 *name = 0;
1123 u8 **svm_names = 0;
1124 void *oldheap;
1125 int mypid = getpid ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001126
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001127 vec_validate (a, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001128
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001129 svm_region_init_chroot (root_path);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001130
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001131 root_rp = svm_get_root_rp ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001132
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001133 pthread_mutex_lock (&root_rp->mutex);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001134
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001135 mp = root_rp->data_base;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001136
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001137 for (j = 0; j < vec_len (root_rp->client_pids); j++)
1138 {
1139 if (mypid == root_rp->client_pids[j])
1140 continue;
1141 if (root_rp->client_pids[j] && (kill (root_rp->client_pids[j], 0) < 0))
1142 {
1143 clib_warning ("%s: cleanup ghost pid %d",
1144 root_rp->region_name, root_rp->client_pids[j]);
1145 /* nb: client vec in root_rp->region_heap */
1146 oldheap = svm_push_pvt_heap (root_rp);
1147 vec_delete (root_rp->client_pids, 1, j);
1148 j--;
1149 svm_pop_heap (oldheap);
1150 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001151 }
1152
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001153 /*
1154 * Snapshoot names, can't hold root rp mutex across
1155 * find_or_create.
1156 */
1157 /* *INDENT-OFF* */
1158 pool_foreach (subp, mp->subregions, ({
1159 name = vec_dup (subp->subregion_name);
1160 vec_add1(svm_names, name);
1161 }));
1162 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07001163
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001164 pthread_mutex_unlock (&root_rp->mutex);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001165
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001166 for (i = 0; i < vec_len (svm_names); i++)
1167 {
1168 vec_validate (a, 0);
1169 a->root_path = root_path;
1170 a->name = (char *) svm_names[i];
1171 rp = svm_region_find_or_create (a);
1172 if (rp)
1173 {
1174 pthread_mutex_lock (&rp->mutex);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001175
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001176 svm_client_scan_this_region_nolock (rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001177
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001178 pthread_mutex_unlock (&rp->mutex);
1179 svm_region_unmap (rp);
1180 vec_free (svm_names[i]);
1181 }
1182 vec_free (a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001183 }
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001184 vec_free (svm_names);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001185
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001186 svm_region_exit ();
Ed Warnickecb9cada2015-12-08 15:45:58 -07001187
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001188 vec_free (a);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001189}
Dave Barach8a7fb0c2016-07-08 14:44:23 -04001190
1191/*
1192 * fd.io coding-style-patch-verification: ON
1193 *
1194 * Local Variables:
1195 * eval: (c-set-style "gnu")
1196 * End:
1197 */