blob: faf3f266ebdb73fc219c8ecc1511d71eca5e6c27 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
2 * Memory management routine
3 * Copyright (C) 1998 Kunihiro Ishiguro
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 * 02111-1307, USA.
21 */
22
23#include <zebra.h>
24
25#include "log.h"
26#include "memory.h"
27
28void alloc_inc (int);
29void alloc_dec (int);
30
31struct message mstr [] =
32{
33 { MTYPE_THREAD, "thread" },
34 { MTYPE_THREAD_MASTER, "thread_master" },
35 { MTYPE_VECTOR, "vector" },
36 { MTYPE_VECTOR_INDEX, "vector_index" },
37 { MTYPE_IF, "interface" },
38 { 0, NULL },
39};
40
41/* Fatal memory allocation error occured. */
42static void
43zerror (const char *fname, int type, size_t size)
44{
45 fprintf (stderr, "%s : can't allocate memory for `%s' size %d\n",
46 fname, lookup (mstr, type), (int) size);
47 exit (1);
48}
49
50/* Memory allocation. */
51void *
52zmalloc (int type, size_t size)
53{
54 void *memory;
55
56 memory = malloc (size);
57
58 if (memory == NULL)
59 zerror ("malloc", type, size);
60
61 alloc_inc (type);
62
63 return memory;
64}
65
66/* Memory allocation with num * size with cleared. */
67void *
68zcalloc (int type, size_t size)
69{
70 void *memory;
71
72 memory = calloc (1, size);
73
74 if (memory == NULL)
75 zerror ("calloc", type, size);
76
77 alloc_inc (type);
78
79 return memory;
80}
81
82/* Memory reallocation. */
83void *
84zrealloc (int type, void *ptr, size_t size)
85{
86 void *memory;
87
88 memory = realloc (ptr, size);
89 if (memory == NULL)
90 zerror ("realloc", type, size);
91 return memory;
92}
93
94/* Memory free. */
95void
96zfree (int type, void *ptr)
97{
98 alloc_dec (type);
99 free (ptr);
100}
101
102/* String duplication. */
103char *
104zstrdup (int type, char *str)
105{
106 void *dup;
107
108 dup = strdup (str);
109 if (dup == NULL)
110 zerror ("strdup", type, strlen (str));
111 alloc_inc (type);
112 return dup;
113}
114
115#ifdef MEMORY_LOG
116struct
117{
118 char *name;
119 unsigned long alloc;
120 unsigned long t_malloc;
121 unsigned long c_malloc;
122 unsigned long t_calloc;
123 unsigned long c_calloc;
124 unsigned long t_realloc;
125 unsigned long t_free;
126 unsigned long c_strdup;
127} mstat [MTYPE_MAX];
128
129void
130mtype_log (char *func, void *memory, const char *file, int line, int type)
131{
132 zlog_info ("%s: %s %p %s %d", func, lookup (mstr, type), memory, file, line);
133}
134
135void *
136mtype_zmalloc (const char *file, int line, int type, size_t size)
137{
138 void *memory;
139
140 mstat[type].c_malloc++;
141 mstat[type].t_malloc++;
142
143 memory = zmalloc (type, size);
144 mtype_log ("zmalloc", memory, file, line, type);
145
146 return memory;
147}
148
149void *
150mtype_zcalloc (const char *file, int line, int type, size_t size)
151{
152 void *memory;
153
154 mstat[type].c_calloc++;
155 mstat[type].t_calloc++;
156
157 memory = zcalloc (type, size);
158 mtype_log ("xcalloc", memory, file, line, type);
159
160 return memory;
161}
162
163void *
164mtype_zrealloc (const char *file, int line, int type, void *ptr, size_t size)
165{
166 void *memory;
167
168 /* Realloc need before allocated pointer. */
169 mstat[type].t_realloc++;
170
171 memory = zrealloc (type, ptr, size);
172
173 mtype_log ("xrealloc", memory, file, line, type);
174
175 return memory;
176}
177
178/* Important function. */
179void
180mtype_zfree (const char *file, int line, int type, void *ptr)
181{
182 mstat[type].t_free++;
183
184 mtype_log ("xfree", ptr, file, line, type);
185
186 zfree (type, ptr);
187}
188
189char *
190mtype_zstrdup (const char *file, int line, int type, char *str)
191{
192 char *memory;
193
194 mstat[type].c_strdup++;
195
196 memory = zstrdup (type, str);
197
198 mtype_log ("xstrdup", memory, file, line, type);
199
200 return memory;
201}
202#else
203struct
204{
205 char *name;
206 unsigned long alloc;
207} mstat [MTYPE_MAX];
208#endif /* MTPYE_LOG */
209
210/* Increment allocation counter. */
211void
212alloc_inc (int type)
213{
214 mstat[type].alloc++;
215}
216
217/* Decrement allocation counter. */
218void
219alloc_dec (int type)
220{
221 mstat[type].alloc--;
222}
223
224/* Looking up memory status from vty interface. */
225#include "vector.h"
226#include "vty.h"
227#include "command.h"
228
229/* For pretty printng of memory allocate information. */
230struct memory_list
231{
232 int index;
233 char *format;
234};
235
236struct memory_list memory_list_lib[] =
237{
238 { MTYPE_TMP, "Temporary memory" },
239 { MTYPE_ROUTE_TABLE, "Route table " },
240 { MTYPE_ROUTE_NODE, "Route node " },
241 { MTYPE_RIB, "RIB " },
242 { MTYPE_NEXTHOP, "Nexthop " },
243 { MTYPE_LINK_LIST, "Link List " },
244 { MTYPE_LINK_NODE, "Link Node " },
245 { MTYPE_HASH, "Hash " },
246 { MTYPE_HASH_BACKET, "Hash Bucket " },
247 { MTYPE_ACCESS_LIST, "Access List " },
248 { MTYPE_ACCESS_LIST_STR, "Access List Str " },
249 { MTYPE_ACCESS_FILTER, "Access Filter " },
250 { MTYPE_PREFIX_LIST, "Prefix List " },
251 { MTYPE_PREFIX_LIST_STR, "Prefix List Str " },
252 { MTYPE_PREFIX_LIST_ENTRY, "Prefix List Entry "},
253 { MTYPE_ROUTE_MAP, "Route map " },
254 { MTYPE_ROUTE_MAP_NAME, "Route map name " },
255 { MTYPE_ROUTE_MAP_INDEX, "Route map index " },
256 { MTYPE_ROUTE_MAP_RULE, "Route map rule " },
257 { MTYPE_ROUTE_MAP_RULE_STR, "Route map rule str" },
hassoa94434b2003-05-25 17:10:12 +0000258 { MTYPE_ROUTE_MAP_COMPILED, "Route map compiled" },
paul718e3742002-12-13 20:15:29 +0000259 { MTYPE_DESC, "Command desc " },
260 { MTYPE_BUFFER, "Buffer " },
261 { MTYPE_BUFFER_DATA, "Buffer data " },
262 { MTYPE_STREAM, "Stream " },
263 { MTYPE_KEYCHAIN, "Key chain " },
264 { MTYPE_KEY, "Key " },
265 { MTYPE_VTY, "VTY " },
266 { -1, NULL }
267};
268
269struct memory_list memory_list_bgp[] =
270{
271 { MTYPE_BGP_PEER, "BGP peer" },
272 { MTYPE_ATTR, "BGP attribute" },
273 { MTYPE_AS_PATH, "BGP aspath" },
274 { MTYPE_AS_SEG, "BGP aspath seg" },
275 { MTYPE_AS_STR, "BGP aspath str" },
276 { 0, NULL },
277 { MTYPE_BGP_TABLE, "BGP table" },
278 { MTYPE_BGP_NODE, "BGP node" },
279 { MTYPE_BGP_ADVERTISE_ATTR, "BGP adv attr" },
280 { MTYPE_BGP_ADVERTISE, "BGP adv" },
281 { MTYPE_BGP_ADJ_IN, "BGP adj in" },
282 { MTYPE_BGP_ADJ_OUT, "BGP adj out" },
283 { 0, NULL },
284 { MTYPE_AS_LIST, "BGP AS list" },
285 { MTYPE_AS_FILTER, "BGP AS filter" },
286 { MTYPE_AS_FILTER_STR, "BGP AS filter str" },
287 { 0, NULL },
288 { MTYPE_COMMUNITY, "community" },
289 { MTYPE_COMMUNITY_VAL, "community val" },
290 { MTYPE_COMMUNITY_STR, "community str" },
291 { 0, NULL },
292 { MTYPE_ECOMMUNITY, "extcommunity" },
293 { MTYPE_ECOMMUNITY_VAL, "extcommunity val" },
294 { MTYPE_ECOMMUNITY_STR, "extcommunity str" },
295 { 0, NULL },
296 { MTYPE_COMMUNITY_LIST, "community-list" },
297 { MTYPE_COMMUNITY_LIST_NAME, "community-list name" },
298 { MTYPE_COMMUNITY_LIST_ENTRY, "community-list entry" },
299 { MTYPE_COMMUNITY_LIST_CONFIG, "community-list config" },
300 { 0, NULL },
301 { MTYPE_CLUSTER, "Cluster list" },
302 { MTYPE_CLUSTER_VAL, "Cluster list val" },
303 { 0, NULL },
304 { MTYPE_TRANSIT, "BGP transit attr" },
305 { MTYPE_TRANSIT_VAL, "BGP transit val" },
306 { 0, NULL },
307 { MTYPE_BGP_DISTANCE, "BGP distance" },
308 { MTYPE_BGP_NEXTHOP_CACHE, "BGP nexthop" },
309 { MTYPE_BGP_CONFED_LIST, "BGP confed list" },
310 { MTYPE_PEER_UPDATE_SOURCE, "peer update if" },
311 { MTYPE_BGP_DAMP_INFO, "Dampening info" },
312 { MTYPE_BGP_REGEXP, "BGP regexp" },
313 { -1, NULL }
314};
315
316struct memory_list memory_list_rip[] =
317{
318 { MTYPE_RIP, "RIP structure " },
319 { MTYPE_RIP_INFO, "RIP route info " },
320 { MTYPE_RIP_INTERFACE, "RIP interface " },
321 { MTYPE_RIP_PEER, "RIP peer " },
322 { MTYPE_RIP_OFFSET_LIST, "RIP offset list " },
323 { MTYPE_RIP_DISTANCE, "RIP distance " },
324 { -1, NULL }
325};
326
hassoa94434b2003-05-25 17:10:12 +0000327struct memory_list memory_list_ripng[] =
328{
329 { MTYPE_RIPNG, "RIPng structure " },
330 { MTYPE_RIPNG_ROUTE, "RIPng route info" },
331 { MTYPE_RIPNG_AGGREGATE, "RIPng aggregate " },
332 { MTYPE_RIPNG_PEER, "RIPng peer " },
333 { MTYPE_RIPNG_OFFSET_LIST, "RIPng offset lst" },
334 { MTYPE_RIPNG_RTE_DATA, "RIPng rte data " },
335 { -1, NULL }
336};
337
paul718e3742002-12-13 20:15:29 +0000338struct memory_list memory_list_ospf[] =
339{
340 { MTYPE_OSPF_TOP, "OSPF top " },
341 { MTYPE_OSPF_AREA, "OSPF area " },
342 { MTYPE_OSPF_AREA_RANGE, "OSPF area range " },
343 { MTYPE_OSPF_NETWORK, "OSPF network " },
344#ifdef NBMA_ENABLE
345 { MTYPE_OSPF_NEIGHBOR_STATIC,"OSPF static nbr " },
346#endif /* NBMA_ENABLE */
347 { MTYPE_OSPF_IF, "OSPF interface " },
348 { MTYPE_OSPF_NEIGHBOR, "OSPF neighbor " },
349 { MTYPE_OSPF_ROUTE, "OSPF route " },
350 { MTYPE_OSPF_TMP, "OSPF tmp mem " },
351 { MTYPE_OSPF_LSA, "OSPF LSA " },
352 { MTYPE_OSPF_LSA_DATA, "OSPF LSA data " },
353 { MTYPE_OSPF_LSDB, "OSPF LSDB " },
354 { MTYPE_OSPF_PACKET, "OSPF packet " },
355 { MTYPE_OSPF_FIFO, "OSPF FIFO queue " },
356 { MTYPE_OSPF_VERTEX, "OSPF vertex " },
357 { MTYPE_OSPF_NEXTHOP, "OSPF nexthop " },
358 { MTYPE_OSPF_PATH, "OSPF path " },
359 { MTYPE_OSPF_VL_DATA, "OSPF VL data " },
360 { MTYPE_OSPF_CRYPT_KEY, "OSPF crypt key " },
361 { MTYPE_OSPF_EXTERNAL_INFO, "OSPF ext. info " },
362 { MTYPE_OSPF_DISTANCE, "OSPF distance " },
363 { MTYPE_OSPF_IF_INFO, "OSPF if info " },
364 { MTYPE_OSPF_IF_PARAMS, "OSPF if params " },
365 { -1, NULL },
366};
367
368struct memory_list memory_list_ospf6[] =
369{
370 { MTYPE_OSPF6_TOP, "OSPF6 top " },
371 { MTYPE_OSPF6_AREA, "OSPF6 area " },
372 { MTYPE_OSPF6_IF, "OSPF6 interface " },
373 { MTYPE_OSPF6_NEIGHBOR, "OSPF6 neighbor " },
374 { MTYPE_OSPF6_ROUTE, "OSPF6 route " },
375 { MTYPE_OSPF6_PREFIX, "OSPF6 prefix " },
376 { MTYPE_OSPF6_MESSAGE, "OSPF6 message " },
377 { MTYPE_OSPF6_LSA, "OSPF6 LSA " },
378 { MTYPE_OSPF6_LSA_SUMMARY, "OSPF6 LSA summary " },
379 { MTYPE_OSPF6_LSDB, "OSPF6 LSA database" },
380 { MTYPE_OSPF6_VERTEX, "OSPF6 vertex " },
381 { MTYPE_OSPF6_SPFTREE, "OSPF6 SPF tree " },
382 { MTYPE_OSPF6_NEXTHOP, "OSPF6 nexthop " },
383 { MTYPE_OSPF6_EXTERNAL_INFO,"OSPF6 ext. info " },
384 { MTYPE_OSPF6_OTHER, "OSPF6 other " },
385 { -1, NULL },
386};
387
jardin9e867fe2003-12-23 08:56:18 +0000388struct memory_list memory_list_isis[] =
389{
390 { MTYPE_ISIS, "ISIS " },
391 { MTYPE_ISIS_TMP, "ISIS TMP " },
392 { MTYPE_ISIS_CIRCUIT, "ISIS circuit " },
393 { MTYPE_ISIS_LSP, "ISIS LSP " },
394 { MTYPE_ISIS_ADJACENCY, "ISIS adjacency " },
395 { MTYPE_ISIS_AREA, "ISIS area " },
396 { MTYPE_ISIS_AREA_ADDR, "ISIS area address " },
397 { MTYPE_ISIS_TLV, "ISIS TLV " },
398 { MTYPE_ISIS_DYNHN, "ISIS dyn hostname " },
399 { MTYPE_ISIS_SPFTREE, "ISIS SPFtree " },
400 { MTYPE_ISIS_VERTEX, "ISIS vertex " },
401 { MTYPE_ISIS_ROUTE_INFO, "ISIS route info " },
402 { MTYPE_ISIS_NEXTHOP, "ISIS nexthop " },
403 { MTYPE_ISIS_NEXTHOP6, "ISIS nexthop6 " },
404 { -1, NULL },
405};
406
paul718e3742002-12-13 20:15:29 +0000407struct memory_list memory_list_separator[] =
408{
409 { 0, NULL},
410 {-1, NULL}
411};
412
413void
414show_memory_vty (struct vty *vty, struct memory_list *list)
415{
416 struct memory_list *m;
417
418 for (m = list; m->index >= 0; m++)
419 if (m->index == 0)
420 vty_out (vty, "-----------------------------\r\n");
421 else
422 vty_out (vty, "%-22s: %5ld\r\n", m->format, mstat[m->index].alloc);
423}
424
425DEFUN (show_memory_all,
426 show_memory_all_cmd,
427 "show memory all",
428 "Show running system information\n"
429 "Memory statistics\n"
430 "All memory statistics\n")
431{
432 show_memory_vty (vty, memory_list_lib);
433 show_memory_vty (vty, memory_list_separator);
434 show_memory_vty (vty, memory_list_rip);
435 show_memory_vty (vty, memory_list_separator);
hassoa94434b2003-05-25 17:10:12 +0000436 show_memory_vty (vty, memory_list_ripng);
437 show_memory_vty (vty, memory_list_separator);
paul718e3742002-12-13 20:15:29 +0000438 show_memory_vty (vty, memory_list_ospf);
439 show_memory_vty (vty, memory_list_separator);
440 show_memory_vty (vty, memory_list_ospf6);
441 show_memory_vty (vty, memory_list_separator);
jardin9e867fe2003-12-23 08:56:18 +0000442 show_memory_vty (vty, memory_list_isis);
443 show_memory_vty (vty, memory_list_separator);
paul718e3742002-12-13 20:15:29 +0000444 show_memory_vty (vty, memory_list_bgp);
445
446 return CMD_SUCCESS;
447}
448
449ALIAS (show_memory_all,
450 show_memory_cmd,
451 "show memory",
452 "Show running system information\n"
453 "Memory statistics\n")
454
455DEFUN (show_memory_lib,
456 show_memory_lib_cmd,
457 "show memory lib",
458 SHOW_STR
459 "Memory statistics\n"
460 "Library memory\n")
461{
462 show_memory_vty (vty, memory_list_lib);
463 return CMD_SUCCESS;
464}
465
466DEFUN (show_memory_rip,
467 show_memory_rip_cmd,
468 "show memory rip",
469 SHOW_STR
470 "Memory statistics\n"
471 "RIP memory\n")
472{
473 show_memory_vty (vty, memory_list_rip);
474 return CMD_SUCCESS;
475}
476
hassoa94434b2003-05-25 17:10:12 +0000477DEFUN (show_memory_ripng,
478 show_memory_ripng_cmd,
479 "show memory ripng",
480 SHOW_STR
481 "Memory statistics\n"
482 "RIPng memory\n")
483{
484 show_memory_vty (vty, memory_list_ripng);
485 return CMD_SUCCESS;
486}
487
paul718e3742002-12-13 20:15:29 +0000488DEFUN (show_memory_bgp,
489 show_memory_bgp_cmd,
490 "show memory bgp",
491 SHOW_STR
492 "Memory statistics\n"
493 "BGP memory\n")
494{
495 show_memory_vty (vty, memory_list_bgp);
496 return CMD_SUCCESS;
497}
498
499DEFUN (show_memory_ospf,
500 show_memory_ospf_cmd,
501 "show memory ospf",
502 SHOW_STR
503 "Memory statistics\n"
504 "OSPF memory\n")
505{
506 show_memory_vty (vty, memory_list_ospf);
507 return CMD_SUCCESS;
508}
509
510DEFUN (show_memory_ospf6,
511 show_memory_ospf6_cmd,
512 "show memory ospf6",
513 SHOW_STR
514 "Memory statistics\n"
515 "OSPF6 memory\n")
516{
517 show_memory_vty (vty, memory_list_ospf6);
518 return CMD_SUCCESS;
519}
520
jardin9e867fe2003-12-23 08:56:18 +0000521DEFUN (show_memory_isis,
522 show_memory_isis_cmd,
523 "show memory isis",
524 SHOW_STR
525 "Memory statistics\n"
526 "ISIS memory\n")
527{
528 show_memory_vty (vty, memory_list_isis);
529 return CMD_SUCCESS;
530}
531
paul718e3742002-12-13 20:15:29 +0000532void
533memory_init ()
534{
535 install_element (VIEW_NODE, &show_memory_cmd);
536 install_element (VIEW_NODE, &show_memory_all_cmd);
537 install_element (VIEW_NODE, &show_memory_lib_cmd);
538 install_element (VIEW_NODE, &show_memory_rip_cmd);
hassoa94434b2003-05-25 17:10:12 +0000539 install_element (VIEW_NODE, &show_memory_ripng_cmd);
paul718e3742002-12-13 20:15:29 +0000540 install_element (VIEW_NODE, &show_memory_bgp_cmd);
541 install_element (VIEW_NODE, &show_memory_ospf_cmd);
542 install_element (VIEW_NODE, &show_memory_ospf6_cmd);
jardin9e867fe2003-12-23 08:56:18 +0000543 install_element (VIEW_NODE, &show_memory_isis_cmd);
paul718e3742002-12-13 20:15:29 +0000544
545 install_element (ENABLE_NODE, &show_memory_cmd);
546 install_element (ENABLE_NODE, &show_memory_all_cmd);
547 install_element (ENABLE_NODE, &show_memory_lib_cmd);
548 install_element (ENABLE_NODE, &show_memory_rip_cmd);
hassoa94434b2003-05-25 17:10:12 +0000549 install_element (ENABLE_NODE, &show_memory_ripng_cmd);
paul718e3742002-12-13 20:15:29 +0000550 install_element (ENABLE_NODE, &show_memory_bgp_cmd);
551 install_element (ENABLE_NODE, &show_memory_ospf_cmd);
552 install_element (ENABLE_NODE, &show_memory_ospf6_cmd);
jardin9e867fe2003-12-23 08:56:18 +0000553 install_element (ENABLE_NODE, &show_memory_isis_cmd);
paul718e3742002-12-13 20:15:29 +0000554}