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
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
// SPDX-License-Identifier: GPL-2.0-only
/*
 * GENEVE: Generic Network Virtualization Encapsulation
 *
 * Copyright (c) 2015 Red Hat, Inc.
 */

#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include <linux/ethtool.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/etherdevice.h>
#include <linux/hash.h>
#include <net/dst_metadata.h>
#include <net/gro_cells.h>
#include <net/rtnetlink.h>
#include <net/geneve.h>
#include <net/gro.h>
#include <net/netdev_lock.h>
#include <net/protocol.h>

#define GENEVE_NETDEV_VER	"0.6"

#define GENEVE_N_VID		(1u << 24)
#define GENEVE_VID_MASK		(GENEVE_N_VID - 1)

#define VNI_HASH_BITS		10
#define VNI_HASH_SIZE		(1<<VNI_HASH_BITS)

static bool log_ecn_error = true;
module_param(log_ecn_error, bool, 0644);
MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN");

#define GENEVE_VER 0
#define GENEVE_BASE_HLEN (sizeof(struct udphdr) + sizeof(struct genevehdr))
#define GENEVE_IPV4_HLEN (ETH_HLEN + sizeof(struct iphdr) + GENEVE_BASE_HLEN)
#define GENEVE_IPV6_HLEN (ETH_HLEN + sizeof(struct ipv6hdr) + GENEVE_BASE_HLEN)

#define GENEVE_OPT_NETDEV_CLASS		0x100
#define GENEVE_OPT_GRO_HINT_SIZE	8
#define GENEVE_OPT_GRO_HINT_TYPE	1
#define GENEVE_OPT_GRO_HINT_LEN		1

struct geneve_opt_gro_hint {
#if defined(__LITTLE_ENDIAN_BITFIELD)
	u8	inner_proto_id:2,
		nested_is_v6:1,
		rsvd:5;
#elif defined(__BIG_ENDIAN_BITFIELD)
	u8	rsvd:5,
		nested_is_v6:1,
		inner_proto_id:2;
#else
#error "Please fix <asm/byteorder.h>"
#endif
	u8	nested_nh_offset;
	u8	nested_tp_offset;
	u8	nested_hdr_len;
};

struct geneve_skb_cb {
	unsigned int	gro_hint_len;
	struct geneve_opt_gro_hint gro_hint;
};

#define GENEVE_SKB_CB(__skb)	((struct geneve_skb_cb *)&((__skb)->cb[0]))

/* per-network namespace private data for this module */
struct geneve_net {
	struct list_head	geneve_list;
	struct list_head	sock_list;
	struct mutex		lock;
};

static unsigned int geneve_net_id;

struct geneve_dev_node {
	struct hlist_node hlist;
	struct geneve_dev *geneve;
};

struct geneve_config {
	bool			collect_md;
	bool			dualstack;
	bool			use_udp6_rx_checksums;
	bool			ttl_inherit;
	bool			gro_hint;
	enum ifla_geneve_df	df;
	bool			inner_proto_inherit;
	u16			port_min;
	u16			port_max;

	struct rcu_head		rcu;
	/* Must be last --ends in a flexible-array member. */
	struct ip_tunnel_info	info;
};

/* Pseudo network device */
struct geneve_dev {
	struct geneve_dev_node hlist4;	/* vni hash table for IPv4 socket */
#if IS_ENABLED(CONFIG_IPV6)
	struct geneve_dev_node hlist6;	/* vni hash table for IPv6 socket */
#endif
	struct net	   *net;	/* netns for packet i/o */
	struct net_device  *dev;	/* netdev for geneve tunnel */
	struct geneve_sock __rcu *sock4;	/* IPv4 socket used for geneve tunnel */
#if IS_ENABLED(CONFIG_IPV6)
	struct geneve_sock __rcu *sock6;	/* IPv6 socket used for geneve tunnel */
#endif
	struct list_head   next;	/* geneve's per namespace list */
	struct gro_cells   gro_cells;
	struct geneve_config __rcu *cfg;
};

struct geneve_sock {
	bool			collect_md;
	bool			gro_hint;
	struct list_head	list;
	struct sock		*sk;
	struct rcu_head		rcu;
	int			refcnt;
	struct hlist_head	vni_list[VNI_HASH_SIZE];
};

static const __be16 proto_id_map[] = { htons(ETH_P_TEB),
				       htons(ETH_P_IPV6),
				       htons(ETH_P_IP) };

static int proto_to_id(__be16 proto)
{
	int i;

	for (i = 0; i < ARRAY_SIZE(proto_id_map); i++)
		if (proto_id_map[i] == proto)
			return i;

	return -1;
}

static inline __u32 geneve_net_vni_hash(u8 vni[3])
{
	__u32 vnid;

	vnid = (vni[0] << 16) | (vni[1] << 8) | vni[2];
	return hash_32(vnid, VNI_HASH_BITS);
}

static __be64 vni_to_tunnel_id(const __u8 *vni)
{
#ifdef __BIG_ENDIAN
	return (vni[0] << 16) | (vni[1] << 8) | vni[2];
#else
	return (__force __be64)(((__force u64)vni[0] << 40) |
				((__force u64)vni[1] << 48) |
				((__force u64)vni[2] << 56));
#endif
}

/* Convert 64 bit tunnel ID to 24 bit VNI. */
static void tunnel_id_to_vni(__be64 tun_id, __u8 *vni)
{
#ifdef __BIG_ENDIAN
	vni[0] = (__force __u8)(tun_id >> 16);
	vni[1] = (__force __u8)(tun_id >> 8);
	vni[2] = (__force __u8)tun_id;
#else
	vni[0] = (__force __u8)((__force u64)tun_id >> 40);
	vni[1] = (__force __u8)((__force u64)tun_id >> 48);
	vni[2] = (__force __u8)((__force u64)tun_id >> 56);
#endif
}

static bool eq_tun_id_and_vni(u8 *tun_id, u8 *vni)
{
	return !memcmp(vni, &tun_id[5], 3);
}

static sa_family_t geneve_get_sk_family(struct geneve_sock *gs)
{
	return gs->sk->sk_family;
}

static struct geneve_dev *geneve_lookup(struct geneve_sock *gs,
					__be32 addr, u8 vni[])
{
	struct hlist_head *vni_list_head;
	struct geneve_dev_node *node;
	__u32 hash;

	/* Find the device for this VNI */
	hash = geneve_net_vni_hash(vni);
	vni_list_head = &gs->vni_list[hash];
	hlist_for_each_entry_rcu(node, vni_list_head, hlist) {
		const struct geneve_config *cfg = rcu_dereference(node->geneve->cfg);

		if (eq_tun_id_and_vni((u8 *)&cfg->info.key.tun_id, vni) &&
		    addr == cfg->info.key.u.ipv4.dst)
			return node->geneve;
	}
	return NULL;
}

#if IS_ENABLED(CONFIG_IPV6)
static struct geneve_dev *geneve6_lookup(struct geneve_sock *gs,
					 struct in6_addr addr6, u8 vni[])
{
	struct hlist_head *vni_list_head;
	struct geneve_dev_node *node;
	__u32 hash;

	/* Find the device for this VNI */
	hash = geneve_net_vni_hash(vni);
	vni_list_head = &gs->vni_list[hash];
	hlist_for_each_entry_rcu(node, vni_list_head, hlist) {
		const struct geneve_config *cfg = rcu_dereference(node->geneve->cfg);

		if (eq_tun_id_and_vni((u8 *)&cfg->info.key.tun_id, vni) &&
		    ipv6_addr_equal(&addr6, &cfg->info.key.u.ipv6.dst))
			return node->geneve;
	}
	return NULL;
}
#endif

static inline struct genevehdr *geneve_hdr(const struct sk_buff *skb)
{
	return (struct genevehdr *)(udp_hdr(skb) + 1);
}

static struct geneve_dev *geneve_lookup_skb(struct geneve_sock *gs,
					    struct sk_buff *skb)
{
	static u8 zero_vni[3];
	u8 *vni;

	if (geneve_get_sk_family(gs) == AF_INET) {
		struct iphdr *iph;
		__be32 addr;

		iph = ip_hdr(skb); /* outer IP header... */

		if (gs->collect_md) {
			vni = zero_vni;
			addr = 0;
		} else {
			vni = geneve_hdr(skb)->vni;
			addr = iph->saddr;
		}

		return geneve_lookup(gs, addr, vni);
#if IS_ENABLED(CONFIG_IPV6)
	} else if (geneve_get_sk_family(gs) == AF_INET6) {
		static struct in6_addr zero_addr6;
		struct ipv6hdr *ip6h;
		struct in6_addr addr6;

		ip6h = ipv6_hdr(skb); /* outer IPv6 header... */

		if (gs->collect_md) {
			vni = zero_vni;
			addr6 = zero_addr6;
		} else {
			vni = geneve_hdr(skb)->vni;
			addr6 = ip6h->saddr;
		}

		return geneve6_lookup(gs, addr6, vni);
#endif
	}
	return NULL;
}

/* geneve receive/decap routine */
static void geneve_rx(struct geneve_dev *geneve, struct geneve_sock *gs,
		      struct sk_buff *skb, const struct genevehdr *gnvh)
{
	struct metadata_dst *tun_dst = NULL;
	unsigned int len;
	int nh, err = 0;
	void *oiph;

	if (ip_tunnel_collect_metadata() || gs->collect_md) {
		IP_TUNNEL_DECLARE_FLAGS(flags) = { };

		__set_bit(IP_TUNNEL_KEY_BIT, flags);
		__assign_bit(IP_TUNNEL_OAM_BIT, flags, gnvh->oam);
		__assign_bit(IP_TUNNEL_CRIT_OPT_BIT, flags, gnvh->critical);

		tun_dst = udp_tun_rx_dst(skb, geneve_get_sk_family(gs), flags,
					 vni_to_tunnel_id(gnvh->vni),
					 gnvh->opt_len * 4);
		if (!tun_dst) {
			dev_dstats_rx_dropped(geneve->dev);
			goto drop;
		}
		/* Update tunnel dst according to Geneve options. */
		ip_tunnel_flags_zero(flags);
		__set_bit(IP_TUNNEL_GENEVE_OPT_BIT, flags);
		ip_tunnel_info_opts_set(&tun_dst->u.tun_info,
					gnvh->options, gnvh->opt_len * 4,
					flags);
	} else {
		/* Drop packets w/ critical options,
		 * since we don't support any...
		 */
		if (gnvh->critical) {
			DEV_STATS_INC(geneve->dev, rx_frame_errors);
			DEV_STATS_INC(geneve->dev, rx_errors);
			goto drop;
		}
	}

	if (tun_dst)
		skb_dst_set(skb, &tun_dst->dst);

	if (gnvh->proto_type == htons(ETH_P_TEB)) {
		skb_reset_mac_header(skb);
		skb->protocol = eth_type_trans(skb, geneve->dev);
		skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);

		/* Ignore packet loops (and multicast echo) */
		if (ether_addr_equal(eth_hdr(skb)->h_source,
				     geneve->dev->dev_addr)) {
			DEV_STATS_INC(geneve->dev, rx_errors);
			goto drop;
		}
	} else {
		skb_reset_mac_header(skb);
		skb->dev = geneve->dev;
		skb->pkt_type = PACKET_HOST;
	}

	/* Save offset of outer header relative to skb->head,
	 * because we are going to reset the network header to the inner header
	 * and might change skb->head.
	 */
	nh = skb_network_header(skb) - skb->head;

	skb_reset_network_header(skb);

	if (!pskb_inet_may_pull(skb)) {
		DEV_STATS_INC(geneve->dev, rx_length_errors);
		DEV_STATS_INC(geneve->dev, rx_errors);
		goto drop;
	}

	/* Get the outer header. */
	oiph = skb->head + nh;

	if (geneve_get_sk_family(gs) == AF_INET)
		err = IP_ECN_decapsulate(oiph, skb);
#if IS_ENABLED(CONFIG_IPV6)
	else
		err = IP6_ECN_decapsulate(oiph, skb);
