summaryrefslogtreecommitdiff
path: root/ospf6d/ospf6_dump.c
blob: e950ec8cb48b683bcfbe59cd0902da4c8310b261 (plain)
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
/*
 * Logging function
 * Copyright (C) 1999-2002 Yasuhiro Ohara
 *
 * 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 other stuffs */
#include "log.h"
#include "command.h"
#include "ospf6_dump.h"

#define CMD_SHOW    0
#define CMD_ENABLE  1
#define CMD_DISABLE 2
#define CMD_MAX     3

struct ospf6_dump
{
  struct cmd_element cmd[CMD_MAX];
  char *name;
  int config;
};

#define DUMP_MAX 512
struct ospf6_dump *ospf6_dump[DUMP_MAX];
unsigned int dump_size = 0;

static int
ospf6_dump_index (struct cmd_element *cmd, int command)
{
  int i;

  for (i = 0; i < DUMP_MAX; i++)
    {
      if (cmd != &ospf6_dump[i]->cmd[command])
        continue;
      break;
    }

  if (i == DUMP_MAX)
    return -1;
  return i;
}

int
ospf6_dump_is_on (int index)
{
  if (ospf6_dump[index] == NULL)
    return 0;

  return ospf6_dump[index]->config;
}

int
ospf6_dump_show (struct cmd_element *cmd,
                 struct vty *vty, int argc, char **argv)
{
  int index;

  index = ospf6_dump_index (cmd, CMD_SHOW);
  assert (index != -1);

  vty_out (vty, "  %-16s: %s%s", ospf6_dump[index]->name,
           (ospf6_dump[index]->config ? "on" : "off"),
           VTY_NEWLINE);
  return CMD_SUCCESS;
}

int
ospf6_dump_enable (struct cmd_element *cmd,
                   struct vty *vty, int argc, char **argv)
{
  int index;

  index = ospf6_dump_index (cmd, CMD_ENABLE);
  assert (index != -1);

  ospf6_dump[index]->config = 1;
  return CMD_SUCCESS;
}

int
ospf6_dump_disable (struct cmd_element *cmd,
                    struct vty *vty, int argc, char **argv)
{
  int index;

  index = ospf6_dump_index (cmd, CMD_DISABLE);
  assert (index != -1);

  ospf6_dump[index]->config = 0;
  return CMD_SUCCESS;
}

int
ospf6_dump_install (char *name, char *help)
{
  struct cmd_element *cmd;
  char string[256];
  char helpstring[256];

  if (dump_size + 1 >= DUMP_MAX)
    return -1;

  ospf6_dump[dump_size] = malloc (sizeof (struct ospf6_dump));
  if (ospf6_dump[dump_size] == NULL)
    return -1;
  memset (ospf6_dump[dump_size], 0, sizeof (struct ospf6_dump));

  ospf6_dump[dump_size]->name = strdup (name);

  cmd = &ospf6_dump[dump_size]->cmd[CMD_SHOW];
  snprintf (string, sizeof (string), "show debugging ospf6 %s", name);
  snprintf (helpstring, sizeof (helpstring), "%s%s%s%s",
            SHOW_STR, DEBUG_STR, OSPF6_STR, help);
  memset (cmd, 0, sizeof (struct cmd_element));
  cmd->string = strdup (string);
  cmd->func = ospf6_dump_show;
  cmd->doc = strdup (helpstring);
  install_element (VIEW_NODE, cmd);
  install_element (ENABLE_NODE, cmd);

  cmd = &ospf6_dump[dump_size]->cmd[CMD_ENABLE];
  snprintf (string, sizeof (string), "debug ospf6 %s", name);
  snprintf (helpstring, sizeof (helpstring), "%s%s%s",
            DEBUG_STR, OSPF6_STR, help);
  memset (cmd, 0, sizeof (struct cmd_element));
  cmd->string = strdup (string);
  cmd->func = ospf6_dump_enable;
  cmd->doc = strdup (helpstring);
  install_element (CONFIG_NODE, cmd);

  cmd = &ospf6_dump[dump_size]->cmd[CMD_DISABLE];
  snprintf (string, sizeof (string), "no debug ospf6 %s", name);
  snprintf (helpstring, sizeof (helpstring), "%s%s%s%s",
            NO_STR, DEBUG_STR, OSPF6_STR, help);
  memset (cmd, 0, sizeof (struct cmd_element));
  cmd->string = strdup (string);
  cmd->func = ospf6_dump_disable;
  cmd->doc = strdup (helpstring);
  install_element (CONFIG_NODE, cmd);

  return dump_size++;
}

DEFUN(show_debug_ospf6,
      show_debug_ospf6_cmd,
      "show debugging ospf6",
      SHOW_STR
      DEBUG_STR
      OSPF6_STR)
{
  int i;

  vty_out (vty, "OSPF6 debugging status:%s", VTY_NEWLINE);

  for (i = 0; i < DUMP_MAX; i++)
    {
      if (ospf6_dump[i] == NULL)
        continue;
      ospf6_dump_show (&ospf6_dump[i]->cmd[CMD_SHOW], vty, 0, NULL);
    }

  return CMD_SUCCESS;
}

