summaryrefslogtreecommitdiffstats
path: root/zebra/zebra_ptm_redistribute.c
blob: a255f5a1e5d084b58cfd0c28f9562a0969023f06 (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
/**
 * @copyright Copyright (C) 2015 Cumulus Networks, Inc.
 *
 * 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 "prefix.h"
#include "vty.h"
#include "stream.h"
#include "zebra/zserv.h"
#include "zebra/zebra_ptm_redistribute.h"

static int
zsend_interface_bfd_update (int cmd, struct zserv *client,
                            struct interface *ifp, struct prefix *dp,
                            struct prefix *sp, int status, vrf_id_t vrf_id)
{
  int blen;
  struct stream *s;

  /* Check this client need interface information. */
  if (! client->ifinfo)
    return 0;

  s = client->obuf;
  stream_reset (s);

  zserv_create_header (s, cmd, vrf_id);
  if (ifp)
    stream_putl (s, ifp->ifindex);
  else
    stream_putl (s, 0);

  /* BFD destination prefix information. */
  stream_putc (s, dp->family);
  blen = prefix_blen (dp);
  stream_put (s, &dp->u.prefix, blen);
  stream_putc (s, dp->prefixlen);

  /* BFD status */
  stream_putl(s, status);

  /* BFD source prefix information. */
  stream_putc (s, sp->family);
  blen = prefix_blen (sp);
  stream_put (s, &sp->u.prefix, blen);
  stream_putc (s, sp->prefixlen);

  /* Write packet size. */
  stream_putw_at (s, 0, stream_get_endp (s));

  client->if_bfd_cnt++;
  return zebra_server_send_message(client);
}

void
zebra_interface_bfd_update (struct interface *ifp, struct prefix *dp,
                            struct prefix *sp, int status, vrf_id_t vrf_id)
{
  struct listnode *node, *nnode;
  struct zserv *client;

  for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client))
    {
      /* Supporting for OSPF and BGP */
      if (client->proto != ZEBRA_ROUTE_OSPF && client->proto != ZEBRA_ROUTE_BGP
          && client->proto != ZEBRA_ROUTE_OSPF6)
        continue;

      /* Notify to the protocol daemons. */
      zsend_interface_bfd_update (ZEBRA_INTERFACE_BFD_DEST_UPDATE, client, ifp,
                                    dp, sp, status, vrf_id);
    }
}

static int
zsend_bfd_peer_replay (int cmd, struct zserv *client)
{
  struct stream *s;

  s = client->obuf;
  stream_reset (s);

  zserv_create_header (s, cmd, VRF_DEFAULT); //Pending: adjust when multi-vrf bfd work

  /* Write packet size. */
  stream_putw_at (s, 0, stream_get_endp (s));

  client->bfd_peer_replay_cnt++;
  return zebra_server_send_message(client);
}

void
zebra_bfd_peer_replay_req (void)
{
  struct listnode *node, *nnode;
  struct zserv *client;

  for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client))
    {
      /* Supporting for BGP */
      if ((client->proto != ZEBRA_ROUTE_BGP) &&
          (client->proto != ZEBRA_ROUTE_OSPF) &&
          (client->proto != ZEBRA_ROUTE_OSPF6))
        continue;

      /* Notify to the protocol daemons. */
      zsend_bfd_peer_replay (ZEBRA_BFD_DEST_REPLAY, client);
    }
}