#endif

	if (unlikely(err)) {
		if (log_ecn_error) {
			if (geneve_get_sk_family(gs) == AF_INET)
				net_info_ratelimited("non-ECT from %pI4 "
						     "with TOS=%#x\n",
						     &((struct iphdr *)oiph)->saddr,
						     ((struct iphdr *)oiph)->tos);
#if IS_ENABLED(CONFIG_IPV6)
			else
				net_info_ratelimited("non-ECT from %pI6\n",
						     &((struct ipv6hdr *)oiph)->saddr);
#endif
		}
		if (err > 1) {
			DEV_STATS_INC(geneve->dev, rx_frame_errors);
			DEV_STATS_INC(geneve->dev, rx_errors);
			goto drop;
		}
	}

	/* Skip the additional GRO stage when hints are in use. */
	len = skb->len;
	if (skb->encapsulation)
		err = netif_rx(skb);
	else
		err = gro_cells_receive(&geneve->gro_cells, skb);
	if (likely(err == NET_RX_SUCCESS))
		dev_dstats_rx_add(geneve->dev, len);

	return;
drop:
	/* Consume bad packet */
	kfree_skb(skb);
}

/* Setup stats when device is created */
static int geneve_init(struct net_device *dev)
{
	struct geneve_dev *geneve = netdev_priv(dev);
	int err;

	err = gro_cells_init(&geneve->gro_cells, dev);
	if (err)
		return err;

	netdev_lockdep_set_classes(dev);
	return 0;
}

static void geneve_uninit(struct net_device *dev)
{
	struct geneve_dev *geneve = netdev_priv(dev);

	gro_cells_destroy(&geneve->gro_cells);
}

static int geneve_hlen(const struct genevehdr *gh)
{
	return sizeof(*gh) + gh->opt_len * 4;
}

/*
 * Look for GRO hint in the genenve options; if not found or does not pass basic
 * sanitization return 0, otherwise the offset WRT the geneve hdr start.
 */
static unsigned int
geneve_opt_gro_hint_off(const struct genevehdr *gh, __be16 *type,
			unsigned int *gh_len)
{
	struct geneve_opt *opt = (void *)(gh + 1);
	unsigned int id, opt_len = gh->opt_len;
	struct geneve_opt_gro_hint *gro_hint;

	while (opt_len >= (GENEVE_OPT_GRO_HINT_SIZE >> 2)) {
		if (opt->opt_class == htons(GENEVE_OPT_NETDEV_CLASS) &&
		    opt->type == GENEVE_OPT_GRO_HINT_TYPE &&
		    opt->length == GENEVE_OPT_GRO_HINT_LEN)
			goto found;

		/* check for bad opt len */
		if (opt->length + 1 >= opt_len)
			return 0;

		/* next opt */
		opt_len -= opt->length + 1;
		opt = ((void *)opt) + ((opt->length + 1) << 2);
	}
	return 0;

found:
	gro_hint = (struct geneve_opt_gro_hint *)opt->opt_data;

	/*
	 * Sanitize the hinted hdrs: the nested transport is UDP and must fit
	 * the overall hinted hdr size.
	 */
	if (gro_hint->nested_tp_offset + sizeof(struct udphdr) >
	    gro_hint->nested_hdr_len)
		return 0;

	if (gro_hint->nested_nh_offset +
	    (gro_hint->nested_is_v6 ? sizeof(struct ipv6hdr) :
				      sizeof(struct iphdr)) >
	    gro_hint->nested_tp_offset)
		return 0;

	/* Allow only supported L2. */
	id = gro_hint->inner_proto_id;
	if (id >= ARRAY_SIZE(proto_id_map))
		return 0;

	*type = proto_id_map[id];
	*gh_len += gro_hint->nested_hdr_len;

	return (void *)gro_hint - (void *)gh;
}

static const struct geneve_opt_gro_hint *
geneve_opt_gro_hint(const struct genevehdr *gh, unsigned int hint_off)
{
	return (const struct geneve_opt_gro_hint *)((void *)gh + hint_off);
}

static unsigned int
geneve_sk_gro_hint_off(const struct sock *sk, const struct genevehdr *gh,
		       __be16 *type, unsigned int *gh_len)
{
	const struct geneve_sock *gs = rcu_dereference_sk_user_data(sk);

	if (!gs || !gs->gro_hint)
		return 0;
	return geneve_opt_gro_hint_off(gh, type, gh_len);
}

/* Validate the packet headers pointed by data WRT the provided hint */
static bool
geneve_opt_gro_hint_validate(void *data,
			     const struct geneve_opt_gro_hint *gro_hint)
{
	void *nested_nh = data + gro_hint->nested_nh_offset;
	struct iphdr *iph;

	if (gro_hint->nested_is_v6) {
		struct ipv6hdr *ipv6h = nested_nh;
		struct ipv6_opt_hdr *opth;
		int offset, len;

		if (ipv6h->nexthdr == IPPROTO_UDP)
			return true;

		offset = sizeof(*ipv6h) + gro_hint->nested_nh_offset;
		while (offset + sizeof(*opth) <= gro_hint->nested_tp_offset) {
			opth = data + offset;

			len = ipv6_optlen(opth);
			if (len + offset > gro_hint->nested_tp_offset)
				return false;
			if (opth->nexthdr == IPPROTO_UDP)
				return true;

			offset += len;
		}
		return false;
	}

	iph = nested_nh;
	if (*(u8 *)iph != 0x45 || ip_is_fragment(iph) ||
	    iph->protocol != IPPROTO_UDP || ip_fast_csum((u8 *)iph, 5))
		return false;

	return true;
}

/*
 * Validate the skb headers following the specified geneve hdr vs the
 * provided hint, including nested L4 checksum.
 * The caller already ensured that the relevant amount of data is available
 * in the linear part.
 */
static bool
geneve_opt_gro_hint_validate_csum(const struct sk_buff *skb,
				  const struct genevehdr *gh,
				  const struct geneve_opt_gro_hint *gro_hint)
{
	unsigned int plen, gh_len = geneve_hlen(gh);
	void *nested = (void *)gh + gh_len;
	struct udphdr *nested_uh;
	unsigned int nested_len;
	struct ipv6hdr *ipv6h;
	struct iphdr *iph;
	__wsum csum, psum;

	if (!geneve_opt_gro_hint_validate(nested, gro_hint))
		return false;

	/* Use GRO hints with nested csum only if the outer header has csum. */
	nested_uh = nested + gro_hint->nested_tp_offset;
	if (!nested_uh->check || skb->ip_summed == CHECKSUM_PARTIAL)
		return true;

	if (!NAPI_GRO_CB(skb)->csum_valid)
		return false;

	/* Compute the complete checksum up to the nested transport. */
	plen = gh_len + gro_hint->nested_tp_offset;
	csum = csum_sub(NAPI_GRO_CB(skb)->csum, csum_partial(gh, plen, 0));
	nested_len = skb_gro_len(skb) - plen;

	/* Compute the nested pseudo header csum. */
	ipv6h = nested + gro_hint->nested_nh_offset;
	iph = (struct iphdr *)ipv6h;
	psum = gro_hint->nested_is_v6 ?
	       ~csum_unfold(csum_ipv6_magic(&ipv6h->saddr, &ipv6h->daddr,
					    nested_len, IPPROTO_UDP, 0)) :
	       csum_tcpudp_nofold(iph->saddr, iph->daddr,
				  nested_len, IPPROTO_UDP, 0);

	return !csum_fold(csum_add(psum, csum));
}

static int geneve_post_decap_hint(const struct sock *sk, struct sk_buff *skb,
				  unsigned int gh_len,
				  struct genevehdr **geneveh)
{
	const struct geneve_opt_gro_hint *gro_hint;
	unsigned int len, total_len, hint_off;
	struct ipv6hdr *ipv6h;
	struct iphdr *iph;
	struct udphdr *uh;
	__be16 p;
	int err;

	hint_off = geneve_sk_gro_hint_off(sk, *geneveh, &p, &len);
	if (!hint_off)
		return 0;

	if (!skb_is_gso(skb))
		return 0;

	gro_hint = geneve_opt_gro_hint(*geneveh, hint_off);
	if (unlikely(!pskb_may_pull(skb, gro_hint->nested_hdr_len)))
		return -ENOMEM;

	*geneveh = geneve_hdr(skb);
	gro_hint = geneve_opt_gro_hint(*geneveh, hint_off);

	/*
	 * Validate hints from untrusted source before accessing
	 * the headers; csum will be checked later by the nested
	 * protocol rx path.
	 */
	if (unlikely(skb_shinfo(skb)->gso_type & SKB_GSO_DODGY &&
		     !geneve_opt_gro_hint_validate(skb->data, gro_hint)))
		return -EINVAL;

	total_len = skb->len - gro_hint->nested_nh_offset;
	if (total_len >= GRO_LEGACY_MAX_SIZE)
		return -E2BIG;

	err = skb_ensure_writable(skb, gro_hint->nested_tp_offset + sizeof(*uh));
	if (unlikely(err))
		return err;

	*geneveh = geneve_hdr(skb);
	gro_hint = geneve_opt_gro_hint(*geneveh, hint_off);

	ipv6h = (void *)skb->data + gro_hint->nested_nh_offset;
	iph = (struct iphdr *)ipv6h;

	/*
	 * After stripping the outer encap, the packet still carries a
	 * tunnel encapsulation: the nested one.
	 */
	skb->encapsulation = 1;

	/* GSO expect a valid transpor header, move it to the current one. */
	skb_set_transport_header(skb, gro_hint->nested_tp_offset);

	/* Adjust the nested IP{6} hdr to actual GSO len. */
	if (gro_hint->nested_is_v6) {
		ipv6h->payload_len = htons(total_len - sizeof(*ipv6h));
	} else {
		__be16 old_len = iph->tot_len;

		iph->tot_len = htons(total_len);

		/* For IPv4 additionally adjust the nested csum. */
		csum_replace2(&iph->check, old_len, iph->tot_len);
		ip_send_check(iph);
	}

	/* Adjust the nested UDP header len and checksum. */
	uh = udp_hdr(skb);
	udp_set_len_short(uh, skb->len - gro_hint->nested_tp_offset);
	if (uh->check) {
		len = skb->len - gro_hint->nested_tp_offset;
		skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL_CSUM;
		if (gro_hint->nested_is_v6)
			uh->check = ~udp_v6_check(len, &ipv6h->saddr,
						  &ipv6h->daddr, 0);
		else
			uh->check = ~udp_v4_check(len, iph->saddr,
						  iph->daddr, 0);
	} else {
		skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL;
	}
	return 0;
}

/* Callback from net/ipv4/udp.c to receive packets */
static int geneve_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
{
	const struct geneve_config *cfg;
	struct genevehdr *geneveh;
	struct geneve_dev *geneve;
	struct geneve_sock *gs;
	__be16 inner_proto;
	int opts_len;

	/* Need UDP and Geneve header to be present */
	if (unlikely(!pskb_may_pull(skb, GENEVE_BASE_HLEN)))
		goto drop;

	/* Return packets with reserved bits set */
	geneveh = geneve_hdr(skb);
	if (unlikely(geneveh->ver != GENEVE_VER))
		goto drop;

	gs = rcu_dereference_sk_user_data(sk);
	if (!gs)
		goto drop;

	geneve = geneve_lookup_skb(gs, skb);
	if (!geneve)
		goto drop;

	inner_proto = geneveh->proto_type;

	cfg = rcu_dereference(geneve->cfg);
	if (unlikely(!cfg || (!cfg->inner_proto_inherit &&
			      inner_proto != htons(ETH_P_TEB)))) {
		dev_dstats_rx_dropped(geneve->dev);
		goto drop;
	}

	opts_len = geneveh->opt_len * 4;
	if (iptunnel_pull_header(skb, GENEVE_BASE_HLEN + opts_len, inner_proto,
				 !net_eq(geneve->net, dev_net(geneve->dev)))) {
		dev_dstats_rx_dropped(geneve->dev);
		goto drop;
	}

	/*
	 * After hint processing, the transport header points to the inner one
	 * and we can't use anymore on geneve_hdr().
	 */
	geneveh = geneve_hdr(skb);
	if (geneve_post_decap_hint(sk, skb, sizeof(struct genevehdr) +
				   opts_len, &geneveh)) {
		DEV_STATS_INC(geneve->dev, rx_errors);
		goto drop;
	}

	geneve_rx(geneve, gs, skb, geneveh);
	return 0;

drop:
	/* Consume bad packet */
	kfree_skb(skb);
	return 0;
}

/* Callback from net/ipv{4,6}/udp.c to check that we have a tunnel for errors */
static int geneve_udp_encap_err_lookup(struct sock *sk, struct sk_buff *skb)
{
	struct genevehdr *geneveh;
	struct geneve_sock *gs;
	u8 zero_vni[3] = { 0 };
	u8 *vni = zero_vni;

	if (!pskb_may_pull(skb, skb_transport_offset(skb) + GENEVE_BASE_HLEN))
		return -EINVAL;

	geneveh = geneve_hdr(skb);
	if (geneveh->ver != GENEVE_VER)
		return -EINVAL;

	if (geneveh->proto_type != htons(ETH_P_TEB))
		return -EINVAL;

	gs = rcu_dereference_sk_user_data(sk);
	if (!gs)
		return -ENOENT;

	if (geneve_get_sk_family(gs) == AF_INET) {
		struct iphdr *iph = ip_hdr(skb);
		__be32 addr4 = 0;

		if (!gs->collect_md) {
			vni = geneve_hdr(skb)->vni;
			addr4 = iph->daddr;
		}

		return geneve_lookup(gs, addr4, vni) ? 0 : -ENOENT;
	}

#if IS_ENABLED(CONFIG_IPV6)
	if (geneve_get_sk_family(gs) == AF_INET6) {
		struct ipv6hdr *ip6h = ipv6_hdr(skb);
		struct in6_addr addr6;

		memset(&addr6, 0, sizeof(struct in6_addr));

		if (!gs->collect_md) {
			vni = geneve_hdr(skb)->vni;
			addr6 = ip6h->daddr;
		}

		return geneve6_lookup(gs, addr6, vni) ? 0 : -ENOENT;
	}
#endif

	return -EPFNOSUPPORT;
}

static struct sock *geneve_create_sock(struct net *net,
				       struct geneve_dev *geneve,
				       const struct geneve_config *cfg, bool ipv6)
{
	const struct ip_tunnel_info *info = &cfg->info;
	struct udp_port_cfg udp_conf;
	struct socket *sock;
	int err;

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

#if IS_ENABLED(CONFIG_IPV6)
	if (ipv6) {
		udp_conf.family = AF_INET6;
		udp_conf.ipv6_v6only = 1;
		udp_conf.use_udp6_rx_checksums = cfg->use_udp6_rx_checksums;
		udp_conf.local_ip6 = info->key.u.ipv6.src;
	} else
#endif
	{
		udp_conf.family = AF_INET;
		udp_conf.local_ip.s_addr = info->key.u.ipv4.src;
	}

	udp_conf.local_udp_port = info->key.tp_dst;

	/* Open UDP socket */
	err = udp_sock_create(net, &udp_conf, &sock);
	if (err < 0)
		return ERR_PTR(err);

	udp_allow_gso(sock->sk);
	return sock->sk;
}

static bool geneve_hdr_match(struct sk_buff *skb,
			     const struct genevehdr *gh,
			     const struct genevehdr *gh2,
			     unsigned int hint_off)
{
	const struct geneve_opt_gro_hint *gro_hint;
	void *nested, *nested2, *nh, *nh2;
	struct udphdr *udp, *udp2;
	unsigned int gh_len;

	/* Match the geneve hdr and options */
	if (gh->opt_len != gh2->opt_len)
		return false;

	gh_len = geneve_hlen(gh);
	if (memcmp(gh, gh2, gh_len))
		return false;

	if (!hint_off)
		return true;

	/*
	 * When gro is present consider the nested headers as part
	 * of the geneve options
	 */
	nested = (void *)gh + gh_len;
	nested2 = (void *)gh2 + gh_len;
	gro_hint = geneve_opt_gro_hint(gh, hint_off);
	if (!memcmp(nested, nested2, gro_hint->nested_hdr_len))
		return true;

	/*
	 * The nested headers differ; the packets can still belong to
	 * the same flow when IPs/proto/ports match; if so flushing is
	 * required.
	 */
	nh = nested + gro_hint->nested_nh_offset;
	nh2 = nested2 + gro_hint->nested_nh_offset;
	if (gro_hint->nested_is_v6) {
		struct ipv6hdr *iph = nh, *iph2 = nh2;
		unsigned int nested_nlen;
		__be32 first_word;

		first_word = *(__be32 *)iph ^ *(__be32 *)iph2;
		if ((first_word & htonl(0xF00FFFFF)) ||
		    !ipv6_addr_equal(&iph->saddr, &iph2->saddr) ||
		    !ipv6_addr_equal(&iph->daddr, &iph2->daddr) ||
		    iph->nexthdr != iph2->nexthdr)
			return false;

		nested_nlen = gro_hint->nested_tp_offset -
			      gro_hint->nested_nh_offset;
		if (nested_nlen > sizeof(struct ipv6hdr) &&
		    (memcmp(iph + 1, iph2 + 1,
			    nested_nlen - sizeof(struct ipv6hdr))))
			return false;
	} else {
		struct iphdr *iph = nh, *iph2 = nh2;

		if ((iph->protocol ^ iph2->protocol) |
		    ((__force u32)iph->saddr ^ (__force u32)iph2->saddr) |
		    ((__force u32)iph->daddr ^ (__force u32)iph2->daddr))
			return false;
	}

	udp = nested + gro_hint->nested_tp_offset;
	udp2 = nested2 + gro_hint->nested_tp_offset;
	if (udp->source != udp2->source || udp->dest != udp2->dest ||
	    udp->check != udp2->check)
		return false;

	NAPI_GRO_CB(skb)->flush = 1;
	return true;
}

static struct sk_buff *geneve_gro_receive(struct sock *sk,
					  struct list_head *head,
					  struct sk_buff *skb)
{
	unsigned int hlen, gh_len, off_gnv, hint_off;
	const struct geneve_opt_gro_hint *gro_hint;
	const struct packet_offload *ptype;
	struct genevehdr *gh, *gh2;
	struct sk_buff *pp = NULL;
	struct sk_buff *p;
	int flush = 1;
	__be16 type;

	off_gnv = skb_gro_offset(skb);
	hlen = off_gnv + sizeof(*gh);
	gh = skb_gro_header(skb, hlen, off_gnv);
	if (unlikely(!gh))
		goto out;

	if (gh->ver != GENEVE_VER || gh->oam)
		goto out;
	gh_len = geneve_hlen(gh);
	type = gh->proto_type;

	hlen = off_gnv + gh_len;
	if (!skb_gro_may_pull(skb, hlen)) {
		gh = skb_gro_header_slow(skb, hlen, off_gnv);
		if (unlikely(!gh))
			goto out;
	}

	/* The GRO hint/nested hdr could use a different ethernet type. */
	hint_off = geneve_sk_gro_hint_off(sk, gh, &type, &gh_len);
	if (hint_off) {

		/*
		 * If the hint is present, and nested hdr validation fails, do
		 * not attempt plain GRO: it will ignore inner hdrs and cause
		 * OoO.
		 */
		gh = skb_gro_header(skb, off_gnv + gh_len, off_gnv);
		if (unlikely(!gh))
			goto out;

		gro_hint = geneve_opt_gro_hint(gh, hint_off);
		if (!geneve_opt_gro_hint_validate_csum(skb, gh, gro_hint))
			goto out;
	}

	list_for_each_entry(p, head, list) {
		if (!NAPI_GRO_CB(p)->same_flow)
			continue;

		gh2 = (struct genevehdr *)(p->data + off_gnv);
		if (!geneve_hdr_match(skb, gh, gh2, hint_off)) {
			NAPI_GRO_CB(p)->same_flow = 0;
			continue;
		}
	}

	skb_gro_pull(skb, gh_len);
	skb_gro_postpull_rcsum(skb, gh, gh_len);
	if (likely(type == htons(ETH_P_TEB)))
		return call_gro_receive(eth_gro_receive, head, skb);

	ptype = gro_find_receive_by_type(type);
	if (!ptype)
		goto out;

	pp = call_gro_receive(ptype->callbacks.gro_receive, head, skb);
	flush = 0;

out:
	skb_gro_flush_final(skb, pp, flush);

	return pp;
}

static int geneve_gro_complete(struct sock *sk, struct sk_buff *skb,
			       int nhoff)
{
	struct genevehdr *gh;
	struct packet_offload *ptype;
	__be16 type;
	unsigned int gh_len;
	int err = -ENOSYS;

	gh = (struct genevehdr *)(skb->data + nhoff);
	gh_len = geneve_hlen(gh);
	type = gh->proto_type;
	geneve_sk_gro_hint_off(sk, gh, &type, &gh_len);

	/* Bail out if we are about to dispatch past the inner network header
	 * gro_receive() validated. An inner VLAN tag only pushes
	 * inner_network_offset out, so use a lower bound.
	 */
	if (skb->encapsulation) {
		unsigned int inner_nh = nhoff + gh_len;

		if (type == htons(ETH_P_TEB))
			inner_nh += ETH_HLEN;

		if (unlikely(inner_nh > NAPI_GRO_CB(skb)->inner_network_offset))
			return -EINVAL;
	}

	/* since skb->encapsulation is set, eth_gro_complete() sets the inner mac header */
	if (likely(type == htons(ETH_P_TEB)))
		return eth_gro_complete(skb, nhoff + gh_len);

	ptype = gro_find_complete_by_type(type);
	if (ptype)
		err = ptype->callbacks.gro_complete(skb, nhoff + gh_len);

	skb_set_inner_mac_header(skb, nhoff + gh_len);

	return err;
}

/* Create new listen socket if needed */
static struct geneve_sock *geneve_socket_create(struct net *net,
						struct geneve_dev *geneve,
						const struct geneve_config *cfg, bool ipv6)
{
	struct geneve_net *gn = net_generic(net, geneve_net_id);
	struct udp_tunnel_sock_cfg tunnel_cfg;
	struct geneve_sock *gs;
	struct sock *sk;
	int h;

	gs = kzalloc_obj(*gs);
	if (!gs)
		return ERR_PTR(-ENOMEM);

	sk = geneve_create_sock(net, geneve, cfg, ipv6);
	if (IS_ERR(sk)) {
		kfree(gs);
		return ERR_CAST(sk);
	}

	gs->sk = sk;
	gs->refcnt = 1;
	for (h = 0; h < VNI_HASH_SIZE; ++h)
		INIT_HLIST_HEAD(&gs->vni_list[h]);

	/* Mark socket as an encapsulation socket */
	memset(&tunnel_cfg, 0, sizeof(tunnel_cfg));
	tunnel_cfg.sk_user_data = gs;
	tunnel_cfg.encap_type = 1;
	tunnel_cfg.gro_receive = geneve_gro_receive;
	tunnel_cfg.gro_complete = geneve_gro_complete;
	tunnel_cfg.encap_rcv = geneve_udp_encap_recv;
	tunnel_cfg.encap_err_lookup = geneve_udp_encap_err_lookup;
	tunnel_cfg.encap_destroy = NULL;
	setup_udp_tunnel_sock(net, sk, &tunnel_cfg);
	list_add(&gs->list, &gn->sock_list);
	return gs;
}

static void __geneve_sock_release(struct geneve_dev *geneve, bool ipv6)
{
	struct geneve_dev_node *node;
	struct geneve_sock *gs;
	struct geneve_net *gn;

#if IS_ENABLED(CONFIG_IPV6)
	if (ipv6) {
		gs = rtnl_dereference(geneve->sock6);
		rcu_assign_pointer(geneve->sock6, NULL);
		node = &geneve->hlist6;
	} else
#endif
	{
		gs = rtnl_dereference(geneve->sock4);
		rcu_assign_pointer(geneve->sock4, NULL);
		node = &geneve->hlist4;
	}

	if (!gs)
		return;

	gn = net_generic(sock_net(gs->sk), geneve_net_id);
	mutex_lock(&gn->lock);

	hlist_del_init_rcu(&node->hlist);

	if (--gs->refcnt) {
		mutex_unlock(&gn->lock);
		return;
	}

	list_del(&gs->list);
	mutex_unlock(&gn->lock);

	udp_tunnel_notify_del_rx_port(gs->sk, UDP_TUNNEL_TYPE_GENEVE);
	udp_tunnel_sock_release(gs->sk);
	kfree_rcu(gs, rcu);
}

