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 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
|
/*
* Memory management routine
* Copyright (C) 1998 Kunihiro Ishiguro
*
* This file is part of GNU Zebra.
*
* GNU Zebra is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2, or (at your option) any
* later version.
*
* GNU Zebra is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNU Zebra; see the file COPYING. If not, write to the Free
* Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*/
#include <zebra.h>
#include "log.h"
#include "memory.h"
void alloc_inc (int);
void alloc_dec (int);
struct message mstr [] =
{
{ MTYPE_THREAD, "thread" },
{ MTYPE_THREAD_MASTER, "thread_master" },
{ MTYPE_VECTOR, "vector" },
{ MTYPE_VECTOR_INDEX, "vector_index" },
{ MTYPE_IF, "interface" },
{ 0, NULL },
};
/* Fatal memory allocation error occured. */
static void
zerror (const char *fname, int type, size_t size)
{
fprintf (stderr, "%s : can't allocate memory for `%s' size %d\n",
fname, lookup (mstr, type), (int) size);
exit (1);
}
/* Memory allocation. */
void *
zmalloc (int type, size_t size)
{
void *memory;
memory = malloc (size);
if (memory == NULL)
zerror ("malloc", type, size);
alloc_inc (type);
return memory;
}
/* Memory allocation with num * size with cleared. */
void *
zcalloc (int type, size_t num, size_t size)
{
void *memory;
memory = calloc (num, size);
if (memory == NULL)
zerror ("calloc", type, size);
alloc_inc (type);
return memory;
}
/* Memory reallocation. */
void *
zrealloc (int type, void *ptr, size_t size)
{
void *memory;
memory = realloc (ptr, size);
if (memory == NULL)
zerror ("realloc", type, size);
return memory;
}
/* Memory free. */
void
zfree (int type, void *ptr)
{
alloc_dec (type);
free (ptr);
}
/* String duplication. */
char *
zstrdup (int type, char *str)
{
void *dup;
dup = strdup (str);
if (dup == NULL)
zerror ("strdup", type, strlen (str));
alloc_inc (type);
return dup;
}
#ifdef MEMORY_LOG
struct
{
char *name;
unsigned long alloc;
unsigned long t_malloc;
unsigned long c_malloc;
unsigned long t_calloc;
unsigned long c_calloc;
unsigned long t_realloc;
unsigned long t_free;
unsigned long c_strdup;
} mstat [MTYPE_MAX];
void
mtype_log (char *func, void *memory, const char *file, int line, int type)
{
zlog_info ("%s: %s %p %s %d", func, lookup (mstr, type), memory, file, line);
}
void *
mtype_zmalloc (const char *file, int line, int type, size_t size)
{
void *memory;
mstat[type].c_malloc++;
mstat[type].t_malloc++;
memory = zmalloc (type, size);
mtype_log ("zmalloc", memory, file, line, type);
return memory;
}
void *
mtype_zcalloc (const char *file, int line, int type, size_t num, size_t size)
{
void *memory;
mstat[type].c_calloc++;
mstat[type].t_calloc++;
memory = zcalloc (type, num, size);
mtype_log ("xcalloc", memory, file, line, type);
return memory;
}
void *
mtype_zrealloc (const char *file, int line, int type, void *ptr, size_t size)
{
void *memory;
/* Realloc need before allocated pointer. */
mstat[type].t_realloc++;
memory = zrealloc (type, ptr, size);
mtype_log ("xrealloc", memory, file, line, type);
return memory;
}
/* Important function. */
void
mtype_zfree (const char *file, int line, int type, void *ptr)
{
mstat[type].t_free++;
mtype_log ("xfree", ptr, file, line, type);
zfree (type, ptr);
}
char *
mtype_zstrdup (const char *file, int line, int type, char *str)
{
char *memory;
mstat[type].c_strdup++;
memory = zstrdup (type, str);
mtype_log ("xstrdup", memory, file, line, type);
return memory;
}
#else
struct
{
char *name;
unsigned long alloc;
} mstat [MTYPE_MAX];
#endif /* MTPYE_LOG */
/* Increment allocation counter. */
void
alloc_inc (int type)
{
mstat[type].alloc++;
}
/* Decrement allocation counter. */
void
alloc_dec (int type)
{
mstat[type].alloc--;
}
/* Looking up memory status from vty interface. */
#include "vector.h"
#include "vty.h"
#include "command.h"
/* For pretty printng of memory allocate information. */
struct memory_list
{
int index;
char *format;
};
struct memory_list memory_list_lib[] =
{
{ MTYPE_TMP, "Temporary memory: %ld\r\n" },
{ MTYPE_ROUTE_TABLE, "Route table : %ld\r\n" },
{ MTYPE_ROUTE_NODE, "Route node : %ld\r\n" },
{ MTYPE_RIB, "RIB : %ld\r\n" },
{ MTYPE_NEXTHOP, "Nexthop : %ld\r\n" },
{ MTYPE_LINK_LIST, "Link List : %ld\r\n" },
{ MTYPE_LINK_NODE, "Link Node : %ld\r\n" },
{ MTYPE_HASH, "Hash : %ld\r\n" },
{ MTYPE_HASH_BACKET, "Hash Bucket : %ld\r\n" },
{ MTYPE_ACCESS_LIST, "Access List : %ld\r\n" },
{ MTYPE_ACCESS_LIST_STR, "Access List Str : %ld\r\n" },
{ MTYPE_ACCESS_FILTER, "Access Filter : %ld\r\n" },
{ MTYPE_PREFIX_LIST, "Prefix List : %ld\r\n" },
{ MTYPE_PREFIX_LIST_STR, "Prefix List Str : %ld\r\n" },
{ MTYPE_PREFIX_LIST_ENTRY, "Prefix List Entry : %ld\r\n"},
{ MTYPE_ROUTE_MAP, "Route map : %ld\r\n" },
{ MTYPE_ROUTE_MAP_NAME, "Route map name : %ld\r\n" },
{ MTYPE_ROUTE_MAP_INDEX, "Route map index : %ld\r\n" },
{ MTYPE_ROUTE_MAP_RULE, "Route map rule : %ld\r\n" },
{ MTYPE_ROUTE_MAP_RULE_STR, "Route map rule str: %ld\r\n" },
{ MTYPE_DESC, "Command desc : %ld\r\n" },
{ MTYPE_BUFFER, "Buffer : %ld\r\n" },
{ MTYPE_BUFFER_DATA, "Buffer data : %ld\r\n" },
{ MTYPE_STREAM, "Stream : %ld\r\n" },
{ MTYPE_KEYCHAIN, "Key chain : %ld\r\n" },
{ MTYPE_KEY, "Key : %ld\r\n" },
{ MTYPE_VTY, "VTY : %ld\r\n" },
{ -1, NULL }
};
struct memory_list memory_list_bgp[] =
{
{ MTYPE_ATTR, "BGP attribute : %ld\r\n" },
{ MTYPE_AS_PATH, "BGP aspath : %ld\r\n" },
{ MTYPE_AS_SEG, "BGP aspath seg : %ld\r\n" },
{ MTYPE_AS_STR, "BGP aspath str : %ld\r\n" },
{ 0, "---------------------\r\n" },
{ MTYPE_AS_LIST, "BGP as list : %ld\r\n" },
{ MTYPE_AS_FILTER, "BGP as filter : %ld\r\n" },
{ MTYPE_AS_FILTER_STR, "BGP as filter str %ld\r\n" },
{ 0, "---------------------\r\n" },
{ MTYPE_COMMUNITY, "Community : %ld\r\n" },
{ MTYPE_COMMUNITY_VAL, "Community val : %ld\r\n" },
{ 0, "---------------------\r\n" },
{ MTYPE_CLUSTER, "Cluster list : %ld\r\n" },
{ MTYPE_CLUSTER_VAL, "Cluster list val: %ld\r\n" },
{ 0, "---------------------\r\n" },
{ MTYPE_TRANSIT, "BGP transit attr: %ld\r\n" },
{ MTYPE_TRANSIT_VAL, "BGP transit val : %ld\r\n" },
{ 0, "---------------------\r\n" },
{ MTYPE_BGP_DISTANCE, "BGP distance : %ld\r\n" },
{ MTYPE_BGP_NEXTHOP_CACHE, "BGP nexthop cache:%ld\r\n" },
{ -1, NULL }
};
struct memory_list memory_list_rip[] =
{
{ MTYPE_RIP, "RIP structure : %ld\r\n" },
{ MTYPE_RIP_INFO, "RIP route info : %ld\r\n" },
{ MTYPE_RIP_INTERFACE, "RIP interface : %ld\r\n" },
{ MTYPE_RIP_PEER, "RIP peer : %ld\r\n" },
{ MTYPE_RIP_OFFSET_LIST, "RIP offset list : %ld\r\n" },
{ MTYPE_RIP_DISTANCE, "RIP distance : %ld\r\n" },
{ -1, NULL }
};
struct memory_list memory_list_ospf[] =
{
{ MTYPE_OSPF_TOP, "OSPF top : %ld\r\n" },
{ MTYPE_OSPF_AREA, "OSPF area : %ld\r\n" },
{ MTYPE_OSPF_AREA_RANGE, "OSPF area range : %ld\r\n" },
{ MTYPE_OSPF_NETWORK, "OSPF network : %ld\r\n" },
#ifdef NBMA_ENABLE
{ MTYPE_OSPF_NEIGHBOR_STATIC,"OSPF static nbr : %ld\r\n" },
#endif /* NBMA_ENABLE */
{ MTYPE_OSPF_IF, "OSPF interface : %ld\r\n" },
{ MTYPE_OSPF_NEIGHBOR, "OSPF neighbor : %ld\r\n" },
{ MTYPE_OSPF_ROUTE, "OSPF route : %ld\r\n" },
{ MTYPE_OSPF_TMP, "OSPF tmp mem : %ld\r\n" },
{ MTYPE_OSPF_LSA, "OSPF LSA : %ld\r\n" },
{ MTYPE_OSPF_LSA_DATA, "OSPF LSA data : %ld\r\n" },
{ MTYPE_OSPF_LSDB, "OSPF LSDB : %ld\r\n" },
{ MTYPE_OSPF_PACKET, "OSPF packet : %ld\r\n" },
{ MTYPE_OSPF_FIFO, "OSPF FIFO queue : %ld\r\n" },
{ MTYPE_OSPF_VERTEX, "OSPF vertex : %ld\r\n" },
{ MTYPE_OSPF_NEXTHOP, "OSPF nexthop : %ld\r\n" },
{ MTYPE_OSPF_PATH, "OSPF path : %ld\r\n" },
{ MTYPE_OSPF_VL_DATA, "OSPF VL data : %ld\r\n" },
{ MTYPE_OSPF_CRYPT_KEY, "OSPF crypt key : %ld\r\n" },
{ MTYPE_OSPF_EXTERNAL_INFO, "OSPF ext. info : %ld\r\n" },
{ MTYPE_OSPF_DISTANCE, "OSPF distance : %ld\r\n" },
{ MTYPE_OSPF_IF_INFO, "OSPF if info : %ld\r\n" },
{ MTYPE_OSPF_IF_PARAMS, "OSPF if params : %ld\r\n" },
{ -1, NULL },
};
struct memory_list memory_list_ospf6[] =
{
{ MTYPE_OSPF6_TOP, "OSPF6 top : %ld\r\n" },
{ MTYPE_OSPF6_AREA, "OSPF6 area : %ld\r\n" },
{ MTYPE_OSPF6_IF, "OSPF6 interface : %ld\r\n" },
{ MTYPE_OSPF6_NEIGHBOR, "OSPF6 neighbor : %ld\r\n" },
{ MTYPE_OSPF6_ROUTE, "OSPF6 route : %ld\r\n" },
{ MTYPE_OSPF6_PREFIX, "OSPF6 prefix : %ld\r\n" },
{ MTYPE_OSPF6_MESSAGE, "OSPF6 message : %ld\r\n" },
{ MTYPE_OSPF6_LSA, "OSPF6 LSA : %ld\r\n" },
{ MTYPE_OSPF6_LSA_SUMMARY, "OSPF6 LSA summary : %ld\r\n" },
{ MTYPE_OSPF6_LSDB, "OSPF6 LSA database: %ld\r\n" },
{ MTYPE_OSPF6_VERTEX, "OSPF6 vertex : %ld\r\n" },
{ MTYPE_OSPF6_SPFTREE, "OSPF6 SPF tree : %ld\r\n" },
{ MTYPE_OSPF6_NEXTHOP, "OSPF6 nexthop : %ld\r\n" },
{ MTYPE_OSPF6_EXTERNAL_INFO,"OSPF6 ext. info : %ld\r\n" },
{ MTYPE_OSPF6_OTHER, "OSPF6 other : %ld\r\n" },
{ -1, NULL },
};
struct memory_list memory_list_separator[] =
{
{ 0, "---------------------\r\n" },
{-1, NULL}
};
void
show_memory_vty (struct vty *vty, struct memory_list *list)
{
struct memory_list *m;
for (m = list; m->index >= 0; m++)
if (m->index == 0)
vty_out (vty, m->format);
else
vty_out (vty, m->format, mstat[m->index].alloc);
}
DEFUN (show_memory_all,
show_memory_all_cmd,
"show memory all",
"Show running system information\n"
"Memory statistics\n"
"All memory statistics\n")
{
show_memory_vty (vty, memory_list_lib);
show_memory_vty (vty, memory_list_separator);
show_memory_vty (vty, memory_list_rip);
show_memory_vty (vty, memory_list_separator);
show_memory_vty (vty, memory_list_ospf);
show_memory_vty (vty, memory_list_separator);
show_memory_vty (vty, memory_list_ospf6);
show_memory_vty (vty, memory_list_separator);
show_memory_vty (vty, memory_list_bgp);
return CMD_SUCCESS;
}
ALIAS (show_memory_all,
show_memory_cmd,
"show memory",
"Show running system information\n"
"Memory statistics\n")
DEFUN (show_memory_lib,
show_memory_lib_cmd,
"show memory lib",
SHOW_STR
"Memory statistics\n"
"Library memory\n")
{
show_memory_vty (vty, memory_list_lib);
return CMD_SUCCESS;
}
DEFUN (show_memory_rip,
show_memory_rip_cmd,
"show memory rip",
SHOW_STR
"Memory statistics\n"
"RIP memory\n")
{
show_memory_vty (vty, memory_list_rip);
return CMD_SUCCESS;
}
DEFUN (show_memory_bgp,
show_memory_bgp_cmd,
"show memory bgp",
SHOW_STR
"Memory statistics\n"
"BGP memory\n")
{
show_memory_vty (vty, memory_list_bgp);
return CMD_SUCCESS;
}
DEFUN (show_memory_ospf,
show_memory_ospf_cmd,
"show memory ospf",
SHOW_STR
"Memory statistics\n"
"OSPF memory\n")
{
show_memory_vty (vty, memory_list_ospf);
return CMD_SUCCESS;
}
DEFUN (show_memory_ospf6,
show_memory_ospf6_cmd,
"show memory ospf6",
SHOW_STR
"Memory statistics\n"
"OSPF6 memory\n")
{
show_memory_vty (vty, memory_list_ospf6);
return CMD_SUCCESS;
}
void
memory_init ()
{
install_element (VIEW_NODE, &show_memory_cmd);
install_element (VIEW_NODE, &show_memory_all_cmd);
install_element (VIEW_NODE, &show_memory_lib_cmd);
install_element (VIEW_NODE, &show_memory_rip_cmd);
install_element (VIEW_NODE, &show_memory_bgp_cmd);
install_element (VIEW_NODE, &show_memory_ospf_cmd);
install_element (VIEW_NODE, &show_memory_ospf6_cmd);
install_element (ENABLE_NODE, &show_memory_cmd);
install_element (ENABLE_NODE, &show_memory_all_cmd);
install_element (ENABLE_NODE, &show_memory_lib_cmd);
install_element (ENABLE_NODE, &show_memory_rip_cmd);
install_element (ENABLE_NODE, &show_memory_bgp_cmd);
install_element (ENABLE_NODE, &show_memory_ospf_cmd);
install_element (ENABLE_NODE, &show_memory_ospf6_cmd);
}
|