blob: 500f03d0a61dd3635c431b25256dac162f57c786 [file] [log] [blame]
Neale Ranns812ed392017-10-16 04:20:13 -07001/*
2 * Copyright (c) 2017 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef __VOM_NEIGHBOUR_H__
17#define __VOM_NEIGHBOUR_H__
18
Neale Ranns812ed392017-10-16 04:20:13 -070019#include "vom/interface.hpp"
20#include "vom/singular_db.hpp"
21#include "vom/types.hpp"
22
Neale Ranns812ed392017-10-16 04:20:13 -070023namespace VOM {
24/**
Neale Rannsfd920602017-11-23 12:15:00 -080025 * A entry in the neighbour entry (ARP or IPv6 ND)
Neale Ranns812ed392017-10-16 04:20:13 -070026 */
27class neighbour : public object_base
28{
29public:
30 /**
Neale Rannsfd920602017-11-23 12:15:00 -080031 * The key for a neighbour entry;
32 * the interface and IP address
Neale Ranns812ed392017-10-16 04:20:13 -070033 */
Neale Rannsfd920602017-11-23 12:15:00 -080034 typedef std::pair<interface::key_t, boost::asio::ip::address> key_t;
Neale Ranns812ed392017-10-16 04:20:13 -070035
36 /**
37 * Construct an ARP entry
38 */
39 neighbour(const interface& itf,
Neale Rannsfd920602017-11-23 12:15:00 -080040 const boost::asio::ip::address& ip_addr,
41 const mac_address_t& mac);
Neale Ranns812ed392017-10-16 04:20:13 -070042
43 /**
44 * Copy Construct
45 */
46 neighbour(const neighbour& r);
47
48 /**
49 * Destructor
50 */
51 ~neighbour();
52
53 /**
Neale Rannsfd920602017-11-23 12:15:00 -080054 * Return the object's key
55 */
56 const key_t key() const;
57
58 /**
59 * Comparison operator
60 */
61 bool operator==(const neighbour& n) const;
62
63 /**
Neale Ranns812ed392017-10-16 04:20:13 -070064 * Return the matching 'singular instance'
65 */
66 std::shared_ptr<neighbour> singular() const;
67
68 /**
Neale Rannsfd920602017-11-23 12:15:00 -080069 * Find the neighbour fromits key
Neale Ranns812ed392017-10-16 04:20:13 -070070 */
Neale Rannsfd920602017-11-23 12:15:00 -080071 static std::shared_ptr<neighbour> find(const key_t& k);
Neale Ranns812ed392017-10-16 04:20:13 -070072
73 /**
Neale Rannsfd920602017-11-23 12:15:00 -080074 * Dump all neighbours into the stream provided
Neale Ranns812ed392017-10-16 04:20:13 -070075 */
76 static void dump(std::ostream& os);
77
78 /**
79 * replay the object to create it in hardware
80 */
81 void replay(void);
82
83 /**
84 * Convert to string for debugging
85 */
86 std::string to_string() const;
87
Neale Ranns812ed392017-10-16 04:20:13 -070088private:
89 /**
90 * Class definition for listeners to OM events
91 */
92 class event_handler : public OM::listener, public inspect::command_handler
93 {
94 public:
95 event_handler();
96 virtual ~event_handler() = default;
97
98 /**
99 * Handle a populate event
100 */
101 void handle_populate(const client_db::key_t& key);
102
103 /**
104 * Handle a replay event
105 */
106 void handle_replay();
107
108 /**
109 * Show the object in the Singular DB
110 */
111 void show(std::ostream& os);
112
113 /**
114 * Get the sortable Id of the listener
115 */
116 dependency_t order() const;
117 };
118
119 /**
120 * event_handler to register with OM
121 */
122 static event_handler m_evh;
123
124 /**
125 * Commit the acculmulated changes into VPP. i.e. to a 'HW" write.
126 */
127 void update(const neighbour& obj);
128
129 /**
130 * Do the populate work
131 */
132 static void populate_i(const client_db::key_t& key,
133 std::shared_ptr<interface> itf,
134 const l3_proto_t& proto);
135
136 /**
Neale Rannsfd920602017-11-23 12:15:00 -0800137 * Find or add the instnace of the neighbour in the OM
Neale Ranns812ed392017-10-16 04:20:13 -0700138 */
139 static std::shared_ptr<neighbour> find_or_add(const neighbour& temp);
140
141 /*
142 * It's the VPPHW class that updates the objects in HW
143 */
144 friend class OM;
145
146 /**
147 * It's the singular_db class that calls replay()
148 */
149 friend class singular_db<key_t, neighbour>;
150
151 /**
152 * Sweep/reap the object if still stale
153 */
154 void sweep(void);
155
156 /**
157 * HW configuration for the result of creating the bridge_domain
158 */
159 HW::item<bool> m_hw;
160
161 /**
162 * The bridge_domain domain the bridge_domain is in.
163 */
164 std::shared_ptr<interface> m_itf;
165
166 /**
Neale Ranns812ed392017-10-16 04:20:13 -0700167 * The IP address
168 */
169 boost::asio::ip::address m_ip_addr;
170
171 /**
Neale Rannsfd920602017-11-23 12:15:00 -0800172 * The mac to match
173 */
174 mac_address_t m_mac;
175
176 /**
Neale Ranns812ed392017-10-16 04:20:13 -0700177 * A map of all bridge_domains
178 */
179 static singular_db<key_t, neighbour> m_db;
180};
181
182std::ostream& operator<<(std::ostream& os, const neighbour::key_t& key);
183};
184
185/*
186 * fd.io coding-style-patch-verification: ON
187 *
188 * Local Variables:
189 * eval: (c-set-style "mozilla")
190 * End:
191 */
192
193#endif