static void geneve_sock_release(struct geneve_dev *geneve)
{
#if IS_ENABLED(CONFIG_IPV6)
	__geneve_sock_release(geneve, true);
#endif
	__geneve_sock_release(geneve, false);
}

static struct geneve_sock *geneve_find_sock(struct net *net,
					    struct geneve_dev *geneve,
					    const struct geneve_config *cfg, bool ipv6)
{
	struct geneve_net *gn = net_generic(net, geneve_net_id);
	const struct ip_tunnel_info *info = &cfg->info;
	sa_family_t family = ipv6 ? AF_INET6 : AF_INET;
	bool gro_hint = cfg->gro_hint;
	__be16 dst_port = info->key.tp_dst;
	struct geneve_sock *gs;

	list_for_each_entry(gs, &gn->sock_list, list) {
		if (inet_sk(gs->sk)->inet_sport != dst_port)
			continue;

		if (geneve_get_sk_family(gs) != family)
			continue;

		if (gs->gro_hint != gro_hint)
			continue;

		if (family == AF_INET &&
		    inet_sk(gs->sk)->inet_saddr != info->key.u.ipv4.src)
			continue;

#if IS_ENABLED(CONFIG_IPV6)
		if (family == AF_INET6 &&
		    !ipv6_addr_equal(&gs->sk->sk_v6_rcv_saddr, &info->key.u.ipv6.src))
			continue;
#endif

		return gs;
	}

	return NULL;
}

static int geneve_sock_add(struct geneve_dev *geneve,
			   const struct geneve_config *cfg, bool ipv6)
{
	struct net *net = geneve->net;
	struct geneve_dev_node *node;
	struct geneve_sock *gs;
	struct geneve_net *gn;
	bool created = false;
	__u8 vni[3];
	int ret = 0;
	__u32 hash;

	gn = net_generic(net, geneve_net_id);
	mutex_lock(&gn->lock);

	gs = geneve_find_sock(net, geneve, cfg, ipv6);
	if (gs) {
		gs->refcnt++;
	} else {
		gs = geneve_socket_create(net, geneve, cfg, ipv6);
		if (IS_ERR(gs)) {
			ret = PTR_ERR(gs);
			goto out;
		}

		created = true;
	}

	gs->collect_md = cfg->collect_md;
	gs->gro_hint = cfg->gro_hint;

#if IS_ENABLED(CONFIG_IPV6)
	if (ipv6) {
		rcu_assign_pointer(geneve->sock6, gs);
		node = &geneve->hlist6;
	} else
#endif
	{
		rcu_assign_pointer(geneve->sock4, gs);
		node = &geneve->hlist4;
	}
	node->geneve = geneve;

	tunnel_id_to_vni(cfg->info.key.tun_id, vni);
	hash = geneve_net_vni_hash(vni);
	hlist_add_head_rcu(&node->hlist, &gs->vni_list[hash]);

out:
	mutex_unlock(&gn->lock);

	if (created) {
		/* Initialize the geneve udp offloads structure */
		udp_tunnel_notify_add_rx_port(gs->sk, UDP_TUNNEL_TYPE_GENEVE);
	}

	return ret;
}

static int geneve_open(struct net_device *dev)
{
	struct geneve_dev *geneve = netdev_priv(dev);
	const struct geneve_config *cfg;
	bool ipv4, ipv6, dualstack;
	int ret = 0;

	cfg = rtnl_dereference(geneve->cfg);
	dualstack = cfg->dualstack;
	ipv6 = cfg->info.mode & IP_TUNNEL_INFO_IPV6 || dualstack;
	ipv4 = !ipv6 || dualstack;
#if IS_ENABLED(CONFIG_IPV6)
	if (ipv6) {
		ret = geneve_sock_add(geneve, cfg, true);
		if (ret < 0 && ret != -EAFNOSUPPORT)
			ipv4 = false;
	}
#endif
	if (ipv4)
		ret = geneve_sock_add(geneve, cfg, false);
	if (ret < 0)
		geneve_sock_release(geneve);

	return ret;
}

static int geneve_stop(struct net_device *dev)
{
	struct geneve_dev *geneve = netdev_priv(dev);

	geneve_sock_release(geneve);
	return 0;
}

static void geneve_build_header(struct genevehdr *geneveh,
				const struct ip_tunnel_info *info,
				__be16 inner_proto)
{
	geneveh->ver = GENEVE_VER;
	geneveh->opt_len = info->options_len / 4;
	geneveh->oam = test_bit(IP_TUNNEL_OAM_BIT, info->key.tun_flags);
	geneveh->critical = test_bit(IP_TUNNEL_CRIT_OPT_BIT,
				     info->key.tun_flags);
	geneveh->rsvd1 = 0;
	tunnel_id_to_vni(info->key.tun_id, geneveh->vni);
	geneveh->proto_type = inner_proto;
	geneveh->rsvd2 = 0;

	if (test_bit(IP_TUNNEL_GENEVE_OPT_BIT, info->key.tun_flags))
		ip_tunnel_info_opts_get(geneveh->options, info);
}

static int geneve_build_gro_hint_opt(const struct geneve_dev *geneve,
				     const struct geneve_config *cfg,
				     struct sk_buff *skb)
{
	struct geneve_skb_cb *cb = GENEVE_SKB_CB(skb);
	struct geneve_opt_gro_hint *hint;
	unsigned int nhlen;
	bool nested_is_v6;
	int id;

	BUILD_BUG_ON(sizeof(skb->cb) < sizeof(struct geneve_skb_cb));
	cb->gro_hint_len = 0;

	/* Try to add the GRO hint only in case of double encap. */
	if (!cfg->gro_hint || !skb->encapsulation)
		return 0;

	/*
	 * The nested headers must fit the geneve opt len fields and the
	 * nested encap must carry a nested transport (UDP) header.
	 */
	nhlen = skb_inner_mac_header(skb) - skb->data;
	if (nhlen > 255 || !skb_transport_header_was_set(skb) ||
	    skb->inner_protocol_type != ENCAP_TYPE_ETHER ||
	    (skb_transport_offset(skb) + sizeof(struct udphdr) > nhlen))
		return 0;

	id = proto_to_id(skb->inner_protocol);
	if (id < 0)
		return 0;

	nested_is_v6 = skb->protocol == htons(ETH_P_IPV6);
	if (nested_is_v6) {
		int start = skb_network_offset(skb) + sizeof(struct ipv6hdr);
		u8 proto = ipv6_hdr(skb)->nexthdr;
		__be16 foff;

		if (ipv6_skip_exthdr(skb, start, &proto, &foff) < 0 ||
		    proto != IPPROTO_UDP)
			return 0;
	} else {
		if (ip_hdr(skb)->protocol != IPPROTO_UDP)
			return 0;
	}

	hint = &cb->gro_hint;
	memset(hint, 0, sizeof(*hint));
	hint->inner_proto_id = id;
	hint->nested_is_v6 = skb->protocol == htons(ETH_P_IPV6);
	hint->nested_nh_offset = skb_network_offset(skb);
	hint->nested_tp_offset = skb_transport_offset(skb);
	hint->nested_hdr_len = nhlen;
	cb->gro_hint_len = GENEVE_OPT_GRO_HINT_SIZE;
	return GENEVE_OPT_GRO_HINT_SIZE;
}

static void geneve_put_gro_hint_opt(struct genevehdr *gnvh, int opt_size,
				    const struct geneve_opt_gro_hint *hint)
{
	struct geneve_opt *gro_opt;

	/* geneve_build_header() did not took in account the GRO hint. */
	gnvh->opt_len = (opt_size + GENEVE_OPT_GRO_HINT_SIZE) >> 2;

	gro_opt = (void *)(gnvh + 1) + opt_size;
	memset(gro_opt, 0, sizeof(*gro_opt));

	gro_opt->opt_class = htons(GENEVE_OPT_NETDEV_CLASS);
	gro_opt->type = GENEVE_OPT_GRO_HINT_TYPE;
	gro_opt->length = GENEVE_OPT_GRO_HINT_LEN;
	memcpy(gro_opt + 1, hint, sizeof(*hint));
}

static int geneve_build_skb(struct dst_entry *dst, struct sk_buff *skb,
			    const struct ip_tunnel_info *info,
			    const struct geneve_dev *geneve,
			    const struct geneve_config *cfg, int ip_hdr_len)
{
	bool udp_sum = test_bit(IP_TUNNEL_CSUM_BIT, info->key.tun_flags);
	bool inner_proto_inherit = cfg->inner_proto_inherit;
	bool xnet = !net_eq(geneve->net, dev_net(geneve->dev));
	struct geneve_skb_cb *cb = GENEVE_SKB_CB(skb);
	struct genevehdr *gnvh;
	__be16 inner_proto;
	bool double_encap;
	int min_headroom;
	int opt_size;
	int err;

	skb_reset_mac_header(skb);
	skb_scrub_packet(skb, xnet);

	opt_size =  info->options_len + cb->gro_hint_len;
	min_headroom = LL_RESERVED_SPACE(dst->dev) + dst->header_len +
		       GENEVE_BASE_HLEN + opt_size + ip_hdr_len;
	err = skb_cow_head(skb, min_headroom);
	if (unlikely(err))
		goto free_dst;

	double_encap = udp_tunnel_handle_partial(skb);
	err = udp_tunnel_handle_offloads(skb, udp_sum);
	if (err)
		goto free_dst;

	gnvh = __skb_push(skb, sizeof(*gnvh) + opt_size);
	inner_proto = inner_proto_inherit ? skb->protocol : htons(ETH_P_TEB);
	geneve_build_header(gnvh, info, inner_proto);

	if (cb->gro_hint_len)
		geneve_put_gro_hint_opt(gnvh, info->options_len, &cb->gro_hint);

	udp_tunnel_set_inner_protocol(skb, double_encap, inner_proto);
	return 0;

free_dst:
	dst_release(dst);
	return err;
}

static u8 geneve_get_dsfield(struct sk_buff *skb, struct net_device *dev,
			     const struct geneve_config *cfg,
			     const struct ip_tunnel_info *info,
			     bool *use_cache)
{
	u8 dsfield;

	dsfield = info->key.tos;
	if (cfg && dsfield == 1 && !cfg->collect_md) {
		dsfield = ip_tunnel_get_dsfield(ip_hdr(skb), skb);
		*use_cache = false;
	}

	return dsfield;
}

