session: remove ho with fifos support
[vpp.git] / src / vnet / session / transport.c
1 /*
2  * Copyright (c) 2017-2019 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 #include <vnet/session/transport.h>
17 #include <vnet/session/session.h>
18 #include <vnet/fib/fib.h>
19
20 typedef struct local_endpoint_
21 {
22   transport_endpoint_t ep;
23   int refcnt;
24 } local_endpoint_t;
25
26 /**
27  * Per-type vector of transport protocol virtual function tables
28  */
29 transport_proto_vft_t *tp_vfts;
30
31 /*
32  * Port allocator seed
33  */
34 static u32 port_allocator_seed;
35
36 /*
37  * Local endpoints table
38  */
39 static transport_endpoint_table_t local_endpoints_table;
40
41 /*
42  * Pool of local endpoints
43  */
44 static local_endpoint_t *local_endpoints;
45
46 /*
47  * Local endpoints pool lock
48  */
49 static clib_spinlock_t local_endpoints_lock;
50
51 u8 *
52 format_transport_proto (u8 * s, va_list * args)
53 {
54   u32 transport_proto = va_arg (*args, u32);
55
56   if (tp_vfts[transport_proto].transport_options.name)
57     s = format (s, "%s", tp_vfts[transport_proto].transport_options.name);
58   else
59     s = format (s, "n/a");
60
61   return s;
62 }
63
64 u8 *
65 format_transport_proto_short (u8 * s, va_list * args)
66 {
67   u32 transport_proto = va_arg (*args, u32);
68   char *short_name;
69
70   short_name = tp_vfts[transport_proto].transport_options.short_name;
71   if (short_name)
72     s = format (s, "%s", short_name);
73   else
74     s = format (s, "NA");
75
76   return s;
77 }
78
79 u8 *
80 format_transport_connection (u8 * s, va_list * args)
81 {
82   u32 transport_proto = va_arg (*args, u32);
83   u32 conn_index = va_arg (*args, u32);
84   u32 thread_index = va_arg (*args, u32);
85   u32 verbose = va_arg (*args, u32);
86   transport_proto_vft_t *tp_vft;
87   transport_connection_t *tc;
88   u32 indent;
89
90   tp_vft = transport_protocol_get_vft (transport_proto);
91   if (!tp_vft)
92     return s;
93
94   s = format (s, "%U", tp_vft->format_connection, conn_index, thread_index,
95               verbose);
96   tc = tp_vft->get_connection (conn_index, thread_index);
97   if (tc && transport_connection_is_tx_paced (tc) && verbose > 1)
98     {
99       indent = format_get_indent (s) + 1;
100       s = format (s, "%Upacer: %U\n", format_white_space, indent,
101                   format_transport_pacer, &tc->pacer, tc->thread_index);
102       s = format (s, "%Utransport: flags 0x%x\n", format_white_space, indent,
103                   tc->flags);
104     }
105   return s;
106 }
107
108 u8 *
109 format_transport_listen_connection (u8 * s, va_list * args)
110 {
111   u32 transport_proto = va_arg (*args, u32);
112   transport_proto_vft_t *tp_vft;
113
114   tp_vft = transport_protocol_get_vft (transport_proto);
115   if (!tp_vft)
116     return s;
117
118   s = (tp_vft->format_listener) (s, args);
119   return s;
120 }
121
122 u8 *
123 format_transport_half_open_connection (u8 * s, va_list * args)
124 {
125   u32 transport_proto = va_arg (*args, u32);
126   u32 listen_index = va_arg (*args, u32);
127   transport_proto_vft_t *tp_vft;
128
129   tp_vft = transport_protocol_get_vft (transport_proto);
130   if (!tp_vft)
131     return s;
132
133   s = format (s, "%U", tp_vft->format_half_open, listen_index);
134   return s;
135 }
136
137 static u8
138 unformat_transport_str_match (unformat_input_t * input, const char *str)
139 {
140   int i;
141
142   if (strlen (str) > vec_len (input->buffer) - input->index)
143     return 0;
144
145   for (i = 0; i < strlen (str); i++)
146     {
147       if (input->buffer[i + input->index] != str[i])
148         return 0;
149     }
150   return 1;
151 }
152
153 uword
154 unformat_transport_proto (unformat_input_t * input, va_list * args)
155 {
156   u32 *proto = va_arg (*args, u32 *);
157   transport_proto_vft_t *tp_vft;
158   u8 longest_match = 0, match;
159   char *str, *str_match = 0;
160   transport_proto_t tp;
161
162   for (tp = 0; tp < vec_len (tp_vfts); tp++)
163     {
164       tp_vft = &tp_vfts[tp];
165       str = tp_vft->transport_options.name;
166       if (!str)
167         continue;
168       if (unformat_transport_str_match (input, str))
169         {
170           match = strlen (str);
171           if (match > longest_match)
172             {
173               *proto = tp;
174               longest_match = match;
175               str_match = str;
176             }
177         }
178     }
179   if (longest_match)
180     {
181       (void) unformat (input, str_match);
182       return 1;
183     }
184
185   return 0;
186 }
187
188 u8 *
189 format_transport_protos (u8 * s, va_list * args)
190 {
191   transport_proto_vft_t *tp_vft;
192
193   vec_foreach (tp_vft, tp_vfts)
194     s = format (s, "%s\n", tp_vft->transport_options.name);
195
196   return s;
197 }
198
199 u32
200 transport_endpoint_lookup (transport_endpoint_table_t * ht, u8 proto,
201                            ip46_address_t * ip, u16 port)
202 {
203   clib_bihash_kv_24_8_t kv;
204   int rv;
205
206   kv.key[0] = ip->as_u64[0];
207   kv.key[1] = ip->as_u64[1];
208   kv.key[2] = (u64) port << 8 | (u64) proto;
209
210   rv = clib_bihash_search_inline_24_8 (ht, &kv);
211   if (rv == 0)
212     return kv.value;
213
214   return ENDPOINT_INVALID_INDEX;
215 }
216
217 void
218 transport_endpoint_table_add (transport_endpoint_table_t * ht, u8 proto,
219                               transport_endpoint_t * te, u32 value)
220 {
221   clib_bihash_kv_24_8_t kv;
222
223   kv.key[0] = te->ip.as_u64[0];
224   kv.key[1] = te->ip.as_u64[1];
225   kv.key[2] = (u64) te->port << 8 | (u64) proto;
226   kv.value = value;
227
228   clib_bihash_add_del_24_8 (ht, &kv, 1);
229 }
230
231 void
232 transport_endpoint_table_del (transport_endpoint_table_t * ht, u8 proto,
233                               transport_endpoint_t * te)
234 {
235   clib_bihash_kv_24_8_t kv;
236
237   kv.key[0] = te->ip.as_u64[0];
238   kv.key[1] = te->ip.as_u64[1];
239   kv.key[2] = (u64) te->port << 8 | (u64) proto;
240
241   clib_bihash_add_del_24_8 (ht, &kv, 0);
242 }
243
244 void
245 transport_register_protocol (transport_proto_t transport_proto,
246                              const transport_proto_vft_t * vft,
247                              fib_protocol_t fib_proto, u32 output_node)
248 {
249   u8 is_ip4 = fib_proto == FIB_PROTOCOL_IP4;
250
251   vec_validate (tp_vfts, transport_proto);
252   tp_vfts[transport_proto] = *vft;
253
254   session_register_transport (transport_proto, vft, is_ip4, output_node);
255 }
256
257 transport_proto_t
258 transport_register_new_protocol (const transport_proto_vft_t * vft,
259                                  fib_protocol_t fib_proto, u32 output_node)
260 {
261   transport_proto_t transport_proto;
262   u8 is_ip4;
263
264   transport_proto = session_add_transport_proto ();
265   is_ip4 = fib_proto == FIB_PROTOCOL_IP4;
266
267   vec_validate (tp_vfts, transport_proto);
268   tp_vfts[transport_proto] = *vft;
269
270   session_register_transport (transport_proto, vft, is_ip4, output_node);
271
272   return transport_proto;
273 }
274
275 /**
276  * Get transport virtual function table
277  *
278  * @param type - session type (not protocol type)
279  */
280 transport_proto_vft_t *
281 transport_protocol_get_vft (transport_proto_t transport_proto)
282 {
283   if (transport_proto >= vec_len (tp_vfts))
284     return 0;
285   return &tp_vfts[transport_proto];
286 }
287
288 transport_service_type_t
289 transport_protocol_service_type (transport_proto_t tp)
290 {
291   return tp_vfts[tp].transport_options.service_type;
292 }
293
294 transport_tx_fn_type_t
295 transport_protocol_tx_fn_type (transport_proto_t tp)
296 {
297   return tp_vfts[tp].transport_options.tx_type;
298 }
299
300 void
301 transport_cleanup (transport_proto_t tp, u32 conn_index, u8 thread_index)
302 {
303   tp_vfts[tp].cleanup (conn_index, thread_index);
304 }
305
306 int
307 transport_connect (transport_proto_t tp, transport_endpoint_cfg_t * tep)
308 {
309   return tp_vfts[tp].connect (tep);
310 }
311
312 void
313 transport_close (transport_proto_t tp, u32 conn_index, u8 thread_index)
314 {
315   tp_vfts[tp].close (conn_index, thread_index);
316 }
317
318 void
319 transport_reset (transport_proto_t tp, u32 conn_index, u8 thread_index)
320 {
321   if (tp_vfts[tp].reset)
322     tp_vfts[tp].reset (conn_index, thread_index);
323   else
324     tp_vfts[tp].close (conn_index, thread_index);
325 }
326
327 u32
328 transport_start_listen (transport_proto_t tp, u32 session_index,
329                         transport_endpoint_t * tep)
330 {
331   return tp_vfts[tp].start_listen (session_index, tep);
332 }
333
334 u32
335 transport_stop_listen (transport_proto_t tp, u32 conn_index)
336 {
337   return tp_vfts[tp].stop_listen (conn_index);
338 }
339
340 u8
341 transport_protocol_is_cl (transport_proto_t tp)
342 {
343   return (tp_vfts[tp].transport_options.service_type == TRANSPORT_SERVICE_CL);
344 }
345
346 always_inline void
347 default_get_transport_endpoint (transport_connection_t * tc,
348                                 transport_endpoint_t * tep, u8 is_lcl)
349 {
350   if (is_lcl)
351     {
352       tep->port = tc->lcl_port;
353       tep->is_ip4 = tc->is_ip4;
354       clib_memcpy_fast (&tep->ip, &tc->lcl_ip, sizeof (tc->lcl_ip));
355     }
356   else
357     {
358       tep->port = tc->rmt_port;
359       tep->is_ip4 = tc->is_ip4;
360       clib_memcpy_fast (&tep->ip, &tc->rmt_ip, sizeof (tc->rmt_ip));
361     }
362 }
363
364 void
365 transport_get_endpoint (transport_proto_t tp, u32 conn_index,
366                         u32 thread_index, transport_endpoint_t * tep,
367                         u8 is_lcl)
368 {
369   if (tp_vfts[tp].get_transport_endpoint)
370     tp_vfts[tp].get_transport_endpoint (conn_index, thread_index, tep,
371                                         is_lcl);
372   else
373     {
374       transport_connection_t *tc;
375       tc = transport_get_connection (tp, conn_index, thread_index);
376       default_get_transport_endpoint (tc, tep, is_lcl);
377     }
378 }
379
380 void
381 transport_get_listener_endpoint (transport_proto_t tp, u32 conn_index,
382                                  transport_endpoint_t * tep, u8 is_lcl)
383 {
384   if (tp_vfts[tp].get_transport_listener_endpoint)
385     tp_vfts[tp].get_transport_listener_endpoint (conn_index, tep, is_lcl);
386   else
387     {
388       transport_connection_t *tc;
389       tc = transport_get_listener (tp, conn_index);
390       default_get_transport_endpoint (tc, tep, is_lcl);
391     }
392 }
393
394 #define PORT_MASK ((1 << 16)- 1)
395
396 void
397 transport_endpoint_del (u32 tepi)
398 {
399   clib_spinlock_lock_if_init (&local_endpoints_lock);
400   pool_put_index (local_endpoints, tepi);
401   clib_spinlock_unlock_if_init (&local_endpoints_lock);
402 }
403
404 always_inline local_endpoint_t *
405 transport_endpoint_new (void)
406 {
407   local_endpoint_t *lep;
408   pool_get_zero (local_endpoints, lep);
409   return lep;
410 }
411
412 void
413 transport_endpoint_cleanup (u8 proto, ip46_address_t * lcl_ip, u16 port)
414 {
415   local_endpoint_t *lep;
416   u32 lepi;
417
418   /* Cleanup local endpoint if this was an active connect */
419   lepi = transport_endpoint_lookup (&local_endpoints_table, proto, lcl_ip,
420                                     clib_net_to_host_u16 (port));
421   if (lepi != ENDPOINT_INVALID_INDEX)
422     {
423       lep = pool_elt_at_index (local_endpoints, lepi);
424       if (!clib_atomic_sub_fetch (&lep->refcnt, 1))
425         {
426           transport_endpoint_table_del (&local_endpoints_table, proto,
427                                         &lep->ep);
428           transport_endpoint_del (lepi);
429         }
430     }
431 }
432
433 static void
434 transport_endpoint_mark_used (u8 proto, ip46_address_t * ip, u16 port)
435 {
436   local_endpoint_t *lep;
437   clib_spinlock_lock_if_init (&local_endpoints_lock);
438   lep = transport_endpoint_new ();
439   clib_memcpy_fast (&lep->ep.ip, ip, sizeof (*ip));
440   lep->ep.port = port;
441   lep->refcnt = 1;
442   transport_endpoint_table_add (&local_endpoints_table, proto, &lep->ep,
443                                 lep - local_endpoints);
444   clib_spinlock_unlock_if_init (&local_endpoints_lock);
445 }
446
447 void
448 transport_share_local_endpoint (u8 proto, ip46_address_t * lcl_ip, u16 port)
449 {
450   local_endpoint_t *lep;
451   u32 lepi;
452
453   lepi = transport_endpoint_lookup (&local_endpoints_table, proto, lcl_ip,
454                                     clib_net_to_host_u16 (port));
455   if (lepi != ENDPOINT_INVALID_INDEX)
456     {
457       lep = pool_elt_at_index (local_endpoints, lepi);
458       clib_atomic_add_fetch (&lep->refcnt, 1);
459     }
460 }
461
462 /**
463  * Allocate local port and add if successful add entry to local endpoint
464  * table to mark the pair as used.
465  */
466 int
467 transport_alloc_local_port (u8 proto, ip46_address_t * ip)
468 {
469   u16 min = 1024, max = 65535;  /* XXX configurable ? */
470   int tries, limit;
471   u32 tei;
472
473   limit = max - min;
474
475   /* Only support active opens from thread 0 */
476   ASSERT (vlib_get_thread_index () == 0);
477
478   /* Search for first free slot */
479   for (tries = 0; tries < limit; tries++)
480     {
481       u16 port = 0;
482
483       /* Find a port in the specified range */
484       while (1)
485         {
486           port = random_u32 (&port_allocator_seed) & PORT_MASK;
487           if (PREDICT_TRUE (port >= min && port < max))
488             break;
489         }
490
491       /* Look it up. If not found, we're done */
492       tei = transport_endpoint_lookup (&local_endpoints_table, proto, ip,
493                                        port);
494       if (tei == ENDPOINT_INVALID_INDEX)
495         {
496           transport_endpoint_mark_used (proto, ip, port);
497           return port;
498         }
499     }
500   return -1;
501 }
502
503 static session_error_t
504 transport_get_interface_ip (u32 sw_if_index, u8 is_ip4, ip46_address_t * addr)
505 {
506   if (is_ip4)
507     {
508       ip4_address_t *ip4;
509       ip4 = ip_interface_get_first_ip (sw_if_index, 1);
510       if (!ip4)
511         return SESSION_E_NOIP;
512       addr->ip4.as_u32 = ip4->as_u32;
513     }
514   else
515     {
516       ip6_address_t *ip6;
517       ip6 = ip_interface_get_first_ip (sw_if_index, 0);
518       if (ip6 == 0)
519         return SESSION_E_NOIP;
520       clib_memcpy_fast (&addr->ip6, ip6, sizeof (*ip6));
521     }
522   return 0;
523 }
524
525 static session_error_t
526 transport_find_local_ip_for_remote (u32 sw_if_index,
527                                     transport_endpoint_t * rmt,
528                                     ip46_address_t * lcl_addr)
529 {
530   fib_node_index_t fei;
531   fib_prefix_t prefix;
532
533   if (sw_if_index == ENDPOINT_INVALID_INDEX)
534     {
535       /* Find a FIB path to the destination */
536       clib_memcpy_fast (&prefix.fp_addr, &rmt->ip, sizeof (rmt->ip));
537       prefix.fp_proto = rmt->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
538       prefix.fp_len = rmt->is_ip4 ? 32 : 128;
539
540       ASSERT (rmt->fib_index != ENDPOINT_INVALID_INDEX);
541       fei = fib_table_lookup (rmt->fib_index, &prefix);
542
543       /* Couldn't find route to destination. Bail out. */
544       if (fei == FIB_NODE_INDEX_INVALID)
545         return SESSION_E_NOROUTE;
546
547       sw_if_index = fib_entry_get_resolving_interface (fei);
548       if (sw_if_index == ENDPOINT_INVALID_INDEX)
549         return SESSION_E_NOINTF;
550     }
551
552   clib_memset (lcl_addr, 0, sizeof (*lcl_addr));
553   return transport_get_interface_ip (sw_if_index, rmt->is_ip4, lcl_addr);
554 }
555
556 int
557 transport_alloc_local_endpoint (u8 proto, transport_endpoint_cfg_t * rmt_cfg,
558                                 ip46_address_t * lcl_addr, u16 * lcl_port)
559 {
560   transport_endpoint_t *rmt = (transport_endpoint_t *) rmt_cfg;
561   session_error_t error;
562   int port;
563   u32 tei;
564
565   /*
566    * Find the local address
567    */
568   if (ip_is_zero (&rmt_cfg->peer.ip, rmt_cfg->peer.is_ip4))
569     {
570       error = transport_find_local_ip_for_remote (rmt_cfg->peer.sw_if_index,
571                                                   rmt, lcl_addr);
572       if (error)
573         return error;
574     }
575   else
576     {
577       /* Assume session layer vetted this address */
578       clib_memcpy_fast (lcl_addr, &rmt_cfg->peer.ip,
579                         sizeof (rmt_cfg->peer.ip));
580     }
581
582   /*
583    * Allocate source port
584    */
585   if (rmt_cfg->peer.port == 0)
586     {
587       port = transport_alloc_local_port (proto, lcl_addr);
588       if (port < 1)
589         return SESSION_E_NOPORT;
590       *lcl_port = port;
591     }
592   else
593     {
594       port = clib_net_to_host_u16 (rmt_cfg->peer.port);
595       *lcl_port = port;
596       tei = transport_endpoint_lookup (&local_endpoints_table, proto,
597                                        lcl_addr, port);
598       if (tei != ENDPOINT_INVALID_INDEX)
599         return SESSION_E_PORTINUSE;
600
601       transport_endpoint_mark_used (proto, lcl_addr, port);
602     }
603
604   return 0;
605 }
606
607 u8 *
608 format_clib_us_time (u8 * s, va_list * args)
609 {
610   clib_us_time_t t = va_arg (*args, clib_us_time_t);
611   if (t < 1e3)
612     s = format (s, "%u us", t);
613   else
614     s = format (s, "%.3f s", (f64) t * CLIB_US_TIME_PERIOD);
615   return s;
616 }
617
618 u8 *
619 format_transport_pacer (u8 * s, va_list * args)
620 {
621   spacer_t *pacer = va_arg (*args, spacer_t *);
622   u32 thread_index = va_arg (*args, int);
623   clib_us_time_t now, diff;
624
625   now = transport_us_time_now (thread_index);
626   diff = now - pacer->last_update;
627   s = format (s, "rate %lu bucket %lu t/p %.3f last_update %U idle %u",
628               pacer->bytes_per_sec, pacer->bucket, pacer->tokens_per_period,
629               format_clib_us_time, diff, pacer->idle_timeout_us);
630   return s;
631 }
632
633 static inline u32
634 spacer_max_burst (spacer_t * pacer, clib_us_time_t time_now)
635 {
636   u64 n_periods = (time_now - pacer->last_update);
637   u64 inc;
638
639   if (PREDICT_FALSE (n_periods > pacer->idle_timeout_us))
640     {
641       pacer->last_update = time_now;
642       pacer->bucket = TRANSPORT_PACER_MIN_BURST;
643       return TRANSPORT_PACER_MIN_BURST;
644     }
645
646   if ((inc = (f32) n_periods * pacer->tokens_per_period) > 10)
647     {
648       pacer->last_update = time_now;
649       pacer->bucket = clib_min (pacer->bucket + inc, pacer->bytes_per_sec);
650     }
651
652   return clib_min (pacer->bucket, TRANSPORT_PACER_MAX_BURST);
653 }
654
655 static inline void
656 spacer_update_bucket (spacer_t * pacer, u32 bytes)
657 {
658   ASSERT (pacer->bucket >= bytes);
659   pacer->bucket -= bytes;
660 }
661
662 static inline void
663 spacer_set_pace_rate (spacer_t * pacer, u64 rate_bytes_per_sec,
664                       clib_us_time_t rtt)
665 {
666   ASSERT (rate_bytes_per_sec != 0);
667   pacer->bytes_per_sec = rate_bytes_per_sec;
668   pacer->tokens_per_period = rate_bytes_per_sec * CLIB_US_TIME_PERIOD;
669   pacer->idle_timeout_us = clib_max (rtt * TRANSPORT_PACER_IDLE_FACTOR,
670                                      TRANSPORT_PACER_MIN_IDLE);
671 }
672
673 static inline u64
674 spacer_pace_rate (spacer_t * pacer)
675 {
676   return pacer->bytes_per_sec;
677 }
678
679 static inline void
680 spacer_reset (spacer_t * pacer, clib_us_time_t time_now, u64 bucket)
681 {
682   pacer->last_update = time_now;
683   pacer->bucket = bucket;
684 }
685
686 void
687 transport_connection_tx_pacer_reset (transport_connection_t * tc,
688                                      u64 rate_bytes_per_sec, u32 start_bucket,
689                                      clib_us_time_t rtt)
690 {
691   spacer_set_pace_rate (&tc->pacer, rate_bytes_per_sec, rtt);
692   spacer_reset (&tc->pacer, transport_us_time_now (tc->thread_index),
693                 start_bucket);
694 }
695
696 void
697 transport_connection_tx_pacer_reset_bucket (transport_connection_t * tc,
698                                             u32 bucket)
699 {
700   spacer_reset (&tc->pacer, transport_us_time_now (tc->thread_index), bucket);
701 }
702
703 void
704 transport_connection_tx_pacer_init (transport_connection_t * tc,
705                                     u64 rate_bytes_per_sec,
706                                     u32 initial_bucket)
707 {
708   tc->flags |= TRANSPORT_CONNECTION_F_IS_TX_PACED;
709   transport_connection_tx_pacer_reset (tc, rate_bytes_per_sec,
710                                        initial_bucket, 1e6);
711 }
712
713 void
714 transport_connection_tx_pacer_update (transport_connection_t * tc,
715                                       u64 bytes_per_sec, clib_us_time_t rtt)
716 {
717   spacer_set_pace_rate (&tc->pacer, bytes_per_sec, rtt);
718 }
719
720 u32
721 transport_connection_tx_pacer_burst (transport_connection_t * tc)
722 {
723   return spacer_max_burst (&tc->pacer,
724                            transport_us_time_now (tc->thread_index));
725 }
726
727 u64
728 transport_connection_tx_pacer_rate (transport_connection_t * tc)
729 {
730   return spacer_pace_rate (&tc->pacer);
731 }
732
733 void
734 transport_connection_update_tx_bytes (transport_connection_t * tc, u32 bytes)
735 {
736   if (transport_connection_is_tx_paced (tc))
737     spacer_update_bucket (&tc->pacer, bytes);
738 }
739
740 void
741 transport_connection_tx_pacer_update_bytes (transport_connection_t * tc,
742                                             u32 bytes)
743 {
744   spacer_update_bucket (&tc->pacer, bytes);
745 }
746
747 void
748 transport_connection_reschedule (transport_connection_t * tc)
749 {
750   tc->flags &= ~TRANSPORT_CONNECTION_F_DESCHED;
751   transport_connection_tx_pacer_reset_bucket (tc, TRANSPORT_PACER_MIN_BURST);
752   if (transport_max_tx_dequeue (tc))
753     sesssion_reschedule_tx (tc);
754   else
755     {
756       session_t *s = session_get (tc->s_index, tc->thread_index);
757       svm_fifo_unset_event (s->tx_fifo);
758       if (svm_fifo_max_dequeue_cons (s->tx_fifo))
759         if (svm_fifo_set_event (s->tx_fifo))
760           sesssion_reschedule_tx (tc);
761     }
762 }
763
764 void
765 transport_update_time (clib_time_type_t time_now, u8 thread_index)
766 {
767   transport_proto_vft_t *vft;
768   vec_foreach (vft, tp_vfts)
769   {
770     if (vft->update_time)
771       (vft->update_time) (time_now, thread_index);
772   }
773 }
774
775 void
776 transport_enable_disable (vlib_main_t * vm, u8 is_en)
777 {
778   transport_proto_vft_t *vft;
779   vec_foreach (vft, tp_vfts)
780   {
781     if (vft->enable)
782       (vft->enable) (vm, is_en);
783   }
784 }
785
786 void
787 transport_init (void)
788 {
789   vlib_thread_main_t *vtm = vlib_get_thread_main ();
790   session_main_t *smm = vnet_get_session_main ();
791   u32 num_threads;
792
793   if (smm->local_endpoints_table_buckets == 0)
794     smm->local_endpoints_table_buckets = 250000;
795   if (smm->local_endpoints_table_memory == 0)
796     smm->local_endpoints_table_memory = 512 << 20;
797
798   /* Initialize [port-allocator] random number seed */
799   port_allocator_seed = (u32) clib_cpu_time_now ();
800
801   clib_bihash_init_24_8 (&local_endpoints_table, "local endpoints table",
802                          smm->local_endpoints_table_buckets,
803                          smm->local_endpoints_table_memory);
804   num_threads = 1 /* main thread */  + vtm->n_threads;
805   if (num_threads > 1)
806     clib_spinlock_init (&local_endpoints_lock);
807 }
808
809 /*
810  * fd.io coding-style-patch-verification: ON
811  *
812  * Local Variables:
813  * eval: (c-set-style "gnu")
814  * End:
815  */