aboutsummaryrefslogtreecommitdiffstats
path: root/vnet/vnet/lisp-gpe/ip_forward.c
blob: bd9951acefaf003a2dd17ad230edfc0f4625d5a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
/*
 * Copyright (c) 2016 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/**
 *  @file
 *  @brief LISP-GPE overlay IP forwarding logic and lookup data structures.
 *
 *  Provides an implementation of a Source/Dest (SD) IP FIB that leverages the
 *  existing destination only FIB. Lookups are done in two stages, first the
 *  destination FIB looks up a packet's destination address and then if a
 *  an SD entry is hit, the destination adjacency will point to the second
 *  stage, the source FIB, where the packet's source is looked up. Note that a
 *  miss in the source FIB does not result in an overall SD lookup retry with
 *  a less specific entry from the destination FIB.
 */
#include <vnet/lisp-gpe/lisp_gpe.h>

/** Sets adj index for destination address in IP4 FIB. Similar to the function
 * in ip4_forward but this one avoids calling route callbacks */
static void
ip4_sd_fib_set_adj_index (lisp_gpe_main_t * lgm, ip4_fib_t * fib, u32 flags,
			  u32 dst_address_u32, u32 dst_address_length,
			  u32 adj_index)
{
  ip_lookup_main_t *lm = lgm->lm4;
  uword *hash;

  if (vec_bytes (fib->old_hash_values))
    memset (fib->old_hash_values, ~0, vec_bytes (fib->old_hash_values));
  if (vec_bytes (fib->new_hash_values))
    memset (fib->new_hash_values, ~0, vec_bytes (fib->new_hash_values));
  fib->new_hash_values[0] = adj_index;

  /* Make sure adj index is valid. */
  if (CLIB_DEBUG > 0)
    (void) ip_get_adjacency (lm, adj_index);

  hash = fib->adj_index_by_dst_address[dst_address_length];

  hash = _hash_set3 (hash, dst_address_u32,
		     fib->new_hash_values, fib->old_hash_values);

  fib->adj_index_by_dst_address[dst_address_length] = hash;
}

/** Initialize the adjacency index by destination address vector for IP4 FIB.
 * Copied from ip4_forward since it's static */
static void
ip4_fib_init_adj_index_by_dst_address (ip_lookup_main_t * lm,
				       ip4_fib_t * fib, u32 address_length)
{
  hash_t *h;
  uword max_index;

  ASSERT (lm->fib_result_n_bytes >= sizeof (uword));
  lm->fib_result_n_words = round_pow2 (lm->fib_result_n_bytes, sizeof (uword))
    / sizeof (uword);

  fib->adj_index_by_dst_address[address_length] =
    hash_create (32 /* elts */ , lm->fib_result_n_words * sizeof (uword));

  hash_set_flags (fib->adj_index_by_dst_address[address_length],
		  HASH_FLAG_NO_AUTO_SHRINK);

  h = hash_header (fib->adj_index_by_dst_address[address_length]);
  max_index = (hash_value_bytes (h) / sizeof (fib->new_hash_values[0])) - 1;

  /* Initialize new/old hash value vectors. */
  vec_validate_init_empty (fib->new_hash_values, max_index, ~0);
  vec_validate_init_empty (fib->old_hash_values, max_index, ~0);
}

/** Add/del src route to IP4 SD FIB. */
static void
ip4_sd_fib_add_del_src_route (lisp_gpe_main_t * lgm,
			      ip4_add_del_route_args_t * a)
{
  ip_lookup_main_t *lm = lgm->lm4;
  ip4_fib_t *fib;
  u32 dst_address, dst_address_length, adj_index, old_adj_index;
  uword *hash, is_del;

  /* Either create new adjacency or use given one depending on arguments. */
  if (a->n_add_adj > 0)
    ip_add_adjacency (lm, a->add_adj, a->n_add_adj, &adj_index);
  else
    adj_index = a->adj_index;

  dst_address = a->dst_address.data_u32;
  dst_address_length = a->dst_address_length;

  fib = pool_elt_at_index (lgm->ip4_src_fibs, a->table_index_or_table_id);

  if (!fib->adj_index_by_dst_address[dst_address_length])
    ip4_fib_init_adj_index_by_dst_address (lm, fib, dst_address_length);

  hash = fib->adj_index_by_dst_address[dst_address_length];

  is_del = (a->flags & IP4_ROUTE_FLAG_DEL) != 0;

  if (is_del)
    {
      fib->old_hash_values[0] = ~0;
      hash = _hash_unset (hash, dst_address, fib->old_hash_values);
      fib->adj_index_by_dst_address[dst_address_length] = hash;
    }
  else
    ip4_sd_fib_set_adj_index (lgm, fib, a->flags, dst_address,
			      dst_address_length, adj_index);

  old_adj_index = fib->old_hash_values[0];

  /* Avoid spurious reference count increments */
  if (old_adj_index == adj_index
      && adj_index != ~0 && !(a->flags & IP4_ROUTE_FLAG_KEEP_OLD_ADJACENCY))
    {
      ip_adjacency_t *adj = ip_get_adjacency (lm, adj_index);
      if (adj->share_count > 0)
	adj->share_count--;
    }

  ip4_fib_mtrie_add_del_route (fib, a->dst_address, dst_address_length,
			       is_del ? old_adj_index : adj_index, is_del);

  /* Delete old adjacency index if present and changed. */
  if (!(a->flags & IP4_ROUTE_FLAG_KEEP_OLD_ADJACENCY)
      && old_adj_index != ~0 && old_adj_index != adj_index)
    ip_del_adjacency (lm, old_adj_index);
}

/** Get src route from IP4 SD FIB. */
static void *
ip4_sd_get_src_route (lisp_gpe_main_t * lgm, u32 src_fib_index,
		      ip4_address_t * src, u32 address_length)
{
  ip4_fib_t *fib = pool_elt_at_index (lgm->ip4_src_fibs, src_fib_index);
  uword *hash, *p;

  hash = fib->adj_index_by_dst_address[address_length];
  p = hash_get (hash, src->as_u32);
  return (void *) p;
}

/* *INDENT-OFF* */
typedef CLIB_PACKED (struct ip4_route {
  ip4_address_t address;
  u32 address_length : 6;
  u32 index : 26;
}) ip4_route_t;
/* *INDENT-ON* */

/** Remove all routes from src IP4 FIB */
void
ip4_sd_fib_clear_src_fib (lisp_gpe_main_t * lgm, ip4_fib_t * fib)
{
  ip4_route_t *routes = 0, *r;
  u32 i;

  vec_reset_length (routes);

  for (i = 0; i < ARRAY_LEN (fib->adj_index_by_dst_address); i++)
    {
      uword *hash = fib->adj_index_by_dst_address[i];
      hash_pair_t *p;
      ip4_route_t x;

      x.address_length = i;
      x.index = 0;		/* shut up coverity */

      /* *INDENT-OFF* */
      hash_foreach_pair (p, hash,
      ({
          x.address.data_u32 = p->key;
          vec_add1 (routes, x);
      }));
      /* *INDENT-ON* */
    }

  vec_foreach (r, routes)
  {
    ip4_add_del_route_args_t a;

    memset (&a, 0, sizeof (a));
    a.flags = IP4_ROUTE_FLAG_FIB_INDEX | IP4_ROUTE_FLAG_DEL;
    a.table_index_or_table_id = fib - lgm->ip4_src_fibs;
    a.dst_address = r->address;
    a.dst_address_length = r->address_length;
    a.adj_index = ~0;

    ip4_sd_fib_add_del_src_route (lgm, &a);
  }
}

