memory.c
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:13k
源码类别:

网络

开发平台:

Unix_Linux

  1. /*
  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. #include <zebra.h>
  23. #include "log.h"
  24. #include "memory.h"
  25. void alloc_inc (int);
  26. void alloc_dec (int);
  27. struct message mstr [] =
  28. {
  29.   { MTYPE_THREAD, "thread" },
  30.   { MTYPE_THREAD_MASTER, "thread_master" },
  31.   { MTYPE_VECTOR, "vector" },
  32.   { MTYPE_VECTOR_INDEX, "vector_index" },
  33.   { MTYPE_IF, "interface" },
  34.   { 0, NULL },
  35. };
  36. /* Fatal memory allocation error occured. */
  37. static void
  38. zerror (const char *fname, int type, size_t size)
  39. {
  40.   fprintf (stderr, "%s : can't allocate memory for `%s' size %dn", 
  41.    fname, lookup (mstr, type), (int) size);
  42.   exit (1);
  43. }
  44. /* Memory allocation. */
  45. void *
  46. zmalloc (int type, size_t size)
  47. {
  48.   void *memory;
  49.   memory = malloc (size);
  50.   if (memory == NULL)
  51.     zerror ("malloc", type, size);
  52.   alloc_inc (type);
  53.   return memory;
  54. }
  55. /* Memory allocation with num * size with cleared. */
  56. void *
  57. zcalloc (int type, size_t size)
  58. {
  59.   void *memory;
  60.   memory = calloc (1, size);
  61.   if (memory == NULL)
  62.     zerror ("calloc", type, size);
  63.   alloc_inc (type);
  64.   return memory;
  65. }
  66. /* Memory reallocation. */
  67. void *
  68. zrealloc (int type, void *ptr, size_t size)
  69. {
  70.   void *memory;
  71.   memory = realloc (ptr, size);
  72.   if (memory == NULL)
  73.     zerror ("realloc", type, size);
  74.   return memory;
  75. }
  76. /* Memory free. */
  77. void
  78. zfree (int type, void *ptr)
  79. {
  80.   alloc_dec (type);
  81.   free (ptr);
  82. }
  83. /* String duplication. */
  84. char *
  85. zstrdup (int type, char *str)
  86. {
  87.   void *dup;
  88.   dup = strdup (str);
  89.   if (dup == NULL)
  90.     zerror ("strdup", type, strlen (str));
  91.   alloc_inc (type);
  92.   return dup;
  93. }
  94. #ifdef MEMORY_LOG
  95. struct 
  96. {
  97.   char *name;
  98.   unsigned long alloc;
  99.   unsigned long t_malloc;
  100.   unsigned long c_malloc;
  101.   unsigned long t_calloc;
  102.   unsigned long c_calloc;
  103.   unsigned long t_realloc;
  104.   unsigned long t_free;
  105.   unsigned long c_strdup;
  106. } mstat [MTYPE_MAX];
  107. void
  108. mtype_log (char *func, void *memory, const char *file, int line, int type)
  109. {
  110.   zlog_info ("%s: %s %p %s %d", func, lookup (mstr, type), memory, file, line);
  111. }
  112. void *
  113. mtype_zmalloc (const char *file, int line, int type, size_t size)
  114. {
  115.   void *memory;
  116.   mstat[type].c_malloc++;
  117.   mstat[type].t_malloc++;
  118.   memory = zmalloc (type, size);
  119.   mtype_log ("zmalloc", memory, file, line, type);
  120.   return memory;
  121. }
  122. void *
  123. mtype_zcalloc (const char *file, int line, int type, size_t size)
  124. {
  125.   void *memory;
  126.   mstat[type].c_calloc++;
  127.   mstat[type].t_calloc++;
  128.   memory = zcalloc (type, size);
  129.   mtype_log ("xcalloc", memory, file, line, type);
  130.   return memory;
  131. }
  132. void *
  133. mtype_zrealloc (const char *file, int line, int type, void *ptr, size_t size)
  134. {
  135.   void *memory;
  136.   /* Realloc need before allocated pointer. */
  137.   mstat[type].t_realloc++;
  138.   memory = zrealloc (type, ptr, size);
  139.   mtype_log ("xrealloc", memory, file, line, type);
  140.   return memory;
  141. }
  142. /* Important function. */
  143. void 
  144. mtype_zfree (const char *file, int line, int type, void *ptr)
  145. {
  146.   mstat[type].t_free++;
  147.   mtype_log ("xfree", ptr, file, line, type);
  148.   zfree (type, ptr);
  149. }
  150. char *
  151. mtype_zstrdup (const char *file, int line, int type, char *str)
  152. {
  153.   char *memory;
  154.   mstat[type].c_strdup++;
  155.   memory = zstrdup (type, str);
  156.   
  157.   mtype_log ("xstrdup", memory, file, line, type);
  158.   return memory;
  159. }
  160. #else
  161. struct 
  162. {
  163.   char *name;
  164.   unsigned long alloc;
  165. } mstat [MTYPE_MAX];
  166. #endif /* MTPYE_LOG */
  167. /* Increment allocation counter. */
  168. void
  169. alloc_inc (int type)
  170. {
  171.   mstat[type].alloc++;
  172. }
  173. /* Decrement allocation counter. */
  174. void
  175. alloc_dec (int type)
  176. {
  177.   mstat[type].alloc--;
  178. }
  179. /* Looking up memory status from vty interface. */
  180. #include "vector.h"
  181. #include "vty.h"
  182. #include "command.h"
  183. /* For pretty printng of memory allocate information. */
  184. struct memory_list
  185. {
  186.   int index;
  187.   char *format;
  188. };
  189. struct memory_list memory_list_lib[] =
  190. {
  191.   { MTYPE_TMP,                "Temporary memory" },
  192.   { MTYPE_ROUTE_TABLE,        "Route table     " },
  193.   { MTYPE_ROUTE_NODE,         "Route node      " },
  194.   { MTYPE_RIB,                "RIB             " },
  195.   { MTYPE_NEXTHOP,            "Nexthop         " },
  196.   { MTYPE_LINK_LIST,          "Link List       " },
  197.   { MTYPE_LINK_NODE,          "Link Node       " },
  198.   { MTYPE_HASH,               "Hash            " },
  199.   { MTYPE_HASH_BACKET,        "Hash Bucket     " },
  200.   { MTYPE_ACCESS_LIST,        "Access List     " },
  201.   { MTYPE_ACCESS_LIST_STR,    "Access List Str " },
  202.   { MTYPE_ACCESS_FILTER,      "Access Filter   " },
  203.   { MTYPE_PREFIX_LIST,        "Prefix List     " },
  204.   { MTYPE_PREFIX_LIST_STR,    "Prefix List Str " },
  205.   { MTYPE_PREFIX_LIST_ENTRY,  "Prefix List Entry "},
  206.   { MTYPE_ROUTE_MAP,          "Route map       " },
  207.   { MTYPE_ROUTE_MAP_NAME,     "Route map name  " },
  208.   { MTYPE_ROUTE_MAP_INDEX,    "Route map index " },
  209.   { MTYPE_ROUTE_MAP_RULE,     "Route map rule  " },
  210.   { MTYPE_ROUTE_MAP_RULE_STR, "Route map rule str" },
  211.   { MTYPE_DESC,               "Command desc    " },
  212.   { MTYPE_BUFFER,             "Buffer          " },
  213.   { MTYPE_BUFFER_DATA,        "Buffer data     " },
  214.   { MTYPE_STREAM,             "Stream          " },
  215.   { MTYPE_KEYCHAIN,           "Key chain       " },
  216.   { MTYPE_KEY,                "Key             " },
  217.   { MTYPE_VTY,                "VTY             " },
  218.   { -1, NULL }
  219. };
  220. struct memory_list memory_list_bgp[] =
  221. {
  222.   { MTYPE_BGP_PEER,               "BGP peer" },
  223.   { MTYPE_ATTR,                   "BGP attribute" },
  224.   { MTYPE_AS_PATH,                "BGP aspath" },
  225.   { MTYPE_AS_SEG,                 "BGP aspath seg" },
  226.   { MTYPE_AS_STR,                 "BGP aspath str" },
  227.   { 0, NULL },
  228.   { MTYPE_BGP_TABLE,              "BGP table" },
  229.   { MTYPE_BGP_NODE,               "BGP node" },
  230.   { MTYPE_BGP_ADVERTISE_ATTR,     "BGP adv attr" },
  231.   { MTYPE_BGP_ADVERTISE,          "BGP adv" },
  232.   { MTYPE_BGP_ADJ_IN,             "BGP adj in" },
  233.   { MTYPE_BGP_ADJ_OUT,            "BGP adj out" },
  234.   { 0, NULL },
  235.   { MTYPE_AS_LIST,                "BGP AS list" },
  236.   { MTYPE_AS_FILTER,              "BGP AS filter" },
  237.   { MTYPE_AS_FILTER_STR,          "BGP AS filter str" },
  238.   { 0, NULL },
  239.   { MTYPE_COMMUNITY,              "community" },
  240.   { MTYPE_COMMUNITY_VAL,          "community val" },
  241.   { MTYPE_COMMUNITY_STR,          "community str" },
  242.   { 0, NULL },
  243.   { MTYPE_ECOMMUNITY,             "extcommunity" },
  244.   { MTYPE_ECOMMUNITY_VAL,         "extcommunity val" },
  245.   { MTYPE_ECOMMUNITY_STR,         "extcommunity str" },
  246.   { 0, NULL },
  247.   { MTYPE_COMMUNITY_LIST,         "community-list" },
  248.   { MTYPE_COMMUNITY_LIST_NAME,    "community-list name" },
  249.   { MTYPE_COMMUNITY_LIST_ENTRY,   "community-list entry" },
  250.   { MTYPE_COMMUNITY_LIST_CONFIG,  "community-list config" },
  251.   { 0, NULL },
  252.   { MTYPE_CLUSTER,                "Cluster list" },
  253.   { MTYPE_CLUSTER_VAL,            "Cluster list val" },
  254.   { 0, NULL },
  255.   { MTYPE_TRANSIT,                "BGP transit attr" },
  256.   { MTYPE_TRANSIT_VAL,            "BGP transit val" },
  257.   { 0, NULL },
  258.   { MTYPE_BGP_DISTANCE,           "BGP distance" },
  259.   { MTYPE_BGP_NEXTHOP_CACHE,      "BGP nexthop" },
  260.   { MTYPE_BGP_CONFED_LIST,        "BGP confed list" },
  261.   { MTYPE_PEER_UPDATE_SOURCE,     "peer update if" },
  262.   { MTYPE_BGP_DAMP_INFO,          "Dampening info" },
  263.   { MTYPE_BGP_REGEXP,             "BGP regexp" },
  264.   { -1, NULL }
  265. };
  266. struct memory_list memory_list_rip[] =
  267. {
  268.   { MTYPE_RIP,                "RIP structure   " },
  269.   { MTYPE_RIP_INFO,           "RIP route info  " },
  270.   { MTYPE_RIP_INTERFACE,      "RIP interface   " },
  271.   { MTYPE_RIP_PEER,           "RIP peer        " },
  272.   { MTYPE_RIP_OFFSET_LIST,    "RIP offset list " },
  273.   { MTYPE_RIP_DISTANCE,       "RIP distance    " },
  274.   { -1, NULL }
  275. };
  276. struct memory_list memory_list_ospf[] =
  277. {
  278.   { MTYPE_OSPF_TOP,           "OSPF top        " },
  279.   { MTYPE_OSPF_AREA,          "OSPF area       " },
  280.   { MTYPE_OSPF_AREA_RANGE,    "OSPF area range " },
  281.   { MTYPE_OSPF_NETWORK,       "OSPF network    " },
  282. #ifdef NBMA_ENABLE
  283.   { MTYPE_OSPF_NEIGHBOR_STATIC,"OSPF static nbr " },
  284. #endif  /* NBMA_ENABLE */
  285.   { MTYPE_OSPF_IF,            "OSPF interface  " },
  286.   { MTYPE_OSPF_NEIGHBOR,      "OSPF neighbor   " },
  287.   { MTYPE_OSPF_ROUTE,         "OSPF route      " },
  288.   { MTYPE_OSPF_TMP,           "OSPF tmp mem    " },
  289.   { MTYPE_OSPF_LSA,           "OSPF LSA        " },
  290.   { MTYPE_OSPF_LSA_DATA,      "OSPF LSA data   " },
  291.   { MTYPE_OSPF_LSDB,          "OSPF LSDB       " },
  292.   { MTYPE_OSPF_PACKET,        "OSPF packet     " },
  293.   { MTYPE_OSPF_FIFO,          "OSPF FIFO queue " },
  294.   { MTYPE_OSPF_VERTEX,        "OSPF vertex     " },
  295.   { MTYPE_OSPF_NEXTHOP,       "OSPF nexthop    " },
  296.   { MTYPE_OSPF_PATH,       "OSPF path       " },
  297.   { MTYPE_OSPF_VL_DATA,       "OSPF VL data    " },
  298.   { MTYPE_OSPF_CRYPT_KEY,     "OSPF crypt key  " },
  299.   { MTYPE_OSPF_EXTERNAL_INFO, "OSPF ext. info  " },
  300.   { MTYPE_OSPF_DISTANCE,      "OSPF distance   " },
  301.   { MTYPE_OSPF_IF_INFO,       "OSPF if info    " },
  302.   { MTYPE_OSPF_IF_PARAMS,     "OSPF if params  " },
  303.   { -1, NULL },
  304. };
  305. struct memory_list memory_list_ospf6[] =
  306. {
  307.   { MTYPE_OSPF6_TOP,          "OSPF6 top         " },
  308.   { MTYPE_OSPF6_AREA,         "OSPF6 area        " },
  309.   { MTYPE_OSPF6_IF,           "OSPF6 interface   " },
  310.   { MTYPE_OSPF6_NEIGHBOR,     "OSPF6 neighbor    " },
  311.   { MTYPE_OSPF6_ROUTE,        "OSPF6 route       " },
  312.   { MTYPE_OSPF6_PREFIX,       "OSPF6 prefix      " },
  313.   { MTYPE_OSPF6_MESSAGE,      "OSPF6 message     " },
  314.   { MTYPE_OSPF6_LSA,          "OSPF6 LSA         " },
  315.   { MTYPE_OSPF6_LSA_SUMMARY,  "OSPF6 LSA summary " },
  316.   { MTYPE_OSPF6_LSDB,         "OSPF6 LSA database" },
  317.   { MTYPE_OSPF6_VERTEX,       "OSPF6 vertex      " },
  318.   { MTYPE_OSPF6_SPFTREE,      "OSPF6 SPF tree    " },
  319.   { MTYPE_OSPF6_NEXTHOP,      "OSPF6 nexthop     " },
  320.   { MTYPE_OSPF6_EXTERNAL_INFO,"OSPF6 ext. info   " },
  321.   { MTYPE_OSPF6_OTHER,        "OSPF6 other       " },
  322.   { -1, NULL },
  323. };
  324. struct memory_list memory_list_separator[] =
  325. {
  326.   { 0, NULL},
  327.   {-1, NULL}
  328. };
  329. void
  330. show_memory_vty (struct vty *vty, struct memory_list *list)
  331. {
  332.   struct memory_list *m;
  333.   for (m = list; m->index >= 0; m++)
  334.     if (m->index == 0)
  335.       vty_out (vty, "-----------------------------rn");
  336.     else
  337.       vty_out (vty, "%-22s: %5ldrn", m->format, mstat[m->index].alloc);
  338. }
  339. DEFUN (show_memory_all,
  340.        show_memory_all_cmd,
  341.        "show memory all",
  342.        "Show running system informationn"
  343.        "Memory statisticsn"
  344.        "All memory statisticsn")
  345. {
  346.   show_memory_vty (vty, memory_list_lib);
  347.   show_memory_vty (vty, memory_list_separator);
  348.   show_memory_vty (vty, memory_list_rip);
  349.   show_memory_vty (vty, memory_list_separator);
  350.   show_memory_vty (vty, memory_list_ospf);
  351.   show_memory_vty (vty, memory_list_separator);
  352.   show_memory_vty (vty, memory_list_ospf6);
  353.   show_memory_vty (vty, memory_list_separator);
  354.   show_memory_vty (vty, memory_list_bgp);
  355.   return CMD_SUCCESS;
  356. }
  357. ALIAS (show_memory_all,
  358.        show_memory_cmd,
  359.        "show memory",
  360.        "Show running system informationn"
  361.        "Memory statisticsn");
  362. DEFUN (show_memory_lib,
  363.        show_memory_lib_cmd,
  364.        "show memory lib",
  365.        SHOW_STR
  366.        "Memory statisticsn"
  367.        "Library memoryn")
  368. {
  369.   show_memory_vty (vty, memory_list_lib);
  370.   return CMD_SUCCESS;
  371. }
  372. DEFUN (show_memory_rip,
  373.        show_memory_rip_cmd,
  374.        "show memory rip",
  375.        SHOW_STR
  376.        "Memory statisticsn"
  377.        "RIP memoryn")
  378. {
  379.   show_memory_vty (vty, memory_list_rip);
  380.   return CMD_SUCCESS;
  381. }
  382. DEFUN (show_memory_bgp,
  383.        show_memory_bgp_cmd,
  384.        "show memory bgp",
  385.        SHOW_STR
  386.        "Memory statisticsn"
  387.        "BGP memoryn")
  388. {
  389.   show_memory_vty (vty, memory_list_bgp);
  390.   return CMD_SUCCESS;
  391. }
  392. DEFUN (show_memory_ospf,
  393.        show_memory_ospf_cmd,
  394.        "show memory ospf",
  395.        SHOW_STR
  396.        "Memory statisticsn"
  397.        "OSPF memoryn")
  398. {
  399.   show_memory_vty (vty, memory_list_ospf);
  400.   return CMD_SUCCESS;
  401. }
  402. DEFUN (show_memory_ospf6,
  403.        show_memory_ospf6_cmd,
  404.        "show memory ospf6",
  405.        SHOW_STR
  406.        "Memory statisticsn"
  407.        "OSPF6 memoryn")
  408. {
  409.   show_memory_vty (vty, memory_list_ospf6);
  410.   return CMD_SUCCESS;
  411. }
  412. void
  413. memory_init ()
  414. {
  415.   install_element (VIEW_NODE, &show_memory_cmd);
  416.   install_element (VIEW_NODE, &show_memory_all_cmd);
  417.   install_element (VIEW_NODE, &show_memory_lib_cmd);
  418.   install_element (VIEW_NODE, &show_memory_rip_cmd);
  419.   install_element (VIEW_NODE, &show_memory_bgp_cmd);
  420.   install_element (VIEW_NODE, &show_memory_ospf_cmd);
  421.   install_element (VIEW_NODE, &show_memory_ospf6_cmd);
  422.   install_element (ENABLE_NODE, &show_memory_cmd);
  423.   install_element (ENABLE_NODE, &show_memory_all_cmd);
  424.   install_element (ENABLE_NODE, &show_memory_lib_cmd);
  425.   install_element (ENABLE_NODE, &show_memory_rip_cmd);
  426.   install_element (ENABLE_NODE, &show_memory_bgp_cmd);
  427.   install_element (ENABLE_NODE, &show_memory_ospf_cmd);
  428.   install_element (ENABLE_NODE, &show_memory_ospf6_cmd);
  429. }