blob: 1f1132afdc2b079c85c7689694c1525cada5768b [file] [log] [blame]
Klement Sekera58eb8662017-06-09 06:06:49 +02001/*
2 *------------------------------------------------------------------
3 * Copyright (c) 2009 Cisco and/or its affiliates.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *------------------------------------------------------------------
16 */
17
18#ifndef __included_svm_common_h__
19#define __included_svm_common_h__
20
21#include <stdarg.h>
22#include <pthread.h>
Nathan Mooscf5ba262021-01-15 14:03:01 -080023#include <sys/user.h>
Klement Sekera58eb8662017-06-09 06:06:49 +020024#include <vppinfra/types.h>
25
26#define SVM_VERSION ((1<<16) | 1) /* set to declare region ready. */
27
28#define SVM_FLAGS_MHEAP (1<<0) /* region contains an mheap */
29#define SVM_FLAGS_FILE (1<<1) /* region backed by one or more files */
30#define SVM_FLAGS_NODATA (1<<2) /* region will be further subdivided */
31#define SVM_FLAGS_NEED_DATA_INIT (1<<3)
32
33#define SVM_PVT_MHEAP_SIZE (128<<10) /* region's private mheap (128k) */
34
35typedef struct svm_region_
36{
37 volatile uword version;
38 pthread_mutex_t mutex;
39 pthread_cond_t condvar;
40 int mutex_owner_pid; /* in case of trouble */
41 int mutex_owner_tag;
42 uword flags;
43 uword virtual_base; /* base of the region object */
44 uword virtual_size;
45 void *region_heap;
46 void *data_base; /* data portion base address */
47 void *data_heap; /* data heap, if any */
48 volatile void *user_ctx; /* user context pointer */
49 /* stuff allocated in the region's heap */
50 uword bitmap_size; /* nbits in virtual alloc bitmap */
51 uword *bitmap; /* the bitmap */
52 char *region_name;
53 char *backing_file;
54 char **filenames;
55 uword *client_pids;
56 /* pad */
57
58 /* next page:
59 * (64K) clib heap for the region itself
60 *
61 * data_base -> whatever is in this region
62 */
63
64} svm_region_t;
65
66typedef struct svm_map_region_args_
67{
68 const char *root_path; /* NULL means use the truly global arena */
69 const char *name;
David Johnsond9818dd2018-12-14 14:53:41 -050070 uword baseva;
Klement Sekera58eb8662017-06-09 06:06:49 +020071 u64 size;
72 u64 pvt_heap_size;
73 uword flags;
74 char *backing_file;
75 uword backing_mmap_size;
76 /* uid, gid to own the svm region(s) */
77 int uid;
78 int gid;
79} svm_map_region_args_t;
80
David Johnsond9818dd2018-12-14 14:53:41 -050081/*
82 * Memory mapped to high addresses for session/vppcom/vcl/etc...
83 */
84#if __WORDSIZE == 64
Benoît Ganne9fb6d402019-04-15 15:28:21 +020085#ifdef CLIB_SANITIZE_ADDR
Benoît Gannee3e9d8a2020-11-17 17:58:59 +010086#define HIGH_SEGMENT_BASEVA 0x300000000000 /* DO NOT CHANGE THIS: YOU'LL BREAK ASAN */
Benoît Ganne9fb6d402019-04-15 15:28:21 +020087#else /* CLIB_SANITIZE_ADDR */
Nathan Skrzypczakf260eb92020-11-10 16:57:49 +010088#define HIGH_SEGMENT_BASEVA (128ULL << 30) /* 128GB */
Benoît Ganne9fb6d402019-04-15 15:28:21 +020089#endif /* CLIB_SANITIZE_ADDR */
David Johnsond9818dd2018-12-14 14:53:41 -050090#elif __WORDSIZE == 32
91#define HIGH_SEGMENT_BASEVA (3584UL << 20) /* 3.5GB */
92#else
93#error "unknown __WORDSIZE"
94#endif
Klement Sekera58eb8662017-06-09 06:06:49 +020095
96/*
97 * Memory shared across all router instances. Packet buffers, etc
98 * Base should be "out of the way," and size should be big enough to
99 * cover everything we plan to put here.
100 */
Klement Sekera58eb8662017-06-09 06:06:49 +0200101#define SVM_GLOBAL_REGION_SIZE (64<<20)
102#define SVM_GLOBAL_REGION_NAME "/global_vm"
Damjan Marionaec8f892018-01-08 16:35:35 +0100103u64 svm_get_global_region_base_va ();
Klement Sekera58eb8662017-06-09 06:06:49 +0200104
105/*
106 * Memory shared across individual router instances.
107 */
108#define SVM_OVERLAY_REGION_BASEVA \
109 (SVM_GLOBAL_REGION_BASEVA + SVM_GLOBAL_REGION_SIZE)
110#define SVM_OVERLAY_REGION_SIZE (1<<20)
111#define SVM_OVERLAY_REGION_BASENAME "/overlay_vm"
112
113typedef struct
114{
115 u8 *subregion_name;
116} svm_subregion_t;
117
118typedef struct
119{
120 svm_subregion_t *subregions; /* subregion pool */
121 uword *name_hash;
122 u8 *root_path;
Dave Wallace19296112017-08-31 15:54:11 -0400123 int uid;
124 int gid;
Klement Sekera58eb8662017-06-09 06:06:49 +0200125} svm_main_region_t;
126
127
128void *svm_region_find_or_create (svm_map_region_args_t * a);
129void svm_region_init (void);
Dave Barach59b25652017-09-10 15:04:27 -0400130void svm_region_init_mapped_region (svm_map_region_args_t * a,
131 svm_region_t * rp);
Ole Troan3cdc25f2017-08-17 11:07:33 +0200132int svm_region_init_chroot (const char *root_path);
Klement Sekera58eb8662017-06-09 06:06:49 +0200133void svm_region_init_chroot_uid_gid (const char *root_path, int uid, int gid);
134void svm_region_init_args (svm_map_region_args_t * a);
135void svm_region_exit (void);
Florin Corasd6c30d92018-01-29 05:11:24 -0800136void svm_region_exit_client (void);
Klement Sekera58eb8662017-06-09 06:06:49 +0200137void svm_region_unmap (void *rp_arg);
Florin Corasd6c30d92018-01-29 05:11:24 -0800138void svm_region_unmap_client (void *rp_arg);
Klement Sekera58eb8662017-06-09 06:06:49 +0200139void svm_client_scan (const char *root_path);
140void svm_client_scan_this_region_nolock (svm_region_t * rp);
141u8 *shm_name_from_svm_map_region_args (svm_map_region_args_t * a);
142u8 *format_svm_region (u8 * s, va_list * args);
143
144svm_region_t *svm_get_root_rp (void);
145
146#endif /* __included_svm_common_h__ */
147
148/*
149 * fd.io coding-style-patch-verification: ON
150 *
151 * Local Variables:
152 * eval: (c-set-style "gnu")
153 * End:
154 */