/** Test if IP4 FIB is empty */
static u8
ip4_fib_is_empty (ip4_fib_t * fib)
{
  u8 fib_is_empty;
  int i;

  fib_is_empty = 1;
  for (i = ARRAY_LEN (fib->adj_index_by_dst_address) - 1; i >= 0; i--)
    {
      uword *hash = fib->adj_index_by_dst_address[i];
      uword n_elts = hash_elts (hash);
      if (n_elts)
	{
	  fib_is_empty = 0;
	  break;
	}
    }
  return fib_is_empty;
}

/**
 * @brief Add/del route to IP4 SD FIB.
 *
 * Adds/remove routes to both destination and source FIBs. Entries added
 * to destination FIB are associated to adjacencies that point to the source
 * FIB and store the index of the particular source FIB associated to the
 * destination. Source FIBs are locally managed (see @ref lgm->ip4_src_fibs
 * and @ref lgm->ip6_src_fibs), but the adjacencies are allocated out of the
 * global adjacency pool.
 *
 * @param[in]   lgm             Reference to @ref lisp_gpe_main_t.
 * @param[out]  dst_prefix      Destination IP4 prefix.
 * @param[in]   src_prefix      Source IP4 prefix.
 * @param[in]   table_id        Table id.
 * @param[in]   add_adj         Pointer to the adjacency to be added.
 * @param[in]   is_add          Add/del flag.
 *
 * @return 0 on success.
 */
static int
ip4_sd_fib_add_del_route (lisp_gpe_main_t * lgm, ip_prefix_t * dst_prefix,
			  ip_prefix_t * src_prefix, u32 table_id,
			  ip_adjacency_t * add_adj, u8 is_add)
{
  uword *p;
  ip4_add_del_route_args_t a;
  ip_adjacency_t *dst_adjp, dst_adj;
  ip4_address_t dst = ip_prefix_v4 (dst_prefix), src;
  u32 dst_address_length = ip_prefix_len (dst_prefix), src_address_length = 0;
  ip4_fib_t *src_fib;

  if (src_prefix)
    {
      src = ip_prefix_v4 (src_prefix);
      src_address_length = ip_prefix_len (src_prefix);
    }
  else
    memset (&src, 0, sizeof (src));

  /* lookup dst adj */
  p = ip4_get_route (lgm->im4, table_id, 0, dst.as_u8, dst_address_length);

  if (is_add)
    {
      /* insert dst prefix to ip4 fib, if it's not in yet */
      if (p == 0)
	{
	  /* allocate and init src ip4 fib */
	  pool_get (lgm->ip4_src_fibs, src_fib);
	  ip4_mtrie_init (&src_fib->mtrie);

	  /* configure adjacency */
	  memset (&dst_adj, 0, sizeof (dst_adj));

	  /* reuse rewrite header to store pointer to src fib */
	  dst_adj.rewrite_header.sw_if_index = src_fib - lgm->ip4_src_fibs;

	  /* dst adj should point to lisp gpe lookup */
	  dst_adj.lookup_next_index = lgm->ip4_lookup_next_lgpe_ip4_lookup;

	  /* explicit_fib_index is used in IP6 FIB lookup, don't reuse it */
	  dst_adj.explicit_fib_index = ~0;
	  dst_adj.n_adj = 1;

	  /* make sure we have different signatures for adj in different tables
	   * but with the same lookup_next_index and for adj in the same table
	   * but associated to different destinations */
	  dst_adj.if_address_index = table_id;
	  dst_adj.indirect.next_hop.ip4 = dst;

	  memset (&a, 0, sizeof (a));
	  a.flags = IP4_ROUTE_FLAG_TABLE_ID;
	  a.table_index_or_table_id = table_id;	/* vrf */
	  a.adj_index = ~0;
	  a.dst_address_length = dst_address_length;
	  a.dst_address = dst;
	  a.flags |= IP4_ROUTE_FLAG_ADD;
	  a.add_adj = &dst_adj;
	  a.n_add_adj = 1;

	  ip4_add_del_route (lgm->im4, &a);

	  /* lookup dst adj to obtain the adj index */
	  p = ip4_get_route (lgm->im4, table_id, 0, dst.as_u8,
			     dst_address_length);

	  /* make sure insertion succeeded */
	  if (CLIB_DEBUG)
	    {
	      ASSERT (p != 0);
	      dst_adjp = ip_get_adjacency (lgm->lm4, p[0]);
	      ASSERT (dst_adjp->rewrite_header.sw_if_index
		      == dst_adj.rewrite_header.sw_if_index);
	    }
	}
    }
  else
    {
      if (p == 0)
	{
	  clib_warning
	    ("Trying to delete inexistent dst route for %U. Aborting",
	     format_ip4_address_and_length, dst.as_u8, dst_address_length);
	  return -1;
	}
    }

  dst_adjp = ip_get_adjacency (lgm->lm4, p[0]);

  /* add/del src prefix to src fib */
  memset (&a, 0, sizeof (a));
  a.flags = IP4_ROUTE_FLAG_TABLE_ID;
  a.table_index_or_table_id = dst_adjp->rewrite_header.sw_if_index;
  a.adj_index = ~0;
  a.flags |= is_add ? IP4_ROUTE_FLAG_ADD : IP4_ROUTE_FLAG_DEL;
  a.add_adj = add_adj;
  a.n_add_adj = is_add ? 1 : 0;
  /* if src prefix is null, add 0/0 */
  a.dst_address_length = src_address_length;
  a.dst_address = src;
  ip4_sd_fib_add_del_src_route (lgm, &a);

  /* make sure insertion succeeded */
  if (CLIB_DEBUG && is_add)
    {
      uword *sai;
      ip_adjacency_t *src_adjp;
      sai = ip4_sd_get_src_route (lgm, dst_adjp->rewrite_header.sw_if_index,
				  &src, src_address_length);
      ASSERT (sai != 0);
      src_adjp = ip_get_adjacency (lgm->lm4, sai[0]);
      ASSERT (src_adjp->if_address_index == add_adj->if_address_index);
    }

  /* if a delete, check if there are elements left in the src fib */
  if (!is_add)
    {
      src_fib = pool_elt_at_index (lgm->ip4_src_fibs,
				   dst_adjp->rewrite_header.sw_if_index);
      if (!src_fib)
	return 0;

      /* if there's nothing left */
      if (ip4_fib_is_empty (src_fib))
	{
	  /* remove the src fib ..  */
	  pool_put (lgm->ip4_src_fibs, src_fib);

	  /* .. and remove dst route */
	  memset (&a, 0, sizeof (a));
	  a.flags = IP4_ROUTE_FLAG_TABLE_ID;
	  a.table_index_or_table_id = table_id;	/* vrf */
	  a.adj_index = ~0;
	  a.dst_address_length = dst_address_length;
	  a.dst_address = dst;
	  a.flags |= IP4_ROUTE_FLAG_DEL;

	  ip4_add_del_route (lgm->im4, &a);
	}
    }

  return 0;
}

/**
 * @brief Retrieve IP4 SD FIB entry.
 *
 * Looks up SD IP4 route by first looking up the destination in VPP's main FIB
 * and subsequently the source in the src FIB. The index of the source FIB is
 * stored in the dst adjacency's rewrite_header.sw_if_index. If source is 0
 * do search with 0/0 src.
 *
 * @param[in]   lgm             Reference to @ref lisp_gpe_main_t.
 * @param[out]  dst_prefix      Destination IP4 prefix.
 * @param[in]   src_prefix      Source IP4 prefix.
 * @param[in]   table_id        Table id.
 *
 * @return pointer to the adjacency if route found.
 */