static int geneve_xmit_skb(struct sk_buff *skb, struct net_device *dev,
			   struct geneve_dev *geneve,
			   const struct geneve_config *cfg,
			   const struct ip_tunnel_info *info)
{
	struct geneve_sock *gs4 = rcu_dereference(geneve->sock4);
	const struct ip_tunnel_key *key = &info->key;
	struct rtable *rt;
	bool use_cache;
	__u8 tos, ttl;
	__be16 df = 0;
	__be32 saddr;
	__be16 sport;
	int err;

	if (skb_vlan_inet_prepare(skb, cfg->inner_proto_inherit))
		return -EINVAL;

	if (!gs4)
		return -EIO;

	use_cache = ip_tunnel_dst_cache_usable(skb, info);
	tos = geneve_get_dsfield(skb, dev, cfg, info, &use_cache);
	sport = udp_flow_src_port(geneve->net, skb,
				  cfg->port_min,
				  cfg->port_max, true);

	rt = udp_tunnel_dst_lookup(skb, dev, geneve->net, 0, &saddr,
				   &info->key,
				   sport, cfg->info.key.tp_dst, tos,
				   use_cache ?
				   (struct dst_cache *)&info->dst_cache : NULL);
	if (IS_ERR(rt))
		return PTR_ERR(rt);

	if (cfg->info.key.u.ipv4.src &&
	    saddr != cfg->info.key.u.ipv4.src) {
		dst_release(&rt->dst);
		return -EADDRNOTAVAIL;
	}

	err = skb_tunnel_check_pmtu(skb, &rt->dst,
				    GENEVE_IPV4_HLEN + info->options_len +
				    geneve_build_gro_hint_opt(geneve, cfg, skb),
				    netif_is_any_bridge_port(dev));
	if (err < 0) {
		dst_release(&rt->dst);
		return err;
	} else if (err) {
		struct ip_tunnel_info *info;

		info = skb_tunnel_info(skb);
		if (info) {
			struct ip_tunnel_info *unclone;

			unclone = skb_tunnel_info_unclone(skb);
			if (unlikely(!unclone)) {
				dst_release(&rt->dst);
				return -ENOMEM;
			}

			unclone->key.u.ipv4.dst = saddr;
			unclone->key.u.ipv4.src = info->key.u.ipv4.dst;
		}

		if (!pskb_may_pull(skb, ETH_HLEN)) {
			dst_release(&rt->dst);
			return -EINVAL;
		}

		skb->protocol = eth_type_trans(skb, geneve->dev);
		__netif_rx(skb);
		dst_release(&rt->dst);
		return -EMSGSIZE;
	}

	tos = ip_tunnel_ecn_encap(tos, ip_hdr(skb), skb);
	if (cfg->collect_md) {
		ttl = key->ttl;

		df = test_bit(IP_TUNNEL_DONT_FRAGMENT_BIT, key->tun_flags) ?
		     htons(IP_DF) : 0;
	} else {
		if (cfg->ttl_inherit)
			ttl = ip_tunnel_get_ttl(ip_hdr(skb), skb);
		else
			ttl = key->ttl;
		ttl = ttl ? : ip4_dst_hoplimit(&rt->dst);

		if (cfg->df == GENEVE_DF_SET) {
			df = htons(IP_DF);
		} else if (cfg->df == GENEVE_DF_INHERIT) {
			struct ethhdr *eth = skb_eth_hdr(skb);

			if (ntohs(eth->h_proto) == ETH_P_IPV6) {
				df = htons(IP_DF);
			} else if (ntohs(eth->h_proto) == ETH_P_IP) {
				struct iphdr *iph = ip_hdr(skb);

				if (iph->frag_off & htons(IP_DF))
					df = htons(IP_DF);
			}
		}
	}

	err = geneve_build_skb(&rt->dst, skb, info, geneve, cfg,
			       sizeof(struct iphdr));
	if (unlikely(err))
		return err;

	udp_tunnel_xmit_skb(rt, gs4->sk, skb, saddr, info->key.u.ipv4.dst,
			    tos, ttl, df, sport, cfg->info.key.tp_dst,
			    !net_eq(geneve->net, dev_net(geneve->dev)),
			    !test_bit(IP_TUNNEL_CSUM_BIT, info->key.tun_flags),
			    0);
	return 0;
}

#if IS_ENABLED(CONFIG_IPV6)
static int geneve6_xmit_skb(struct sk_buff *skb, struct net_device *dev,
			    struct geneve_dev *geneve,
			    const struct geneve_config *cfg,
			    const struct ip_tunnel_info *info)
{
	struct geneve_sock *gs6 = rcu_dereference(geneve->sock6);
	const struct ip_tunnel_key *key = &info->key;
	struct dst_entry *dst = NULL;
	struct in6_addr saddr;
	bool use_cache;
	__u8 prio, ttl;
	__be16 sport;
	int err;

	if (skb_vlan_inet_prepare(skb, cfg->inner_proto_inherit))
		return -EINVAL;

	if (!gs6)
		return -EIO;

	use_cache = ip_tunnel_dst_cache_usable(skb, info);
	prio = geneve_get_dsfield(skb, dev, cfg, info, &use_cache);
	sport = udp_flow_src_port(geneve->net, skb,
				  cfg->port_min,
				  cfg->port_max, true);

	dst = udp_tunnel6_dst_lookup(skb, dev, geneve->net, gs6->sk, 0,
				     &saddr, key, sport,
				     cfg->info.key.tp_dst, prio,
				     use_cache ?
				     (struct dst_cache *)&info->dst_cache : NULL);
	if (IS_ERR(dst))
		return PTR_ERR(dst);

	if (!ipv6_addr_any(&cfg->info.key.u.ipv6.src) &&
	    !ipv6_addr_equal(&saddr, &cfg->info.key.u.ipv6.src)) {
		dst_release(dst);
		return -EADDRNOTAVAIL;
	}

	err = skb_tunnel_check_pmtu(skb, dst,
				    GENEVE_IPV6_HLEN + info->options_len +
				    geneve_build_gro_hint_opt(geneve, cfg, skb),
				    netif_is_any_bridge_port(dev));
	if (err < 0) {
		dst_release(dst);
		return err;
	} else if (err) {
		struct ip_tunnel_info *info = skb_tunnel_info(skb);

		if (info) {
			struct ip_tunnel_info *unclone;

			unclone = skb_tunnel_info_unclone(skb);
			if (unlikely(!unclone)) {
				dst_release(dst);
				return -ENOMEM;
			}

			unclone->key.u.ipv6.dst = saddr;
			unclone->key.u.ipv6.src = info->key.u.ipv6.dst;
		}

		if (!pskb_may_pull(skb, ETH_HLEN)) {
			dst_release(dst);
			return -EINVAL;
		}

		skb->protocol = eth_type_trans(skb, geneve->dev);
		__netif_rx(skb);
		dst_release(dst);
		return -EMSGSIZE;
	}

	prio = ip_tunnel_ecn_encap(prio, ip_hdr(skb), skb);
	if (cfg->collect_md) {
		ttl = key->ttl;
	} else {
		if (cfg->ttl_inherit)
			ttl = ip_tunnel_get_ttl(ip_hdr(skb), skb);
		else
			ttl = key->ttl;
		ttl = ttl ? : ip6_dst_hoplimit(dst);
	}
	err = geneve_build_skb(dst, skb, info, geneve, cfg, sizeof(struct ipv6hdr));
	if (unlikely(err))
		return err;

	udp_tunnel6_xmit_skb(dst, gs6->sk, skb, dev,
			     &saddr, &key->u.ipv6.dst, prio, ttl,
			     info->key.label, sport, cfg->info.key.tp_dst,
			     !test_bit(IP_TUNNEL_CSUM_BIT,
				       info->key.tun_flags),
			     0);
	return 0;
}
#endif

static netdev_tx_t geneve_xmit(struct sk_buff *skb, struct net_device *dev)
{
	struct geneve_dev *geneve = netdev_priv(dev);
	const struct ip_tunnel_info *info = NULL;
	const struct geneve_config *cfg;
	int err;

	rcu_read_lock();
	cfg = rcu_dereference(geneve->cfg);
	if (cfg->collect_md) {
		info = skb_tunnel_info(skb);
		if (unlikely(!info || !(info->mode & IP_TUNNEL_INFO_TX))) {
			netdev_dbg(dev, "no tunnel metadata\n");
			dev_kfree_skb(skb);
			dev_dstats_tx_dropped(dev);
			rcu_read_unlock();
			return NETDEV_TX_OK;
		}
	} else {
		info = &cfg->info;
	}

#if IS_ENABLED(CONFIG_IPV6)
	if (info->mode & IP_TUNNEL_INFO_IPV6)
		err = geneve6_xmit_skb(skb, dev, geneve, cfg, info);
	else
#endif
		err = geneve_xmit_skb(skb, dev, geneve, cfg, info);
	rcu_read_unlock();

	if (likely(!err))
		return NETDEV_TX_OK;

	if (err != -EMSGSIZE)
		dev_kfree_skb(skb);

	if (err == -ELOOP)
		DEV_STATS_INC(dev, collisions);
	else if (err == -ENETUNREACH)
		DEV_STATS_INC(dev, tx_carrier_errors);

	DEV_STATS_INC(dev, tx_errors);
	return NETDEV_TX_OK;
}

static int geneve_change_mtu(struct net_device *dev, int new_mtu)
{
	if (new_mtu > dev->max_mtu)
		new_mtu = dev->max_mtu;
	else if (new_mtu < dev->min_mtu)
		new_mtu = dev->min_mtu;

	WRITE_ONCE(dev->mtu, new_mtu);
	return 0;
}

static int geneve_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
{
	struct ip_tunnel_info *info = skb_tunnel_info(skb);
	struct geneve_dev *geneve = netdev_priv(dev);
	const struct geneve_config *cfg;
	__be16 sport;

	cfg = rcu_dereference(geneve->cfg);
	if (unlikely(!cfg))
		return -ENODEV;

	if (ip_tunnel_info_af(info) == AF_INET) {
		struct rtable *rt;
		struct geneve_sock *gs4 = rcu_dereference(geneve->sock4);
		bool use_cache;
		__be32 saddr;
		u8 tos;

		if (!gs4)
			return -EIO;

		use_cache = ip_tunnel_dst_cache_usable(skb, info);
		tos = geneve_get_dsfield(skb, dev, cfg, info, &use_cache);
		sport = udp_flow_src_port(geneve->net, skb,
					  cfg->port_min,
					  cfg->port_max, true);

		rt = udp_tunnel_dst_lookup(skb, dev, geneve->net, 0, &saddr,
					   &info->key,
					   sport, cfg->info.key.tp_dst,
					   tos,
					   use_cache ? &info->dst_cache : NULL);
		if (IS_ERR(rt))
			return PTR_ERR(rt);

		ip_rt_put(rt);
		info->key.u.ipv4.src = saddr;
#if IS_ENABLED(CONFIG_IPV6)
	} else if (ip_tunnel_info_af(info) == AF_INET6) {
		struct dst_entry *dst;
		struct geneve_sock *gs6 = rcu_dereference(geneve->sock6);
		struct in6_addr saddr;
		bool use_cache;
		u8 prio;

		if (!gs6)
			return -EIO;

		use_cache = ip_tunnel_dst_cache_usable(skb, info);
		prio = geneve_get_dsfield(skb, dev, cfg, info, &use_cache);
		sport = udp_flow_src_port(geneve->net, skb,
					  cfg->port_min,
					  cfg->port_max, true);

		dst = udp_tunnel6_dst_lookup(skb, dev, geneve->net, gs6->sk, 0,
					     &saddr, &info->key, sport,
					     cfg->info.key.tp_dst, prio,
					     use_cache ? &info->dst_cache : NULL);
		if (IS_ERR(dst))
			return PTR_ERR(dst);

		dst_release(dst);
		info->key.u.ipv6.src = saddr;
#endif
	} else {
		return -EINVAL;
	}

	info->key.tp_src = sport;
	info->key.tp_dst = cfg->info.key.tp_dst;
	return 0;
}

static const struct net_device_ops geneve_netdev_ops = {
	.ndo_init		= geneve_init,
	.ndo_uninit		= geneve_uninit,
	.ndo_open		= geneve_open,
	.ndo_stop		= geneve_stop,
	.ndo_start_xmit		= geneve_xmit,
	.ndo_change_mtu		= geneve_change_mtu,
	.ndo_validate_addr	= eth_validate_addr,
	.ndo_set_mac_address	= eth_mac_addr,
	.ndo_fill_metadata_dst	= geneve_fill_metadata_dst,
};

static void geneve_get_drvinfo(struct net_device *dev,
			       struct ethtool_drvinfo *drvinfo)
{
	strscpy(drvinfo->version, GENEVE_NETDEV_VER, sizeof(drvinfo->version));
	strscpy(drvinfo->driver, "geneve", sizeof(drvinfo->driver));
}

static const struct ethtool_ops geneve_ethtool_ops = {
	.get_drvinfo	= geneve_get_drvinfo,
	.get_link	= ethtool_op_get_link,
};

/* Info for udev, that this is a virtual tunnel endpoint */
static const struct device_type geneve_type = {
	.name = "geneve",
};

/* Calls the ndo_udp_tunnel_add of the caller in order to
 * supply the listening GENEVE udp ports. Callers are expected
 * to implement the ndo_udp_tunnel_add.
 */
static void geneve_offload_rx_ports(struct net_device *dev, bool push)
{
	struct net *net = dev_net(dev);
	struct geneve_net *gn = net_generic(net, geneve_net_id);
	struct geneve_sock *gs;

	ASSERT_RTNL();

	mutex_lock(&gn->lock);

	list_for_each_entry(gs, &gn->sock_list, list) {
		if (push) {
			udp_tunnel_push_rx_port(dev, gs->sk,
						UDP_TUNNEL_TYPE_GENEVE);
		} else {
			udp_tunnel_drop_rx_port(dev, gs->sk,
						UDP_TUNNEL_TYPE_GENEVE);
		}
	}

	mutex_unlock(&gn->lock);
}

static struct geneve_config *geneve_config_alloc(const struct geneve_config *src)
{
	struct geneve_config *cfg;
	int err;

	cfg = kmemdup(src, sizeof(*src), GFP_KERNEL);
	if (!cfg)
		return ERR_PTR(-ENOMEM);

	cfg->info.dst_cache.cache = NULL;
	err = dst_cache_init(&cfg->info.dst_cache, GFP_KERNEL);
	if (err) {
		kfree(cfg);
		return ERR_PTR(err);
	}

	return cfg;
}

static void geneve_config_free(struct geneve_config *cfg)
{
	if (cfg) {
		dst_cache_destroy(&cfg->info.dst_cache);
		kfree(cfg);
	}
}

static void geneve_config_free_rcu(struct rcu_head *head)
{
	struct geneve_config *cfg = container_of(head, struct geneve_config, rcu);

	geneve_config_free(cfg);
}

/* Initialize the device structure. */
static void geneve_free_dev(struct net_device *dev)
{
	struct geneve_dev *geneve = netdev_priv(dev);
	struct geneve_config *cfg = rcu_dereference_protected(geneve->cfg, 1);

	geneve_config_free(cfg);
	RCU_INIT_POINTER(geneve->cfg, NULL);
}

static void geneve_setup(struct net_device *dev)
{
	ether_setup(dev);

	dev->netdev_ops = &geneve_netdev_ops;
	dev->ethtool_ops = &geneve_ethtool_ops;
	dev->needs_free_netdev = true;
	dev->priv_destructor = geneve_free_dev;

	SET_NETDEV_DEVTYPE(dev, &geneve_type);

	dev->features    |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_FRAGLIST;
	dev->features    |= NETIF_F_RXCSUM;
	dev->features    |= NETIF_F_GSO_SOFTWARE;

	/* Partial features are disabled by default. */
	dev->hw_features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_FRAGLIST;
	dev->hw_features |= NETIF_F_RXCSUM;
	dev->hw_features |= NETIF_F_GSO_SOFTWARE;
	dev->hw_features |= UDP_TUNNEL_PARTIAL_FEATURES;
	dev->hw_features |= NETIF_F_GSO_PARTIAL;

	dev->hw_enc_features = dev->hw_features;
	dev->gso_partial_features = UDP_TUNNEL_PARTIAL_FEATURES;
	dev->mangleid_features = NETIF_F_GSO_PARTIAL;

	dev->pcpu_stat_type = NETDEV_PCPU_STAT_DSTATS;
	/* MTU range: 68 - (something less than 65535) */
	dev->min_mtu = ETH_MIN_MTU;
	/* The max_mtu calculation does not take account of GENEVE
	 * options, to avoid excluding potentially valid
	 * configurations. This will be further reduced by IPvX hdr size.
	 */
	dev->max_mtu = IP_MAX_MTU - GENEVE_BASE_HLEN - dev->hard_header_len;

	netif_keep_dst(dev);
	netif_set_tso_max_size(dev, GSO_MAX_SIZE);

	dev->priv_flags &= ~IFF_TX_SKB_SHARING;
	dev->priv_flags |= IFF_LIVE_ADDR_CHANGE | IFF_NO_QUEUE;
	dev->lltx = true;
	eth_hw_addr_random(dev);
}

static const struct nla_policy geneve_policy[IFLA_GENEVE_MAX + 1] = {
	[IFLA_GENEVE_UNSPEC]		= { .strict_start_type = IFLA_GENEVE_INNER_PROTO_INHERIT },
	[IFLA_GENEVE_ID]		= { .type = NLA_U32 },
	[IFLA_GENEVE_REMOTE]		= { .len = sizeof_field(struct iphdr, daddr) },
	[IFLA_GENEVE_REMOTE6]		= { .len = sizeof(struct in6_addr) },
	[IFLA_GENEVE_TTL]		= { .type = NLA_U8 },
	[IFLA_GENEVE_TOS]		= { .type = NLA_U8 },
	[IFLA_GENEVE_LABEL]		= { .type = NLA_U32 },
	[IFLA_GENEVE_PORT]		= { .type = NLA_U16 },
	[IFLA_GENEVE_COLLECT_METADATA]	= { .type = NLA_FLAG },
	[IFLA_GENEVE_UDP_CSUM]		= { .type = NLA_U8 },
	[IFLA_GENEVE_UDP_ZERO_CSUM6_TX]	= { .type = NLA_U8 },
	[IFLA_GENEVE_UDP_ZERO_CSUM6_RX]	= { .type = NLA_U8 },
	[IFLA_GENEVE_TTL_INHERIT]	= { .type = NLA_U8 },
	[IFLA_GENEVE_DF]		= { .type = NLA_U8 },
	[IFLA_GENEVE_INNER_PROTO_INHERIT]	= { .type = NLA_FLAG },
	[IFLA_GENEVE_PORT_RANGE]	= NLA_POLICY_EXACT_LEN(sizeof(struct ifla_geneve_port_range)),
	[IFLA_GENEVE_GRO_HINT]		= { .type = NLA_FLAG },
	[IFLA_GENEVE_LOCAL]		= { .type = NLA_BE32 },
	[IFLA_GENEVE_LOCAL6]		= NLA_POLICY_EXACT_LEN(sizeof(struct in6_addr)),
};

static int geneve_validate(struct nlattr *tb[], struct nlattr *data[],
			   struct netlink_ext_ack *extack)
{
	if (tb[IFLA_ADDRESS]) {
		if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) {
			NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS],
					    "Provided link layer address is not Ethernet");
			return -EINVAL;
		}

		if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) {
			NL_SET_ERR_MSG_ATTR(extack, tb[IFLA_ADDRESS],
					    "Provided Ethernet address is not unicast");
			return -EADDRNOTAVAIL;
		}
	}

	if (!data) {
		NL_SET_ERR_MSG(extack,
			       "Not enough attributes provided to perform the operation");
		return -EINVAL;
	}

	if (data[IFLA_GENEVE_ID]) {
		__u32 vni =  nla_get_u32(data[IFLA_GENEVE_ID]);

		if (vni >= GENEVE_N_VID) {
			NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_ID],
					    "Geneve ID must be lower than 16777216");
			return -ERANGE;
		}
	}

	if (data[IFLA_GENEVE_DF]) {
		enum ifla_geneve_df df = nla_get_u8(data[IFLA_GENEVE_DF]);

		if (df < 0 || df > GENEVE_DF_MAX) {
			NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_DF],
					    "Invalid DF attribute");
			return -EINVAL;
		}
	}

	if (data[IFLA_GENEVE_PORT_RANGE]) {
		const struct ifla_geneve_port_range *p;

		p = nla_data(data[IFLA_GENEVE_PORT_RANGE]);
		if (ntohs(p->high) < ntohs(p->low)) {
			NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_PORT_RANGE],
					    "Invalid source port range");
			return -EINVAL;
		}
	}

	return 0;
}

static bool geneve_saddr_wildcard(const struct ip_tunnel_info *info)
{
	if (ip_tunnel_info_af(info) == AF_INET) {
		if (!info->key.u.ipv4.src)
			return true;
#if IS_ENABLED(CONFIG_IPV6)
	} else {
		if (ipv6_addr_any(&info->key.u.ipv6.src))
			return true;
#endif
	}

	return false;
}

static bool geneve_saddr_conflict(const struct ip_tunnel_info *a,
				  const struct ip_tunnel_info *b)
{
	if (ip_tunnel_info_af(a) != ip_tunnel_info_af(b))
		return false;

	if (geneve_saddr_wildcard(a) || geneve_saddr_wildcard(b))
		return true;

	if (ip_tunnel_info_af(a) == AF_INET) {
		if (a->key.u.ipv4.src == b->key.u.ipv4.src)
			return true;
#if IS_ENABLED(CONFIG_IPV6)
	} else {
		if (ipv6_addr_equal(&a->key.u.ipv6.src, &b->key.u.ipv6.src))
			return true;
#endif
	}

	return false;
}

static struct geneve_dev *geneve_find_dev(struct geneve_net *gn,
					  const struct geneve_config *cfg,
					  const struct ip_tunnel_info *info,
					  bool *tun_on_same_port,
					  bool *tun_collect_md)
{
	struct geneve_dev *geneve, *t = NULL;

	*tun_on_same_port = false;
	*tun_collect_md = false;

	mutex_lock(&gn->lock);

	list_for_each_entry(geneve, &gn->geneve_list, next) {
		const struct geneve_config *gcfg = rtnl_dereference(geneve->cfg);

		if (info->key.tp_dst == gcfg->info.key.tp_dst &&
		    (cfg->dualstack || gcfg->dualstack ||
		     geneve_saddr_conflict(info, &gcfg->info))) {
			*tun_collect_md |= gcfg->collect_md;
			*tun_on_same_port = true;
		}
		if (info->key.tun_id == gcfg->info.key.tun_id &&
		    info->key.tp_dst == gcfg->info.key.tp_dst &&
		    !memcmp(&info->key.u, &gcfg->info.key.u, sizeof(info->key.u)))
			t = geneve;
	}

	mutex_unlock(&gn->lock);

	return t;
}

static bool is_tnl_info_zero(const struct ip_tunnel_info *info)
{
	return !(info->key.tun_id || info->key.tos ||
		 !ip_tunnel_flags_empty(info->key.tun_flags) ||
		 info->key.ttl || info->key.label || info->key.tp_src ||
#if IS_ENABLED(CONFIG_IPV6)
		 (ip_tunnel_info_af(info) == AF_INET6 &&
		  !ipv6_addr_any(&info->key.u.ipv6.dst)) ||
#endif
		 (ip_tunnel_info_af(info) == AF_INET &&
		  info->key.u.ipv4.dst));
}

static bool geneve_dst_addr_equal(struct ip_tunnel_info *a,
				  struct ip_tunnel_info *b)
{
	if (ip_tunnel_info_af(a) == AF_INET)
		return a->key.u.ipv4.dst == b->key.u.ipv4.dst;
	else
		return ipv6_addr_equal(&a->key.u.ipv6.dst, &b->key.u.ipv6.dst);
}

static int geneve_configure(struct net *net, struct net_device *dev,
			    struct netlink_ext_ack *extack,
			    const struct geneve_config *cfg)
{
	struct geneve_net *gn = net_generic(net, geneve_net_id);
	struct geneve_dev *t, *geneve = netdev_priv(dev);
	const struct ip_tunnel_info *info = &cfg->info;
	bool tun_collect_md, tun_on_same_port;
	struct geneve_config *new_cfg;
	int err, encap_len;

	if (cfg->collect_md && !is_tnl_info_zero(info)) {
		NL_SET_ERR_MSG(extack,
			       "Device is externally controlled, so attributes (VNI, Port, and so on) must not be specified");
		return -EINVAL;
	}

	geneve->net = net;
	geneve->dev = dev;

	t = geneve_find_dev(gn, cfg, info, &tun_on_same_port, &tun_collect_md);
	if (t)
		return -EBUSY;

	/* make enough headroom for basic scenario */
	encap_len = GENEVE_BASE_HLEN + ETH_HLEN;
	if (!cfg->collect_md && ip_tunnel_info_af(info) == AF_INET) {
		encap_len += sizeof(struct iphdr);
		dev->max_mtu -= sizeof(struct iphdr);
	} else {
		encap_len += sizeof(struct ipv6hdr);
		dev->max_mtu -= sizeof(struct ipv6hdr);
	}
	dev->needed_headroom = encap_len + ETH_HLEN;

	if (cfg->collect_md) {
		if (tun_on_same_port) {
			NL_SET_ERR_MSG(extack,
				       "There can be only one externally controlled device on a destination port and a source address");
			return -EPERM;
		}
	} else {
		if (tun_collect_md) {
			NL_SET_ERR_MSG(extack,
				       "There already exists an externally controlled device on this destination port and the source address");
			return -EPERM;
		}
	}

	new_cfg = geneve_config_alloc(cfg);
	if (IS_ERR(new_cfg))
		return PTR_ERR(new_cfg);

	rcu_assign_pointer(geneve->cfg, new_cfg);

	if (cfg->inner_proto_inherit) {
		dev->header_ops = NULL;
		dev->type = ARPHRD_NONE;
		dev->hard_header_len = 0;
		dev->addr_len = 0;
		dev->flags = IFF_POINTOPOINT | IFF_NOARP;
	}

	err = register_netdevice(dev);
	if (err) {
		geneve_free_dev(dev);
		return err;
	}

	mutex_lock(&gn->lock);
	list_add(&geneve->next, &gn->geneve_list);
	mutex_unlock(&gn->lock);

	return 0;
}

