blob: 16372e9ef227758f6ca5b24beeb62b6b7e390d37 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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/vec.h>
39#include <vppinfra/mem.h>
40
41/* Vector resize operator. Called as needed by various macros such as
42 vec_add1() when we need to allocate memory. */
Dave Barachc3799992016-08-15 11:12:27 -040043void *
44vec_resize_allocate_memory (void *v,
45 word length_increment,
46 uword data_bytes,
47 uword header_bytes, uword data_align)
Ed Warnickecb9cada2015-12-08 15:45:58 -070048{
Dave Barachc3799992016-08-15 11:12:27 -040049 vec_header_t *vh = _vec_find (v);
Ed Warnickecb9cada2015-12-08 15:45:58 -070050 uword old_alloc_bytes, new_alloc_bytes;
Dave Barachc3799992016-08-15 11:12:27 -040051 void *old, *new;
Ed Warnickecb9cada2015-12-08 15:45:58 -070052
53 header_bytes = vec_header_bytes (header_bytes);
54
55 data_bytes += header_bytes;
56
Dave Barachc3799992016-08-15 11:12:27 -040057 if (!v)
Ed Warnickecb9cada2015-12-08 15:45:58 -070058 {
Dave Barach241e5222016-10-13 10:53:26 -040059 new = clib_mem_alloc_aligned_at_offset (data_bytes, data_align, header_bytes, 1 /* yes, call os_out_of_memory */
60 );
Benoît Ganne9fb6d402019-04-15 15:28:21 +020061 new_alloc_bytes = clib_mem_size (new);
62 CLIB_MEM_UNPOISON (new + data_bytes, new_alloc_bytes - data_bytes);
63 clib_memset (new, 0, new_alloc_bytes);
64 CLIB_MEM_POISON (new + data_bytes, new_alloc_bytes - data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -070065 v = new + header_bytes;
66 _vec_len (v) = length_increment;
67 return v;
68 }
69
70 vh->len += length_increment;
71 old = v - header_bytes;
72
73 /* Vector header must start heap object. */
74 ASSERT (clib_mem_is_heap_object (old));
75
76 old_alloc_bytes = clib_mem_size (old);
77
78 /* Need to resize? */
79 if (data_bytes <= old_alloc_bytes)
Benoît Ganne9fb6d402019-04-15 15:28:21 +020080 {
81 CLIB_MEM_UNPOISON (v, data_bytes);
82 return v;
83 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070084
85 new_alloc_bytes = (old_alloc_bytes * 3) / 2;
86 if (new_alloc_bytes < data_bytes)
87 new_alloc_bytes = data_bytes;
88
Dave Barachc3799992016-08-15 11:12:27 -040089 new =
90 clib_mem_alloc_aligned_at_offset (new_alloc_bytes, data_align,
Dave Barach241e5222016-10-13 10:53:26 -040091 header_bytes,
92 1 /* yes, call os_out_of_memory */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -070093
94 /* FIXME fail gracefully. */
Dave Barachc3799992016-08-15 11:12:27 -040095 if (!new)
96 clib_panic
97 ("vec_resize fails, length increment %d, data bytes %d, alignment %d",
98 length_increment, data_bytes, data_align);
Ed Warnickecb9cada2015-12-08 15:45:58 -070099
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200100 CLIB_MEM_UNPOISON (old, old_alloc_bytes);
Dave Barach178cf492018-11-13 16:34:13 -0500101 clib_memcpy_fast (new, old, old_alloc_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102 clib_mem_free (old);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103
104 /* Allocator may give a bit of extra room. */
Dave Barach6a5adc32018-07-04 10:56:23 -0400105 new_alloc_bytes = clib_mem_size (new);
106 v = new;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700107
108 /* Zero new memory. */
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200109 CLIB_MEM_UNPOISON (new + data_bytes, new_alloc_bytes - data_bytes);
Florin Coras9e041b12019-03-20 23:16:15 -0700110 memset (v + old_alloc_bytes, 0, new_alloc_bytes - old_alloc_bytes);
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200111 CLIB_MEM_POISON (new + data_bytes, new_alloc_bytes - data_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112
113 return v + header_bytes;
Dave Barachc3799992016-08-15 11:12:27 -0400114}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115
Dave Barachc3799992016-08-15 11:12:27 -0400116uword
117clib_mem_is_vec_h (void *v, uword header_bytes)
118{
119 return clib_mem_is_heap_object (vec_header (v, header_bytes));
120}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121
122/** \cond */
123
124#ifdef TEST
125
126#include <stdio.h>
127
Dave Barachc3799992016-08-15 11:12:27 -0400128void
129main (int argc, char *argv[])
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130{
131 word n = atoi (argv[1]);
Dave Barachc3799992016-08-15 11:12:27 -0400132 word i, *x = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133
Dave Barachc3799992016-08-15 11:12:27 -0400134 typedef struct
135 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136 word x, y, z;
137 } FOO;
138
Dave Barachc3799992016-08-15 11:12:27 -0400139 FOO *foos = vec_init (FOO, 10), *f;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140
141 vec_validate (foos, 100);
142 foos[100].x = 99;
143
144 _vec_len (foos) = 0;
145 for (i = 0; i < n; i++)
146 {
147 vec_add1 (x, i);
148 vec_add2 (foos, f, 1);
Dave Barachc3799992016-08-15 11:12:27 -0400149 f->x = 2 * i;
150 f->y = 3 * i;
151 f->z = 4 * i;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152 }
153
154 {
155 word n = 2;
156 word m = 42;
157 vec_delete (foos, n, m);
158 }
159
160 {
161 word n = 2;
162 word m = 42;
163 vec_insert (foos, n, m);
164 }
165
166 vec_free (x);
167 vec_free (foos);
168 exit (0);
169}
170#endif
171/** \endcond */
Dave Barachc3799992016-08-15 11:12:27 -0400172
173/*
174 * fd.io coding-style-patch-verification: ON
175 *
176 * Local Variables:
177 * eval: (c-set-style "gnu")
178 * End:
179 */