session: lookup/rules table improvements and cleanup
[vpp.git] / src / vnet / session / session_lookup.c
index 740c5a6..f4b26f6 100644 (file)
@@ -162,27 +162,35 @@ make_v6_ss_kv_from_tc (session_kv6_t * kv, transport_connection_t * t)
                 session_type_from_proto_and_ip (t->proto, 0));
 }
 
-
 static session_table_t *
-session_table_get_or_alloc_for_connection (transport_connection_t * tc)
+session_table_get_or_alloc (u8 fib_proto, u8 fib_index)
 {
   session_table_t *st;
-  u32 table_index, fib_proto = transport_connection_fib_proto (tc);
-  if (vec_len (fib_index_to_table_index[fib_proto]) <= tc->fib_index)
+  u32 table_index;
+  if (vec_len (fib_index_to_table_index[fib_proto]) <= fib_index)
     {
       st = session_table_alloc ();
       table_index = session_table_index (st);
-      vec_validate (fib_index_to_table_index[fib_proto], tc->fib_index);
-      fib_index_to_table_index[fib_proto][tc->fib_index] = table_index;
+      vec_validate (fib_index_to_table_index[fib_proto], fib_index);
+      fib_index_to_table_index[fib_proto][fib_index] = table_index;
+      st->active_fib_proto = fib_proto;
       return st;
     }
   else
     {
-      table_index = fib_index_to_table_index[fib_proto][tc->fib_index];
+      table_index = fib_index_to_table_index[fib_proto][fib_index];
       return session_table_get (table_index);
     }
 }
 
+static session_table_t *
+session_table_get_or_alloc_for_connection (transport_connection_t * tc)
+{
+  u32 fib_proto;
+  fib_proto = transport_connection_fib_proto (tc);
+  return session_table_get_or_alloc (fib_proto, tc->fib_index);
+}
+
 static session_table_t *
 session_table_get_for_connection (transport_connection_t * tc)
 {
@@ -339,84 +347,181 @@ session_lookup_del_session (stream_session_t * s)
   return session_lookup_del_connection (ts);
 }
 
-u64
-session_lookup_session_endpoint (u32 table_index, session_endpoint_t * sep)
+static u32
+session_lookup_action_to_session_index (u32 action_index)
 {
-  session_table_t *st;
-  session_kv4_t kv4;
-  session_kv6_t kv6;
-  int rv;
+  if (action_index != SESSION_RULES_TABLE_ACTION_DROP)
+    return action_index;
+  return SESSION_INVALID_INDEX;
+}
 
-  st = session_table_get (table_index);
-  if (!st)
-    return SESSION_INVALID_HANDLE;
-  if (sep->is_ip4)
-    {
-      make_v4_listener_kv (&kv4, &sep->ip.ip4, sep->port,
-                          sep->transport_proto);
-      rv = clib_bihash_search_inline_16_8 (&st->v4_session_hash, &kv4);
-      if (rv == 0)
-       return kv4.value;
-    }
-  else
-    {
-      make_v6_listener_kv (&kv6, &sep->ip.ip6, sep->port,
-                          sep->transport_proto);
-      rv = clib_bihash_search_inline_48_8 (&st->v6_session_hash, &kv6);
-      if (rv == 0)
-       return kv6.value;
-    }
-  return SESSION_INVALID_HANDLE;
+static stream_session_t *
+session_lookup_app_listen_session (u32 app_index, u8 fib_proto,
+                                  u8 transport_proto)
+{
+  application_t *app;
+  app = application_get (app_index);
+  if (!app)
+    return 0;
+
+  return application_first_listener (app, fib_proto, transport_proto);
+}
+
+static stream_session_t *
+session_lookup_action_to_session (u32 action_index, u8 fib_proto,
+                                 u8 transport_proto)
+{
+  u32 session_index;
+  session_index = session_lookup_action_to_session_index (action_index);
+  /* Nothing sophisticated for now, action index is app index */
+  return session_lookup_app_listen_session (session_index, fib_proto,
+                                           transport_proto);
+}
+
+stream_session_t *
+session_lookup_rules_table_session4 (session_table_t * st, u8 proto,
+                                    ip4_address_t * lcl, u16 lcl_port,
+                                    ip4_address_t * rmt, u16 rmt_port)
+{
+  session_rules_table_t *srt = &st->session_rules[proto];
+  u32 action_index, session_index;
+  action_index = session_rules_table_lookup4 (srt, lcl, rmt, lcl_port,
+                                             rmt_port);
+  session_index = session_lookup_action_to_session_index (action_index);
+  /* Nothing sophisticated for now, action index is app index */
+  return session_lookup_app_listen_session (session_index, FIB_PROTOCOL_IP4,
+                                           proto);
 }
 
 stream_session_t *