static void init_tnl_info(struct ip_tunnel_info *info, __u16 dst_port)
{
	memset(info, 0, sizeof(*info));
	info->key.tp_dst = htons(dst_port);
}

static int geneve_nl2info(struct nlattr *tb[], struct nlattr *data[],
			  struct netlink_ext_ack *extack,
			  struct geneve_config *cfg, bool changelink)
{
	struct ip_tunnel_info *info = &cfg->info;
	int attrtype;

	if (data[IFLA_GENEVE_COLLECT_METADATA]) {
		if (changelink) {
			attrtype = IFLA_GENEVE_COLLECT_METADATA;
			goto change_notsup;
		}

		cfg->collect_md = true;
		cfg->dualstack = true;
	}

	if ((data[IFLA_GENEVE_LOCAL] || data[IFLA_GENEVE_REMOTE]) &&
	    (data[IFLA_GENEVE_LOCAL6] || data[IFLA_GENEVE_REMOTE6])) {
		NL_SET_ERR_MSG(extack,
			       "Cannot specify both IPv4/IPv6 Remote/Local addresses");
		return -EINVAL;
	}

	if (data[IFLA_GENEVE_REMOTE]) {
		if (changelink && (ip_tunnel_info_af(info) == AF_INET6)) {
			attrtype = IFLA_GENEVE_REMOTE;
			goto change_notsup;
		}

		info->key.u.ipv4.dst =
			nla_get_in_addr(data[IFLA_GENEVE_REMOTE]);

		if (ipv4_is_multicast(info->key.u.ipv4.dst)) {
			NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_REMOTE],
					    "Remote IPv4 address cannot be Multicast");
			return -EINVAL;
		}
	}

	if (data[IFLA_GENEVE_REMOTE6]) {
#if IS_ENABLED(CONFIG_IPV6)
		int addr_type;

		if (changelink && (ip_tunnel_info_af(info) == AF_INET)) {
			attrtype = IFLA_GENEVE_REMOTE6;
			goto change_notsup;
		}

		info->mode = IP_TUNNEL_INFO_IPV6;
		info->key.u.ipv6.dst =
			nla_get_in6_addr(data[IFLA_GENEVE_REMOTE6]);

		addr_type = ipv6_addr_type(&info->key.u.ipv6.dst);
		if (addr_type & IPV6_ADDR_LINKLOCAL) {
			NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_REMOTE6],
					    "Remote IPv6 address cannot be link-local");
			return -EINVAL;
		}
		if (addr_type & IPV6_ADDR_MULTICAST) {
			NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_REMOTE6],
					    "Remote IPv6 address cannot be Multicast");
			return -EINVAL;
		}
		__set_bit(IP_TUNNEL_CSUM_BIT, info->key.tun_flags);
		cfg->use_udp6_rx_checksums = true;
#else
		NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_REMOTE6],
				    "IPv6 support not enabled in the kernel");
		return -EPFNOSUPPORT;
#endif
	}

	if (data[IFLA_GENEVE_LOCAL]) {
		if (changelink) {
			__be32 src = nla_get_in_addr(data[IFLA_GENEVE_LOCAL]);

			if (ip_tunnel_info_af(info) == AF_INET6 ||
			    src != info->key.u.ipv4.src) {
				attrtype = IFLA_GENEVE_LOCAL;
				goto change_notsup;
			}
		} else {
			info->key.u.ipv4.src = nla_get_in_addr(data[IFLA_GENEVE_LOCAL]);

			if (ipv4_is_multicast(info->key.u.ipv4.src)) {
				NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_LOCAL],
						    "Local IPv4 address cannot be Multicast");
				return -EINVAL;
			}

			cfg->dualstack = false;
		}
	}

	if (data[IFLA_GENEVE_LOCAL6]) {
#if IS_ENABLED(CONFIG_IPV6)
		if (changelink) {
			struct in6_addr src = nla_get_in6_addr(data[IFLA_GENEVE_LOCAL6]);

			if (ip_tunnel_info_af(info) == AF_INET ||
			    !ipv6_addr_equal(&src, &info->key.u.ipv6.src)) {
				attrtype = IFLA_GENEVE_LOCAL6;
				goto change_notsup;
			}
		} else {
			int addr_type;

			info->mode = IP_TUNNEL_INFO_IPV6;
			info->key.u.ipv6.src = nla_get_in6_addr(data[IFLA_GENEVE_LOCAL6]);

			addr_type = ipv6_addr_type(&info->key.u.ipv6.src);
			if (addr_type & IPV6_ADDR_LINKLOCAL) {
				NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_LOCAL6],
						    "Local IPv6 address cannot be link-local");
				return -EINVAL;
			}
			if (addr_type & IPV6_ADDR_MULTICAST) {
				NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_LOCAL6],
						    "Local IPv6 address cannot be Multicast");
				return -EINVAL;
			}

			cfg->dualstack = false;
		}
#else
		NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_LOCAL6],
				    "IPv6 support not enabled in the kernel");
		return -EPFNOSUPPORT;
#endif
	}

	if (data[IFLA_GENEVE_ID]) {
		__u32 vni;
		__u8 tvni[3];
		__be64 tunid;

		vni = nla_get_u32(data[IFLA_GENEVE_ID]);
		tvni[0] = (vni & 0x00ff0000) >> 16;
		tvni[1] = (vni & 0x0000ff00) >> 8;
		tvni[2] =  vni & 0x000000ff;

		tunid = vni_to_tunnel_id(tvni);
		if (changelink && (tunid != info->key.tun_id)) {
			attrtype = IFLA_GENEVE_ID;
			goto change_notsup;
		}
		info->key.tun_id = tunid;
	}

	if (data[IFLA_GENEVE_TTL_INHERIT]) {
		if (nla_get_u8(data[IFLA_GENEVE_TTL_INHERIT]))
			cfg->ttl_inherit = true;
		else
			cfg->ttl_inherit = false;
	} else if (data[IFLA_GENEVE_TTL]) {
		info->key.ttl = nla_get_u8(data[IFLA_GENEVE_TTL]);
		cfg->ttl_inherit = false;
	}

	if (data[IFLA_GENEVE_TOS])
		info->key.tos = nla_get_u8(data[IFLA_GENEVE_TOS]);

	if (data[IFLA_GENEVE_DF])
		cfg->df = nla_get_u8(data[IFLA_GENEVE_DF]);

	if (data[IFLA_GENEVE_LABEL]) {
		info->key.label = nla_get_be32(data[IFLA_GENEVE_LABEL]) &
				  IPV6_FLOWLABEL_MASK;
		if (info->key.label && (!(info->mode & IP_TUNNEL_INFO_IPV6))) {
			NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_LABEL],
					    "Label attribute only applies for IPv6 Geneve devices");
			return -EINVAL;
		}
	}

	if (data[IFLA_GENEVE_PORT]) {
		if (changelink) {
			attrtype = IFLA_GENEVE_PORT;
			goto change_notsup;
		}
		info->key.tp_dst = nla_get_be16(data[IFLA_GENEVE_PORT]);
	}

	if (data[IFLA_GENEVE_PORT_RANGE]) {
		const struct ifla_geneve_port_range *p;

		if (changelink) {
			attrtype = IFLA_GENEVE_PORT_RANGE;
			goto change_notsup;
		}
		p = nla_data(data[IFLA_GENEVE_PORT_RANGE]);
		cfg->port_min = ntohs(p->low);
		cfg->port_max = ntohs(p->high);
	}

	if (data[IFLA_GENEVE_UDP_CSUM]) {
		if (changelink) {
			attrtype = IFLA_GENEVE_UDP_CSUM;
			goto change_notsup;
		}
		if (nla_get_u8(data[IFLA_GENEVE_UDP_CSUM]))
			__set_bit(IP_TUNNEL_CSUM_BIT, info->key.tun_flags);
	}

	if (data[IFLA_GENEVE_UDP_ZERO_CSUM6_TX]) {
#if IS_ENABLED(CONFIG_IPV6)
		if (changelink) {
			attrtype = IFLA_GENEVE_UDP_ZERO_CSUM6_TX;
			goto change_notsup;
		}
		if (nla_get_u8(data[IFLA_GENEVE_UDP_ZERO_CSUM6_TX]))
			__clear_bit(IP_TUNNEL_CSUM_BIT, info->key.tun_flags);
#else
		NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_UDP_ZERO_CSUM6_TX],
				    "IPv6 support not enabled in the kernel");
		return -EPFNOSUPPORT;
#endif
	}

	if (data[IFLA_GENEVE_UDP_ZERO_CSUM6_RX]) {
#if IS_ENABLED(CONFIG_IPV6)
		if (changelink) {
			attrtype = IFLA_GENEVE_UDP_ZERO_CSUM6_RX;
			goto change_notsup;
		}
		if (nla_get_u8(data[IFLA_GENEVE_UDP_ZERO_CSUM6_RX]))
			cfg->use_udp6_rx_checksums = false;
#else
		NL_SET_ERR_MSG_ATTR(extack, data[IFLA_GENEVE_UDP_ZERO_CSUM6_RX],
				    "IPv6 support not enabled in the kernel");
		return -EPFNOSUPPORT;
#endif
	}

	if (data[IFLA_GENEVE_INNER_PROTO_INHERIT]) {
		if (changelink) {
			attrtype = IFLA_GENEVE_INNER_PROTO_INHERIT;
			goto change_notsup;
		}
		cfg->inner_proto_inherit = true;
	}

	if (data[IFLA_GENEVE_GRO_HINT]) {
		if (changelink) {
			attrtype = IFLA_GENEVE_GRO_HINT;
			goto change_notsup;
		}
		cfg->gro_hint = true;
	}

	return 0;
change_notsup:
	NL_SET_ERR_MSG_ATTR(extack, data[attrtype],
			    "Changing VNI, Port, endpoint IP address family, external, inner_proto_inherit, gro_hint and UDP checksum attributes are not supported");
	return -EOPNOTSUPP;
}

static void geneve_link_config(struct net_device *dev,
			       struct ip_tunnel_info *info, struct nlattr *tb[])
{
	struct geneve_dev *geneve = netdev_priv(dev);
	int ldev_mtu = 0;

	if (tb[IFLA_MTU]) {
		geneve_change_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
		return;
	}

	switch (ip_tunnel_info_af(info)) {
	case AF_INET: {
		struct flowi4 fl4 = { .daddr = info->key.u.ipv4.dst };
		struct rtable *rt = ip_route_output_key(geneve->net, &fl4);

		if (!IS_ERR(rt) && rt->dst.dev) {
			ldev_mtu = rt->dst.dev->mtu - GENEVE_IPV4_HLEN;
			ip_rt_put(rt);
		}
		break;
	}
#if IS_ENABLED(CONFIG_IPV6)
	case AF_INET6: {
		struct rt6_info *rt;

		if (!__in6_dev_get(dev))
			break;

		rt = rt6_lookup(geneve->net, &info->key.u.ipv6.dst, NULL, 0,
				NULL, 0);

		if (rt && rt->dst.dev)
			ldev_mtu = rt->dst.dev->mtu - GENEVE_IPV6_HLEN;
		ip6_rt_put(rt);
		break;
	}
#endif
	}

	if (ldev_mtu <= 0)
		return;

	geneve_change_mtu(dev, ldev_mtu - info->options_len);
}