static void *
ip4_sd_fib_get_route (lisp_gpe_main_t * lgm, ip_prefix_t * dst_prefix,
		      ip_prefix_t * src_prefix, u32 table_id)
{
  uword *p;
  ip4_address_t dst = ip_prefix_v4 (dst_prefix), src;
  u32 dst_address_length = ip_prefix_len (dst_prefix), src_address_length = 0;
  ip_adjacency_t *dst_adj;

  if (src_prefix)
    {
      src = ip_prefix_v4 (src_prefix);
      src_address_length = ip_prefix_len (src_prefix);
    }
  else
    memset (&src, 0, sizeof (src));

  /* lookup dst adj */
  p = ip4_get_route (lgm->im4, table_id, 0, dst.as_u8, dst_address_length);
  if (p == 0)
    return p;

  dst_adj = ip_get_adjacency (lgm->lm4, p[0]);
  return ip4_sd_get_src_route (lgm, dst_adj->rewrite_header.sw_if_index, &src,
			       src_address_length);
}

/** Get src route from IP6 SD FIB. */
static u32
ip6_sd_get_src_route (lisp_gpe_main_t * lgm, u32 src_fib_index,
		      ip6_address_t * src, u32 address_length)
{
  int rv;
  BVT (clib_bihash_kv) kv, value;
  ip6_src_fib_t *fib = pool_elt_at_index (lgm->ip6_src_fibs, src_fib_index);

  ip6_address_t *mask;

  ASSERT (address_length <= 128);

  mask = &fib->fib_masks[address_length];

  kv.key[0] = src->as_u64[0] & mask->as_u64[0];
  kv.key[1] = src->as_u64[1] & mask->as_u64[1];
  kv.key[2] = address_length;

  rv = BV (clib_bihash_search_inline_2) (&fib->ip6_lookup_table, &kv, &value);
  if (rv == 0)
    return value.value;

  return 0;
}

static void
compute_prefix_lengths_in_search_order (ip6_src_fib_t * fib)
{
  int i;
  vec_reset_length (fib->prefix_lengths_in_search_order);
  /* Note: bitmap reversed so this is in fact a longest prefix match */

  /* *INDENT-OFF* */
  clib_bitmap_foreach(i, fib->non_empty_dst_address_length_bitmap, ({
    int dst_address_length = 128 - i;
    vec_add1 (fib->prefix_lengths_in_search_order, dst_address_length);
  }));
  /* *INDENT-ON* */
}

/** Add/del src route to IP6 SD FIB. Rewrite of ip6_add_del_route() because
 * it uses im6 to find the FIB .*/
static void
ip6_sd_fib_add_del_src_route (lisp_gpe_main_t * lgm,
			      ip6_add_del_route_args_t * a)
{
  ip_lookup_main_t *lm = lgm->lm6;
  ip6_src_fib_t *fib;
  ip6_address_t dst_address;
  u32 dst_address_length, adj_index;
  uword is_del;
  u32 old_adj_index = ~0;
  BVT (clib_bihash_kv) kv, value;

  vlib_smp_unsafe_warning ();

  is_del = (a->flags & IP6_ROUTE_FLAG_DEL) != 0;

  /* Either create new adjacency or use given one depending on arguments. */
  if (a->n_add_adj > 0)
    {
      ip_add_adjacency (lm, a->add_adj, a->n_add_adj, &adj_index);
    }
  else
    adj_index = a->adj_index;

  dst_address = a->dst_address;
  dst_address_length = a->dst_address_length;
  fib = pool_elt_at_index (lgm->ip6_src_fibs, a->table_index_or_table_id);

  ASSERT (dst_address_length < ARRAY_LEN (fib->fib_masks));
  ip6_address_mask (&dst_address, &fib->fib_masks[dst_address_length]);

  /* refcount accounting */
  if (is_del)
    {
      ASSERT (fib->dst_address_length_refcounts[dst_address_length] > 0);
      if (--fib->dst_address_length_refcounts[dst_address_length] == 0)
	{
	  fib->non_empty_dst_address_length_bitmap =
	    clib_bitmap_set (fib->non_empty_dst_address_length_bitmap,
			     128 - dst_address_length, 0);
	  compute_prefix_lengths_in_search_order (fib);
	}
    }
  else
    {
      fib->dst_address_length_refcounts[dst_address_length]++;

      fib->non_empty_dst_address_length_bitmap =
	clib_bitmap_set (fib->non_empty_dst_address_length_bitmap,
			 128 - dst_address_length, 1);
      compute_prefix_lengths_in_search_order (fib);
    }

  kv.key[0] = dst_address.as_u64[0];
  kv.key[1] = dst_address.as_u64[1];
  kv.key[2] = dst_address_length;

  if (BV (clib_bihash_search) (&fib->ip6_lookup_table, &kv, &value) == 0)
    old_adj_index = value.value;

  if (is_del)
    BV (clib_bihash_add_del) (&fib->ip6_lookup_table, &kv, 0 /* is_add */ );
  else
    {
      /* Make sure adj index is valid. */
      if (CLIB_DEBUG > 0)
	(void) ip_get_adjacency (lm, adj_index);

      kv.value = adj_index;

      BV (clib_bihash_add_del) (&fib->ip6_lookup_table, &kv, 1 /* is_add */ );
    }

  /* Avoid spurious reference count increments */
  if (old_adj_index == adj_index
      && !(a->flags & IP6_ROUTE_FLAG_KEEP_OLD_ADJACENCY))
    {
      ip_adjacency_t *adj = ip_get_adjacency (lm, adj_index);
      if (adj->share_count > 0)
	adj->share_count--;
    }

  /* Delete old adjacency index if present and changed. */
  {
    if (!(a->flags & IP6_ROUTE_FLAG_KEEP_OLD_ADJACENCY)
	&& old_adj_index != ~0 && old_adj_index != adj_index)
      ip_del_adjacency (lm, old_adj_index);
  }
}

static void
ip6_src_fib_init (ip6_src_fib_t * fib)
{
  uword i;

  for (i = 0; i < ARRAY_LEN (fib->fib_masks); i++)
    {
      u32 j, i0, i1;

      i0 = i / 32;
      i1 = i % 32;

      for (j = 0; j < i0; j++)
	fib->fib_masks[i].as_u32[j] = ~0;

      if (i1)
	fib->fib_masks[i].as_u32[i0] =
	  clib_host_to_net_u32 (pow2_mask (i1) << (32 - i1));
    }

  if (fib->lookup_table_nbuckets == 0)
    fib->lookup_table_nbuckets = IP6_FIB_DEFAULT_HASH_NUM_BUCKETS;

  fib->lookup_table_nbuckets = 1 << max_log2 (fib->lookup_table_nbuckets);

  if (fib->lookup_table_size == 0)
    fib->lookup_table_size = IP6_FIB_DEFAULT_HASH_MEMORY_SIZE;

  BV (clib_bihash_init) (&fib->ip6_lookup_table, "ip6 lookup table",
			 fib->lookup_table_nbuckets, fib->lookup_table_size);

}

/**
 * @brief Add/del route to IP6 SD FIB.
 *
 * Adds/remove routes to both destination and source FIBs. Entries added
 * to destination FIB are associated to adjacencies that point to the source
 * FIB and store the index of the particular source FIB associated to the
 * destination. Source FIBs are locally managed (see @ref lgm->ip4_src_fibs
 * and @ref lgm->ip6_src_fibs), but the adjacencies are allocated out of the
 * global adjacency pool.
 *
 * @param[in]   lgm             Reference to @ref lisp_gpe_main_t.
 * @param[out]  dst_prefix      Destination IP6 prefix.
 * @param[in]   src_prefix      Source IP6 prefix.
 * @param[in]   table_id        Table id.
 * @param[in]   add_adj         Pointer to the adjacency to be added.
 * @param[in]   is_add          Add/del flag.
 *
 * @return 0 on success.
 */
static int
ip6_sd_fib_add_del_route (lisp_gpe_main_t * lgm, ip_prefix_t * dst_prefix,
			  ip_prefix_t * src_prefix, u32 table_id,
			  ip_adjacency_t * add_adj, u8 is_add)
{
  u32 adj_index;
  ip6_add_del_route_args_t a;
  ip_adjacency_t *dst_adjp, dst_adj;
  ip6_address_t dst = ip_prefix_v6 (dst_prefix), src;
  u32 dst_address_length = ip_prefix_len (dst_prefix), src_address_length = 0;
  ip6_src_fib_t *src_fib;

  if (src_prefix)
    {
      src = ip_prefix_v6 (src_prefix);
      src_address_length = ip_prefix_len (src_prefix);
    }
  else
    memset (&src, 0, sizeof (src));

  /* lookup dst adj and create it if it doesn't exist */
  adj_index = ip6_get_route (lgm->im6, table_id, 0, &dst, dst_address_length);

  if (is_add)
    {
      /* insert dst prefix to ip6 fib, if it's not in yet */
      if (adj_index == 0)
	{
	  /* allocate and init src ip6 fib */
	  pool_get (lgm->ip6_src_fibs, src_fib);
	  memset (src_fib, 0, sizeof (src_fib[0]));
	  ip6_src_fib_init (src_fib);

	  memset (&dst_adj, 0, sizeof (dst_adj));

	  /* reuse rewrite header to store pointer to src fib */
	  dst_adj.rewrite_header.sw_if_index = src_fib - lgm->ip6_src_fibs;

	  /* dst adj should point to lisp gpe ip lookup */
	  dst_adj.lookup_next_index = lgm->ip6_lookup_next_lgpe_ip6_lookup;

	  /* explicit_fib_index is used in IP6 FIB lookup, don't reuse it */
	  dst_adj.explicit_fib_index = ~0;
	  dst_adj.n_adj = 1;

	  /* make sure we have different signatures for adj in different tables
	   * but with the same lookup_next_index and for adj in the same table
	   * but associated to different destinations */
	  dst_adj.if_address_index = table_id;
	  dst_adj.indirect.next_hop.ip6 = dst;

	  memset (&a, 0, sizeof (a));
	  a.flags = IP6_ROUTE_FLAG_TABLE_ID;
	  a.table_index_or_table_id = table_id;	/* vrf */
	  a.adj_index = ~0;
	  a.dst_address_length = dst_address_length;
	  a.dst_address = dst;
	  a.flags |= IP6_ROUTE_FLAG_ADD;
	  a.add_adj = &dst_adj;
	  a.n_add_adj = 1;

	  ip6_add_del_route (lgm->im6, &a);

	  /* lookup dst adj to obtain the adj index */
	  adj_index = ip6_get_route (lgm->im6, table_id, 0, &dst,
				     dst_address_length);

	  /* make sure insertion succeeded */
	  if (CLIB_DEBUG)
	    {
	      ASSERT (adj_index != 0);
	      dst_adjp = ip_get_adjacency (lgm->lm6, adj_index);
	      ASSERT (dst_adjp->rewrite_header.sw_if_index
		      == dst_adj.rewrite_header.sw_if_index);
	    }
	}
    }
  else
    {
      if (adj_index == 0)
	{
	  clib_warning
	    ("Trying to delete inexistent dst route for %U. Aborting",
	     format_ip_prefix, dst_prefix);
	  return -1;
	}
    }

  dst_adjp = ip_get_adjacency (lgm->lm6, adj_index);

  /* add/del src prefix to src fib */
  memset (&a, 0, sizeof (a));
  a.flags = IP6_ROUTE_FLAG_TABLE_ID;
  a.table_index_or_table_id = dst_adjp->rewrite_header.sw_if_index;
  a.adj_index = ~0;
  a.flags |= is_add ? IP6_ROUTE_FLAG_ADD : IP6_ROUTE_FLAG_DEL;
  a.add_adj = add_adj;
  a.n_add_adj = is_add ? 1 : 0;
  /* if src prefix is null, add ::0 */
  a.dst_address_length = src_address_length;
  a.dst_address = src;
  ip6_sd_fib_add_del_src_route (lgm, &a);

  /* make sure insertion succeeded */
  if (CLIB_DEBUG && is_add)
    {
      u32 sai;
      ip_adjacency_t *src_adjp;
      sai = ip6_sd_get_src_route (lgm, dst_adjp->rewrite_header.sw_if_index,
				  &src, src_address_length);
      ASSERT (sai != 0);
      src_adjp = ip_get_adjacency (lgm->lm6, sai);
      ASSERT (src_adjp->if_address_index == add_adj->if_address_index);
    }

  /* if a delete, check if there are elements left in the src fib */
  if (!is_add)
    {
      src_fib = pool_elt_at_index (lgm->ip6_src_fibs,
				   dst_adjp->rewrite_header.sw_if_index);
      if (!src_fib)
	return 0;

      /* if there's nothing left */
      if (clib_bitmap_count_set_bits
	  (src_fib->non_empty_dst_address_length_bitmap) == 0)
	{
	  /* remove src fib .. */
	  pool_put (lgm->ip6_src_fibs, src_fib);

	  /* .. and remove dst route */
	  memset (&a, 0, sizeof (a));
	  a.flags = IP6_ROUTE_FLAG_TABLE_ID;
	  a.table_index_or_table_id = table_id;	/* vrf */
	  a.adj_index = ~0;
	  a.dst_address_length = dst_address_length;
	  a.dst_address = dst;
	  a.flags |= IP6_ROUTE_FLAG_DEL;

	  ip6_add_del_route (lgm->im6, &a);
	}
    }

  return 0;
}

/**
 * @brief Retrieve IP6 SD FIB entry.
 *
 * Looks up SD IP6 route by first looking up the destination in VPP's main FIB
 * and subsequently the source in the src FIB. The index of the source FIB is
 * stored in the dst adjacency's @ref rewrite_header.sw_if_index. If source is
 * 0 do search with ::/0 src.
 *
 * @param[in]   lgm             Reference to @ref lisp_gpe_main_t.
 * @param[out]  dst_prefix      Destination IP6 prefix.
 * @param[in]   src_prefix      Source IP6 prefix.
 * @param[in]   table_id        Table id.
 *
 * @return adjacency index if route found.
 */
static u32
ip6_sd_fib_get_route (lisp_gpe_main_t * lgm, ip_prefix_t * dst_prefix,
		      ip_prefix_t * src_prefix, u32 table_id)
{
  u32 adj_index;
  ip6_address_t dst = ip_prefix_v6 (dst_prefix), src;
  u32 dst_address_length = ip_prefix_len (dst_prefix), src_address_length = 0;
  ip_adjacency_t *dst_adj;

  if (src_prefix)
    {
      src = ip_prefix_v6 (src_prefix);
      src_address_length = ip_prefix_len (src_prefix);
    }
  else
    memset (&src, 0, sizeof (src));

  /* lookup dst adj */
  adj_index = ip6_get_route (lgm->im6, table_id, 0, &dst, dst_address_length);
  if (adj_index == 0)
    return adj_index;

  dst_adj = ip_get_adjacency (lgm->lm6, adj_index);
  return ip6_sd_get_src_route (lgm, dst_adj->rewrite_header.sw_if_index, &src,
			       src_address_length);
}

/**
 * @brief Add/del route to IP4 or IP6 SD FIB.
 *
 * Adds/remove routes to both destination and source FIBs. Entries added
 * to destination FIB are associated to adjacencies that point to the source
 * FIB and store the index of the particular source FIB associated to the
 * destination. Source FIBs are locally managed (see @ref lgm->ip4_src_fibs
 * and @ref lgm->ip6_src_fibs), but the adjacencies are allocated out of the
 * global adjacency pool.
 *
 * @param[in]   lgm             Reference to @ref lisp_gpe_main_t.
 * @param[out]  dst_prefix      Destination IP prefix.
 * @param[in]   src_prefix      Source IP prefix.
 * @param[in]   table_id        Table id.
 * @param[in]   add_adj         Pointer to the adjacency to be added.
 * @param[in]   is_add          Add/del flag.
 *
 * @return 0 on success.
 */
int
ip_sd_fib_add_del_route (lisp_gpe_main_t * lgm, ip_prefix_t * dst_prefix,
			 ip_prefix_t * src_prefix, u32 table_id,
			 ip_adjacency_t * add_adj, u8 is_add)
{
  return (ip_prefix_version (dst_prefix) == IP4 ?
	  ip4_sd_fib_add_del_route : ip6_sd_fib_add_del_route) (lgm,
								dst_prefix,
								src_prefix,
								table_id,
								add_adj,
								is_add);
}

/**
 * @brief Retrieve IP4 or IP6 SD FIB entry.
 *
 * Looks up SD IP route by first looking up the destination in VPP's main FIB
 * and subsequently the source in the src FIB. The index of the source FIB is
 * stored in the dst adjacency's @ref rewrite_header.sw_if_index. If source is
 * 0 do search with ::/0 src.
 *
 * @param[in]   lgm             Reference to @ref lisp_gpe_main_t.
 * @param[out]  dst_prefix      Destination IP prefix.
 * @param[in]   src_prefix      Source IP prefix.
 * @param[in]   table_id        Table id.
 *
 * @return adjacency index if route found.
 */
u32
ip_sd_fib_get_route (lisp_gpe_main_t * lgm, ip_prefix_t * dst_prefix,
		     ip_prefix_t * src_prefix, u32 table_id)
{
  if (ip_prefix_version (dst_prefix) == IP4)
    {
      u32 *adj_index = ip4_sd_fib_get_route (lgm, dst_prefix, src_prefix,
					     table_id);
      return (adj_index == 0) ? 0 : adj_index[0];
    }
  else
    return ip6_sd_fib_get_route (lgm, dst_prefix, src_prefix, table_id);
}

always_inline void
ip4_src_fib_lookup_one (lisp_gpe_main_t * lgm, u32 src_fib_index0,
			ip4_address_t * addr0, u32 * src_adj_index0)
{
  ip4_fib_mtrie_leaf_t leaf0, leaf1;
  ip4_fib_mtrie_t *mtrie0;

  /* if default route not hit in ip4 lookup */
  if (PREDICT_TRUE (src_fib_index0 != (u32) ~ 0))
    {
      mtrie0 = &vec_elt_at_index (lgm->ip4_src_fibs, src_fib_index0)->mtrie;

      leaf0 = leaf1 = IP4_FIB_MTRIE_LEAF_ROOT;
      leaf0 = ip4_fib_mtrie_lookup_step (mtrie0, leaf0, addr0, 0);
      leaf0 = ip4_fib_mtrie_lookup_step (mtrie0, leaf0, addr0, 1);
      leaf0 = ip4_fib_mtrie_lookup_step (mtrie0, leaf0, addr0, 2);
      leaf0 = ip4_fib_mtrie_lookup_step (mtrie0, leaf0, addr0, 3);

      /* Handle default route. */
      leaf0 = (leaf0 == IP4_FIB_MTRIE_LEAF_EMPTY) ?
	mtrie0->default_leaf : leaf0;
      src_adj_index0[0] = ip4_fib_mtrie_leaf_get_adj_index (leaf0);
    }
  else
    src_adj_index0[0] = ~0;
}

always_inline void
ip4_src_fib_lookup_two (lisp_gpe_main_t * lgm, u32 src_fib_index0,
			u32 src_fib_index1, ip4_address_t * addr0,
			ip4_address_t * addr1, u32 * src_adj_index0,
			u32 * src_adj_index1)
{
  ip4_fib_mtrie_leaf_t leaf0, leaf1;
  ip4_fib_mtrie_t *mtrie0, *mtrie1;

  /* if default route not hit in ip4 lookup */
  if (PREDICT_TRUE
      (src_fib_index0 != (u32) ~ 0 && src_fib_index1 != (u32) ~ 0))
    {
      mtrie0 = &vec_elt_at_index (lgm->ip4_src_fibs, src_fib_index0)->mtrie;
      mtrie1 = &vec_elt_at_index (lgm->ip4_src_fibs, src_fib_index1)->mtrie;

      leaf0 = leaf1 = IP4_FIB_MTRIE_LEAF_ROOT;

      leaf0 = ip4_fib_mtrie_lookup_step (mtrie0, leaf0, addr0, 0);
      leaf1 = ip4_fib_mtrie_lookup_step (mtrie1, leaf1, addr1, 0);

      leaf0 = ip4_fib_mtrie_lookup_step (mtrie0, leaf0, addr0, 1);
      leaf1 = ip4_fib_mtrie_lookup_step (mtrie1, leaf1, addr1, 1);

      leaf0 = ip4_fib_mtrie_lookup_step (mtrie0, leaf0, addr0, 2);
      leaf1 = ip4_fib_mtrie_lookup_step (mtrie1, leaf1, addr1, 2);

      leaf0 = ip4_fib_mtrie_lookup_step (mtrie0, leaf0, addr0, 3);
      leaf1 = ip4_fib_mtrie_lookup_step (mtrie1, leaf1, addr1, 3);

      /* Handle default route. */
      leaf0 = (leaf0 == IP4_FIB_MTRIE_LEAF_EMPTY) ?
	mtrie0->default_leaf : leaf0;
      leaf1 = (leaf1 == IP4_FIB_MTRIE_LEAF_EMPTY) ?
	mtrie1->default_leaf : leaf1;
      src_adj_index0[0] = ip4_fib_mtrie_leaf_get_adj_index (leaf0);
      src_adj_index1[0] = ip4_fib_mtrie_leaf_get_adj_index (leaf1);
    }
  else
    {
      ip4_src_fib_lookup_one (lgm, src_fib_index0, addr0, src_adj_index0);
      ip4_src_fib_lookup_one (lgm, src_fib_index1, addr1, src_adj_index1);
    }
}

/**
 * @brief IPv4 src lookup node.
 * @node lgpe-ip4-lookup
 *
 * The LISP IPv4 source lookup dispatch node.
 *
 * This is the IPv4 source lookup dispatch node. It first looks up the
 * adjacency hit in the main (destination) FIB and then uses its
 * <code>rewrite_header.sw_if_index</code>to find the source FIB wherein
 * the source IP is subsequently looked up. Data in the resulting adjacency
 * is used to decide the next node (the lisp_gpe interface) and if a flow
 * hash must be computed, when traffic can be load balanced over multiple
 * tunnels.
 *
 *
 * @param[in]   vm      vlib_main_t corresponding to current thread.
 * @param[in]   node    vlib_node_runtime_t data for this node.
 * @param[in]   frame   vlib_frame_t whose contents should be dispatched.
 *
 * @return number of vectors in frame.
 */