-session_lookup_global_session_endpoint (session_endpoint_t * sep)
+session_lookup_rules_table6 (session_table_t * st, u8 proto,
+                            ip6_address_t * lcl, u16 lcl_port,
+                            ip6_address_t * rmt, u16 rmt_port)
 {
+  session_rules_table_t *srt = &st->session_rules[proto];
+  u32 action_index, session_index;
+  action_index = session_rules_table_lookup6 (srt, lcl, rmt, lcl_port,
+                                             rmt_port);
+  session_index = session_lookup_action_to_session_index (action_index);
+  return session_lookup_app_listen_session (session_index, FIB_PROTOCOL_IP6,
+                                           proto);
+}
+
+/**
+ * Lookup listener for session endpoint in table
+ *
+ * @param table_index table where the endpoint should be looked up
+ * @param sep session endpoint to be looked up
+ * @param use_rules flag that indicates if the session rules of the table
+ *                 should be used
+ * @return invalid handle if nothing is found, the handle of a valid listener
+ *        or an action_index if a rule is hit
+ */
+u64
+session_lookup_endpoint_listener (u32 table_index, session_endpoint_t * sep,
+                                 u8 use_rules)
+{
+  session_rules_table_t *srt;
   session_table_t *st;
-  session_kv4_t kv4;
-  session_kv6_t kv6;
-  u8 fib_proto;
-  u32 table_index;
+  u32 ai;
   int rv;
+  u8 sst;
 
-  fib_proto = session_endpoint_fib_proto (sep);
-  table_index = session_lookup_get_index_for_fib (fib_proto, sep->fib_index);
+  sst = session_type_from_proto_and_ip (sep->transport_proto, sep->is_ip4);
   st = session_table_get (table_index);
   if (!st)
-    return 0;
+    return SESSION_INVALID_HANDLE;
   if (sep->is_ip4)
     {
-      make_v4_listener_kv (&kv4, &sep->ip.ip4, sep->port,
-                          sep->transport_proto);
+      session_kv4_t kv4;
+      ip4_address_t lcl4;
+
+      make_v4_listener_kv (&kv4, &sep->ip.ip4, sep->port, sst);
       rv = clib_bihash_search_inline_16_8 (&st->v4_session_hash, &kv4);
       if (rv == 0)
-       return session_get_from_handle (kv4.value);
+       return kv4.value;
+      if (use_rules)
+       {
+         memset (&lcl4, 0, sizeof (lcl4));
+         srt = &st->session_rules[sep->transport_proto];
+         ai = session_rules_table_lookup4 (srt, &lcl4, &sep->ip.ip4, 0,
+                                           sep->port);
+         if (ai != SESSION_RULES_TABLE_INVALID_INDEX)
+           return session_lookup_action_to_session_index (ai);
+       }
     }
   else
     {
-      make_v6_listener_kv (&kv6, &sep->ip.ip6, sep->port,
-                          sep->transport_proto);
+      session_kv6_t kv6;
+      ip6_address_t lcl6;
+
+      make_v6_listener_kv (&kv6, &sep->ip.ip6, sep->port, sst);
       rv = clib_bihash_search_inline_48_8 (&st->v6_session_hash, &kv6);
       if (rv == 0)
-       return session_get_from_handle (kv6.value);
+       return kv6.value;
+
+      if (use_rules)
+       {
+         memset (&lcl6, 0, sizeof (lcl6));
+         srt = &st->session_rules[sep->transport_proto];
+         ai = session_rules_table_lookup6 (srt, &lcl6, &sep->ip.ip6, 0,
+                                           sep->port);
+         if (ai != SESSION_RULES_TABLE_INVALID_INDEX)
+           return session_lookup_action_to_session_index (ai);
+       }
     }
-  return 0;
+  return SESSION_INVALID_HANDLE;
 }
 
+/**
+ * Look up endpoint in local session table
+ *
+ * The result, for now, is an application index and it may in the future
+ * be extended to a more complicated "action object". The only action we
+ * emulate now is "drop" and for that we return a special app index.
+ *
+ * Lookup logic is to check in order:
+ * - the rules in the table (connect acls)
+ * - session sub-table for a listener
+ * - session sub-table for a local listener (zeroed addr)
+ *
+ * @param table_index table where the lookup should be done
+ * @param sep session endpoint to be looked up
+ * @return index that can be interpreted as an app index or drop action.
+ */
 u32
