summaryrefslogtreecommitdiffstats
path: root/src/vppinfra/pool.c
blob: 78361b5457e17feeab1de36b3374ee9f5fbfba37 (plain)
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
120
121
122
123
124
125
126
127
128
129
130
/*
 * Copyright (c) 2017 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/*
  Copyright (c) 2001, 2002, 2003, 2004 Eliot Dresselhaus

  Permission is hereby granted, free of charge, to any person obtaining
  a copy of this software and associated documentation files (the
  "Software"), to deal in the Software without restriction, including
  without limitation the rights to use, copy, modify, merge, publish,
  distribute, sublicense, and/or sell copies of the Software, and to
  permit persons to whom the Software is furnished to do so, subject to
  the following conditions:

  The above copyright notice and this permission notice shall be
  included in all copies or substantial portions of the Software.

  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

#include <vppinfra/pool.h>

__clib_export void
_pool_init_fixed (void **pool_ptr, u32 elt_size, u32 max_elts)
{
  u8 *mmap_base;
  u64 vector_size;
  u64 free_index_size;
  u64 total_size;
  u64 page_size;
  pool_header_t *fh;
  vec_header_t *vh;
  u8 *v;
  u32 *fi;
  u32 i;
  u32 set_bits;

  ASSERT (elt_size);
  ASSERT (max_elts);

  vector_size = pool_aligned_header_bytes + (u64) elt_size *max_elts;
  free_index_size = vec_header_bytes (0) + sizeof (u32) * max_elts;

  /* Round up to a cache line boundary */
  vector_size = (vector_size + CLIB_CACHE_LINE_BYTES - 1)
    & ~(CLIB_CACHE_LINE_BYTES - 1);

  free_index_size = (free_index_size + CLIB_CACHE_LINE_BYTES - 1)
    & ~(CLIB_CACHE_LINE_BYTES - 1);

  total_size = vector_size + free_index_size;

  /* Round up to an even number of pages */
  page_size = clib_mem_get_page_size ();
  total_size = (total_size + page_size - 1) & ~(page_size - 1);

  /* mmap demand zero memory */

  mmap_base = mmap (0, total_size, PROT_READ | PROT_WRITE,
		    MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);

  if (mmap_base == MAP_FAILED)
    {
      clib_unix_warning ("mmap");
      *pool_ptr = 0;
    }

  /* First comes the pool header */
  fh = (pool_header_t *) mmap_base;
  /* Find the user vector pointer */
  v = (u8 *) (mmap_base + pool_aligned_header_bytes);
  /* Finally, the vector header */
  vh = _vec_find (v);

  fh->free_bitmap = 0;		/* No free elts (yet) */
  fh->max_elts = max_elts;
  fh->mmap_base = mmap_base;
  fh->mmap_size = total_size;

  vh->len = max_elts;

  /* Build the free-index vector */
  vh = (vec_header_t *) (v + vector_size);
  vh->len = max_elts;
  fi = (u32 *) (vh + 1);

  fh->free_indices = fi;

  /* Set the entire free bitmap */
  clib_bitmap_alloc (fh->free_bitmap, max_elts);
  clib_memset (fh->free_bitmap, 0xff,
	       vec_len (fh->free_bitmap) * sizeof (uword));

  /* Clear any extraneous set bits */
  set_bits = vec_len (fh->free_bitmap) * BITS (uword);

  for (i = max_elts; i < set_bits; i++)
    fh->free_bitmap = clib_bitmap_set (fh->free_bitmap, i, 0);

  /* Create the initial free vector */
  for (i = 0; i < max_elts; i++)
    fi[i] = (max_elts - 1) - i;

  *pool_ptr = v;
}

/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "gnu")
 * End:
 */
span class="n">real = real; } static_always_inline void vat_json_set_ip4 (vat_json_node_t * json, struct in_addr ip4) { json->type = VAT_JSON_IPV4; json->ip4 = ip4; } static_always_inline void vat_json_set_ip6 (vat_json_node_t * json, struct in6_addr ip6) { json->type = VAT_JSON_IPV6; json->ip6 = ip6; } static_always_inline vat_json_node_t * vat_json_object_add (vat_json_node_t * json, const char *name) { ASSERT (VAT_JSON_OBJECT == json->type); uword pos = vec_len (json->pairs); vec_validate (json->pairs, pos); json->pairs[pos].name = name; return &json->pairs[pos].value; } static_always_inline vat_json_node_t * vat_json_array_add (vat_json_node_t * json) { ASSERT (VAT_JSON_ARRAY == json->type); uword pos = vec_len (json->array); vec_validate (json->array, pos); return &json->array[pos]; } static_always_inline vat_json_node_t * vat_json_object_add_list (vat_json_node_t * json, const char *name) { vat_json_node_t *array_node = vat_json_object_add (json, name); vat_json_init_array (array_node); return array_node; } static_always_inline void vat_json_object_add_string_copy (vat_json_node_t * json, const char *name, u8 * str) { vat_json_set_string_copy (vat_json_object_add (json, name), str); } static_always_inline void vat_json_object_add_uint (vat_json_node_t * json, const char *name, u64 number) { vat_json_set_uint (vat_json_object_add (json, name), number); } static_always_inline void vat_json_object_add_int (vat_json_node_t * json, const char *name, i64 number) { vat_json_set_int (vat_json_object_add (json, name), number); } static_always_inline void vat_json_object_add_real (vat_json_node_t * json, const char *name, f64 real) { vat_json_set_real (vat_json_object_add (json, name), real); } static_always_inline void vat_json_object_add_ip4 (vat_json_node_t * json, const char *name, struct in_addr ip4) { vat_json_set_ip4 (vat_json_object_add (json, name), ip4); } static_always_inline void vat_json_object_add_ip6 (vat_json_node_t * json, const char *name, struct in6_addr ip6) { vat_json_set_ip6 (vat_json_object_add (json, name), ip6); } static_always_inline void vat_json_array_add_int (vat_json_node_t * json, i64 number) { vat_json_set_int (vat_json_array_add (json), number); } static_always_inline void vat_json_array_add_uint (vat_json_node_t * json, u64 number) { vat_json_set_uint (vat_json_array_add (json), number); } static_always_inline void vat_json_object_add_bytes (vat_json_node_t * json, const char *name, u8 * array, uword size) { ASSERT (VAT_JSON_OBJECT == json->type); vat_json_node_t *json_array = vat_json_object_add (json, name); vat_json_init_array (json_array); int i; for (i = 0; i < size; i++) { vat_json_array_add_uint (json_array, array[i]); } } static_always_inline vat_json_node_t * vat_json_object_get_element (vat_json_node_t * json, const char *name) { int i = 0; ASSERT (VAT_JSON_OBJECT == json->type); for (i = 0; i < vec_len (json->pairs); i++) { if (0 == strcmp (json->pairs[i].name, name)) { return &json->pairs[i].value; } } return NULL; } #endif /* __JSON_FORMAT_H__ */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */