FD.io VPP  v20.01-48-g3e0dafb74
Vector Packet Processing
arp_proxy_binding.cpp
Go to the documentation of this file.
1 /*
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 
19 
20 namespace VOM {
21 
22 /**
23  * A DB of all ARP proxy bindings configs
24  */
25 singular_db<interface::key_t, arp_proxy_binding> arp_proxy_binding::m_db;
26 
27 arp_proxy_binding::event_handler arp_proxy_binding::m_evh;
28 
30  : m_itf(itf.singular())
31  , m_binding(true)
32 {
33 }
34 
36  : m_itf(o.m_itf)
37  , m_binding(o.m_binding)
38 {
39 }
40 
42 {
43  sweep();
44  m_db.release(m_itf->key(), this);
45 }
46 
47 void
48 arp_proxy_binding::sweep()
49 {
50  if (m_binding) {
52  new arp_proxy_binding_cmds::unbind_cmd(m_binding, m_itf->handle()));
53  }
54  HW::write();
55 }
56 
57 void
58 arp_proxy_binding::dump(std::ostream& os)
59 {
60  db_dump(m_db, os);
61 }
62 
63 void
64 arp_proxy_binding::replay()
65 {
66  if (m_binding) {
68  new arp_proxy_binding_cmds::bind_cmd(m_binding, m_itf->handle()));
69  }
70 }
71 
72 std::string
74 {
75  std::ostringstream s;
76  s << "ArpProxy-binding: " << m_itf->to_string();
77 
78  return (s.str());
79 }
80 
81 void
82 arp_proxy_binding::update(const arp_proxy_binding& desired)
83 {
84  /*
85  * the desired state is always that the interface should be created
86  */
87  if (!m_binding) {
89  new arp_proxy_binding_cmds::bind_cmd(m_binding, m_itf->handle()));
90  }
91 }
92 
93 std::shared_ptr<arp_proxy_binding>
94 arp_proxy_binding::find_or_add(const arp_proxy_binding& temp)
95 {
96  return (m_db.find_or_add(temp.m_itf->key(), temp));
97 }
98 
99 std::shared_ptr<arp_proxy_binding>
101 {
102  return find_or_add(*this);
103 }
104 
106 {
107  OM::register_listener(this);
108  inspect::register_handler({ "arp-proxy-binding" }, "ARP proxy bindings",
109  this);
110 }
111 
112 void
113 arp_proxy_binding::event_handler::handle_replay()
114 {
115  m_db.replay();
116 }
117 
118 void
119 arp_proxy_binding::event_handler::handle_populate(const client_db::key_t& key)
120 {
121  std::shared_ptr<arp_proxy_binding_cmds::dump_cmd> cmd =
122  std::make_shared<arp_proxy_binding_cmds::dump_cmd>();
123 
124  HW::enqueue(cmd);
125  HW::write();
126 
127  for (auto& record : *cmd) {
128  auto& payload = record.get_payload();
129 
130  std::shared_ptr<interface> itf = interface::find(payload.sw_if_index);
131 
132  if (itf) {
133  arp_proxy_binding ab(*itf);
134  OM::commit(key, ab);
135  } else {
136  VOM_LOG(log_level_t::ERROR) << "arp-proxy-binding dump:"
137  << " itf:" << payload.sw_if_index;
138  }
139  }
140 }
141 
143 arp_proxy_binding::event_handler::order() const
144 {
145  return (dependency_t::BINDING);
146 }
147 
148 void
150 {
151  db_dump(m_db, os);
152 }
153 }
154 /*
155  * fd.io coding-style-patch-verification: ON
156  *
157  * Local Variables:
158  * eval: (c-set-style "mozilla")
159  * End:
160  */
#define VOM_LOG(lvl)
Definition: logger.hpp:181
void db_dump(const DB &db, std::ostream &os)
Print each of the objects in the DB into the stream provided.
const std::string key_t
In the opflex world each entity is known by a URI which can be converted into a string.
Definition: client_db.hpp:51
static std::shared_ptr< interface > find(const handle_t &h)
The the singular instance of the interface in the DB by handle.
Definition: interface.cpp:538
static void register_handler(const std::vector< std::string > &cmds, const std::string &help, command_handler *ch)
Register a command handler for inspection.
Definition: inspect.cpp:85
static rc_t write()
Write/Execute all commands hitherto enqueued.
Definition: hw.cpp:255
std::shared_ptr< arp_proxy_binding > singular() const
Return the &#39;singular&#39; of the LLDP binding that matches this object.
static void dump(std::ostream &os)
Dump all LLDP bindings into the stream provided.
std::string to_string() const
convert to string format for debug purposes
A representation of LLDP client configuration on an interface.
A cmd class that Unbinds ArpProxy Config from an interface.
A representation of an interface in VPP.
Definition: interface.hpp:41
static rc_t commit(const client_db::key_t &key, const OBJ &obj)
Make the State in VPP reflect the expressed desired state.
Definition: om.hpp:202
void event_handler(void *tls_async)
Definition: tls_async.c:338
dependency_t
There needs to be a strict order in which object types are read from VPP (at boot time) and replayed ...
Definition: types.hpp:43
static void enqueue(cmd *f)
Enqueue A command for execution.
Definition: hw.cpp:212
static const log_level_t ERROR
Definition: logger.hpp:29
Then L2/objects that bind to interfaces, BD, ACLS, etc.
typedef key
Definition: ipsec_types.api:83
A command class that binds the LLDP config to the interface.
The VPP Object Model (VOM) library.
Definition: acl_binding.cpp:19
A representation of a method call to VPP.
Definition: cmd.hpp:32
void show(char *chroot_path, int verbose)
Definition: svmtool.c:105
static bool register_listener(listener *listener)
Register a listener of events.
Definition: om.cpp:127
~arp_proxy_binding()
Destructor.
arp_proxy_binding(const interface &itf)
Construct a new object matching the desried state.