FD.io VPP  v16.06
Vector Packet Processing
mem_mheap.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 /*
16  Copyright (c) 2001, 2002, 2003 Eliot Dresselhaus
17 
18  Permission is hereby granted, free of charge, to any person obtaining
19  a copy of this software and associated documentation files (the
20  "Software"), to deal in the Software without restriction, including
21  without limitation the rights to use, copy, modify, merge, publish,
22  distribute, sublicense, and/or sell copies of the Software, and to
23  permit persons to whom the Software is furnished to do so, subject to
24  the following conditions:
25 
26  The above copyright notice and this permission notice shall be
27  included in all copies or substantial portions of the Software.
28 
29  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
30  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
32  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
33  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
34  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
35  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36 */
37 
38 #include <vppinfra/format.h>
39 #include <vppinfra/mheap.h>
40 #include <vppinfra/os.h>
41 
42 /* Valgrind stuff. */
43 #include <vppinfra/memcheck.h>
44 #include <vppinfra/valgrind.h>
45 
46 clib_smp_main_t clib_smp_main = {
47  .n_cpus = 0,
48  .log2_n_per_cpu_stack_bytes = 20,
49  .log2_n_per_cpu_vm_bytes = 28,
50  .n_tls_4k_pages = 1,
51 };
52 
54 
55 void clib_mem_exit (void)
56 {
57  u8 * heap = clib_mem_get_per_cpu_heap ();
58  if (heap)
59  mheap_free (heap);
61 }
62 
63 /* Initialize CLIB heap based on memory/size given by user.
64  Set memory to 0 and CLIB will try to allocate its own heap. */
65 void * clib_mem_init (void * memory, uword memory_size)
66 {
67  u8 * heap;
68 
69  if (memory || memory_size)
70  heap = mheap_alloc (memory, memory_size);
71  else
72  {
73  /* Allocate lots of address space since this will limit
74  the amount of memory the program can allocate.
75  In the kernel we're more conservative since some architectures
76  (e.g. mips) have pretty small kernel virtual address spaces. */
77 #ifdef __KERNEL__
78 #define MAX_VM_MEG 64
79 #else
80 #define MAX_VM_MEG 1024
81 #endif
82 
83  uword alloc_size = MAX_VM_MEG << 20;
84  uword tries = 16;
85 
86  while (1)
87  {
88  heap = mheap_alloc (0, alloc_size);
89  if (heap)
90  break;
91  alloc_size = (alloc_size * 3) / 4;
92  tries--;
93  if (tries == 0)
94  break;
95  }
96  }
97 
98  clib_mem_set_heap (heap);
99 
100  return heap;
101 }
102 
103 #ifdef CLIB_LINUX_KERNEL
104 #include <asm/page.h>
105 
107 { return PAGE_SIZE; }
108 #endif
109 
110 #ifdef CLIB_UNIX
112 { return getpagesize (); }
113 #endif
114 
115 /* Make a guess for standalone. */
116 #ifdef CLIB_STANDALONE
118 { return 4096; }
119 #endif
120 
121 u8 * format_clib_mem_usage (u8 * s, va_list * va)
122 {
123  int verbose = va_arg (*va, int);
124  return format (s, "%U", format_mheap, clib_mem_get_heap (), verbose);
125 }
126 
128 { mheap_usage (clib_mem_get_heap (), u); }
129 
130 /* Call serial number for debugger breakpoints. */
132 
133 void clib_mem_validate (void)
134 {
136  clib_warning ("clib_mem_validate disabled (small object cache is ON)");
137  else
138  {
141  }
142 }
143 
144 void clib_mem_trace (int enable)
145 { mheap_trace (clib_mem_get_heap (), enable); }
void clib_mem_usage(clib_mem_usage_t *u)
Definition: mem_mheap.c:127
u8 * format_clib_mem_usage(u8 *s, va_list *va)
Definition: mem_mheap.c:121
void * mheap_alloc(void *memory, uword size)
Definition: mheap.c:908
#define CLIB_MAX_MHEAPS
Definition: mem.h:49
always_inline void * clib_mem_set_per_cpu_heap(u8 *new_heap)
Definition: mem.h:60
u8 * format_mheap(u8 *s, va_list *va)
Definition: mheap.c:1113
void * clib_mem_init(void *memory, uword memory_size)
Definition: mem_mheap.c:65
vhost_user_memory_t memory
Definition: vhost-user.h:79
void * clib_per_cpu_mheaps[CLIB_MAX_MHEAPS]
Definition: mem_mheap.c:53
always_inline void * clib_mem_get_per_cpu_heap(void)
Definition: mem.h:54
void mheap_usage(void *v, clib_mem_usage_t *usage)
Definition: mheap.c:1026
#define clib_warning(format, args...)
Definition: error.h:59
#define mheap_free(v)
Definition: mheap.h:55
#define MAX_VM_MEG
u32 n_cpus
Definition: smp.h:54
always_inline void * clib_mem_set_heap(void *heap)
Definition: mem.h:190
always_inline void * clib_mem_get_heap(void)
Definition: mem.h:187
uword clib_mem_validate_serial
Definition: mem_mheap.c:131
void clib_mem_exit(void)
Definition: mem_mheap.c:55
uword clib_mem_get_page_size(void)
Definition: mem_mheap.c:111
void mheap_trace(void *v, int enable)
Definition: mheap.c:1549
void clib_mem_trace(int enable)
Definition: mem_mheap.c:144
u8 * format(u8 *s, char *fmt,...)
Definition: format.c:405
u64 uword
Definition: types.h:112
#define MHEAP_HAVE_SMALL_OBJECT_CACHE
unsigned char u8
Definition: types.h:56
void clib_mem_validate(void)
Definition: mem_mheap.c:133
void mheap_validate(void *v)
Definition: mheap.c:1281