DEFUN (debug_ospf6_all,
       debug_ospf6_all_cmd,
       "debug ospf6 all",
       DEBUG_STR
       OSPF6_STR
       "Turn on ALL OSPFv3 debugging\n")
{
  int i;

  for (i = 0; i < DUMP_MAX; i++)
    {
      if (ospf6_dump[i] == NULL)
        continue;
      ospf6_dump_enable (&ospf6_dump[i]->cmd[CMD_ENABLE], vty, 0, NULL);
    }

  return CMD_SUCCESS;
}

DEFUN (no_debug_ospf6_all,
       no_debug_ospf6_all_cmd,
       "no debug ospf6 all",
       NO_STR
       DEBUG_STR
       OSPF6_STR
       "Turn off ALL OSPFv3 debugging\n")
{
  int i;

  for (i = 0; i < DUMP_MAX; i++)
    {
      if (ospf6_dump[i] == NULL)
        continue;
      ospf6_dump_disable (&ospf6_dump[i]->cmd[CMD_DISABLE], vty, 0, NULL);
    }

  return CMD_SUCCESS;
}

struct cmd_node debug_node =
{
  DEBUG_NODE,
  ""
};

int
ospf6_dump_config_write (struct vty *vty)
{
  int i;

  for (i = 0; i < dump_size; i++)
    {
      if (ospf6_dump[i] == NULL)
        continue;

      if (ospf6_dump[i]->config == 0)
        continue;

      vty_out (vty, "debug ospf6 %s%s", ospf6_dump[i]->name, VTY_NEWLINE);
    }

  vty_out (vty, "!%s", VTY_NEWLINE);
  return 0;
}

char dump_index[OSPF6_DUMP_MAX];

void
ospf6_dump_init ()
{
  memset (ospf6_dump, 0, sizeof (ospf6_dump));

  install_node (&debug_node, ospf6_dump_config_write);

  install_element (VIEW_NODE,   &show_debug_ospf6_cmd);
  install_element (ENABLE_NODE, &show_debug_ospf6_cmd);

  install_element (CONFIG_NODE, &debug_ospf6_all_cmd);
  install_element (CONFIG_NODE, &no_debug_ospf6_all_cmd);

  /* bellow is for backward compatibility
     should be moved to each modules */

#define MESSAGE_STR "OSPFv3 Messages\n"

  dump_index[OSPF6_DUMP_HELLO] =
    ospf6_dump_install ("message hello",
                        MESSAGE_STR "Hello\n");
  dump_index[OSPF6_DUMP_DBDESC] =
    ospf6_dump_install ("message dbdesc",
                        MESSAGE_STR "Database Description\n");
  dump_index[OSPF6_DUMP_LSREQ] =
    ospf6_dump_install ("message lsreq",
                        MESSAGE_STR "Link State Request\n");
  dump_index[OSPF6_DUMP_LSUPDATE] =
    ospf6_dump_install ("message lsupdate",
                        MESSAGE_STR "Link State Update\n");
  dump_index[OSPF6_DUMP_LSACK] =
    ospf6_dump_install ("message lsack",
                        MESSAGE_STR "Link State Acknowledge\n");
  dump_index[OSPF6_DUMP_NEIGHBOR] =
    ospf6_dump_install ("neighbor", "Neighbors\n");
  dump_index[OSPF6_DUMP_INTERFACE] =
    ospf6_dump_install ("interface", "Interfaces\n");
  dump_index[OSPF6_DUMP_LSA] =
    ospf6_dump_install ("lsa", "Link State Advertisement\n");
  dump_index[OSPF6_DUMP_ZEBRA] =
    ospf6_dump_install ("zebra", "Communication with zebra\n");
  dump_index[OSPF6_DUMP_CONFIG] =
    ospf6_dump_install ("config", "Configuration Changes\n");
  dump_index[OSPF6_DUMP_DBEX] =
    ospf6_dump_install ("dbex", "Database Exchange/Flooding\n");
  dump_index[OSPF6_DUMP_SPF] =
    ospf6_dump_install ("spf", "SPF Calculation\n");
  dump_index[OSPF6_DUMP_ROUTE] =
    ospf6_dump_install ("route", "Route Calculation\n");
  dump_index[OSPF6_DUMP_LSDB] =
    ospf6_dump_install ("lsdb", "Link State Database\n");
  dump_index[OSPF6_DUMP_REDISTRIBUTE] =
    ospf6_dump_install ("redistribute",
                        "Route Exchange with other protocols\n");
  dump_index[OSPF6_DUMP_HOOK] =
    ospf6_dump_install ("hook", "Hooks\n");
  dump_index[OSPF6_DUMP_ASBR] =
    ospf6_dump_install ("asbr", "AS Boundary Router function\n");
  dump_index[OSPF6_DUMP_PREFIX] =
    ospf6_dump_install ("prefix", "Prefix\n");
}