always_inline uword
lgpe_ip4_lookup (vlib_main_t * vm, vlib_node_runtime_t * node,
		 vlib_frame_t * from_frame)
{
  u32 n_left_from, next_index, *from, *to_next;
  lisp_gpe_main_t *lgm = &lisp_gpe_main;

  from = vlib_frame_vector_args (from_frame);
  n_left_from = from_frame->n_vectors;

  next_index = node->cached_next_index;

  while (n_left_from > 0)
    {
      u32 n_left_to_next;

      vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);

      while (n_left_from >= 4 && n_left_to_next >= 2)
	{
	  u32 bi0, bi1;
	  vlib_buffer_t *b0, *b1;
	  ip4_header_t *ip0, *ip1;
	  u32 dst_adj_index0, src_adj_index0, src_fib_index0;
	  u32 dst_adj_index1, src_adj_index1, src_fib_index1;
	  ip_adjacency_t *dst_adj0, *src_adj0, *dst_adj1, *src_adj1;
	  u32 next0, next1;

	  next0 = next1 = LGPE_IP4_LOOKUP_NEXT_LISP_CP_LOOKUP;

	  /* Prefetch next iteration. */
	  {
	    vlib_buffer_t *p2, *p3;

	    p2 = vlib_get_buffer (vm, from[2]);
	    p3 = vlib_get_buffer (vm, from[3]);

	    vlib_prefetch_buffer_header (p2, LOAD);
	    vlib_prefetch_buffer_header (p3, LOAD);

	    CLIB_PREFETCH (p2->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
	    CLIB_PREFETCH (p3->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
	  }

	  bi0 = from[0];
	  bi1 = from[1];
	  to_next[0] = bi0;
	  to_next[1] = bi1;
	  from += 2;
	  to_next += 2;
	  n_left_to_next -= 2;
	  n_left_from -= 2;

	  b0 = vlib_get_buffer (vm, bi0);
	  b1 = vlib_get_buffer (vm, bi1);

	  ip0 = vlib_buffer_get_current (b0);
	  ip1 = vlib_buffer_get_current (b1);

	  /* dst lookup was done by ip4 lookup */
	  dst_adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX];
	  dst_adj_index1 = vnet_buffer (b1)->ip.adj_index[VLIB_TX];

	  dst_adj0 = ip_get_adjacency (lgm->lm4, dst_adj_index0);
	  dst_adj1 = ip_get_adjacency (lgm->lm4, dst_adj_index1);

	  src_fib_index0 = dst_adj0->rewrite_header.sw_if_index;
	  src_fib_index1 = dst_adj1->rewrite_header.sw_if_index;

	  ip4_src_fib_lookup_two (lgm, src_fib_index0, src_fib_index1,
				  &ip0->src_address, &ip1->src_address,
				  &src_adj_index0, &src_adj_index1);

	  /* if a source fib exists */
	  if (PREDICT_TRUE ((u32) ~ 0 != src_adj_index0
			    && (u32) ~ 0 != src_adj_index1))
	    {
	      vnet_buffer (b0)->ip.adj_index[VLIB_TX] = src_adj_index0;
	      vnet_buffer (b1)->ip.adj_index[VLIB_TX] = src_adj_index1;

	      src_adj0 = ip_get_adjacency (lgm->lm4, src_adj_index0);
	      src_adj1 = ip_get_adjacency (lgm->lm4, src_adj_index1);

	      next0 = src_adj0->explicit_fib_index;
	      next1 = src_adj1->explicit_fib_index;

	      /* prepare buffer for lisp-gpe output node */
	      vnet_buffer (b0)->sw_if_index[VLIB_TX] =
		src_adj0->rewrite_header.sw_if_index;
	      vnet_buffer (b1)->sw_if_index[VLIB_TX] =
		src_adj1->rewrite_header.sw_if_index;

	      /* if multipath: saved_lookup_next_index is reused to store
	       * nb of sub-tunnels. If greater than 1, multipath is on.
	       * Note that flow hash should be 0 after ipx lookup! */
	      if (PREDICT_TRUE (src_adj0->saved_lookup_next_index > 1))
		vnet_buffer (b0)->ip.flow_hash =
		  ip4_compute_flow_hash (ip0, IP_FLOW_HASH_DEFAULT);

	      if (PREDICT_TRUE (src_adj1->saved_lookup_next_index > 1))
		vnet_buffer (b1)->ip.flow_hash =
		  ip4_compute_flow_hash (ip1, IP_FLOW_HASH_DEFAULT);
	    }
	  else
	    {
	      if ((u32) ~ 0 != src_adj_index0)
		{
		  vnet_buffer (b0)->ip.adj_index[VLIB_TX] = src_adj_index0;
		  src_adj0 = ip_get_adjacency (lgm->lm4, src_adj_index0);
		  next0 = src_adj0->explicit_fib_index;
		  vnet_buffer (b0)->sw_if_index[VLIB_TX] =
		    src_adj0->rewrite_header.sw_if_index;

		  if (PREDICT_TRUE (src_adj0->saved_lookup_next_index > 1))
		    vnet_buffer (b0)->ip.flow_hash =
		      ip4_compute_flow_hash (ip0, IP_FLOW_HASH_DEFAULT);
		}
	      else
		{
		  next0 = LGPE_IP4_LOOKUP_NEXT_LISP_CP_LOOKUP;
		}

	      if ((u32) ~ 0 != src_adj_index1)
		{
		  vnet_buffer (b1)->ip.adj_index[VLIB_TX] = src_adj_index1;
		  src_adj1 = ip_get_adjacency (lgm->lm4, src_adj_index1);
		  next1 = src_adj1->explicit_fib_index;
		  vnet_buffer (b1)->sw_if_index[VLIB_TX] =
		    src_adj1->rewrite_header.sw_if_index;
		  if (PREDICT_TRUE (src_adj1->saved_lookup_next_index > 1))
		    vnet_buffer (b1)->ip.flow_hash =
		      ip4_compute_flow_hash (ip1, IP_FLOW_HASH_DEFAULT);
		}
	      else
		{
		  next1 = LGPE_IP4_LOOKUP_NEXT_LISP_CP_LOOKUP;
		}
	    }

	  /* mark the packets for CP lookup if needed */
	  if (PREDICT_FALSE (LGPE_IP4_LOOKUP_NEXT_LISP_CP_LOOKUP == next0))
	    vnet_buffer (b0)->lisp.overlay_afi = LISP_AFI_IP;
	  if (PREDICT_FALSE (LGPE_IP4_LOOKUP_NEXT_LISP_CP_LOOKUP == next1))
	    vnet_buffer (b1)->lisp.overlay_afi = LISP_AFI_IP;

	  vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next,
					   n_left_to_next, bi0, bi1, next0,
					   next1);
	}

      while (n_left_from > 0 && n_left_to_next > 0)
	{
	  vlib_buffer_t *b0;
	  ip4_header_t *ip0;
	  u32 bi0, dst_adj_index0, src_adj_index0, src_fib_index0;
	  u32 next0 = LGPE_IP4_LOOKUP_NEXT_LISP_CP_LOOKUP;
	  ip_adjacency_t *dst_adj0, *src_adj0;

	  bi0 = from[0];
	  to_next[0] = bi0;
	  from += 1;
	  to_next += 1;
	  n_left_from -= 1;
	  n_left_to_next -= 1;

	  b0 = vlib_get_buffer (vm, bi0);
	  ip0 = vlib_buffer_get_current (b0);

	  /* dst lookup was done by ip4 lookup */
	  dst_adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX];
	  dst_adj0 = ip_get_adjacency (lgm->lm4, dst_adj_index0);
	  src_fib_index0 = dst_adj0->rewrite_header.sw_if_index;

	  /* do src lookup */
	  ip4_src_fib_lookup_one (lgm, src_fib_index0, &ip0->src_address,
				  &src_adj_index0);

	  /* if a source fib exists */
	  if (PREDICT_TRUE ((u32) ~ 0 != src_adj_index0))
	    {
	      vnet_buffer (b0)->ip.adj_index[VLIB_TX] = src_adj_index0;
	      src_adj0 = ip_get_adjacency (lgm->lm4, src_adj_index0);
	      next0 = src_adj0->explicit_fib_index;

	      /* prepare packet for lisp-gpe output node */
	      vnet_buffer (b0)->sw_if_index[VLIB_TX] =
		src_adj0->rewrite_header.sw_if_index;

	      /* if multipath: saved_lookup_next_index is reused to store
	       * nb of sub-tunnels. If greater than 1, multipath is on */
	      if (PREDICT_TRUE (src_adj0->saved_lookup_next_index > 1))
		vnet_buffer (b0)->ip.flow_hash =
		  ip4_compute_flow_hash (ip0, IP_FLOW_HASH_DEFAULT);
	    }
	  else
	    {
	      next0 = LGPE_IP4_LOOKUP_NEXT_LISP_CP_LOOKUP;
	    }

	  if (PREDICT_FALSE (LGPE_IP4_LOOKUP_NEXT_LISP_CP_LOOKUP == next0))
	    vnet_buffer (b0)->lisp.overlay_afi = LISP_AFI_IP;

	  vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
					   n_left_to_next, bi0, next0);
	}
      vlib_put_next_frame (vm, node, next_index, n_left_to_next);
    }
  return from_frame->n_vectors;
}