-session_lookup_local_session_endpoint (u32 table_index,
-                                      session_endpoint_t * sep)
+session_lookup_local_endpoint (u32 table_index, session_endpoint_t * sep)
 {
+  session_rules_table_t *srt;
   session_table_t *st;
-  session_kv4_t kv4;
-  session_kv6_t kv6;
+  u32 ai;
   int rv;
 
   st = session_table_get (table_index);
   if (!st)
     return SESSION_INVALID_INDEX;
+  ASSERT (st->is_local);
+
   if (sep->is_ip4)
     {
+      session_kv4_t kv4;
+      ip4_address_t lcl4;
+
+      /*
+       * Check if endpoint has special rules associated
+       */
+      memset (&lcl4, 0, sizeof (lcl4));
+      srt = &st->session_rules[sep->transport_proto];
+      ai = session_rules_table_lookup4 (srt, &lcl4, &sep->ip.ip4, 0,
+                                       sep->port);
+      if (ai == SESSION_RULES_TABLE_ACTION_DROP)
+       return APP_DROP_INDEX;
+      if (ai != SESSION_RULES_TABLE_ACTION_NONE)
+       return session_lookup_action_to_session_index (ai);
+
+      /*
+       * Check if session endpoint is a listener
+       */
       make_v4_listener_kv (&kv4, &sep->ip.ip4, sep->port,
                           sep->transport_proto);
       rv = clib_bihash_search_inline_16_8 (&st->v4_session_hash, &kv4);
@@ -434,6 +539,18 @@ session_lookup_local_session_endpoint (u32 table_index,
     }
   else
     {
+      session_kv6_t kv6;
+      ip6_address_t lcl6;
+
+      memset (&lcl6, 0, sizeof (lcl6));
+      srt = &st->session_rules[sep->transport_proto];
+      ai = session_rules_table_lookup6 (srt, &lcl6, &sep->ip.ip6, 0,
+                                       sep->port);
+      if (ai == SESSION_RULES_TABLE_ACTION_DROP)
+       return APP_DROP_INDEX;
+      if (ai != SESSION_RULES_TABLE_INVALID_INDEX)
+       return session_lookup_action_to_session_index (ai);
+
       make_v6_listener_kv (&kv6, &sep->ip.ip6, sep->port,
                           sep->transport_proto);
       rv = clib_bihash_search_inline_48_8 (&st->v6_session_hash, &kv6);
@@ -448,7 +565,7 @@ session_lookup_local_session_endpoint (u32 table_index,
       if (rv == 0)
        return (u32) kv6.value;
     }
-  return SESSION_INVALID_INDEX;
+  return APP_INVALID_INDEX;
 }
 
 static stream_session_t *
@@ -634,9 +751,10 @@ session_lookup_half_open_connection (u64 handle, u8 proto, u8 is_ip4)
  * The lookup is incremental and returns whenever something is matched. The
  * steps are:
  * - Try to find an established session
+ * - Try to find a half-open connection
+ * - Try session rules table
  * - Try to find a fully-formed or local source wildcarded (listener bound to
  *   all interfaces) listener session
- * - Try to find a half-open connection
  * - return 0
  *
  * @param fib_index    index of fib wherein the connection was received
@@ -657,13 +775,16 @@ session_lookup_connection_wt4 (u32 fib_index, ip4_address_t * lcl,
   session_table_t *st;
   session_kv4_t kv4;
   stream_session_t *s;
+  u32 action_index;
   int rv;
 
   st = session_table_get_for_fib_index (FIB_PROTOCOL_IP4, fib_index);
   if (PREDICT_FALSE (!st))
     return 0;
 
-  /* Lookup session amongst established ones */
+  /*
+   * Lookup session amongst established ones
+   */
   make_v4_ss_kv (&kv4, lcl, rmt, lcl_port, rmt_port, proto);
   rv = clib_bihash_search_inline_16_8 (&st->v4_session_hash, &kv4);
   if (rv == 0)
@@ -674,18 +795,38 @@ session_lookup_connection_wt4 (u32 fib_index, ip4_address_t * lcl,
                                                      thread_index);
     }
 
-  /* If nothing is found, check if any listener is available */
-  s = session_lookup_listener4_i (st, lcl, lcl_port, proto);
-  if (s)
-    return tp_vfts[s->session_type].get_listener (s->connection_index);
-
-  /* Finally, try half-open connections */
+  /*
+   * Try half-open connections
+   */
   rv = clib_bihash_search_inline_16_8 (&st->v4_half_open_hash, &kv4);
   if (rv == 0)
     {
       u32 sst = session_type_from_proto_and_ip (proto, 1);
       return tp_vfts[sst].get_half_open (kv4.value & 0xFFFFFFFF);
     }
+
+  /*
+   * Check the session rules table
+   */
+  action_index = session_rules_table_lookup4 (&st->session_rules[proto], lcl,
+                                             rmt, lcl_port, rmt_port);
+  if (action_index == SESSION_RULES_TABLE_ACTION_DROP)
+    return 0;
+  if (action_index != SESSION_RULES_TABLE_ACTION_NONE)
+    {
+      s = session_lookup_action_to_session (action_index, FIB_PROTOCOL_IP4,
+                                           proto);
+      if (s)
+       return tp_vfts[s->session_type].get_listener (s->connection_index);
+    }
+
+  /*
+   * If nothing is found, check if any listener is available
+   */
+  s = session_lookup_listener4_i (st, lcl, lcl_port, proto);
+  if (s)
+    return tp_vfts[s->session_type].get_listener (s->connection_index);
+
   return 0;
 }
 
@@ -713,13 +854,16 @@ session_lookup_connection4 (u32 fib_index, ip4_address_t * lcl,
   session_table_t *st;
   session_kv4_t kv4;
   stream_session_t *s;
+  u32 action_index;
   int rv;
 
   st = session_table_get_for_fib_index (FIB_PROTOCOL_IP4, fib_index);
   if (PREDICT_FALSE (!st))
     return 0;
 
-  /* Lookup session amongst established ones */
+  /*
+   * Lookup session amongst established ones
+   */
   make_v4_ss_kv (&kv4, lcl, rmt, lcl_port, rmt_port, proto);
   rv = clib_bihash_search_inline_16_8 (&st->v4_session_hash, &kv4);
   if (rv == 0)
@@ -729,18 +873,38 @@ session_lookup_connection4 (u32 fib_index, ip4_address_t * lcl,
                                                      s->thread_index);
     }
 
-  /* If nothing is found, check if any listener is available */
-  s = session_lookup_listener4_i (st, lcl, lcl_port, proto);
-  if (s)
-    return tp_vfts[s->session_type].get_listener (s->connection_index);
-
-  /* Finally, try half-open connections */
+  /*
+   * Try half-open connections
+   */
   rv = clib_bihash_search_inline_16_8 (&st->v4_half_open_hash, &kv4);
   if (rv == 0)
     {
       u32 sst = session_type_from_proto_and_ip (proto, 1);
       return tp_vfts[sst].get_half_open (kv4.value & 0xFFFFFFFF);
     }
+
+  /*
+   * Check the session rules table
+   */
+  action_index = session_rules_table_lookup4 (&st->session_rules[proto], lcl,
+                                             rmt, lcl_port, rmt_port);
+  if (action_index == SESSION_RULES_TABLE_ACTION_DROP)
+    return 0;
+  if (action_index != SESSION_RULES_TABLE_ACTION_NONE)
+    {
+      s = session_lookup_action_to_session (action_index, FIB_PROTOCOL_IP4,
+                                           proto);
+      if (s)
+       return tp_vfts[s->session_type].get_listener (s->connection_index);
+    }
+
+  /*
+   * If nothing is found, check if any listener is available
+   */
+  s = session_lookup_listener4_i (st, lcl, lcl_port, proto);
+  if (s)
+    return tp_vfts[s->session_type].get_listener (s->connection_index);
+
   return 0;
 }
 