static int geneve_newlink(struct net_device *dev,
			  struct rtnl_newlink_params *params,
			  struct netlink_ext_ack *extack)
{
	struct net *link_net = rtnl_newlink_link_net(params);
	struct nlattr **data = params->data;
	struct nlattr **tb = params->tb;
	struct geneve_config cfg = {
		.df = GENEVE_DF_UNSET,
		.use_udp6_rx_checksums = false,
		.ttl_inherit = false,
		.collect_md = false,
		.dualstack = false,
		.port_min = 1,
		.port_max = USHRT_MAX,
	};
	int err;

	init_tnl_info(&cfg.info, GENEVE_UDP_PORT);
	err = geneve_nl2info(tb, data, extack, &cfg, false);
	if (err)
		return err;

	err = geneve_configure(link_net, dev, extack, &cfg);
	if (err)
		return err;

	geneve_link_config(dev, &cfg.info, tb);

	return 0;
}

/* Update the device configuration under RTNL.
 * We use RCU swap to update the configuration atomically, so the data path
 * (both TX and RX) can continue running without interruption or packet loss.
 */
static int geneve_changelink(struct net_device *dev, struct nlattr *tb[],
			     struct nlattr *data[],
			     struct netlink_ext_ack *extack)
{
	struct geneve_dev *geneve = netdev_priv(dev);
	struct geneve_config *old_cfg = rtnl_dereference(geneve->cfg);
	struct geneve_config *cfg;
	int err;

	if (!rtnl_dev_link_net_capable(dev, geneve->net))
		return -EPERM;

	/* If the geneve device is configured for metadata (or externally
	 * controlled, for example, OVS), then nothing can be changed.
	 */
	if (old_cfg->collect_md)
		return -EOPNOTSUPP;

	/* Start with the existing info. */
	cfg = geneve_config_alloc(old_cfg);
	if (IS_ERR(cfg))
		return PTR_ERR(cfg);

	err = geneve_nl2info(tb, data, extack, cfg, true);
	if (err)
		goto err_free_cfg;

	if (!geneve_dst_addr_equal(&old_cfg->info, &cfg->info))
		geneve_link_config(dev, &cfg->info, tb);

	rcu_assign_pointer(geneve->cfg, cfg);

	call_rcu_hurry(&old_cfg->rcu, geneve_config_free_rcu);
	return 0;

err_free_cfg:
	geneve_config_free(cfg);
	return err;
}

static void __geneve_dellink(struct net *net, struct net_device *dev,
			     struct list_head *head)
{
	struct geneve_dev *geneve = netdev_priv(dev);

	list_del_init(&geneve->next);
	unregister_netdevice_queue_net(net, dev, head);
}

static void geneve_dellink(struct net_device *dev, struct list_head *head)
{
	struct geneve_dev *geneve = netdev_priv(dev);
	struct geneve_net *gn;

	gn = net_generic(geneve->net, geneve_net_id);

	mutex_lock(&gn->lock);
	if (!list_empty(&geneve->next))
		__geneve_dellink(dev_net(dev), dev, head);
	mutex_unlock(&gn->lock);
}

static size_t geneve_get_size(const struct net_device *dev)
{
	return nla_total_size(sizeof(__u32)) +	/* IFLA_GENEVE_ID */
		nla_total_size(sizeof(struct in6_addr)) + /* IFLA_GENEVE_REMOTE{6} */
		nla_total_size(sizeof(struct in6_addr)) + /* IFLA_GENEVE_LOCAL{6} */
		nla_total_size(sizeof(__u8)) +  /* IFLA_GENEVE_TTL */
		nla_total_size(sizeof(__u8)) +  /* IFLA_GENEVE_TOS */
		nla_total_size(sizeof(__u8)) +	/* IFLA_GENEVE_DF */
		nla_total_size(sizeof(__be32)) +  /* IFLA_GENEVE_LABEL */
		nla_total_size(sizeof(__be16)) +  /* IFLA_GENEVE_PORT */
		nla_total_size(0) +	 /* IFLA_GENEVE_COLLECT_METADATA */
		nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_UDP_CSUM */
		nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_UDP_ZERO_CSUM6_TX */
		nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_UDP_ZERO_CSUM6_RX */
		nla_total_size(sizeof(__u8)) + /* IFLA_GENEVE_TTL_INHERIT */
		nla_total_size(0) +	 /* IFLA_GENEVE_INNER_PROTO_INHERIT */
		nla_total_size(sizeof(struct ifla_geneve_port_range)) + /* IFLA_GENEVE_PORT_RANGE */
		nla_total_size(0) +	 /* IFLA_GENEVE_GRO_HINT */
		0;
}

static int geneve_fill_info(struct sk_buff *skb, const struct net_device *dev)
{
	const struct geneve_dev *geneve = netdev_priv(dev);
	struct ifla_geneve_port_range ports;
	const struct geneve_config *cfg;
	const struct ip_tunnel_info *info;
	bool ttl_inherit, metadata;
	__u8 tmp_vni[3];
	__u32 vni;
	int err = 0;

	rcu_read_lock();
	cfg = rcu_dereference(geneve->cfg);
	if (!cfg) {
		err = -ENODEV;
		goto out;
	}

	info = &cfg->info;
	ttl_inherit = cfg->ttl_inherit;
	metadata = cfg->collect_md;
	ports.low = htons(cfg->port_min);
	ports.high = htons(cfg->port_max);

	tunnel_id_to_vni(info->key.tun_id, tmp_vni);
	vni = (tmp_vni[0] << 16) | (tmp_vni[1] << 8) | tmp_vni[2];
	if (nla_put_u32(skb, IFLA_GENEVE_ID, vni))
		goto nla_put_failure;

	if (!metadata && ip_tunnel_info_af(info) == AF_INET) {
		if (nla_put_in_addr(skb, IFLA_GENEVE_REMOTE,
				    info->key.u.ipv4.dst))
			goto nla_put_failure;
		if (nla_put_u8(skb, IFLA_GENEVE_UDP_CSUM,
			       test_bit(IP_TUNNEL_CSUM_BIT,
					info->key.tun_flags)))
			goto nla_put_failure;

#if IS_ENABLED(CONFIG_IPV6)
	} else if (!metadata) {
		if (nla_put_in6_addr(skb, IFLA_GENEVE_REMOTE6,
				     &info->key.u.ipv6.dst))
			goto nla_put_failure;
		if (nla_put_u8(skb, IFLA_GENEVE_UDP_ZERO_CSUM6_TX,
			       !test_bit(IP_TUNNEL_CSUM_BIT,
					 info->key.tun_flags)))
			goto nla_put_failure;
#endif
	}

	if (!cfg->dualstack) {
		if (ip_tunnel_info_af(info) == AF_INET) {
			if ((info->key.u.ipv4.src ||
			     metadata) &&
			    nla_put_in_addr(skb, IFLA_GENEVE_LOCAL,
					    info->key.u.ipv4.src))
				goto nla_put_failure;
#if IS_ENABLED(CONFIG_IPV6)
		} else {
			if ((!ipv6_addr_any(&info->key.u.ipv6.src) ||
			     metadata) &&
			    nla_put_in6_addr(skb, IFLA_GENEVE_LOCAL6,
					     &info->key.u.ipv6.src))
				goto nla_put_failure;
#endif
		}
	}

	if (nla_put_u8(skb, IFLA_GENEVE_TTL, info->key.ttl) ||
	    nla_put_u8(skb, IFLA_GENEVE_TOS, info->key.tos) ||
	    nla_put_be32(skb, IFLA_GENEVE_LABEL, info->key.label))
		goto nla_put_failure;

	if (nla_put_u8(skb, IFLA_GENEVE_DF, cfg->df))
		goto nla_put_failure;

	if (nla_put_be16(skb, IFLA_GENEVE_PORT, info->key.tp_dst))
		goto nla_put_failure;

	if (metadata && nla_put_flag(skb, IFLA_GENEVE_COLLECT_METADATA))
		goto nla_put_failure;

#if IS_ENABLED(CONFIG_IPV6)
	if (nla_put_u8(skb, IFLA_GENEVE_UDP_ZERO_CSUM6_RX,
		       !cfg->use_udp6_rx_checksums))
		goto nla_put_failure;
#endif

	if (nla_put_u8(skb, IFLA_GENEVE_TTL_INHERIT, ttl_inherit))
		goto nla_put_failure;

	if (cfg->inner_proto_inherit &&
	    nla_put_flag(skb, IFLA_GENEVE_INNER_PROTO_INHERIT))
		goto nla_put_failure;

	if (nla_put(skb, IFLA_GENEVE_PORT_RANGE, sizeof(ports), &ports))
		goto nla_put_failure;

	if (cfg->gro_hint &&
	    nla_put_flag(skb, IFLA_GENEVE_GRO_HINT))
		goto nla_put_failure;

out:
	rcu_read_unlock();
	return err;

nla_put_failure:
	err = -EMSGSIZE;
	goto out;
}

static struct rtnl_link_ops geneve_link_ops __read_mostly = {
	.kind		= "geneve",
	.maxtype	= IFLA_GENEVE_MAX,
	.policy		= geneve_policy,
	.priv_size	= sizeof(struct geneve_dev),
	.setup		= geneve_setup,
	.validate	= geneve_validate,
	.newlink	= geneve_newlink,
	.changelink	= geneve_changelink,
	.dellink	= geneve_dellink,
	.get_size	= geneve_get_size,
	.fill_info	= geneve_fill_info,
};

static int geneve_netdevice_event(struct notifier_block *unused,
				  unsigned long event, void *ptr)
{
	struct net_device *dev = netdev_notifier_info_to_dev(ptr);

	if (event == NETDEV_UDP_TUNNEL_PUSH_INFO)
		geneve_offload_rx_ports(dev, true);
	else if (event == NETDEV_UDP_TUNNEL_DROP_INFO)
		geneve_offload_rx_ports(dev, false);

	return NOTIFY_DONE;
}

static struct notifier_block geneve_notifier_block __read_mostly = {
	.notifier_call = geneve_netdevice_event,
};

static __net_init int geneve_init_net(struct net *net)
{
	struct geneve_net *gn = net_generic(net, geneve_net_id);

	INIT_LIST_HEAD(&gn->geneve_list);
	INIT_LIST_HEAD(&gn->sock_list);
	mutex_init(&gn->lock);

	return 0;
}

static void __net_exit geneve_exit_rtnl_net(struct net *net,
					    struct list_head *dev_to_kill)
{
	struct geneve_net *gn = net_generic(net, geneve_net_id);
	struct geneve_dev *geneve, *next;

	mutex_lock(&gn->lock);

	list_for_each_entry_safe(geneve, next, &gn->geneve_list, next)
		__geneve_dellink(net, geneve->dev, dev_to_kill);

	mutex_unlock(&gn->lock);
}

static void __net_exit geneve_exit_net(struct net *net)
{
	const struct geneve_net *gn = net_generic(net, geneve_net_id);

	WARN_ON_ONCE(!list_empty(&gn->sock_list));
}

static struct pernet_operations geneve_net_ops = {
	.init = geneve_init_net,
	.exit_rtnl = geneve_exit_rtnl_net,
	.exit = geneve_exit_net,
	.id   = &geneve_net_id,
	.size = sizeof(struct geneve_net),
};

static int __init geneve_init_module(void)
{
	int rc;

	rc = register_pernet_subsys(&geneve_net_ops);
	if (rc)
		goto out1;

	rc = register_netdevice_notifier(&geneve_notifier_block);
	if (rc)
		goto out2;

	rc = rtnl_link_register(&geneve_link_ops);
	if (rc)
		goto out3;

	return 0;
out3:
	unregister_netdevice_notifier(&geneve_notifier_block);
out2:
	unregister_pernet_subsys(&geneve_net_ops);
out1:
	return rc;
}
late_initcall(geneve_init_module);

static void __exit geneve_cleanup_module(void)
{
	rtnl_link_unregister(&geneve_link_ops);
	unregister_netdevice_notifier(&geneve_notifier_block);
	unregister_pernet_subsys(&geneve_net_ops);
	rcu_barrier();
}
module_exit(geneve_cleanup_module);

MODULE_LICENSE("GPL");
MODULE_VERSION(GENEVE_NETDEV_VER);
MODULE_AUTHOR("John W. Linville <linville@tuxdriver.com>");
MODULE_DESCRIPTION("Interface driver for GENEVE encapsulated traffic");
MODULE_ALIAS_RTNL_LINK("geneve");