/* *INDENT-OFF* */
VLIB_REGISTER_NODE (lgpe_ip4_lookup_node) = {
  .function = lgpe_ip4_lookup,
  .name = "lgpe-ip4-lookup",
  .vector_size = sizeof (u32),

  .type = VLIB_NODE_TYPE_INTERNAL,

  .n_next_nodes = LGPE_IP4_LOOKUP_N_NEXT,
  .next_nodes = {
#define _(sym,str) [LGPE_IP4_LOOKUP_NEXT_##sym] = str,
      foreach_lgpe_ip4_lookup_next
#undef _
  },
};
/* *INDENT-ON* */

static u32
ip6_src_fib_lookup (lisp_gpe_main_t * lgm, u32 src_fib_index,
		    ip6_address_t * src)
{
  int i, len;
  int rv;
  BVT (clib_bihash_kv) kv, value;
  ip6_src_fib_t *fib = pool_elt_at_index (lgm->ip6_src_fibs, src_fib_index);

  len = vec_len (fib->prefix_lengths_in_search_order);

  for (i = 0; i < len; i++)
    {
      int dst_address_length = fib->prefix_lengths_in_search_order[i];
      ip6_address_t *mask;

      ASSERT (dst_address_length >= 0 && dst_address_length <= 128);

      mask = &fib->fib_masks[dst_address_length];

      kv.key[0] = src->as_u64[0] & mask->as_u64[0];
      kv.key[1] = src->as_u64[1] & mask->as_u64[1];
      kv.key[2] = dst_address_length;

      rv =
	BV (clib_bihash_search_inline_2) (&fib->ip6_lookup_table, &kv,
					  &value);
      if (rv == 0)
	return value.value;
    }

  return 0;
}

always_inline void
ip6_src_fib_lookup_one (lisp_gpe_main_t * lgm, u32 src_fib_index0,
			ip6_address_t * addr0, u32 * src_adj_index0)
{
  /* if default route not hit in ip6 lookup */
  if (PREDICT_TRUE (src_fib_index0 != (u32) ~ 0))
    src_adj_index0[0] = ip6_src_fib_lookup (lgm, src_fib_index0, addr0);
  else
    src_adj_index0[0] = ~0;
}

always_inline void
ip6_src_fib_lookup_two (lisp_gpe_main_t * lgm, u32 src_fib_index0,
			u32 src_fib_index1, ip6_address_t * addr0,
			ip6_address_t * addr1, u32 * src_adj_index0,
			u32 * src_adj_index1)
{
  /* if default route not hit in ip6 lookup */
  if (PREDICT_TRUE
      (src_fib_index0 != (u32) ~ 0 && src_fib_index1 != (u32) ~ 0))
    {
      src_adj_index0[0] = ip6_src_fib_lookup (lgm, src_fib_index0, addr0);
      src_adj_index1[0] = ip6_src_fib_lookup (lgm, src_fib_index1, addr1);
    }
  else
    {
      ip6_src_fib_lookup_one (lgm, src_fib_index0, addr0, src_adj_index0);
      ip6_src_fib_lookup_one (lgm, src_fib_index1, addr1, src_adj_index1);
    }
}

/**
 * @brief IPv6 src lookup node.
 * @node lgpe-ip6-lookup
 *
 * The LISP IPv6 source lookup dispatch node.
 *
 * This is the IPv6 source lookup dispatch node. It first looks up the
 * adjacency hit in the main (destination) FIB and then uses its
 * <code>rewrite_header.sw_if_index</code>to find the source FIB wherein
 * the source IP is subsequently looked up. Data in the resulting adjacency
 * is used to decide the next node (the lisp_gpe interface) and if a flow
 * hash must be computed, when traffic can be load balanced over multiple
 * tunnels.
 *
 * @param[in]   vm      vlib_main_t corresponding to current thread.
 * @param[in]   node    vlib_node_runtime_t data for this node.
 * @param[in]   frame   vlib_frame_t whose contents should be dispatched.
 *
 * @return number of vectors in frame.
 */