@@ -764,21 +928,41 @@ session_lookup_safe4 (u32 fib_index, ip4_address_t * lcl, ip4_address_t * rmt,
   session_table_t *st;
   session_kv4_t kv4;
   stream_session_t *s;
+  u32 action_index;
   int rv;
 
   st = session_table_get_for_fib_index (FIB_PROTOCOL_IP4, fib_index);
   if (PREDICT_FALSE (!st))
     return 0;
 
-  /* Lookup session amongst established ones */
+  /*
+   * Lookup session amongst established ones
+   */
   make_v4_ss_kv (&kv4, lcl, rmt, lcl_port, rmt_port, proto);
   rv = clib_bihash_search_inline_16_8 (&st->v4_session_hash, &kv4);
   if (rv == 0)
     return session_get_from_handle_safe (kv4.value);
 
-  /* If nothing is found, check if any listener is available */
+  /*
+   * Check the session rules table
+   */
+  action_index = session_rules_table_lookup4 (&st->session_rules[proto], lcl,
+                                             rmt, lcl_port, rmt_port);
+  if (action_index == SESSION_RULES_TABLE_ACTION_DROP)
+    return 0;
+  if (action_index != SESSION_RULES_TABLE_ACTION_NONE)
+    {
+      if ((s = session_lookup_action_to_session (action_index,
+                                                FIB_PROTOCOL_IP4, proto)))
+       return s;
+    }
+
+  /*
+   *  If nothing is found, check if any listener is available
+   */
   if ((s = session_lookup_listener4_i (st, lcl, lcl_port, proto)))
     return s;
+
   return 0;
 }
 
