jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 1 | /* |
| 2 | * IS-IS Rout(e)ing protocol - isis_dynhn.c |
| 3 | * Dynamic hostname cache |
| 4 | * Copyright (C) 2001,2002 Sampo Saaristo |
| 5 | * Tampere University of Technology |
| 6 | * Institute of Communications Engineering |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify it |
| 9 | * under the terms of the GNU General Public Licenseas published by the Free |
| 10 | * Software Foundation; either version 2 of the License, or (at your option) |
| 11 | * any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful,but WITHOUT |
| 14 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 15 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 16 | * more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License along |
| 19 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 20 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 21 | */ |
| 22 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 23 | #include <zebra.h> |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 24 | |
| 25 | #include "vty.h" |
| 26 | #include "linklist.h" |
| 27 | #include "memory.h" |
| 28 | #include "log.h" |
| 29 | #include "stream.h" |
| 30 | #include "command.h" |
| 31 | #include "if.h" |
hasso | d3d7474 | 2005-09-28 18:30:51 +0000 | [diff] [blame] | 32 | #include "thread.h" |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 33 | |
| 34 | #include "isisd/dict.h" |
| 35 | #include "isisd/isis_constants.h" |
| 36 | #include "isisd/isis_common.h" |
| 37 | #include "isisd/isis_flags.h" |
| 38 | #include "isisd/isis_circuit.h" |
| 39 | #include "isisd/isisd.h" |
| 40 | #include "isisd/isis_dynhn.h" |
| 41 | #include "isisd/isis_misc.h" |
| 42 | #include "isisd/isis_constants.h" |
| 43 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 44 | extern struct host host; |
| 45 | |
| 46 | struct list *dyn_cache = NULL; |
hasso | d3d7474 | 2005-09-28 18:30:51 +0000 | [diff] [blame] | 47 | static int dyn_cache_cleanup (struct thread *); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 48 | |
| 49 | void |
| 50 | dyn_cache_init (void) |
| 51 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 52 | if (dyn_cache == NULL) |
| 53 | dyn_cache = list_new (); |
hasso | d3d7474 | 2005-09-28 18:30:51 +0000 | [diff] [blame] | 54 | THREAD_TIMER_ON (master, isis->t_dync_clean, dyn_cache_cleanup, NULL, 120); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 55 | return; |
| 56 | } |
| 57 | |
hasso | d3d7474 | 2005-09-28 18:30:51 +0000 | [diff] [blame] | 58 | static int |
| 59 | dyn_cache_cleanup (struct thread *thread) |
| 60 | { |
| 61 | struct listnode *node, *nnode; |
| 62 | struct isis_dynhn *dyn; |
| 63 | time_t now = time (NULL); |
| 64 | |
| 65 | isis->t_dync_clean = NULL; |
| 66 | |
| 67 | for (ALL_LIST_ELEMENTS (dyn_cache, node, nnode, dyn)) |
| 68 | { |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 69 | if ((now - dyn->refresh) < MAX_LSP_LIFETIME) |
| 70 | continue; |
hasso | d3d7474 | 2005-09-28 18:30:51 +0000 | [diff] [blame] | 71 | |
| 72 | list_delete_node (dyn_cache, node); |
| 73 | XFREE (MTYPE_ISIS_DYNHN, dyn); |
| 74 | } |
| 75 | |
| 76 | THREAD_TIMER_ON (master, isis->t_dync_clean, dyn_cache_cleanup, NULL, 120); |
| 77 | return ISIS_OK; |
| 78 | } |
| 79 | |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 80 | struct isis_dynhn * |
| 81 | dynhn_find_by_id (u_char * id) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 82 | { |
| 83 | struct listnode *node = NULL; |
| 84 | struct isis_dynhn *dyn = NULL; |
| 85 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 86 | for (ALL_LIST_ELEMENTS_RO (dyn_cache, node, dyn)) |
| 87 | if (memcmp (dyn->id, id, ISIS_SYS_ID_LEN) == 0) |
| 88 | return dyn; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 89 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 90 | return NULL; |
| 91 | } |
| 92 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 93 | struct isis_dynhn * |
| 94 | dynhn_find_by_name (const char *hostname) |
| 95 | { |
| 96 | struct listnode *node = NULL; |
| 97 | struct isis_dynhn *dyn = NULL; |
| 98 | |
| 99 | for (ALL_LIST_ELEMENTS_RO (dyn_cache, node, dyn)) |
| 100 | if (strncmp ((char *)dyn->name.name, hostname, 255) == 0) |
| 101 | return dyn; |
| 102 | |
| 103 | return NULL; |
| 104 | } |
| 105 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 106 | void |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 107 | isis_dynhn_insert (u_char * id, struct hostname *hostname, int level) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 108 | { |
| 109 | struct isis_dynhn *dyn; |
| 110 | |
| 111 | dyn = dynhn_find_by_id (id); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 112 | if (dyn) |
| 113 | { |
| 114 | memcpy (&dyn->name, hostname, hostname->namelen + 1); |
| 115 | memcpy (dyn->id, id, ISIS_SYS_ID_LEN); |
| 116 | dyn->refresh = time (NULL); |
| 117 | return; |
| 118 | } |
hasso | d3d7474 | 2005-09-28 18:30:51 +0000 | [diff] [blame] | 119 | dyn = XCALLOC (MTYPE_ISIS_DYNHN, sizeof (struct isis_dynhn)); |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 120 | if (!dyn) |
| 121 | { |
| 122 | zlog_warn ("isis_dynhn_insert(): out of memory!"); |
| 123 | return; |
| 124 | } |
hasso | d3d7474 | 2005-09-28 18:30:51 +0000 | [diff] [blame] | 125 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 126 | /* we also copy the length */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 127 | memcpy (&dyn->name, hostname, hostname->namelen + 1); |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 128 | memcpy (dyn->id, id, ISIS_SYS_ID_LEN); |
| 129 | dyn->refresh = time (NULL); |
| 130 | dyn->level = level; |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 131 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 132 | listnode_add (dyn_cache, dyn); |
| 133 | |
| 134 | return; |
| 135 | } |
| 136 | |
Josh Bailey | 3f045a0 | 2012-03-24 08:35:20 -0700 | [diff] [blame] | 137 | void |
| 138 | isis_dynhn_remove (u_char * id) |
| 139 | { |
| 140 | struct isis_dynhn *dyn; |
| 141 | |
| 142 | dyn = dynhn_find_by_id (id); |
| 143 | if (!dyn) |
| 144 | return; |
| 145 | listnode_delete (dyn_cache, dyn); |
| 146 | XFREE (MTYPE_ISIS_DYNHN, dyn); |
| 147 | return; |
| 148 | } |
| 149 | |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 150 | /* |
| 151 | * Level System ID Dynamic Hostname (notag) |
| 152 | * 2 0000.0000.0001 foo-gw |
| 153 | * 2 0000.0000.0002 bar-gw |
| 154 | * * 0000.0000.0004 this-gw |
| 155 | */ |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 156 | void |
| 157 | dynhn_print_all (struct vty *vty) |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 158 | { |
| 159 | struct listnode *node; |
| 160 | struct isis_dynhn *dyn; |
| 161 | |
| 162 | vty_out (vty, "Level System ID Dynamic Hostname%s", VTY_NEWLINE); |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 163 | for (ALL_LIST_ELEMENTS_RO (dyn_cache, node, dyn)) |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 164 | { |
hasso | f390d2c | 2004-09-10 20:48:21 +0000 | [diff] [blame] | 165 | vty_out (vty, "%-7d", dyn->level); |
| 166 | vty_out (vty, "%-15s%-15s%s", sysid_print (dyn->id), dyn->name.name, |
| 167 | VTY_NEWLINE); |
| 168 | } |
| 169 | |
| 170 | vty_out (vty, " * %s %s%s", sysid_print (isis->sysid), unix_hostname (), |
jardin | eb5d44e | 2003-12-23 08:09:43 +0000 | [diff] [blame] | 171 | VTY_NEWLINE); |
| 172 | return; |
| 173 | } |