always_inline uword
lgpe_ip6_lookup (vlib_main_t * vm, vlib_node_runtime_t * node,
		 vlib_frame_t * from_frame)
{
  u32 n_left_from, next_index, *from, *to_next;
  lisp_gpe_main_t *lgm = &lisp_gpe_main;

  from = vlib_frame_vector_args (from_frame);
  n_left_from = from_frame->n_vectors;

  next_index = node->cached_next_index;

  while (n_left_from > 0)
    {
      u32 n_left_to_next;

      vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);

      while (n_left_from >= 4 && n_left_to_next >= 2)
	{
	  u32 bi0, bi1;
	  vlib_buffer_t *b0, *b1;
	  ip6_header_t *ip0, *ip1;
	  u32 dst_adj_index0, src_adj_index0, src_fib_index0, dst_adj_index1,
	    src_adj_index1, src_fib_index1;
	  ip_adjacency_t *dst_adj0, *src_adj0, *dst_adj1, *src_adj1;
	  u32 next0, next1;

	  next0 = next1 = LGPE_IP6_LOOKUP_NEXT_LISP_CP_LOOKUP;

	  /* Prefetch next iteration. */
	  {
	    vlib_buffer_t *p2, *p3;

	    p2 = vlib_get_buffer (vm, from[2]);
	    p3 = vlib_get_buffer (vm, from[3]);

	    vlib_prefetch_buffer_header (p2, LOAD);
	    vlib_prefetch_buffer_header (p3, LOAD);

	    CLIB_PREFETCH (p2->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
	    CLIB_PREFETCH (p3->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
	  }

	  bi0 = from[0];
	  bi1 = from[1];
	  to_next[0] = bi0;
	  to_next[1] = bi1;
	  from += 2;
	  to_next += 2;
	  n_left_to_next -= 2;
	  n_left_from -= 2;

	  b0 = vlib_get_buffer (vm, bi0);
	  b1 = vlib_get_buffer (vm, bi1);

	  ip0 = vlib_buffer_get_current (b0);
	  ip1 = vlib_buffer_get_current (b1);

	  /* dst lookup was done by ip6 lookup */
	  dst_adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX];
	  dst_adj_index1 = vnet_buffer (b1)->ip.adj_index[VLIB_TX];

	  dst_adj0 = ip_get_adjacency (lgm->lm6, dst_adj_index0);
	  dst_adj1 = ip_get_adjacency (lgm->lm6, dst_adj_index1);

	  src_fib_index0 = dst_adj0->rewrite_header.sw_if_index;
	  src_fib_index1 = dst_adj1->rewrite_header.sw_if_index;

	  ip6_src_fib_lookup_two (lgm, src_fib_index0, src_fib_index1,
				  &ip0->src_address, &ip1->src_address,
				  &src_adj_index0, &src_adj_index1);

	  /* if a source fib exists */
	  if (PREDICT_TRUE ((u32) ~ 0 != src_adj_index0
			    && (u32) ~ 0 != src_adj_index1))
	    {
	      vnet_buffer (b0)->ip.adj_index[VLIB_TX] = src_adj_index0;
	      vnet_buffer (b1)->ip.adj_index[VLIB_TX] = src_adj_index1;

	      src_adj0 = ip_get_adjacency (lgm->lm6, src_adj_index0);
	      src_adj1 = ip_get_adjacency (lgm->lm6, src_adj_index1);

	      next0 = src_adj0->explicit_fib_index;
	      next1 = src_adj1->explicit_fib_index;

	      /* prepare buffer for lisp-gpe output node */
	      vnet_buffer (b0)->sw_if_index[VLIB_TX] =
		src_adj0->rewrite_header.sw_if_index;
	      vnet_buffer (b1)->sw_if_index[VLIB_TX] =
		src_adj1->rewrite_header.sw_if_index;

	      /* if multipath: saved_lookup_next_index is reused to store
	       * nb of sub-tunnels. If greater than 1, multipath is on.
	       * Note that flow hash should be 0 after ipx lookup! */
	      if (PREDICT_TRUE (src_adj0->saved_lookup_next_index > 1))
		vnet_buffer (b0)->ip.flow_hash =
		  ip6_compute_flow_hash (ip0, IP_FLOW_HASH_DEFAULT);

	      if (PREDICT_TRUE (src_adj1->saved_lookup_next_index > 1))
		vnet_buffer (b1)->ip.flow_hash =
		  ip6_compute_flow_hash (ip1, IP_FLOW_HASH_DEFAULT);
	    }
	  else
	    {
	      if (src_adj_index0 != (u32) ~ 0)
		{
		  vnet_buffer (b0)->ip.adj_index[VLIB_TX] = src_adj_index0;
		  src_adj0 = ip_get_adjacency (lgm->lm6, src_adj_index0);
		  next0 = src_adj0->explicit_fib_index;
		  vnet_buffer (b0)->sw_if_index[VLIB_TX] =
		    src_adj0->rewrite_header.sw_if_index;

		  if (PREDICT_TRUE (src_adj0->saved_lookup_next_index > 1))
		    vnet_buffer (b0)->ip.flow_hash =
		      ip6_compute_flow_hash (ip0, IP_FLOW_HASH_DEFAULT);
		}
	      else
		{
		  next0 = LGPE_IP4_LOOKUP_NEXT_LISP_CP_LOOKUP;
		}

	      if (src_adj_index1 != (u32) ~ 0)
		{
		  vnet_buffer (b1)->ip.adj_index[VLIB_TX] = src_adj_index1;
		  src_adj1 = ip_get_adjacency (lgm->lm6, src_adj_index1);
		  next1 = src_adj1->explicit_fib_index;
		  vnet_buffer (b1)->sw_if_index[VLIB_TX] =
		    src_adj1->rewrite_header.sw_if_index;

		  if (PREDICT_TRUE (src_adj1->saved_lookup_next_index > 1))
		    vnet_buffer (b1)->ip.flow_hash =
		      ip6_compute_flow_hash (ip1, IP_FLOW_HASH_DEFAULT);
		}
	      else
		{
		  next1 = LGPE_IP4_LOOKUP_NEXT_LISP_CP_LOOKUP;
		}
	    }

	  /* mark the packets for CP lookup if needed */
	  if (PREDICT_FALSE (LGPE_IP4_LOOKUP_NEXT_LISP_CP_LOOKUP == next0))
	    vnet_buffer (b0)->lisp.overlay_afi = LISP_AFI_IP;
	  if (PREDICT_FALSE (LGPE_IP4_LOOKUP_NEXT_LISP_CP_LOOKUP == next1))
	    vnet_buffer (b1)->lisp.overlay_afi = LISP_AFI_IP;

	  vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next,
					   n_left_to_next, bi0, bi1, next0,
					   next1);
	}

      while (n_left_from > 0 && n_left_to_next > 0)
	{
	  vlib_buffer_t *b0;
	  ip6_header_t *ip0;
	  u32 bi0, dst_adj_index0, src_adj_index0, src_fib_index0;
	  u32 next0 = LGPE_IP6_LOOKUP_NEXT_LISP_CP_LOOKUP;
	  ip_adjacency_t *dst_adj0, *src_adj0;

	  bi0 = from[0];
	  to_next[0] = bi0;
	  from += 1;
	  to_next += 1;
	  n_left_from -= 1;
	  n_left_to_next -= 1;

	  b0 = vlib_get_buffer (vm, bi0);
	  ip0 = vlib_buffer_get_current (b0);

	  /* dst lookup was done by ip6 lookup */
	  dst_adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX];
	  dst_adj0 = ip_get_adjacency (lgm->lm6, dst_adj_index0);
	  src_fib_index0 = dst_adj0->rewrite_header.sw_if_index;

	  /* do src lookup */
	  ip6_src_fib_lookup_one (lgm, src_fib_index0, &ip0->src_address,
				  &src_adj_index0);

	  /* if a source fib exists */
	  if (PREDICT_TRUE (src_adj_index0 != (u32) ~ 0))
	    {
	      vnet_buffer (b0)->ip.adj_index[VLIB_TX] = src_adj_index0;
	      src_adj0 = ip_get_adjacency (lgm->lm6, src_adj_index0);
	      next0 = src_adj0->explicit_fib_index;

	      /* prepare packet for lisp-gpe output node */
	      vnet_buffer (b0)->sw_if_index[VLIB_TX] =
		src_adj0->rewrite_header.sw_if_index;

	      /* if multipath: saved_lookup_next_index is reused to store
	       * nb of sub-tunnels. If greater than 1, multipath is on */
	      if (PREDICT_TRUE (src_adj0->saved_lookup_next_index > 1))
		vnet_buffer (b0)->ip.flow_hash =
		  ip6_compute_flow_hash (ip0, IP_FLOW_HASH_DEFAULT);
	    }
	  else
	    {
	      next0 = LGPE_IP4_LOOKUP_NEXT_LISP_CP_LOOKUP;
	    }

	  /* mark the packets for CP lookup if needed */
	  if (PREDICT_FALSE (LGPE_IP4_LOOKUP_NEXT_LISP_CP_LOOKUP == next0))
	    vnet_buffer (b0)->lisp.overlay_afi = LISP_AFI_IP;

	  vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
					   n_left_to_next, bi0, next0);
	}
      vlib_put_next_frame (vm, node, next_index, n_left_to_next);
    }
  return from_frame->n_vectors;
}

/* *INDENT-OFF* */
VLIB_REGISTER_NODE (lgpe_ip6_lookup_node) = {
  .function = lgpe_ip6_lookup,
  .name = "lgpe-ip6-lookup",
  .vector_size = sizeof (u32),

  .type = VLIB_NODE_TYPE_INTERNAL,

  .n_next_nodes = LGPE_IP6_LOOKUP_N_NEXT,
  .next_nodes = {
#define _(sym,str) [LGPE_IP6_LOOKUP_NEXT_##sym] = str,
      foreach_lgpe_ip6_lookup_next
#undef _
  },
};
/* *INDENT-ON* */

/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "gnu")
 * End:
 */