@@ -791,9 +975,10 @@ session_lookup_safe4 (u32 fib_index, ip4_address_t * lcl, ip4_address_t * rmt,
  * The lookup is incremental and returns whenever something is matched. The
  * steps are:
  * - Try to find an established session
+ * - Try to find a half-open connection
+ * - Try session rules table
  * - Try to find a fully-formed or local source wildcarded (listener bound to
  *   all interfaces) listener session
- * - Try to find a half-open connection
  * - return 0
  *
  * @param fib_index    index of the fib wherein the connection was received
@@ -814,6 +999,7 @@ session_lookup_connection_wt6 (u32 fib_index, ip6_address_t * lcl,
   session_table_t *st;
   stream_session_t *s;
   session_kv6_t kv6;
+  u32 action_index;
   int rv;
 
   st = session_table_get_for_fib_index (FIB_PROTOCOL_IP6, fib_index);
@@ -830,12 +1016,7 @@ session_lookup_connection_wt6 (u32 fib_index, ip6_address_t * lcl,
                                                      thread_index);
     }
 
-  /* If nothing is found, check if any listener is available */
-  s = session_lookup_listener6_i (st, lcl, lcl_port, proto);
-  if (s)
-    return tp_vfts[s->session_type].get_listener (s->connection_index);
-
-  /* Finally, try half-open connections */
+  /* Try half-open connections */
   rv = clib_bihash_search_inline_48_8 (&st->v6_half_open_hash, &kv6);
   if (rv == 0)
     {
@@ -843,6 +1024,24 @@ session_lookup_connection_wt6 (u32 fib_index, ip6_address_t * lcl,
       return tp_vfts[sst].get_half_open (kv6.value & 0xFFFFFFFF);
     }
 
+  /* Check the session rules table */
+  action_index = session_rules_table_lookup6 (&st->session_rules[proto], lcl,
+                                             rmt, lcl_port, rmt_port);
+  if (action_index == SESSION_RULES_TABLE_ACTION_DROP)
+    return 0;
+  if (action_index != SESSION_RULES_TABLE_ACTION_NONE)
+    {
+      s = session_lookup_action_to_session (action_index, FIB_PROTOCOL_IP4,
+                                           proto);
+      if (s)
+       return tp_vfts[s->session_type].get_listener (s->connection_index);
+    }
+
+  /* If nothing is found, check if any listener is available */
+  s = session_lookup_listener6_i (st, lcl, lcl_port, proto);
+  if (s)
+    return tp_vfts[s->session_type].get_listener (s->connection_index);
+
   return 0;
 }
 
@@ -870,6 +1069,7 @@ session_lookup_connection6 (u32 fib_index, ip6_address_t * lcl,
   session_table_t *st;
   stream_session_t *s;
   session_kv6_t kv6;
+  u32 action_index;
   int rv;
 
   st = session_table_get_for_fib_index (FIB_PROTOCOL_IP6, fib_index);
@@ -885,12 +1085,7 @@ session_lookup_connection6 (u32 fib_index, ip6_address_t * lcl,
                                                      s->thread_index);
     }
 
-  /* If nothing is found, check if any listener is available */
-  s = session_lookup_listener6 (fib_index, lcl, lcl_port, proto);
-  if (s)
-    return tp_vfts[s->session_type].get_listener (s->connection_index);
-
-  /* Finally, try half-open connections */
+  /* Try half-open connections */
   rv = clib_bihash_search_inline_48_8 (&st->v6_half_open_hash, &kv6);
   if (rv == 0)
     {
@@ -898,6 +1093,24 @@ session_lookup_connection6 (u32 fib_index, ip6_address_t * lcl,
       return tp_vfts[sst].get_half_open (kv6.value & 0xFFFFFFFF);
     }
 
+  /* Check the session rules table */
+  action_index = session_rules_table_lookup6 (&st->session_rules[proto], lcl,
+                                             rmt, lcl_port, rmt_port);
+  if (action_index == SESSION_RULES_TABLE_ACTION_DROP)
+    return 0;
+  if (action_index != SESSION_RULES_TABLE_ACTION_NONE)
+    {
+      s = session_lookup_action_to_session (action_index, FIB_PROTOCOL_IP4,
+                                           proto);
+      if (s)
+       return tp_vfts[s->session_type].get_listener (s->connection_index);
+    }
+
+  /* If nothing is found, check if any listener is available */
+  s = session_lookup_listener6 (fib_index, lcl, lcl_port, proto);
+  if (s)
+    return tp_vfts[s->session_type].get_listener (s->connection_index);
+
   return 0;
 }
 
@@ -921,6 +1134,7 @@ session_lookup_safe6 (u32 fib_index, ip6_address_t * lcl, ip6_address_t * rmt,
   session_table_t *st;
   session_kv6_t kv6;
   stream_session_t *s;
+  u32 action_index;
   int rv;
 
   st = session_table_get_for_fib_index (FIB_PROTOCOL_IP6, fib_index);
@@ -932,6 +1146,19 @@ session_lookup_safe6 (u32 fib_index, ip6_address_t * lcl, ip6_address_t * rmt,
   if (rv == 0)
     return session_get_from_handle_safe (kv6.value);
 
+  /* Check the session rules table */
+  action_index = session_rules_table_lookup6 (&st->session_rules[proto], lcl,
+                                             rmt, lcl_port, rmt_port);
+  if (action_index == SESSION_RULES_TABLE_ACTION_DROP)
+    return 0;
+  if (action_index != SESSION_RULES_TABLE_ACTION_NONE)
+    {
+      if ((s =
+          session_lookup_action_to_session (action_index, FIB_PROTOCOL_IP4,
+                                            proto)))
+       return s;
+    }
+
   /* If nothing is found, check if any listener is available */
   if ((s = session_lookup_listener6_i (st, lcl, lcl_port, proto)))
     return s;
@@ -969,6 +1196,69 @@ session_lookup_local_listener_parse_handle (u64 handle,
   return 0;
 }
 
+clib_error_t *
+vnet_session_rule_add_del (session_rule_add_del_args_t * args)
+{
+  app_namespace_t *app_ns = app_namespace_get (args->appns_index);
+  session_rules_table_t *srt;
+  session_table_t *st;
+  u32 fib_index;
+  u8 fib_proto;
+  clib_error_t *error;
+
+  if (!app_ns)
+    return clib_error_return_code (0, VNET_API_ERROR_APP_INVALID_NS, 0,
+                                  "invalid app ns");
+  if (args->scope > 3)
+    return clib_error_return_code (0, VNET_API_ERROR_INVALID_VALUE, 0,
+                                  "invalid scope");
+  if (args->transport_proto != TRANSPORT_PROTO_TCP
+      && args->transport_proto != TRANSPORT_PROTO_UDP)
+    return clib_error_return_code (0, VNET_API_ERROR_INVALID_VALUE, 0,
+                                  "invalid transport proto");
+  if ((args->scope & SESSION_RULE_SCOPE_GLOBAL) || args->scope == 0)
+    {
+      fib_proto = args->table_args.rmt.fp_proto;
+      fib_index = app_namespace_get_fib_index (app_ns, fib_proto);
+      st = session_table_get_for_fib_index (fib_proto, fib_index);
+      srt = &st->session_rules[args->transport_proto];
+      if ((error = session_rules_table_add_del (srt, &args->table_args)))
+       {
+         clib_error_report (error);
+         return error;
+       }
+    }
+  if (args->scope & SESSION_RULE_SCOPE_LOCAL)
+    {
+      memset (&args->table_args.lcl, 0, sizeof (args->table_args.lcl));
+      args->table_args.lcl.fp_proto = args->table_args.rmt.fp_proto;
+      args->table_args.lcl_port = 0;
+      st = app_namespace_get_local_table (app_ns);
+      srt = &st->session_rules[args->transport_proto];
+      error = session_rules_table_add_del (srt, &args->table_args);
+    }
+  return error;
+}
+
+/**
+ * Mark (global) tables as pertaining to app ns
+ */
+void
+session_lookup_set_tables_appns (app_namespace_t * app_ns)
+{
+  session_table_t *st;
+  u32 fib_index;
+  u8 fp;
+
+  for (fp = 0; fp < ARRAY_LEN (fib_index_to_table_index); fp++)
+    {
+      fib_index = app_namespace_get_fib_index (app_ns, fp);
+      st = session_table_get_for_fib_index (fp, fib_index);
+      if (st)
+       st->appns_index = app_namespace_index (app_ns);
+    }
+}
+
 u8 *
 format_ip4_session_lookup_kvp (u8 * s, va_list * args)
 {
@@ -1039,6 +1329,258 @@ session_lookup_show_table_entries (vlib_main_t * vm, session_table_t * table,
     }
 }
 
+static clib_error_t *
+session_rule_command_fn (vlib_main_t * vm, unformat_input_t * input,
+                        vlib_cli_command_t * cmd)
+{
+  u32 proto = ~0, lcl_port, rmt_port, action = 0, lcl_plen = 0, rmt_plen = 0;
+  u32 appns_index, scope = 0;
+  ip46_address_t lcl_ip, rmt_ip;
+  u8 is_ip4 = 1, conn_set = 0;
+  u8 fib_proto, is_add = 1, *ns_id = 0;
+  u8 *tag = 0;
+  app_namespace_t *app_ns;
+  clib_error_t *error;
+
+  memset (&lcl_ip, 0, sizeof (lcl_ip));
+  memset (&rmt_ip, 0, sizeof (rmt_ip));
+  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
+    {
+      if (unformat (input, "del"))
+       is_add = 0;
+      else if (unformat (input, "add"))
+       ;
+      else if (unformat (input, "appns %_%v%_", &ns_id))
+       ;
+      else if (unformat (input, "scope global"))
+       scope = SESSION_RULE_SCOPE_GLOBAL;
+      else if (unformat (input, "scope local"))
+       scope = SESSION_RULE_SCOPE_LOCAL;
+      else if (unformat (input, "scope all"))
+       scope = SESSION_RULE_SCOPE_LOCAL | SESSION_RULE_SCOPE_GLOBAL;
+      else if (unformat (input, "proto %U", unformat_transport_proto, &proto))
+       ;
+      else if (unformat (input, "%U/%d %d %U/%d %d", unformat_ip4_address,
+                        &lcl_ip.ip4, &lcl_plen, &lcl_port,
+                        unformat_ip4_address, &rmt_ip.ip4, &rmt_plen,
+                        &rmt_port))
+       {
+         is_ip4 = 1;
+         conn_set = 1;
+       }
+      else if (unformat (input, "%U/%d %d %U/%d %d", unformat_ip6_address,
+                        &lcl_ip.ip6, &lcl_plen, &lcl_port,
+                        unformat_ip6_address, &rmt_ip.ip6, &rmt_plen,
+                        &rmt_port))
+       {
+         is_ip4 = 0;
+         conn_set = 1;
+       }
+      else if (unformat (input, "action %d", &action))
+       ;
+      else if (unformat (input, "tag %_%v%_", &tag))
+       ;
+      else
+       return clib_error_return (0, "unknown input `%U'",
+                                 format_unformat_error, input);
+    }
+
+  if (proto == ~0)
+    {
+      vlib_cli_output (vm, "proto must be set");
+      return 0;
+    }
+  if (is_add && !conn_set && action == ~0)
+    {
+      vlib_cli_output (vm, "connection and action must be set for add");
+      return 0;
+    }
+  if (!is_add && !tag && !conn_set)
+    {
+      vlib_cli_output (vm, "connection or tag must be set for delete");
+      return 0;
+    }
+  if (vec_len (tag) > SESSION_RULE_TAG_MAX_LEN)
+    {
+      vlib_cli_output (vm, "tag too long (max u64)");
+      return 0;
+    }
+
+  if (ns_id)
+    {
+      app_ns = app_namespace_get_from_id (ns_id);
+      if (!app_ns)
+       {
+         vlib_cli_output (vm, "namespace %v does not exist", ns_id);
+         return 0;
+       }
+    }
+  else
+    {
+      app_ns = app_namespace_get_default ();
+    }
+  appns_index = app_namespace_index (app_ns);
+
+  fib_proto = is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
+  session_rule_add_del_args_t args = {
+    .table_args.lcl.fp_addr = lcl_ip,
+    .table_args.lcl.fp_len = lcl_plen,
+    .table_args.lcl.fp_proto = fib_proto,
+    .table_args.rmt.fp_addr = rmt_ip,
+    .table_args.rmt.fp_len = rmt_plen,
+    .table_args.rmt.fp_proto = fib_proto,
+    .table_args.lcl_port = lcl_port,
+    .table_args.rmt_port = rmt_port,
+    .table_args.action_index = action,
+    .table_args.is_add = is_add,
+    .table_args.tag = tag,
+    .appns_index = appns_index,
+    .scope = scope,
+  };
+  error = vnet_session_rule_add_del (&args);
+  vec_free (tag);
+  return error;
+}
+
+/* *INDENT-OFF* */
+VLIB_CLI_COMMAND (session_rule_command, static) =
+{
+  .path = "session rule",
+  .short_help = "session rule [add|del] appns <ns_id> proto <proto> "
+      "<lcl-ip/plen> <lcl-port> <rmt-ip/plen> <rmt-port> action <action>",
+  .function = session_rule_command_fn,
+};
+/* *INDENT-ON* */
+
+void
+session_lookup_dump_rules_table (u32 fib_index, u8 fib_proto,
+                                u8 transport_proto)
+{
+  vlib_main_t *vm = vlib_get_main ();
+  session_rules_table_t *srt;
+  session_table_t *st;
+  st = session_table_get_for_fib_index (fib_index, fib_proto);
+  srt = &st->session_rules[transport_proto];
+  session_rules_table_cli_dump (vm, srt, fib_proto);
+}
+
+void
+session_lookup_dump_local_rules_table (u32 table_index, u8 fib_proto,
+                                      u8 transport_proto)
+{
+  vlib_main_t *vm = vlib_get_main ();
+  session_rules_table_t *srt;
+  session_table_t *st;
+  st = session_table_get (table_index);
+  srt = &st->session_rules[transport_proto];
+  session_rules_table_cli_dump (vm, srt, fib_proto);
+}
+
+static clib_error_t *
+show_session_rules_command_fn (vlib_main_t * vm, unformat_input_t * input,
+                              vlib_cli_command_t * cmd)
+{
+  u32 transport_proto = ~0, lcl_port, rmt_port, lcl_plen, rmt_plen;
+  u32 fib_index, scope = 0;
+  ip46_address_t lcl_ip, rmt_ip;
+  u8 is_ip4 = 1, show_one = 0;
+  app_namespace_t *app_ns;
+  session_rules_table_t *srt;
+  session_table_t *st;
+  u8 *ns_id = 0, fib_proto;
+
+  memset (&lcl_ip, 0, sizeof (lcl_ip));
+  memset (&rmt_ip, 0, sizeof (rmt_ip));
+  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
+    {
+      if (unformat (input, "%U", unformat_transport_proto, &transport_proto))
+       ;
+      else if (unformat (input, "appns %_%v%_", &ns_id))
+       ;
+      else if (unformat (input, "scope global"))
+       scope = 1;
+      else if (unformat (input, "scope local"))
+       scope = 2;
+      else if (unformat (input, "%U/%d %d %U/%d %d", unformat_ip4_address,
+                        &lcl_ip.ip4, &lcl_plen, &lcl_port,
+                        unformat_ip4_address, &rmt_ip.ip4, &rmt_plen,
+                        &rmt_port))
+       {
+         is_ip4 = 1;
+         show_one = 1;
+       }
+      else if (unformat (input, "%U/%d %d %U/%d %d", unformat_ip6_address,
+                        &lcl_ip.ip6, &lcl_plen, &lcl_port,
+                        unformat_ip6_address, &rmt_ip.ip6, &rmt_plen,
+                        &rmt_port))
+       {
+         is_ip4 = 0;
+         show_one = 1;
+       }
+      else
+       return clib_error_return (0, "unknown input `%U'",
+                                 format_unformat_error, input);
+    }
+
+  if (transport_proto == ~0)
+    {
+      vlib_cli_output (vm, "transport proto must be set");
+      return 0;
+    }
+
+  if (ns_id)
+    {
+      app_ns = app_namespace_get_from_id (ns_id);
+      if (!app_ns)
+       {
+         vlib_cli_output (vm, "appns %v doesn't exist", ns_id);
+         return 0;
+       }
+    }
+  else
+    {
+      app_ns = app_namespace_get_default ();
+    }
+
+  if (scope == 1 || scope == 0)
+    {
+      fib_proto = is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
+      fib_index = is_ip4 ? app_ns->ip4_fib_index : app_ns->ip6_fib_index;
+      st = session_table_get_for_fib_index (fib_proto, fib_index);
+    }
+  else
+    {
+      st = app_namespace_get_local_table (app_ns);
+    }
+
+  if (show_one)
+    {
+      srt = &st->session_rules[transport_proto];
+      session_rules_table_show_rule (vm, srt, &lcl_ip, lcl_port, &rmt_ip,
+                                    rmt_port, is_ip4);
+      return 0;
+    }
+
+  vlib_cli_output (vm, "%U rules table", format_transport_proto,
+                  transport_proto);
+  srt = &st->session_rules[transport_proto];
+  session_rules_table_cli_dump (vm, srt, FIB_PROTOCOL_IP4);
+  session_rules_table_cli_dump (vm, srt, FIB_PROTOCOL_IP6);
+
+  vec_free (ns_id);
+  return 0;
+}
+
+/* *INDENT-OFF* */
+VLIB_CLI_COMMAND (show_session_rules_command, static) =
+{
+  .path = "show session rules",
+  .short_help = "show session rules [appns <id> proto <proto> <lcl-ip/plen>"
+      " <lcl-port> <rmt-ip/plen> <rmt-port>]",
+  .function = show_session_rules_command_fn,
+};
+/* *INDENT-ON* */
+
 void
 session_lookup_init (void)
 {
@@ -1048,11 +1590,13 @@ session_lookup_init (void)
   session_table_t *st = session_table_alloc ();
   vec_validate (fib_index_to_table_index[FIB_PROTOCOL_IP4], 0);
   fib_index_to_table_index[FIB_PROTOCOL_IP4][0] = session_table_index (st);
-  session_table_init (st);
+  st->active_fib_proto = FIB_PROTOCOL_IP4;
+  session_table_init (st, FIB_PROTOCOL_IP4);
   st = session_table_alloc ();
   vec_validate (fib_index_to_table_index[FIB_PROTOCOL_IP6], 0);
   fib_index_to_table_index[FIB_PROTOCOL_IP6][0] = session_table_index (st);
-  session_table_init (st);
+  st->active_fib_proto = FIB_PROTOCOL_IP6;
+  session_table_init (st, FIB_PROTOCOL_IP6);
 }
 
 /*