FD.io VPP  v18.07-rc0-415-g6c78436
Vector Packet Processing
acl_binding.hpp
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 
16 #ifndef __VOM_ACL_BINDING_H__
17 #define __VOM_ACL_BINDING_H__
18 
19 #include <ostream>
20 
21 #include "vom/acl_list.hpp"
22 #include "vom/acl_types.hpp"
23 #include "vom/hw.hpp"
24 #include "vom/inspect.hpp"
25 #include "vom/interface.hpp"
26 #include "vom/object_base.hpp"
27 #include "vom/om.hpp"
28 #include "vom/singular_db.hpp"
30 
31 namespace VOM {
32 namespace ACL {
33 /**
34  * A binding between an ACL and an interface.
35  * A representation of the application of the ACL to the interface.
36  */
37 template <typename LIST>
38 class binding : public object_base
39 {
40 public:
41  /**
42  * The key for a binding is the direction and the interface
43  */
44  typedef std::pair<direction_t, interface::key_t> key_t;
45 
46  /**
47  * Construct a new object matching the desried state
48  */
49  binding(const direction_t& direction, const interface& itf, const LIST& acl)
50  : m_direction(direction)
51  , m_itf(itf.singular())
52  , m_acl(acl.singular())
53  , m_binding(false)
54  {
55  m_evh.order();
56  }
57 
58  /**
59  * Copy Constructor
60  */
61  binding(const binding& o)
62  : m_direction(o.m_direction)
63  , m_itf(o.m_itf)
64  , m_acl(o.m_acl)
65  , m_binding(o.m_binding)
66  {
67  }
68 
69  /**
70  * Destructor
71  */
73  {
74  sweep();
75  m_db.release(std::make_pair(m_direction, m_itf->key()), this);
76  }
77 
78  /**
79  * Return the 'singular instance' of the L2 config that matches this
80  * object
81  */
82  std::shared_ptr<binding> singular() const { return find_or_add(*this); }
83 
84  /**
85  * convert to string format for debug purposes
86  */
87  std::string to_string() const
88  {
89  std::ostringstream s;
90  s << "acl-binding:[" << m_direction.to_string() << " " << m_itf->to_string()
91  << " " << m_acl->to_string() << " " << m_binding.to_string() << "]";
92 
93  return (s.str());
94  }
95 
96  /**
97  * Dump all bindings into the stream provided
98  */
99  static void dump(std::ostream& os) { m_db.dump(os); }
100 
101  static dependency_t order() { return m_evh.order(); }
102 
103 private:
104  /**
105  * Class definition for listeners to OM events
106  */
108  {
109  public:
110  event_handler();
111 
112  virtual ~event_handler() = default;
113 
114  /**
115  * Handle a populate event
116  */
117  void handle_populate(const client_db::key_t& key);
118 
119  /**
120  * Handle a replay event
121  */
122  void handle_replay() { m_db.replay(); }
123 
124  /**
125  * Show the object in the Singular DB
126  */
127  void show(std::ostream& os) { db_dump(m_db, os); }
128 
129  /**
130  * Get the sortable Id of the listener
131  */
132  dependency_t order() const { return (dependency_t::BINDING); }
133  };
134 
135  /**
136  * event_handler to register with OM
137  */
138  static event_handler m_evh;
139 
140  /**
141  * Enquue commonds to the VPP command Q for the update
142  */
143  void update(const binding& obj);
144 
145  /**
146  * Find or Add the instance in the DB
147  */
148  static std::shared_ptr<binding> find_or_add(const binding& temp)
149  {
150  return (m_db.find_or_add(
151  std::make_pair(temp.m_direction, temp.m_itf->key()), temp));
152  }
153 
154  /*
155  * It's the OM class that calls singular()
156  */
157  friend class VOM::OM;
158 
159  /**
160  * It's the singular_db class that calls replay()
161  */
162  friend class singular_db<key_t, binding>;
163 
164  /**
165  * Sweep/reap the object if still stale
166  */
167  void sweep(void);
168 
169  /**
170  * Replay the objects state to HW
171  */
172  void replay(void);
173 
174  /**
175  * The direction the of the packets on which to apply the ACL
176  * input or output
177  */
178  const direction_t m_direction;
179 
180  /**
181  * A reference counting pointer the interface that this L3 layer
182  * represents. By holding the reference here, we can guarantee that
183  * this object will outlive the interface
184  */
185  const std::shared_ptr<interface> m_itf;
186 
187  /**
188  * A reference counting pointer the ACL that this
189  * interface is bound to. By holding the reference here, we can
190  * guarantee that this object will outlive the BD.
191  */
192  const std::shared_ptr<LIST> m_acl;
193 
194  /**
195  * HW configuration for the binding. The bool representing the
196  * do/don't bind.
197  */
198  HW::item<bool> m_binding;
199 
200  /**
201  * A map of all L2 interfaces key against the interface's handle_t
202  */
203  static singular_db<key_t, binding> m_db;
204 };
205 
206 /**
207  * Typedef the L3 binding type
208  */
210 
211 /**
212  * Typedef the L2 binding type
213  */
215 
216 /**
217  * Definition of the static Singular DB for ACL bindings
218  */
219 template <typename LIST>
222 
223 template <typename LIST>
225 
226 namespace {
227 const static dependency_t __attribute__((unused)) l2o = l2_binding::order();
228 const static dependency_t __attribute__((unused)) l3o = l3_binding::order();
229 };
230 };
231 
232 std::ostream& operator<<(std::ostream& os,
233  const std::pair<direction_t, interface::key_t>& key);
234 };
235 
236 /*
237  * fd.io coding-style-patch-verification: ON
238  *
239  * Local Variables:
240  * eval: (c-set-style "mozilla")
241  * End:
242  */
243 
244 #endif
binding< l2_list > l2_binding
Typedef the L2 binding type.
std::shared_ptr< binding > singular() const
Return the &#39;singular instance&#39; of the L2 config that matches this object.
Definition: acl_binding.hpp:82
std::pair< direction_t, interface::key_t > key_t
The key for a binding is the direction and the interface.
Definition: acl_binding.hpp:44
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 void dump(std::ostream &os)
Dump all bindings into the stream provided.
Definition: acl_binding.hpp:99
static dependency_t order()
std::string to_string() const
convert to string format for debug purposes
Definition: hw.hpp:160
Feature Directions.
Definition: types.hpp:139
binding(const binding &o)
Copy Constructor.
Definition: acl_binding.hpp:61
A Database to store the unique &#39;singular&#39; instances of a single object type.
Definition: singular_db.hpp:33
A representation of an interface in VPP.
Definition: interface.hpp:41
Class definition for listeners to OM events.
Definition: om.hpp:284
inspect command handler Handler
Definition: inspect.hpp:54
void event_handler(void *tls_async)
Definition: tls_async.c:311
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
binding< l3_list > l3_binding
Typedef the L3 binding type.
~binding()
Destructor.
Definition: acl_binding.hpp:72
The interface to writing objects into VPP OM.
Definition: om.hpp:140
A base class for all object_base in the VPP object_base-Model.
Definition: object_base.hpp:29
std::ostream & operator<<(std::ostream &os, const std::pair< direction_t, interface::key_t > &key)
Then L2/objects that bind to interfaces, BD, ACLS, etc.
The VPP Object Model (VOM) library.
Definition: acl_binding.cpp:19
std::string to_string() const
convert to string format for debug purposes
Definition: acl_binding.hpp:87
void show(char *chroot_path, int verbose)
Definition: svmtool.c:105
const std::string & to_string() const
convert to string format for debug purposes
Definition: enum_base.hpp:36
A binding between an ACL and an interface.
Definition: acl_binding.hpp:38
binding(const direction_t &direction, const interface &itf, const LIST &acl)
Construct a new object matching the desried state.
Definition: acl_binding.hpp:49