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
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

// TODO: look at include/linux/compat.h and check that all types here are compatible

#![allow(nonstandard_style)]

pub use self::arch::*;
use core::{mem};

pub mod alias {
    pub type UserId    = super::uid_t;
    pub type GroupId   = super::gid_t;
    pub type DeviceId  = super::dev_t;
    pub type InodeId   = super::ino_t;
    pub type ProcessId = super::pid_t;
}

mod gen;

#[cfg(target_arch = "x86_64")]
#[path = "kty/x86_64.rs"]
mod arch;

#[cfg(target_arch = "x86")]
#[path = "x86.rs"]
mod arch;

#[cfg(target_arch = "arm")]
#[path = "arm.rs"]
mod arch;

#[cfg(target_arch = "aarch64")]
#[path = "aarch64.rs"]
mod arch;

pub const EPERM           : c_int = 1;
pub const ENOENT          : c_int = 2;
pub const ESRCH           : c_int = 3;
pub const EINTR           : c_int = 4;
pub const EIO             : c_int = 5;
pub const ENXIO           : c_int = 6;
pub const E2BIG           : c_int = 7;
pub const ENOEXEC         : c_int = 8;
pub const EBADF           : c_int = 9;
pub const ECHILD          : c_int = 10;
pub const EAGAIN          : c_int = 11;
pub const ENOMEM          : c_int = 12;
pub const EACCES          : c_int = 13;
pub const EFAULT          : c_int = 14;
pub const ENOTBLK         : c_int = 15;
pub const EBUSY           : c_int = 16;
pub const EEXIST          : c_int = 17;
pub const EXDEV           : c_int = 18;
pub const ENODEV          : c_int = 19;
pub const ENOTDIR         : c_int = 20;
pub const EISDIR          : c_int = 21;
pub const EINVAL          : c_int = 22;
pub const ENFILE          : c_int = 23;
pub const EMFILE          : c_int = 24;
pub const ENOTTY          : c_int = 25;
pub const ETXTBSY         : c_int = 26;
pub const EFBIG           : c_int = 27;
pub const ENOSPC          : c_int = 28;
pub const ESPIPE          : c_int = 29;
pub const EROFS           : c_int = 30;
pub const EMLINK          : c_int = 31;
pub const EPIPE           : c_int = 32;
pub const EDOM            : c_int = 33;
pub const ERANGE          : c_int = 34;
pub const EDEADLK         : c_int = 35;
pub const ENAMETOOLONG    : c_int = 36;
pub const ENOLCK          : c_int = 37;
pub const ENOSYS          : c_int = 38;
pub const ENOTEMPTY       : c_int = 39;
pub const ELOOP           : c_int = 40;
pub const EWOULDBLOCK     : c_int = EAGAIN;
pub const ENOMSG          : c_int = 42;
pub const EIDRM           : c_int = 43;
pub const ECHRNG          : c_int = 44;
pub const EL2NSYNC        : c_int = 45;
pub const EL3HLT          : c_int = 46;
pub const EL3RST          : c_int = 47;
pub const ELNRNG          : c_int = 48;
pub const EUNATCH         : c_int = 49;
pub const ENOCSI          : c_int = 50;
pub const EL2HLT          : c_int = 51;
pub const EBADE           : c_int = 52;
pub const EBADR           : c_int = 53;
pub const EXFULL          : c_int = 54;
pub const ENOANO          : c_int = 55;
pub const EBADRQC         : c_int = 56;
pub const EBADSLT         : c_int = 57;
pub const EDEADLOCK       : c_int = EDEADLK;
pub const EBFONT          : c_int = 59;
pub const ENOSTR          : c_int = 60;
pub const ENODATA         : c_int = 61;
pub const ETIME           : c_int = 62;
pub const ENOSR           : c_int = 63;
pub const ENONET          : c_int = 64;
pub const ENOPKG          : c_int = 65;
pub const EREMOTE         : c_int = 66;
pub const ENOLINK         : c_int = 67;
pub const EADV            : c_int = 68;
pub const ESRMNT          : c_int = 69;
pub const ECOMM           : c_int = 70;
pub const EPROTO          : c_int = 71;
pub const EMULTIHOP       : c_int = 72;
pub const EDOTDOT         : c_int = 73;
pub const EBADMSG         : c_int = 74;
pub const EOVERFLOW       : c_int = 75;
pub const ENOTUNIQ        : c_int = 76;
pub const EBADFD          : c_int = 77;
pub const EREMCHG         : c_int = 78;
pub const ELIBACC         : c_int = 79;
pub const ELIBBAD         : c_int = 80;
pub const ELIBSCN         : c_int = 81;
pub const ELIBMAX         : c_int = 82;
pub const ELIBEXEC        : c_int = 83;
pub const EILSEQ          : c_int = 84;
pub const ERESTART        : c_int = 85;
pub const ESTRPIPE        : c_int = 86;
pub const EUSERS          : c_int = 87;
pub const ENOTSOCK        : c_int = 88;
pub const EDESTADDRREQ    : c_int = 89;
pub const EMSGSIZE        : c_int = 90;
pub const EPROTOTYPE      : c_int = 91;
pub const ENOPROTOOPT     : c_int = 92;
pub const EPROTONOSUPPORT : c_int = 93;
pub const ESOCKTNOSUPPORT : c_int = 94;
pub const EOPNOTSUPP      : c_int = 95;
pub const EPFNOSUPPORT    : c_int = 96;
pub const EAFNOSUPPORT    : c_int = 97;
pub const EADDRINUSE      : c_int = 98;
pub const EADDRNOTAVAIL   : c_int = 99;
pub const ENETDOWN        : c_int = 100;
pub const ENETUNREACH     : c_int = 101;
pub const ENETRESET       : c_int = 102;
pub const ECONNABORTED    : c_int = 103;
pub const ECONNRESET      : c_int = 104;
pub const ENOBUFS         : c_int = 105;
pub const EISCONN         : c_int = 106;
pub const ENOTCONN        : c_int = 107;
pub const ESHUTDOWN       : c_int = 108;
pub const ETOOMANYREFS    : c_int = 109;
pub const ETIMEDOUT       : c_int = 110;
pub const ECONNREFUSED    : c_int = 111;
pub const EHOSTDOWN       : c_int = 112;
pub const EHOSTUNREACH    : c_int = 113;
pub const EALREADY        : c_int = 114;
pub const EINPROGRESS     : c_int = 115;
pub const ESTALE          : c_int = 116;
pub const EUCLEAN         : c_int = 117;
pub const ENOTNAM         : c_int = 118;
pub const ENAVAIL         : c_int = 119;
pub const EISNAM          : c_int = 120;
pub const EREMOTEIO       : c_int = 121;
pub const EDQUOT          : c_int = 122;
pub const ENOMEDIUM       : c_int = 123;
pub const EMEDIUMTYPE     : c_int = 124;
pub const ECANCELED       : c_int = 125;
pub const ENOKEY          : c_int = 126;
pub const EKEYEXPIRED     : c_int = 127;
pub const EKEYREVOKED     : c_int = 128;
pub const EKEYREJECTED    : c_int = 129;
pub const EOWNERDEAD      : c_int = 130;
pub const ENOTRECOVERABLE : c_int = 131;
pub const ERFKILL         : c_int = 132;
pub const EHWPOISON       : c_int = 133;

// Userspace aliases. NB: These are only correct for the kernel ABI. E.g. size_t is 32 bit
// on x32 but __kernel_size_t is 64 bit on x32.

pub type fd_set           = __kernel_fd_set;
pub type dev_t            = __kernel_dev_t;
pub type ino_t            = __kernel_ino_t;
pub type mode_t           = __kernel_mode_t;
pub type umode_t          = k_ushort;
pub type nlink_t          = __u32;
pub type off_t            = __kernel_off_t;
pub type pid_t            = __kernel_pid_t;
pub type daddr_t          = __kernel_daddr_t;
pub type key_t            = __kernel_key_t;
pub type suseconds_t      = __kernel_suseconds_t;
pub type timer_t          = __kernel_timer_t;
pub type clockid_t        = __kernel_clockid_t;
pub type mqd_t            = __kernel_mqd_t;
pub type uid_t            = __kernel_uid32_t;
pub type gid_t            = __kernel_gid32_t;
pub type uid16_t          = __kernel_uid16_t;
pub type gid16_t          = __kernel_gid16_t;
pub type uintptr_t        = k_ulong;
pub type old_uid_t        = __kernel_old_uid_t;
pub type old_gid_t        = __kernel_old_gid_t;
pub type loff_t           = __kernel_loff_t;
pub type size_t           = __kernel_size_t;
pub type ssize_t          = __kernel_ssize_t;
pub type ptrdiff_t        = __kernel_ptrdiff_t;
pub type time_t           = __kernel_time_t;
pub type clock_t          = __kernel_clock_t;
pub type caddr_t          = __kernel_caddr_t;
pub type sighandler_t     = __kernel_sighandler_t;
pub type sa_family_t      = __kernel_sa_family_t;
pub type sockaddr_storage = __kernel_sockaddr_storage;

// XXX: These two can also be u64 depending on a kernel option.
pub type sector_t         = k_ulong;
pub type blkcnt_t         = k_ulong;

// C type aliases. Only c_long and __kernel_long_t might disagree (x32), but we define
// all to avoid confusion.

pub type k_char      = c_char;
pub type k_schar     = c_schar;
pub type k_uchar     = c_uchar;
pub type k_short     = c_short;
pub type k_ushort    = c_ushort;
pub type k_int       = c_int;
pub type k_uint      = c_uint;
pub type k_long      = __kernel_long_t;
pub type k_ulong     = __kernel_ulong_t;
pub type k_longlong  = c_longlong;
pub type k_ulonglong = c_ulonglong;
pub type k_float     = c_float;
pub type k_double    = c_double;

pub const __FD_SETSIZE : usize = 1024;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct __kernel_fd_set {
    pub fds_bits: [c_ulong; __FD_SETSIZE / (8 * BYTES_PER_LONG)],
}

pub type __kernel_dev_t = __u32;
pub type __kernel_sighandler_t = extern fn(c_int);
pub type __kernel_key_t = k_int;
pub type __kernel_mqd_t = k_int;

pub type __le16  = __u16;
pub type __be16  = __u16;
pub type __le32  = __u32;
pub type __be32  = __u32;
pub type __le64  = __u64;
pub type __be64  = __u64;
pub type __sum16 = __u16;
pub type __wsum  = __u32;

// time.h

// TODO: Explain why the second type is not c_long.
#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct timespec {
    pub tv_sec:  __kernel_time_t,
    pub tv_nsec: timespec_tv_nsec_type,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct timeval {
    pub tv_sec: __kernel_time_t,
    pub tv_usec: __kernel_suseconds_t,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct timezone {
    pub tz_minuteswest: c_int,
    pub tz_dsttime:     c_int,
}

pub const ITIMER_REAL    : c_int = 0;
pub const ITIMER_VIRTUAL : c_int = 1;
pub const ITIMER_PROF    : c_int = 2;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct itimerspec {
    pub it_interval: timespec,
    pub it_value:    timespec,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct itimerval {
    pub it_interval: timeval,
    pub it_value:    timeval,
}

pub const CLOCK_REALTIME           : clockid_t = 0;
pub const CLOCK_MONOTONIC          : clockid_t = 1;
pub const CLOCK_PROCESS_CPUTIME_ID : clockid_t = 2;
pub const CLOCK_THREAD_CPUTIME_ID  : clockid_t = 3;
pub const CLOCK_MONOTONIC_RAW      : clockid_t = 4;
pub const CLOCK_REALTIME_COARSE    : clockid_t = 5;
pub const CLOCK_MONOTONIC_COARSE   : clockid_t = 6;
pub const CLOCK_BOOTTIME           : clockid_t = 7;
pub const CLOCK_REALTIME_ALARM     : clockid_t = 8;
pub const CLOCK_BOOTTIME_ALARM     : clockid_t = 9;
pub const CLOCK_SGI_CYCLE          : clockid_t = 10;
pub const CLOCK_TAI                : clockid_t = 11;

pub const TIMER_ABSTIME : c_int = 0x01;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct linux_dirent64 {
    pub d_ino:    u64,
    pub d_off:    i64,
    pub d_reclen: c_ushort,
    pub d_type:   c_uchar,
    pub d_name:   [c_char; 0],
}

///////////////////////////////
// include/uapi/linux/sysinfo.h
///////////////////////////////

pub const SI_LOAD_SHIFT : __kernel_ulong_t = 16;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct sysinfo {
    pub uptime:    __kernel_long_t,
    pub loads:     [__kernel_ulong_t; 3],
    pub totalram:  __kernel_ulong_t,
    pub freeram:   __kernel_ulong_t,
    pub sharedram: __kernel_ulong_t,
    pub bufferram: __kernel_ulong_t,
    pub totalswap: __kernel_ulong_t,
    pub freeswap:  __kernel_ulong_t,
    pub procs:     __u16,
    pub pad:       __u16,
    pub totalhigh: __kernel_ulong_t,
    pub freehigh:  __kernel_ulong_t,
    pub mem_unit:  __u32,
    pub _f:        [c_char; SYSINFO_PADDING],
}

pub const F_SETLEASE          : c_uint = F_LINUX_SPECIFIC_BASE+0;
pub const F_GETLEASE          : c_uint = F_LINUX_SPECIFIC_BASE+1;
pub const F_CANCELLK          : c_uint = F_LINUX_SPECIFIC_BASE+5;
pub const F_DUPFD_CLOEXEC     : c_uint = F_LINUX_SPECIFIC_BASE+6;
pub const F_NOTIFY            : c_uint = F_LINUX_SPECIFIC_BASE+2;
pub const F_SETPIPE_SZ        : c_uint = F_LINUX_SPECIFIC_BASE+7;
pub const F_GETPIPE_SZ        : c_uint = F_LINUX_SPECIFIC_BASE+8;
pub const F_ADD_SEALS         : c_uint = F_LINUX_SPECIFIC_BASE+9;
pub const F_GET_SEALS         : c_uint = F_LINUX_SPECIFIC_BASE+10;
pub const F_SEAL_SEAL         : c_uint = 0x0001;
pub const F_SEAL_SHRINK       : c_uint = 0x0002;
pub const F_SEAL_GROW         : c_uint = 0x0004;
pub const F_SEAL_WRITE        : c_uint = 0x0008;
pub const DN_ACCESS           : c_int = 0x00000001;
pub const DN_MODIFY           : c_int = 0x00000002;
pub const DN_CREATE           : c_int = 0x00000004;
pub const DN_DELETE           : c_int = 0x00000008;
pub const DN_RENAME           : c_int = 0x00000010;
pub const DN_ATTRIB           : c_int = 0x00000020;
#[allow(overflowing_literals)]
pub const DN_MULTISHOT        : c_int = 0x80000000;
pub const AT_FDCWD            : c_int = -100;
pub const AT_SYMLINK_NOFOLLOW : c_int = 0x100;
pub const AT_REMOVEDIR        : c_int = 0x200;
pub const AT_SYMLINK_FOLLOW   : c_int = 0x400;
pub const AT_NO_AUTOMOUNT     : c_int = 0x800;
pub const AT_EMPTY_PATH       : c_int = 0x1000;

// bpf_common.h

pub fn BPF_CLASS (code: u8) -> u8 { code & 0x07 }
pub fn BPF_SIZE  (code: u8) -> u8 { code & 0x18 }
pub fn BPF_MODE  (code: u8) -> u8 { code & 0xe0 }
pub fn BPF_OP    (code: u8) -> u8 { code & 0xf0 }
pub fn BPF_SRC   (code: u8) -> u8 { code & 0x08 }

pub const BPF_LD   : u8 = 0x00;
pub const BPF_LDX  : u8 = 0x01;
pub const BPF_ST   : u8 = 0x02;
pub const BPF_STX  : u8 = 0x03;
pub const BPF_ALU  : u8 = 0x04;
pub const BPF_JMP  : u8 = 0x05;
pub const BPF_RET  : u8 = 0x06;
pub const BPF_MISC : u8 = 0x07;
pub const BPF_W    : u8 = 0x00;
pub const BPF_H    : u8 = 0x08;
pub const BPF_B    : u8 = 0x10;
pub const BPF_IMM  : u8 = 0x00;
pub const BPF_ABS  : u8 = 0x20;
pub const BPF_IND  : u8 = 0x40;
pub const BPF_MEM  : u8 = 0x60;
pub const BPF_LEN  : u8 = 0x80;
pub const BPF_MSH  : u8 = 0xa0;
pub const BPF_ADD  : u8 = 0x00;
pub const BPF_SUB  : u8 = 0x10;
pub const BPF_MUL  : u8 = 0x20;
pub const BPF_DIV  : u8 = 0x30;
pub const BPF_OR   : u8 = 0x40;
pub const BPF_AND  : u8 = 0x50;
pub const BPF_LSH  : u8 = 0x60;
pub const BPF_RSH  : u8 = 0x70;
pub const BPF_NEG  : u8 = 0x80;
pub const BPF_MOD  : u8 = 0x90;
pub const BPF_XOR  : u8 = 0xa0;
pub const BPF_JA   : u8 = 0x00;
pub const BPF_JEQ  : u8 = 0x10;
pub const BPF_JGT  : u8 = 0x20;
pub const BPF_JGE  : u8 = 0x30;
pub const BPF_JSET : u8 = 0x40;
pub const BPF_K    : u8 = 0x00;
pub const BPF_X    : u8 = 0x08;

pub const BPF_MAXINSNS : usize = 4096;

// bpf.h

pub const BPF_ALU64   : u8 = 0x07;
pub const BPF_DW      : u8 = 0x18;
pub const BPF_XADD    : u8 = 0xc0;
pub const BPF_MOV     : u8 = 0xb0;
pub const BPF_ARSH    : u8 = 0xc0;
pub const BPF_END     : u8 = 0xd0;
pub const BPF_TO_LE   : u8 = 0x00;
pub const BPF_TO_BE   : u8 = 0x08;
pub const BPF_FROM_LE : u8 = BPF_TO_LE;
pub const BPF_FROM_BE : u8 = BPF_TO_BE;
pub const BPF_JNE     : u8 = 0x50;
pub const BPF_JSGT    : u8 = 0x60;
pub const BPF_JSGE    : u8 = 0x70;
pub const BPF_CALL    : u8 = 0x80;
pub const BPF_EXIT    : u8 = 0x90;

pub const BPF_REG_0     : u8 = 0;
pub const BPF_REG_1     : u8 = 1;
pub const BPF_REG_2     : u8 = 2;
pub const BPF_REG_3     : u8 = 3;
pub const BPF_REG_4     : u8 = 4;
pub const BPF_REG_5     : u8 = 5;
pub const BPF_REG_6     : u8 = 6;
pub const BPF_REG_7     : u8 = 7;
pub const BPF_REG_8     : u8 = 8;
pub const BPF_REG_9     : u8 = 9;
pub const BPF_REG_10    : u8 = 10;
pub const __MAX_BPF_REG : u8 = 11;

pub const MAX_BPF_REG : u8 = __MAX_BPF_REG;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct bpf_insn {
    pub code: __u8,
    // __u8 dst_reg:4;  /* dest register */
    // __u8 src_reg:4;  /* source register */
    reg:  __u8,
    pub off:  __s16,
    pub imm:  __s32,
}

pub const BPF_MAP_CREATE       : c_int = 0;
pub const BPF_MAP_LOOKUP_ELEM  : c_int = 1;
pub const BPF_MAP_UPDATE_ELEM  : c_int = 2;
pub const BPF_MAP_DELETE_ELEM  : c_int = 3;
pub const BPF_MAP_GET_NEXT_KEY : c_int = 4;
pub const BPF_PROG_LOAD        : c_int = 5;

pub const BPF_MAP_TYPE_UNSPEC : c_int = 0;
pub const BPF_MAP_TYPE_HASH   : c_int = 1;
pub const BPF_MAP_TYPE_ARRAY  : c_int = 2;

pub const BPF_ANY     : c_int = 0;
pub const BPF_NOEXIST : c_int = 1;
pub const BPF_EXIST   : c_int = 2;

#[repr(C, align(8))]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct bpf_attr {
    _dummy: [u64; 2],
}

pub const BPF_FUNC_unspec          : c_int = 0;
pub const BPF_FUNC_map_lookup_elem : c_int = 1;
pub const BPF_FUNC_map_update_elem : c_int = 2;
pub const BPF_FUNC_map_delete_elem : c_int = 3;
pub const __BPF_FUNC_MAX_ID        : c_int = 4;

// capability.h

pub const _LINUX_CAPABILITY_VERSION_1 : c_int = 0x19980330;
pub const _LINUX_CAPABILITY_U32S_1    : c_int = 1;
pub const _LINUX_CAPABILITY_VERSION_2 : c_int = 0x20071026;
pub const _LINUX_CAPABILITY_U32S_2    : c_int = 2;
pub const _LINUX_CAPABILITY_VERSION_3 : c_int = 0x20080522;
pub const _LINUX_CAPABILITY_U32S_3    : c_int = 2;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct __user_cap_header_struct {
    pub version: __u32,
    pub pid: c_int,
}

pub type cap_user_header_t = *mut __user_cap_header_struct;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct __user_cap_data_struct {
    pub effective:   __u32,
    pub permitted:   __u32,
    pub inheritable: __u32,
}

pub type cap_user_data_t = *mut __user_cap_data_struct;

pub const SIZEOF__le32 : usize = 4;

pub const VFS_CAP_REVISION_MASK   : c_int = 0xFF000000u64 as _;
pub const VFS_CAP_REVISION_SHIFT  : c_int = 24;
pub const VFS_CAP_FLAGS_MASK      : c_int = !VFS_CAP_REVISION_MASK;
pub const VFS_CAP_FLAGS_EFFECTIVE : c_int = 0x000001;
pub const VFS_CAP_REVISION_1      : c_int = 0x01000000;
pub const VFS_CAP_U32_1           : c_int = 1;
pub const XATTR_CAPS_SZ_1         : c_int = (SIZEOF__le32 as c_int)*(1+2*VFS_CAP_U32_1);
pub const VFS_CAP_REVISION_2      : c_int = 0x02000000;
pub const VFS_CAP_U32_2           : c_int = 2;
pub const XATTR_CAPS_SZ_2         : c_int = (SIZEOF__le32 as c_int)*(1+2*VFS_CAP_U32_2);
pub const XATTR_CAPS_SZ           : c_int = XATTR_CAPS_SZ_2;
pub const VFS_CAP_U32             : c_int = VFS_CAP_U32_2;
pub const VFS_CAP_REVISION        : c_int = VFS_CAP_REVISION_2;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct vfs_cap_data_array {
    pub permitted:   __le32,
    pub inheritable: __le32,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct vfs_cap_data {
    pub magic_etc: __le32,
    pub data: [vfs_cap_data_array; VFS_CAP_U32 as usize],
}

pub const _LINUX_CAPABILITY_VERSION : c_int = _LINUX_CAPABILITY_VERSION_1;
pub const _LINUX_CAPABILITY_U32S    : c_int = _LINUX_CAPABILITY_U32S_1;

pub const CAP_CHOWN            : c_int = 0;
pub const CAP_DAC_OVERRIDE     : c_int = 1;
pub const CAP_DAC_READ_SEARCH  : c_int = 2;
pub const CAP_FOWNER           : c_int = 3;
pub const CAP_FSETID           : c_int = 4;
pub const CAP_KILL             : c_int = 5;
pub const CAP_SETGID           : c_int = 6;
pub const CAP_SETUID           : c_int = 7;
pub const CAP_SETPCAP          : c_int = 8;
pub const CAP_LINUX_IMMUTABLE  : c_int = 9;
pub const CAP_NET_BIND_SERVICE : c_int = 10;
pub const CAP_NET_BROADCAST    : c_int = 11;
pub const CAP_NET_ADMIN        : c_int = 12;
pub const CAP_NET_RAW          : c_int = 13;
pub const CAP_IPC_LOCK         : c_int = 14;
pub const CAP_IPC_OWNER        : c_int = 15;
pub const CAP_SYS_MODULE       : c_int = 16;
pub const CAP_SYS_RAWIO        : c_int = 17;
pub const CAP_SYS_CHROOT       : c_int = 18;
pub const CAP_SYS_PTRACE       : c_int = 19;
pub const CAP_SYS_PACCT        : c_int = 20;
pub const CAP_SYS_ADMIN        : c_int = 21;
pub const CAP_SYS_BOOT         : c_int = 22;
pub const CAP_SYS_NICE         : c_int = 23;
pub const CAP_SYS_RESOURCE     : c_int = 24;
pub const CAP_SYS_TIME         : c_int = 25;
pub const CAP_SYS_TTY_CONFIG   : c_int = 26;
pub const CAP_MKNOD            : c_int = 27;
pub const CAP_LEASE            : c_int = 28;
pub const CAP_AUDIT_WRITE      : c_int = 29;
pub const CAP_AUDIT_CONTROL    : c_int = 30;
pub const CAP_SETFCAP          : c_int = 31;
pub const CAP_MAC_OVERRIDE     : c_int = 32;
pub const CAP_MAC_ADMIN        : c_int = 33;
pub const CAP_SYSLOG           : c_int = 34;
pub const CAP_WAKE_ALARM       : c_int = 35;
pub const CAP_BLOCK_SUSPEND    : c_int = 36;
pub const CAP_AUDIT_READ       : c_int = 37;
pub const CAP_LAST_CAP         : c_int = CAP_AUDIT_READ;

pub fn cap_valid(x: c_int) -> bool { x >= 0 && x <= CAP_LAST_CAP }

pub fn CAP_TO_INDEX(x: c_int) -> c_int { x >> 5 }
pub fn CAP_TO_MASK(x: c_int) -> c_int { 1 << (x & 31) }

// key.h

pub type key_serial_t = i32;
pub type key_perm_t   = u32;

// uio.h

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct iovec {
    pub iov_base: *mut c_void,
    pub iov_len: user_size_t,
}

pub const UIO_FASTIOV : usize = 8;
pub const UIO_MAXIOV  : usize = 1024;

//////////////////////////////
// include/uapi/linux/socket.h
//////////////////////////////

pub type __kernel_sa_family_t = c_ushort;

pub const _K_SS_MAXSIZE   : usize = 128;
pub const _K_SS_ALIGNSIZE : usize = USER_POINTER_ALIGN;

// NOTE: The C structure looks different but has an `aligned` attribute with
// _K_SS_ALIGNSIZE alignment. We just use u64 to make sure that we get (at least) the
// correct alignment.  This is actually a bit too much on x32 which aligns u64 at 8 bytes
// instead of 4 but what can you do? (The alternative would be usize which is a bit too
// unwieldy for my taste.)
#[repr(C)]
#[derive(Pod, Copy, Clone)]
pub struct __kernel_sockaddr_storage {
    pub _data: [u64; _K_SS_MAXSIZE / 8],
}

/////////////////////////
// include/linux/socket.h
/////////////////////////

#[repr(C)]
#[derive(Pod, Copy, Clone)]
pub struct sockaddr {
    pub sa_family: sa_family_t,
    pub sa_data: [k_char; 14],
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct linger {
    pub l_onoff: k_int,
    pub l_linger: k_int,
}

// NOTE: This is written so that it agrees with user_msghdr in non-compat context and
// compat_msghdr in compat context.
#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct msghdr {
    pub msg_name:       *mut c_void,
    pub msg_namelen:    c_int,
    pub msg_iov:        *mut iovec,
    pub msg_iovlen:     user_size_t,
    pub msg_control:    *mut c_void,
    pub msg_controllen: user_size_t,
    pub msg_flags:      c_uint,
}

// NOTE: As above.
#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct mmsghdr {
    pub msg_hdr: msghdr,
    pub msg_len: c_uint,
}

// NOTE: As above.
#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct cmsghdr {
    pub cmsg_len:   user_size_t,
    pub cmsg_level: c_int,
    pub cmsg_type:  c_int,
}

pub const SCM_RIGHTS      : c_int = 0x01;
pub const SCM_CREDENTIALS : c_int = 0x02;
pub const SCM_SECURITY    : c_int = 0x03;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ucred {
    pub pid: __u32,
    pub uid: __u32,
    pub gid: __u32,
}

pub const AF_UNSPEC      : c_int = 0;
pub const AF_UNIX        : c_int = 1;
pub const AF_LOCAL       : c_int = 1;
pub const AF_INET        : c_int = 2;
pub const AF_AX25        : c_int = 3;
pub const AF_IPX         : c_int = 4;
pub const AF_APPLETALK   : c_int = 5;
pub const AF_NETROM      : c_int = 6;
pub const AF_BRIDGE      : c_int = 7;
pub const AF_ATMPVC      : c_int = 8;
pub const AF_X25         : c_int = 9;
pub const AF_INET6       : c_int = 10;
pub const AF_ROSE        : c_int = 11;
pub const AF_DECnet      : c_int = 12;
pub const AF_NETBEUI     : c_int = 13;
pub const AF_SECURITY    : c_int = 14;
pub const AF_KEY         : c_int = 15;
pub const AF_NETLINK     : c_int = 16;
pub const AF_ROUTE       : c_int = AF_NETLINK;
pub const AF_PACKET      : c_int = 17;
pub const AF_ASH         : c_int = 18;
pub const AF_ECONET      : c_int = 19;
pub const AF_ATMSVC      : c_int = 20;
pub const AF_RDS         : c_int = 21;
pub const AF_SNA         : c_int = 22;
pub const AF_IRDA        : c_int = 23;
pub const AF_PPPOX       : c_int = 24;
pub const AF_WANPIPE     : c_int = 25;
pub const AF_LLC         : c_int = 26;
pub const AF_IB          : c_int = 27;
pub const AF_CAN         : c_int = 29;
pub const AF_TIPC        : c_int = 30;
pub const AF_BLUETOOTH   : c_int = 31;
pub const AF_IUCV        : c_int = 32;
pub const AF_RXRPC       : c_int = 33;
pub const AF_ISDN        : c_int = 34;
pub const AF_PHONET      : c_int = 35;
pub const AF_IEEE802154  : c_int = 36;
pub const AF_CAIF        : c_int = 37;
pub const AF_ALG         : c_int = 38;
pub const AF_NFC         : c_int = 39;
pub const AF_VSOCK       : c_int = 40;
pub const AF_MAX         : c_int = 41;

pub const PF_UNSPEC      : c_int = AF_UNSPEC;
pub const PF_UNIX        : c_int = AF_UNIX;
pub const PF_LOCAL       : c_int = AF_LOCAL;
pub const PF_INET        : c_int = AF_INET;
pub const PF_AX25        : c_int = AF_AX25;
pub const PF_IPX         : c_int = AF_IPX;
pub const PF_APPLETALK   : c_int = AF_APPLETALK;
pub const PF_NETROM      : c_int = AF_NETROM;
pub const PF_BRIDGE      : c_int = AF_BRIDGE;
pub const PF_ATMPVC      : c_int = AF_ATMPVC;
pub const PF_X25         : c_int = AF_X25;
pub const PF_INET6       : c_int = AF_INET6;
pub const PF_ROSE        : c_int = AF_ROSE;
pub const PF_DECnet      : c_int = AF_DECnet;
pub const PF_NETBEUI     : c_int = AF_NETBEUI;
pub const PF_SECURITY    : c_int = AF_SECURITY;
pub const PF_KEY         : c_int = AF_KEY;
pub const PF_NETLINK     : c_int = AF_NETLINK;
pub const PF_ROUTE       : c_int = AF_ROUTE;
pub const PF_PACKET      : c_int = AF_PACKET;
pub const PF_ASH         : c_int = AF_ASH;
pub const PF_ECONET      : c_int = AF_ECONET;
pub const PF_ATMSVC      : c_int = AF_ATMSVC;
pub const PF_RDS         : c_int = AF_RDS;
pub const PF_SNA         : c_int = AF_SNA;
pub const PF_IRDA        : c_int = AF_IRDA;
pub const PF_PPPOX       : c_int = AF_PPPOX;
pub const PF_WANPIPE     : c_int = AF_WANPIPE;
pub const PF_LLC         : c_int = AF_LLC;
pub const PF_IB          : c_int = AF_IB;
pub const PF_CAN         : c_int = AF_CAN;
pub const PF_TIPC        : c_int = AF_TIPC;
pub const PF_BLUETOOTH   : c_int = AF_BLUETOOTH;
pub const PF_IUCV        : c_int = AF_IUCV;
pub const PF_RXRPC       : c_int = AF_RXRPC;
pub const PF_ISDN        : c_int = AF_ISDN;
pub const PF_PHONET      : c_int = AF_PHONET;
pub const PF_IEEE802154  : c_int = AF_IEEE802154;
pub const PF_CAIF        : c_int = AF_CAIF;
pub const PF_ALG         : c_int = AF_ALG;
pub const PF_NFC         : c_int = AF_NFC;
pub const PF_VSOCK       : c_int = AF_VSOCK;
pub const PF_MAX         : c_int = AF_MAX;

pub const SOMAXCONN : c_int = 128;

pub const MSG_OOB              : c_int = 1;
pub const MSG_PEEK             : c_int = 2;
pub const MSG_DONTROUTE        : c_int = 4;
pub const MSG_TRYHARD          : c_int = 4;
pub const MSG_CTRUNC           : c_int = 8;
pub const MSG_PROBE            : c_int = 0x10;
pub const MSG_TRUNC            : c_int = 0x20;
pub const MSG_DONTWAIT         : c_int = 0x40;
pub const MSG_EOR              : c_int = 0x80;
pub const MSG_WAITALL          : c_int = 0x100;
pub const MSG_FIN              : c_int = 0x200;
pub const MSG_SYN              : c_int = 0x400;
pub const MSG_CONFIRM          : c_int = 0x800;
pub const MSG_RST              : c_int = 0x1000;
pub const MSG_ERRQUEUE         : c_int = 0x2000;
pub const MSG_NOSIGNAL         : c_int = 0x4000;
pub const MSG_MORE             : c_int = 0x8000;
pub const MSG_WAITFORONE       : c_int = 0x10000;
pub const MSG_SENDPAGE_NOTLAST : c_int = 0x20000;
pub const MSG_EOF              : c_int = MSG_FIN;
pub const MSG_FASTOPEN         : c_int = 0x20000000;
pub const MSG_CMSG_CLOEXEC     : c_int = 0x40000000;

pub const SOL_IP        : c_int = 0;
pub const SOL_TCP       : c_int = 6;
pub const SOL_UDP       : c_int = 17;
pub const SOL_IPV6      : c_int = 41;
pub const SOL_ICMPV6    : c_int = 58;
pub const SOL_SCTP      : c_int = 132;
pub const SOL_UDPLITE   : c_int = 136;
pub const SOL_RAW       : c_int = 255;
pub const SOL_IPX       : c_int = 256;
pub const SOL_AX25      : c_int = 257;
pub const SOL_ATALK     : c_int = 258;
pub const SOL_NETROM    : c_int = 259;
pub const SOL_ROSE      : c_int = 260;
pub const SOL_DECNET    : c_int = 261;
pub const SOL_X25       : c_int = 262;
pub const SOL_PACKET    : c_int = 263;
pub const SOL_ATM       : c_int = 264;
pub const SOL_AAL       : c_int = 265;
pub const SOL_IRDA      : c_int = 266;
pub const SOL_NETBEUI   : c_int = 267;
pub const SOL_LLC       : c_int = 268;
pub const SOL_DCCP      : c_int = 269;
pub const SOL_NETLINK   : c_int = 270;
pub const SOL_TIPC      : c_int = 271;
pub const SOL_RXRPC     : c_int = 272;
pub const SOL_PPPOL2TP  : c_int = 273;
pub const SOL_BLUETOOTH : c_int = 274;
pub const SOL_PNPIPE    : c_int = 275;
pub const SOL_RDS       : c_int = 276;
pub const SOL_IUCV      : c_int = 277;
pub const SOL_CAIF      : c_int = 278;
pub const SOL_ALG       : c_int = 279;
pub const SOL_NFC       : c_int = 280;

pub const IPX_TYPE : c_int = 1;

// timex.h

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct timex {
    pub modes:     c_uint,
    pub offset:    __kernel_long_t,
    pub freq:      __kernel_long_t,
    pub maxerror:  __kernel_long_t,
    pub esterror:  __kernel_long_t,
    pub status:    c_int,
    pub constant:  __kernel_long_t,
    pub precision: __kernel_long_t,
    pub tolerance: __kernel_long_t,
    pub time:      timeval,
    pub tick:      __kernel_long_t,
    pub ppsfreq:   __kernel_long_t,
    pub jitter:    __kernel_long_t,
    pub shift:     c_int,
    pub stabil:    __kernel_long_t,
    pub jitcnt:    __kernel_long_t,
    pub calcnt:    __kernel_long_t,
    pub errcnt:    __kernel_long_t,
    pub stbcnt:    __kernel_long_t,

    pub tai: c_int,

    pub _unused: [u32; 11],
}

pub const ADJ_OFFSET            : c_int = 0x0001;
pub const ADJ_FREQUENCY         : c_int = 0x0002;
pub const ADJ_MAXERROR          : c_int = 0x0004;
pub const ADJ_ESTERROR          : c_int = 0x0008;
pub const ADJ_STATUS            : c_int = 0x0010;
pub const ADJ_TIMECONST         : c_int = 0x0020;
pub const ADJ_TAI               : c_int = 0x0080;
pub const ADJ_SETOFFSET         : c_int = 0x0100;
pub const ADJ_MICRO             : c_int = 0x1000;
pub const ADJ_NANO              : c_int = 0x2000;
pub const ADJ_TICK              : c_int = 0x4000;
pub const ADJ_OFFSET_SINGLESHOT : c_int = 0x8001;
pub const ADJ_OFFSET_SS_READ    : c_int = 0xa001;

pub const MOD_OFFSET    : c_int = ADJ_OFFSET;
pub const MOD_FREQUENCY : c_int = ADJ_FREQUENCY;
pub const MOD_MAXERROR  : c_int = ADJ_MAXERROR;
pub const MOD_ESTERROR  : c_int = ADJ_ESTERROR;
pub const MOD_STATUS    : c_int = ADJ_STATUS;
pub const MOD_TIMECONST : c_int = ADJ_TIMECONST;
pub const MOD_TAI       : c_int = ADJ_TAI;
pub const MOD_MICRO     : c_int = ADJ_MICRO;
pub const MOD_NANO      : c_int = ADJ_NANO;

pub const STA_PLL       : c_int = 0x0001;
pub const STA_PPSFREQ   : c_int = 0x0002;
pub const STA_PPSTIME   : c_int = 0x0004;
pub const STA_FLL       : c_int = 0x0008;
pub const STA_INS       : c_int = 0x0010;
pub const STA_DEL       : c_int = 0x0020;
pub const STA_UNSYNC    : c_int = 0x0040;
pub const STA_FREQHOLD  : c_int = 0x0080;
pub const STA_PPSSIGNAL : c_int = 0x0100;
pub const STA_PPSJITTER : c_int = 0x0200;
pub const STA_PPSWANDER : c_int = 0x0400;
pub const STA_PPSERROR  : c_int = 0x0800;
pub const STA_CLOCKERR  : c_int = 0x1000;
pub const STA_NANO      : c_int = 0x2000;
pub const STA_MODE      : c_int = 0x4000;
pub const STA_CLK       : c_int = 0x8000;

pub const STA_RONLY : c_int = STA_PPSSIGNAL | STA_PPSJITTER | STA_PPSWANDER |
                              STA_PPSERROR | STA_CLOCKERR | STA_NANO | STA_MODE | STA_CLK;

pub const TIME_OK    : c_int = 0;
pub const TIME_INS   : c_int = 1;
pub const TIME_DEL   : c_int = 2;
pub const TIME_OOP   : c_int = 3;
pub const TIME_WAIT  : c_int = 4;
pub const TIME_ERROR : c_int = 5;
pub const TIME_BAD   : c_int = TIME_ERROR;

// aio_abi.h

pub type aio_context_t = __kernel_ulong_t;

pub const IOCB_CMD_PREAD   : c_int = 0;
pub const IOCB_CMD_PWRITE  : c_int = 1;
pub const IOCB_CMD_FSYNC   : c_int = 2;
pub const IOCB_CMD_FDSYNC  : c_int = 3;
pub const IOCB_CMD_PREADX  : c_int = 4;
pub const IOCB_CMD_POLL    : c_int = 5;
pub const IOCB_CMD_NOOP    : c_int = 6;
pub const IOCB_CMD_PREADV  : c_int = 7;
pub const IOCB_CMD_PWRITEV : c_int = 8;

pub const IOCB_FLAG_RESFD : c_int = 1 << 0;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct io_event {
    pub data: __u64,
    pub obj:  __u64,
    pub res:  __s64,
    pub res2: __s64,
}

#[cfg(target_endian = "little")]
#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct iocb {
    pub aio_data:       __u64,
    pub aio_key:        __u32,
    pub aio_reserved1:  __u32,
    pub aio_lio_opcode: __u16,
    pub aio_reqprio:    __s16,
    pub aio_fildes:     __u32,
    pub aio_buf:        __u64,
    pub aio_nbytes:     __u64,
    pub aio_offset:     __s64,
    pub aio_reserved2:  __u64,
    pub aio_flags:      __u32,
    pub aio_resfd:      __u32,
}

#[cfg(target_endian = "big")]
#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct iocb {
    pub aio_data:       __u64,
    pub aio_reserved1:  __u32, // these two fields are
    pub aio_key:        __u32, // swapped
    pub aio_lio_opcode: __u16,
    pub aio_reqprio:    __s16,
    pub aio_fildes:     __u32,
    pub aio_buf:        __u64,
    pub aio_nbytes:     __u64,
    pub aio_offset:     __s64,
    pub aio_reserved2:  __u64,
    pub aio_flags:      __u32,
    pub aio_resfd:      __u32,
}

// fs.h

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct file_handle {
    pub handle_bytes: __u32,
    pub handle_type: k_int,
    pub f_handle: [c_uchar; 0],
}

// getcpu.h

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct getcpu_cache {
    pub blob: [k_long; 128 / BYTES_PER_LONG],
}

// kexec.h

pub const KEXEC_ON_CRASH         : c_int = 0x00000001;
pub const KEXEC_PRESERVE_CONTEXT : c_int = 0x00000002;
pub const KEXEC_ARCH_MASK        : c_int = 0xffff0000u64 as _;

pub const KEXEC_FILE_UNLOAD       : c_int = 0x00000001;
pub const KEXEC_FILE_ON_CRASH     : c_int = 0x00000002;
pub const KEXEC_FILE_NO_INITRAMFS : c_int = 0x00000004;

pub const KEXEC_ARCH_DEFAULT : c_int =  0 << 16;
pub const KEXEC_ARCH_386     : c_int =  3 << 16;
pub const KEXEC_ARCH_68K     : c_int =  4 << 16;
pub const KEXEC_ARCH_X86_64  : c_int = 62 << 16;
pub const KEXEC_ARCH_PPC     : c_int = 20 << 16;
pub const KEXEC_ARCH_PPC64   : c_int = 21 << 16;
pub const KEXEC_ARCH_IA_64   : c_int = 50 << 16;
pub const KEXEC_ARCH_ARM     : c_int = 40 << 16;
pub const KEXEC_ARCH_S390    : c_int = 22 << 16;
pub const KEXEC_ARCH_SH      : c_int = 42 << 16;
pub const KEXEC_ARCH_MIPS_LE : c_int = 10 << 16;
pub const KEXEC_ARCH_MIPS    : c_int =  8 << 16;

pub const KEXEC_SEGMENT_MAX : c_int = 16;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct kexec_segment {
    pub buf: *const c_void,
    pub bufsz: user_size_t,
    pub mem: *const c_void,
    pub memsz: user_size_t,
}

// straight from fs/readdir.c

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct linux_dirent {
    pub d_ino:    k_ulong,
    pub d_off:    k_ulong,
    pub d_reclen: k_ushort,
    pub d_name: [k_char; 1],
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct old_linux_dirent {
    pub d_ino:    k_ulong,
    pub d_offset: k_ulong,
    pub d_namlen: k_ushort,
    pub d_name: [k_char; 1],
}

// straight from mm/mmap.c

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct mmap_arg_struct {
    pub addr:   k_ulong,
    pub len:    k_ulong,
    pub prot:   k_ulong,
    pub flags:  k_ulong,
    pub fd:     k_ulong,
    pub offset: k_ulong,
}

// mqueue.h

pub const MQ_PRIO_MAX  : c_int = 32768;
pub const MQ_BYTES_MAX : c_int = 819200;

// XXX: Is this type correct?
#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct mq_attr {
    pub mq_flags:   __kernel_long_t,
    pub mq_maxmsg:  __kernel_long_t,
    pub mq_msgsize: __kernel_long_t,
    pub mq_curmsgs: __kernel_long_t,
    pub __reserved: [__kernel_long_t; 4],
}

pub const NOTIFY_NONE       : c_int = 0;
pub const NOTIFY_WOKENUP    : c_int = 1;
pub const NOTIFY_REMOVED    : c_int = 2;
pub const NOTIFY_COOKIE_LEN : c_int = 32;

// ipc.h

pub const IPC_PRIVATE : __kernel_key_t = 0;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ipc_perm {
    pub key:  __kernel_key_t,
    pub uid:  __kernel_uid_t,
    pub gid:  __kernel_gid_t,
    pub cuid: __kernel_uid_t,
    pub cgid: __kernel_gid_t,
    pub mode: __kernel_mode_t,
    pub seq:  c_ushort,
}

pub const IPC_CREAT  : c_int = 0o0001000;
pub const IPC_EXCL   : c_int = 0o0002000;
pub const IPC_NOWAIT : c_int = 0o0004000;

pub const IPC_DIPC : c_int = 00010000;
pub const IPC_OWN  : c_int = 00020000;

pub const IPC_RMID : c_int = 0;
pub const IPC_SET  : c_int = 1;
pub const IPC_STAT : c_int = 2;
pub const IPC_INFO : c_int = 3;

pub const IPC_OLD : c_int = 0;
pub const IPC_64  : c_int = 0x0100;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ipc_kludge {
    pub msgp: *mut msgbuf,
    pub msgtyp: c_long, // XXX: Maybe use k_long here?
}

pub const SEMOP      : c_int = 1;
pub const SEMGET     : c_int = 2;
pub const SEMCTL     : c_int = 3;
pub const SEMTIMEDOP : c_int = 4;
pub const MSGSND     : c_int = 11;
pub const MSGRCV     : c_int = 12;
pub const MSGGET     : c_int = 13;
pub const MSGCTL     : c_int = 14;
pub const SHMAT      : c_int = 21;
pub const SHMDT      : c_int = 22;
pub const SHMGET     : c_int = 23;
pub const SHMCTL     : c_int = 24;
pub const DIPC       : c_int = 25;

pub fn IPCCALL(version: c_int, op: c_int) -> c_int { version << 16 | op }

// msg.h

pub const MSG_STAT : c_int = 11;
pub const MSG_INFO : c_int = 12;

pub const MSG_NOERROR : c_int = 0o10000;
pub const MSG_EXCEPT  : c_int = 0o20000;
pub const MSG_COPY    : c_int = 0o40000;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct msgbuf {
    pub mtype: __kernel_long_t,
    pub mtext: [c_char; 1],
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct msginfo {
    pub msgpool: c_int,
    pub msgmap:  c_int,
    pub msgmax:  c_int,
    pub msgmnb:  c_int,
    pub msgmni:  c_int,
    pub msgssz:  c_int,
    pub msgtql:  c_int,
    pub msgseg:  c_ushort,
}

pub const MSGMNI : c_int = 32000;
pub const MSGMAX : c_int = 8192;
pub const MSGMNB : c_int = 16384;

pub const MSGPOOL : c_int = MSGMNI * MSGMNB / 1024;
pub const MSGTQL : c_int = MSGMNB;
pub const MSGMAP : c_int =  MSGMNB;
pub const MSGSSZ : c_int =  16;
pub const __MSGSEG : c_int = (MSGPOOL * 1024) / MSGSSZ;

// utsname.h

pub const __OLD_UTS_LEN : usize = 8;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct oldold_utsname {
    pub sysname:  [c_char; 9],
    pub nodename: [c_char; 9],
    pub release:  [c_char; 9],
    pub version:  [c_char; 9],
    pub machine:  [c_char; 9],
}

pub const __NEW_UTS_LEN : usize = 64;

#[repr(C)]
#[derive(Copy)]
pub struct old_utsname {
    pub sysname:  [c_char; 65],
    pub nodename: [c_char; 65],
    pub release:  [c_char; 65],
    pub version:  [c_char; 65],
    pub machine:  [c_char; 65],
}

unsafe impl crate::util::pod::Pod for old_utsname { }

impl Clone for old_utsname {
    fn clone(&self) -> Self {
        return *self;
    }
}

#[repr(C)]
#[derive(Copy)]
pub struct new_utsname {
    pub sysname:    [c_char; __NEW_UTS_LEN + 1],
    pub nodename:   [c_char; __NEW_UTS_LEN + 1],
    pub release:    [c_char; __NEW_UTS_LEN + 1],
    pub version:    [c_char; __NEW_UTS_LEN + 1],
    pub machine:    [c_char; __NEW_UTS_LEN + 1],
    pub domainname: [c_char; __NEW_UTS_LEN + 1],
}

unsafe impl crate::util::pod::Pod for new_utsname { }

impl Clone for new_utsname {
    fn clone(&self) -> Self {
        return *self;
    }
}

// signal.h

#[repr(C)]
#[derive(Copy, Clone)]
pub struct old_sigaction {
    pub sa_handler:  __sighandler_t,
    pub sa_mask:     old_sigset_t,
    pub sa_flags:    k_ulong,
    pub sa_restorer: __sigrestore_t,
}

unsafe impl crate::util::pod::Pod for old_sigaction { }

// perf_event.h

pub const PERF_TYPE_HARDWARE   : c_int = 0;
pub const PERF_TYPE_SOFTWARE   : c_int = 1;
pub const PERF_TYPE_TRACEPOINT : c_int = 2;
pub const PERF_TYPE_HW_CACHE   : c_int = 3;
pub const PERF_TYPE_RAW        : c_int = 4;
pub const PERF_TYPE_BREAKPOINT : c_int = 5;
pub const PERF_TYPE_MAX        : c_int = 6;

pub const PERF_COUNT_HW_CPU_CYCLES              : c_int = 0;
pub const PERF_COUNT_HW_INSTRUCTIONS            : c_int = 1;
pub const PERF_COUNT_HW_CACHE_REFERENCES        : c_int = 2;
pub const PERF_COUNT_HW_CACHE_MISSES            : c_int = 3;
pub const PERF_COUNT_HW_BRANCH_INSTRUCTIONS     : c_int = 4;
pub const PERF_COUNT_HW_BRANCH_MISSES           : c_int = 5;
pub const PERF_COUNT_HW_BUS_CYCLES              : c_int = 6;
pub const PERF_COUNT_HW_STALLED_CYCLES_FRONTEND : c_int = 7;
pub const PERF_COUNT_HW_STALLED_CYCLES_BACKEND  : c_int = 8;
pub const PERF_COUNT_HW_REF_CPU_CYCLES          : c_int = 9;
pub const PERF_COUNT_HW_MAX                     : c_int = 10;

pub const PERF_COUNT_HW_CACHE_L1D  : c_int = 0;
pub const PERF_COUNT_HW_CACHE_L1I  : c_int = 1;
pub const PERF_COUNT_HW_CACHE_LL   : c_int = 2;
pub const PERF_COUNT_HW_CACHE_DTLB : c_int = 3;
pub const PERF_COUNT_HW_CACHE_ITLB : c_int = 4;
pub const PERF_COUNT_HW_CACHE_BPU  : c_int = 5;
pub const PERF_COUNT_HW_CACHE_NODE : c_int = 6;
pub const PERF_COUNT_HW_CACHE_MAX  : c_int = 8;

pub const PERF_COUNT_HW_CACHE_OP_READ     : c_int = 0;
pub const PERF_COUNT_HW_CACHE_OP_WRITE    : c_int = 1;
pub const PERF_COUNT_HW_CACHE_OP_PREFETCH : c_int = 2;
pub const PERF_COUNT_HW_CACHE_OP_MAX      : c_int = 3;

pub const PERF_COUNT_HW_CACHE_RESULT_ACCESS : c_int = 0;
pub const PERF_COUNT_HW_CACHE_RESULT_MISS   : c_int = 1;
pub const PERF_COUNT_HW_CACHE_RESULT_MAX    : c_int = 2;

pub const PERF_COUNT_SW_CPU_CLOCK        : c_int = 0;
pub const PERF_COUNT_SW_TASK_CLOCK       : c_int = 1;
pub const PERF_COUNT_SW_PAGE_FAULTS      : c_int = 2;
pub const PERF_COUNT_SW_CONTEXT_SWITCHES : c_int = 3;
pub const PERF_COUNT_SW_CPU_MIGRATIONS   : c_int = 4;
pub const PERF_COUNT_SW_PAGE_FAULTS_MIN  : c_int = 5;
pub const PERF_COUNT_SW_PAGE_FAULTS_MAJ  : c_int = 6;
pub const PERF_COUNT_SW_ALIGNMENT_FAULTS : c_int = 7;
pub const PERF_COUNT_SW_EMULATION_FAULTS : c_int = 8;
pub const PERF_COUNT_SW_DUMMY            : c_int = 9;
pub const PERF_COUNT_SW_MAX              : c_int = 10;

pub const PERF_SAMPLE_IP           : c_uint = 1 << 0;
pub const PERF_SAMPLE_TID          : c_uint = 1 << 1;
pub const PERF_SAMPLE_TIME         : c_uint = 1 << 2;
pub const PERF_SAMPLE_ADDR         : c_uint = 1 << 3;
pub const PERF_SAMPLE_READ         : c_uint = 1 << 4;
pub const PERF_SAMPLE_CALLCHAIN    : c_uint = 1 << 5;
pub const PERF_SAMPLE_ID           : c_uint = 1 << 6;
pub const PERF_SAMPLE_CPU          : c_uint = 1 << 7;
pub const PERF_SAMPLE_PERIOD       : c_uint = 1 << 8;
pub const PERF_SAMPLE_STREAM_ID    : c_uint = 1 << 9;
pub const PERF_SAMPLE_RAW          : c_uint = 1 << 10;
pub const PERF_SAMPLE_BRANCH_STACK : c_uint = 1 << 11;
pub const PERF_SAMPLE_REGS_USER    : c_uint = 1 << 12;
pub const PERF_SAMPLE_STACK_USER   : c_uint = 1 << 13;
pub const PERF_SAMPLE_WEIGHT       : c_uint = 1 << 14;
pub const PERF_SAMPLE_DATA_SRC     : c_uint = 1 << 15;
pub const PERF_SAMPLE_IDENTIFIER   : c_uint = 1 << 16;
pub const PERF_SAMPLE_TRANSACTION  : c_uint = 1 << 17;
pub const PERF_SAMPLE_REGS_INTR    : c_uint = 1 << 18;
pub const PERF_SAMPLE_MAX          : c_uint = 1 << 19;

pub const PERF_SAMPLE_BRANCH_USER       : c_uint = 1 << 0;
pub const PERF_SAMPLE_BRANCH_KERNEL     : c_uint = 1 << 1;
pub const PERF_SAMPLE_BRANCH_HV         : c_uint = 1 << 2;
pub const PERF_SAMPLE_BRANCH_ANY        : c_uint = 1 << 3;
pub const PERF_SAMPLE_BRANCH_ANY_CALL   : c_uint = 1 << 4;
pub const PERF_SAMPLE_BRANCH_ANY_RETURN : c_uint = 1 << 5;
pub const PERF_SAMPLE_BRANCH_IND_CALL   : c_uint = 1 << 6;
pub const PERF_SAMPLE_BRANCH_ABORT_TX   : c_uint = 1 << 7;
pub const PERF_SAMPLE_BRANCH_IN_TX      : c_uint = 1 << 8;
pub const PERF_SAMPLE_BRANCH_NO_TX      : c_uint = 1 << 9;
pub const PERF_SAMPLE_BRANCH_COND       : c_uint = 1 << 10;
pub const PERF_SAMPLE_BRANCH_MAX        : c_uint = 1 << 11;

pub const PERF_SAMPLE_BRANCH_PLM_ALL : c_uint = PERF_SAMPLE_BRANCH_USER |
                                                PERF_SAMPLE_BRANCH_KERNEL |
                                                PERF_SAMPLE_BRANCH_HV;

pub const PERF_SAMPLE_REGS_ABI_NONE : c_int = 0;
pub const PERF_SAMPLE_REGS_ABI_32   : c_int = 1;
pub const PERF_SAMPLE_REGS_ABI_64   : c_int = 2;

pub const PERF_TXN_ELISION        : c_ulonglong = (1          << 0);
pub const PERF_TXN_TRANSACTION    : c_ulonglong = (1          << 1);
pub const PERF_TXN_SYNC           : c_ulonglong = (1          << 2);
pub const PERF_TXN_ASYNC          : c_ulonglong = (1          << 3);
pub const PERF_TXN_RETRY          : c_ulonglong = (1          << 4);
pub const PERF_TXN_CONFLICT       : c_ulonglong = (1          << 5);
pub const PERF_TXN_CAPACITY_WRITE : c_ulonglong = (1          << 6);
pub const PERF_TXN_CAPACITY_READ  : c_ulonglong = (1          << 7);
pub const PERF_TXN_MAX            : c_ulonglong = (1          << 8);
pub const PERF_TXN_ABORT_MASK     : c_ulonglong = (0xffffffff << 32);
pub const PERF_TXN_ABORT_SHIFT    : c_ulonglong = 32;

pub const PERF_FORMAT_TOTAL_TIME_ENABLED : c_uint = 1 << 0;
pub const PERF_FORMAT_TOTAL_TIME_RUNNING : c_uint = 1 << 1;
pub const PERF_FORMAT_ID                 : c_uint = 1 << 2;
pub const PERF_FORMAT_GROUP              : c_uint = 1 << 3;
pub const PERF_FORMAT_MAX                : c_uint = 1 << 4;

pub const PERF_ATTR_SIZE_VER0 : c_int = 64;
pub const PERF_ATTR_SIZE_VER1 : c_int = 72;
pub const PERF_ATTR_SIZE_VER2 : c_int = 80;
pub const PERF_ATTR_SIZE_VER3 : c_int = 96;
pub const PERF_ATTR_SIZE_VER4 : c_int = 104;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct perf_event_attr {
    pub ty: __u32,
    pub size: __u32,
    pub config: __u64,
    //union {
    //	__u64		sample_period;
    //	__u64		sample_freq;
    //};
    __union_one: __u64,
    pub sample_type: __u64,
    pub read_format: __u64,
    //__u64		disabled       :  1,
    //			inherit	       :  1,
    //			pinned	       :  1,
    //			exclusive      :  1,
    //			exclude_user   :  1,
    //			exclude_kernel :  1,
    //			exclude_hv     :  1,
    //			exclude_idle   :  1,
    //			mmap           :  1,
    //			comm	       :  1,
    //			freq           :  1,
    //			inherit_stat   :  1,
    //			enable_on_exec :  1,
    //			task           :  1,
    //			watermark      :  1,
    //			precise_ip     :  2,
    //			mmap_data      :  1,
    //			sample_id_all  :  1,
    //			exclude_host   :  1,
    //			exclude_guest  :  1,
    //			exclude_callchain_kernel : 1,
    //			exclude_callchain_user   : 1,
    //			mmap2          :  1,
    //			comm_exec      :  1,
    //			__reserved_1   : 39;
    pub perf_flags: __u64,
    //union {
    //	__u32		wakeup_events;
    //	__u32		wakeup_watermark;
    //};
    __union_two: __u32,
    pub bp_type: __u32,
    //union {
    //	__u64		bp_addr;
    //	__u64		config1;
    //};
    __union_three: __u64,
    //union {
    //	__u64		bp_len;
    //	__u64		config2;
    //};
    __union_four: __u64,
    pub branch_sample_type: __u64,
    pub sample_regs_user: __u64,
    pub sample_stack_user: __u32,
    pub __reserved_2: __u32,
    pub sample_regs_intr: __u64,
}

impl perf_event_attr {
    pub fn sample_period(&self) -> __u64 { self.__union_one }
    pub fn set_sample_period(&mut self, val: __u64) { self.__union_one = val }

    pub fn sample_freq(&self) -> __u64 { self.__union_one }
    pub fn set_sample_freq(&mut self, val: __u64) { self.__union_one = val }

    pub fn disabled                 (&self) -> bool { bf64_get(self.perf_flags, 0, 1) != 0 }
    pub fn inherit                  (&self) -> bool { bf64_get(self.perf_flags, 1, 1) != 0 }
    pub fn pinned                   (&self) -> bool { bf64_get(self.perf_flags, 2, 1) != 0 }
    pub fn exclusive                (&self) -> bool { bf64_get(self.perf_flags, 3, 1) != 0 }
    pub fn exclude_user             (&self) -> bool { bf64_get(self.perf_flags, 4, 1) != 0 }
    pub fn exclude_kernel           (&self) -> bool { bf64_get(self.perf_flags, 5, 1) != 0 }
    pub fn exclude_hv               (&self) -> bool { bf64_get(self.perf_flags, 6, 1) != 0 }
    pub fn exclude_idle             (&self) -> bool { bf64_get(self.perf_flags, 7, 1) != 0 }
    pub fn mmap                     (&self) -> bool { bf64_get(self.perf_flags, 8, 1) != 0 }
    pub fn comm                     (&self) -> bool { bf64_get(self.perf_flags, 9, 1) != 0 }
    pub fn freq                     (&self) -> bool { bf64_get(self.perf_flags, 10, 1) != 0 }
    pub fn inherit_stat             (&self) -> bool { bf64_get(self.perf_flags, 11, 1) != 0 }
    pub fn enable_on_exec           (&self) -> bool { bf64_get(self.perf_flags, 12, 1) != 0 }
    pub fn task                     (&self) -> bool { bf64_get(self.perf_flags, 13, 1) != 0 }
    pub fn watermark                (&self) -> bool { bf64_get(self.perf_flags, 14, 1) != 0 }
    pub fn precise_ip               (&self) -> u64  { bf64_get(self.perf_flags, 15, 2) }
    pub fn mmap_data                (&self) -> bool { bf64_get(self.perf_flags, 17, 1) != 0 }
    pub fn sample_id_all            (&self) -> bool { bf64_get(self.perf_flags, 18, 1) != 0 }
    pub fn exclude_host             (&self) -> bool { bf64_get(self.perf_flags, 19, 1) != 0 }
    pub fn exclude_guest            (&self) -> bool { bf64_get(self.perf_flags, 20, 1) != 0 }
    pub fn exclude_callchain_kernel (&self) -> bool { bf64_get(self.perf_flags, 21, 1) != 0 }
    pub fn exclude_callchain_user   (&self) -> bool { bf64_get(self.perf_flags, 22, 1) != 0 }
    pub fn mmap2                    (&self) -> bool { bf64_get(self.perf_flags, 23, 1) != 0 }
    pub fn comm_exec                (&self) -> bool { bf64_get(self.perf_flags, 24, 1) != 0 }

    pub fn set_disabled                 (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 0, 1, val as u64) }
    pub fn set_inherit                  (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 1, 1, val as u64) }
    pub fn set_pinned                   (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 2, 1, val as u64) }
    pub fn set_exclusive                (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 3, 1, val as u64) }
    pub fn set_exclude_user             (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 4, 1, val as u64) }
    pub fn set_exclude_kernel           (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 5, 1, val as u64) }
    pub fn set_exclude_hv               (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 6, 1, val as u64) }
    pub fn set_exclude_idle             (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 7, 1, val as u64) }
    pub fn set_mmap                     (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 8, 1, val as u64) }
    pub fn set_comm                     (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 9, 1, val as u64) }
    pub fn set_freq                     (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 10, 1, val as u64) }
    pub fn set_inherit_stat             (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 11, 1, val as u64) }
    pub fn set_enable_on_exec           (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 12, 1, val as u64) }
    pub fn set_task                     (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 13, 1, val as u64) }
    pub fn set_watermark                (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 14, 1, val as u64) }
    pub fn set_precise_ip               (&mut self, val: u64 ) { self.perf_flags = bf64_set(self.perf_flags, 15, 2, val) }
    pub fn set_mmap_data                (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 17, 1, val as u64) }
    pub fn set_sample_id_all            (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 18, 1, val as u64) }
    pub fn set_exclude_host             (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 19, 1, val as u64) }
    pub fn set_exclude_guest            (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 20, 1, val as u64) }
    pub fn set_exclude_callchain_kernel (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 21, 1, val as u64) }
    pub fn set_exclude_callchain_user   (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 22, 1, val as u64) }
    pub fn set_mmap2                    (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 23, 1, val as u64) }
    pub fn set_comm_exec                (&mut self, val: bool) { self.perf_flags = bf64_set(self.perf_flags, 24, 1, val as u64) }

    pub fn wakeup_events(&self) -> __u32 { self.__union_two }
    pub fn set_wakeup_events(&mut self, val: __u32) { self.__union_two = val }

    pub fn wakeup_watermark(&self) -> __u32 { self.__union_two }
    pub fn set_wakeup_watermark(&mut self, val: __u32) { self.__union_two = val }

    pub fn bp_addr(&self) -> __u64 { self.__union_three }
    pub fn set_bp_addr(&mut self, val: __u64) { self.__union_three = val }

    pub fn config1(&self) -> __u64 { self.__union_three }
    pub fn set_config1(&mut self, val: __u64) { self.__union_three = val }

    pub fn bp_len(&self) -> __u64 { self.__union_four }
    pub fn set_bp_len(&mut self, val: __u64) { self.__union_four = val }

    pub fn config2(&self) -> __u64 { self.__union_four }
    pub fn set_config2(&mut self, val: __u64) { self.__union_four = val }
}

pub const fn PERF_EVENT_IOC_ENABLE()     -> c_uint { _IO(b'$' as c_uint, 0) }
pub const fn PERF_EVENT_IOC_DISABLE()    -> c_uint { _IO(b'$' as c_uint, 1) }
pub const fn PERF_EVENT_IOC_REFRESH()    -> c_uint { _IO(b'$' as c_uint, 2) }
pub const fn PERF_EVENT_IOC_RESET()      -> c_uint { _IO(b'$' as c_uint, 3) }
pub const fn PERF_EVENT_IOC_PERIOD()     -> c_uint { _IOW::<__u64>(b'$' as c_uint, 4) }
pub const fn PERF_EVENT_IOC_SET_OUTPUT() -> c_uint { _IO(b'$' as c_uint, 5) }
pub const fn PERF_EVENT_IOC_SET_FILTER() -> c_uint { _IOW::<*mut c_char>(b'$' as c_uint, 6) }
pub const fn PERF_EVENT_IOC_ID()         -> c_uint { _IOR::<*mut __u64>(b'$' as c_uint, 7 ) }

pub const PERF_IOC_FLAG_GROUP : c_uint = 1;

#[repr(C)]
#[derive(Copy)]
pub struct perf_event_mmap_page {
    pub version:        __u32,
    pub compat_version: __u32,
    pub lock:           __u32,
    pub index:          __u32,
    pub offset:         __s64,
    pub time_enabled:   __u64,
    pub time_running:   __u64,
    //union {
    //	__u64	capabilities;
    //	struct {
    //		__u64	cap_bit0		: 1,
    //			cap_bit0_is_deprecated	: 1,

    //			cap_user_rdpmc		: 1,
    //			cap_user_time		: 1,
    //			cap_user_time_zero	: 1,
    //			cap_____res		: 59;
    //	};
    //};
    __union_one: __u64,
    pub pmc_width:   __u16,
    pub time_shift:  __u16,
    pub time_mult:   __u32,
    pub time_offset: __u64,
    pub time_zero:   __u64,
    pub size:        __u32,
    pub __reserved:  [__u8; 118*8+4],
    pub data_head:   __u64,
    pub data_tail:   __u64,
}

unsafe impl crate::util::pod::Pod for perf_event_mmap_page { }

impl Clone for perf_event_mmap_page {
    fn clone(&self) -> Self {
        return *self;
    }
}

impl perf_event_mmap_page {
    pub fn capabilities(&self) -> __u64 { self.__union_one }
    pub fn set_capabilities(&mut self, val: __u64) { self.__union_one = val }

    pub fn cap_bit0               (&self) -> bool { bf64_get(self.__union_one, 0, 1) != 0 }
    pub fn cap_bit0_is_deprecated (&self) -> bool { bf64_get(self.__union_one, 1, 1) != 0 }
    pub fn cap_user_rdpmc         (&self) -> bool { bf64_get(self.__union_one, 2, 1) != 0 }
    pub fn cap_user_time          (&self) -> bool { bf64_get(self.__union_one, 3, 1) != 0 }
    pub fn cap_user_time_zero     (&self) -> bool { bf64_get(self.__union_one, 4, 1) != 0 }

    pub fn set_cap_bit0               (&mut self, val: bool) { self.__union_one = bf64_set(self.__union_one, 0, 1, val as u64) }
    pub fn set_cap_bit0_is_deprecated (&mut self, val: bool) { self.__union_one = bf64_set(self.__union_one, 1, 1, val as u64) }
    pub fn set_cap_user_rdpmc         (&mut self, val: bool) { self.__union_one = bf64_set(self.__union_one, 2, 1, val as u64) }
    pub fn set_cap_user_time          (&mut self, val: bool) { self.__union_one = bf64_set(self.__union_one, 3, 1, val as u64) }
    pub fn set_cap_user_time_zero     (&mut self, val: bool) { self.__union_one = bf64_set(self.__union_one, 4, 1, val as u64) }
}


pub const PERF_RECORD_MISC_CPUMODE_MASK    : c_int = 7 << 0;
pub const PERF_RECORD_MISC_CPUMODE_UNKNOWN : c_int = 0 << 0;
pub const PERF_RECORD_MISC_KERNEL          : c_int = 1 << 0;
pub const PERF_RECORD_MISC_USER            : c_int = 2 << 0;
pub const PERF_RECORD_MISC_HYPERVISOR      : c_int = 3 << 0;
pub const PERF_RECORD_MISC_GUEST_KERNEL    : c_int = 4 << 0;
pub const PERF_RECORD_MISC_GUEST_USER      : c_int = 5 << 0;
pub const PERF_RECORD_MISC_MMAP_DATA       : c_int = 1 << 13;
pub const PERF_RECORD_MISC_COMM_EXEC       : c_int = 1 << 13;
pub const PERF_RECORD_MISC_EXACT_IP        : c_int = 1 << 14;
pub const PERF_RECORD_MISC_EXT_RESERVED    : c_int = 1 << 15;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct perf_event_header {
    pub ty: __u32,
    pub mi: __u16,
    pub si: __u16,
}

pub const PERF_RECORD_MMAP       : c_int = 1;
pub const PERF_RECORD_LOST       : c_int = 2;
pub const PERF_RECORD_COMM       : c_int = 3;
pub const PERF_RECORD_EXIT       : c_int = 4;
pub const PERF_RECORD_THROTTLE   : c_int = 5;
pub const PERF_RECORD_UNTHROTTLE : c_int = 6;
pub const PERF_RECORD_FORK       : c_int = 7;
pub const PERF_RECORD_READ       : c_int = 8;
pub const PERF_RECORD_SAMPLE     : c_int = 9;
pub const PERF_RECORD_MMAP2      : c_int = 10;
pub const PERF_RECORD_MAX        : c_int = 11;

pub const PERF_MAX_STACK_DEPTH : c_int = 127;

pub const PERF_CONTEXT_HV           : __u64 = -32i64 as _;
pub const PERF_CONTEXT_KERNEL       : __u64 = -128i64 as _;
pub const PERF_CONTEXT_USER         : __u64 = -512i64 as _;
pub const PERF_CONTEXT_GUEST        : __u64 = -2048i64 as _;
pub const PERF_CONTEXT_GUEST_KERNEL : __u64 = -2176i64 as _;
pub const PERF_CONTEXT_GUEST_USER   : __u64 = -2560i64 as _;
pub const PERF_CONTEXT_MAX          : __u64 = -4095i64 as _;

pub const PERF_FLAG_FD_NO_GROUP : c_ulong = 1 << 0;
pub const PERF_FLAG_FD_OUTPUT   : c_ulong = 1 << 1;
pub const PERF_FLAG_PID_CGROUP  : c_ulong = 1 << 2;
pub const PERF_FLAG_FD_CLOEXEC  : c_ulong = 1 << 3;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct perf_mem_data_src {
    pub val: __u64,
}

impl perf_mem_data_src {
    pub fn mem_op(&self)    -> __u64 { bf64_get(self.val, 0,              5) }
    pub fn mem_lvl(&self)   -> __u64 { bf64_get(self.val, 5,              14) }
    pub fn mem_snoop(&self) -> __u64 { bf64_get(self.val, 5 + 14,         5) }
    pub fn mem_lock(&self)  -> __u64 { bf64_get(self.val, 5 + 14 + 5,     2) }
    pub fn mem_dtlb(&self)  -> __u64 { bf64_get(self.val, 5 + 14 + 5 + 2, 7) }

    pub fn set_mem_op(&mut    self, val: __u64) { self.val = bf64_set(self.val, 0,              5, val) }
    pub fn set_mem_lvl(&mut   self, val: __u64) { self.val = bf64_set(self.val, 5,              14, val) }
    pub fn set_mem_snoop(&mut self, val: __u64) { self.val = bf64_set(self.val, 5 + 14,         5, val) }
    pub fn set_mem_lock(&mut  self, val: __u64) { self.val = bf64_set(self.val, 5 + 14 + 5,     2, val) }
    pub fn set_mem_dtlb(&mut  self, val: __u64) { self.val = bf64_set(self.val, 5 + 14 + 5 + 2, 7, val) }
}

pub const PERF_MEM_OP_NA        : c_int = 0x01;
pub const PERF_MEM_OP_LOAD      : c_int = 0x02;
pub const PERF_MEM_OP_STORE     : c_int = 0x04;
pub const PERF_MEM_OP_PFETCH    : c_int = 0x08;
pub const PERF_MEM_OP_EXEC      : c_int = 0x10;
pub const PERF_MEM_OP_SHIFT     : c_int = 0;
pub const PERF_MEM_LVL_NA       : c_int = 0x01;
pub const PERF_MEM_LVL_HIT      : c_int = 0x02;
pub const PERF_MEM_LVL_MISS     : c_int = 0x04;
pub const PERF_MEM_LVL_L1       : c_int = 0x08;
pub const PERF_MEM_LVL_LFB      : c_int = 0x10;
pub const PERF_MEM_LVL_L2       : c_int = 0x20;
pub const PERF_MEM_LVL_L3       : c_int = 0x40;
pub const PERF_MEM_LVL_LOC_RAM  : c_int = 0x80;
pub const PERF_MEM_LVL_REM_RAM1 : c_int = 0x100;
pub const PERF_MEM_LVL_REM_RAM2 : c_int = 0x200;
pub const PERF_MEM_LVL_REM_CCE1 : c_int = 0x400;
pub const PERF_MEM_LVL_REM_CCE2 : c_int = 0x800;
pub const PERF_MEM_LVL_IO       : c_int = 0x1000;
pub const PERF_MEM_LVL_UNC      : c_int = 0x2000;
pub const PERF_MEM_LVL_SHIFT    : c_int = 5;
pub const PERF_MEM_SNOOP_NA     : c_int = 0x01;
pub const PERF_MEM_SNOOP_NONE   : c_int = 0x02;
pub const PERF_MEM_SNOOP_HIT    : c_int = 0x04;
pub const PERF_MEM_SNOOP_MISS   : c_int = 0x08;
pub const PERF_MEM_SNOOP_HITM   : c_int = 0x10;
pub const PERF_MEM_SNOOP_SHIFT  : c_int = 19;
pub const PERF_MEM_LOCK_NA      : c_int = 0x01;
pub const PERF_MEM_LOCK_LOCKED  : c_int = 0x02;
pub const PERF_MEM_LOCK_SHIFT   : c_int = 24;
pub const PERF_MEM_TLB_NA       : c_int = 0x01;
pub const PERF_MEM_TLB_HIT      : c_int = 0x02;
pub const PERF_MEM_TLB_MISS     : c_int = 0x04;
pub const PERF_MEM_TLB_L1       : c_int = 0x08;
pub const PERF_MEM_TLB_L2       : c_int = 0x10;
pub const PERF_MEM_TLB_WK       : c_int = 0x20;
pub const PERF_MEM_TLB_OS       : c_int = 0x40;
pub const PERF_MEM_TLB_SHIFT    : c_int = 26;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct perf_branch_entry {
    pub from: __u64,
    pub to: __u64,
    //__u64	mispred:1,
    //	predicted:1,
    //	in_tx:1,
    //	abort:1,
    //	reserved:60;
    __bitfield_one: __u64,
}

impl perf_branch_entry {
    pub fn mispred   (&self) -> bool { bf64_get(self.__bitfield_one, 0, 1) != 0 }
    pub fn predicted (&self) -> bool { bf64_get(self.__bitfield_one, 1, 1) != 0 }
    pub fn in_tx     (&self) -> bool { bf64_get(self.__bitfield_one, 2, 1) != 0 }
    pub fn abort     (&self) -> bool { bf64_get(self.__bitfield_one, 3, 1) != 0 }

    pub fn set_mispred   (&mut self, val: bool) { self.__bitfield_one = bf64_set(self.__bitfield_one, 0, 1, val as u64) }
    pub fn set_predicted (&mut self, val: bool) { self.__bitfield_one = bf64_set(self.__bitfield_one, 1, 1, val as u64) }
    pub fn set_in_tx     (&mut self, val: bool) { self.__bitfield_one = bf64_set(self.__bitfield_one, 2, 1, val as u64) }
    pub fn set_abort     (&mut self, val: bool) { self.__bitfield_one = bf64_set(self.__bitfield_one, 3, 1, val as u64) }
}

// quota.h

pub type qid_t = __kernel_uid32_t;

// resource.h

pub const RUSAGE_SELF     : c_int = 0;
pub const RUSAGE_CHILDREN : c_int = -1;
pub const RUSAGE_BOTH     : c_int = -2;
pub const RUSAGE_THREAD   : c_int = 1;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct rusage {
    pub ru_utime:    timeval,
    pub ru_stime:    timeval,
    pub ru_maxrss:   __kernel_long_t,
    pub ru_ixrss:    __kernel_long_t,
    pub ru_idrss:    __kernel_long_t,
    pub ru_isrss:    __kernel_long_t,
    pub ru_minflt:   __kernel_long_t,
    pub ru_majflt:   __kernel_long_t,
    pub ru_nswap:    __kernel_long_t,
    pub ru_inblock:  __kernel_long_t,
    pub ru_oublock:  __kernel_long_t,
    pub ru_msgsnd:   __kernel_long_t,
    pub ru_msgrcv:   __kernel_long_t,
    pub ru_nsignals: __kernel_long_t,
    pub ru_nvcsw:    __kernel_long_t,
    pub ru_nivcsw:   __kernel_long_t,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct rlimit {
    pub rlim_cur: __kernel_ulong_t,
    pub rlim_max: __kernel_ulong_t,
}

pub const RLIM64_INFINITY: c_ulonglong = !0;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct rlimit64 {
    pub rlim_cur: __u64,
    pub rlim_max: __u64,
}

pub const PRIO_MIN     : c_int = -20;
pub const PRIO_MAX     : c_int = 20;
pub const PRIO_PROCESS : c_int = 0;
pub const PRIO_PGRP    : c_int = 1;
pub const PRIO_USER    : c_int = 2;

pub const _STK_LIM : c_int = 8*1024*1024;

// futex.h

pub const FUTEX_WAIT                    : c_int = 0;
pub const FUTEX_WAKE                    : c_int = 1;
pub const FUTEX_FD                      : c_int = 2;
pub const FUTEX_REQUEUE                 : c_int = 3;
pub const FUTEX_CMP_REQUEUE             : c_int = 4;
pub const FUTEX_WAKE_OP                 : c_int = 5;
pub const FUTEX_LOCK_PI                 : c_int = 6;
pub const FUTEX_UNLOCK_PI               : c_int = 7;
pub const FUTEX_TRYLOCK_PI              : c_int = 8;
pub const FUTEX_WAIT_BITSET             : c_int = 9;
pub const FUTEX_WAKE_BITSET             : c_int = 10;
pub const FUTEX_WAIT_REQUEUE_PI         : c_int = 11;
pub const FUTEX_CMP_REQUEUE_PI          : c_int = 12;
pub const FUTEX_PRIVATE_FLAG            : c_int = 128;
pub const FUTEX_CLOCK_REALTIME          : c_int = 256;
pub const FUTEX_CMD_MASK                : c_int = !(FUTEX_PRIVATE_FLAG | FUTEX_CLOCK_REALTIME);
pub const FUTEX_WAIT_PRIVATE            : c_int = FUTEX_WAIT            | FUTEX_PRIVATE_FLAG;
pub const FUTEX_WAKE_PRIVATE            : c_int = FUTEX_WAKE            | FUTEX_PRIVATE_FLAG;
pub const FUTEX_REQUEUE_PRIVATE         : c_int = FUTEX_REQUEUE         | FUTEX_PRIVATE_FLAG;
pub const FUTEX_CMP_REQUEUE_PRIVATE     : c_int = FUTEX_CMP_REQUEUE     | FUTEX_PRIVATE_FLAG;
pub const FUTEX_WAKE_OP_PRIVATE         : c_int = FUTEX_WAKE_OP         | FUTEX_PRIVATE_FLAG;
pub const FUTEX_LOCK_PI_PRIVATE         : c_int = FUTEX_LOCK_PI         | FUTEX_PRIVATE_FLAG;
pub const FUTEX_UNLOCK_PI_PRIVATE       : c_int = FUTEX_UNLOCK_PI       | FUTEX_PRIVATE_FLAG;
pub const FUTEX_TRYLOCK_PI_PRIVATE      : c_int = FUTEX_TRYLOCK_PI      | FUTEX_PRIVATE_FLAG;
pub const FUTEX_WAIT_BITSET_PRIVATE     : c_int = FUTEX_WAIT_BITSET     | FUTEX_PRIVATE_FLAG;
pub const FUTEX_WAKE_BITSET_PRIVATE     : c_int = FUTEX_WAKE_BITSET     | FUTEX_PRIVATE_FLAG;
pub const FUTEX_WAIT_REQUEUE_PI_PRIVATE : c_int = FUTEX_WAIT_REQUEUE_PI | FUTEX_PRIVATE_FLAG;
pub const FUTEX_CMP_REQUEUE_PI_PRIVATE  : c_int = FUTEX_CMP_REQUEUE_PI  | FUTEX_PRIVATE_FLAG;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct robust_list {
    pub next: *mut robust_list,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct robust_list_head {
    pub list: robust_list,
    pub futex_offset: c_long,
    pub list_op_pending: *mut robust_list,
}

pub const FUTEX_WAITERS          : c_uint = 0x80000000;
pub const FUTEX_OWNER_DIED       : c_uint = 0x40000000;
pub const FUTEX_TID_MASK         : c_uint = 0x3fffffff;
pub const ROBUST_LIST_LIMIT      : c_uint = 2048;
pub const FUTEX_BITSET_MATCH_ANY : c_uint = 0xffffffff;

pub const FUTEX_OP_SET         : c_int = 0;
pub const FUTEX_OP_ADD         : c_int = 1;
pub const FUTEX_OP_OR          : c_int = 2;
pub const FUTEX_OP_ANDN        : c_int = 3;
pub const FUTEX_OP_XOR         : c_int = 4;
pub const FUTEX_OP_OPARG_SHIFT : c_int = 8;
pub const FUTEX_OP_CMP_EQ      : c_int = 0;
pub const FUTEX_OP_CMP_NE      : c_int = 1;
pub const FUTEX_OP_CMP_LT      : c_int = 2;
pub const FUTEX_OP_CMP_LE      : c_int = 3;
pub const FUTEX_OP_CMP_GT      : c_int = 4;
pub const FUTEX_OP_CMP_GE      : c_int = 5;

pub fn FUTEX_OP(op: c_int, oparg: c_int, cmp: c_int, cmparg: c_int) -> c_int {
    ((op & 0xf) << 28) | ((cmp & 0xf) << 24) | ((oparg & 0xfff) << 12) | (cmparg & 0xfff)
}

// sched.h

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct sched_param {
    pub sched_priority: k_int,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct sched_attr {
    pub size:           u32,
    pub sched_policy:   u32,
    pub sched_flags:    u64,
    pub sched_nice:     __s32,
    pub sched_priority: u32,
    pub sched_runtime:  u64,
    pub sched_deadline: u64,
    pub sched_period:   u64,
}

// straight from select.c

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct sel_arg_struct {
    pub n: k_ulong,
    pub inp: *mut fd_set,
    pub outp: *mut fd_set,
    pub exp: *mut fd_set,
    pub tvp: *mut timeval,
}

// sem.h

pub const SEM_UNDO : c_int = 0x1000;
pub const GETPID   : c_int = 11;
pub const GETVAL   : c_int = 12;
pub const GETALL   : c_int = 13;
pub const GETNCNT  : c_int = 14;
pub const GETZCNT  : c_int = 15;
pub const SETVAL   : c_int = 16;
pub const SETALL   : c_int = 17;
pub const SEM_STAT : c_int = 18;
pub const SEM_INFO : c_int = 19;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct sembuf {
    pub sem_num: c_ushort,
    pub sem_op:  c_short,
    pub sem_flg: c_short,
}

pub const SEMMNI : c_int = 32000;
pub const SEMMSL : c_int = 32000;
pub const SEMMNS : c_int = SEMMNI*SEMMSL;
pub const SEMOPM : c_int = 500;
pub const SEMVMX : c_int = 32767;
pub const SEMAEM : c_int = SEMVMX;
pub const SEMUME : c_int = SEMOPM;
pub const SEMMNU : c_int = SEMMNS;
pub const SEMMAP : c_int = SEMMNS;
pub const SEMUSZ : c_int = 20;

// shm.h

pub const SHMMIN : c_ulong = 1;
pub const SHMMNI : c_ulong = 4096;
pub const SHMMAX : c_ulong = !0 - (1 << 24);
pub const SHMALL : c_ulong = !0 - (1 << 24);
pub const SHMSEG : c_ulong = SHMMNI;

pub const SHM_R      : c_int = 0400;
pub const SHM_W      : c_int = 0200;
pub const SHM_RDONLY : c_int = 010000;
pub const SHM_RND    : c_int = 020000;
pub const SHM_REMAP  : c_int = 040000;
pub const SHM_EXEC   : c_int = 0100000;
pub const SHM_LOCK   : c_int = 11;
pub const SHM_UNLOCK : c_int = 12;
pub const SHM_STAT   : c_int = 13;
pub const SHM_INFO   : c_int = 14;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct shm_info {
    pub used_ids:       c_int,
    pub shm_tot:        __kernel_ulong_t,
    pub shm_rss:        __kernel_ulong_t,
    pub shm_swp:        __kernel_ulong_t,
    pub swap_attempts:  __kernel_ulong_t,
    pub swap_successes: __kernel_ulong_t,
}

// sysctl.h

pub const CTL_MAXNAME : c_int = 10;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct __sysctl_args {
    pub name:        *mut c_int,
    pub nlen:        c_int,
    pub oldval:      *mut c_void,
    pub oldlenp:     *mut size_t,
    pub newval:      *mut c_void,
    pub newlen:      size_t,
    pub __unused: [c_ulong; 4],
}

pub const CTL_KERN                                             : c_int = 1;
pub const CTL_VM                                               : c_int = 2;
pub const CTL_NET                                              : c_int = 3;
pub const CTL_PROC                                             : c_int = 4;
pub const CTL_FS                                               : c_int = 5;
pub const CTL_DEBUG                                            : c_int = 6;
pub const CTL_DEV                                              : c_int = 7;
pub const CTL_BUS                                              : c_int = 8;
pub const CTL_ABI                                              : c_int = 9;
pub const CTL_CPU                                              : c_int = 10;
pub const CTL_ARLAN                                            : c_int = 254;
pub const CTL_S390DBF                                          : c_int = 5677;
pub const CTL_SUNRPC                                           : c_int = 7249;
pub const CTL_PM                                               : c_int = 9899;
pub const CTL_FRV                                              : c_int = 9898;

pub const CTL_BUS_ISA                                          : c_int = 1;

pub const INOTIFY_MAX_USER_INSTANCES                           : c_int = 1;
pub const INOTIFY_MAX_USER_WATCHES                             : c_int = 2;
pub const INOTIFY_MAX_QUEUED_EVENTS                            : c_int = 3;

pub const KERN_OSTYPE                                          : c_int = 1;
pub const KERN_OSRELEASE                                       : c_int = 2;
pub const KERN_OSREV                                           : c_int = 3;
pub const KERN_VERSION                                         : c_int = 4;
pub const KERN_SECUREMASK                                      : c_int = 5;
pub const KERN_PROF                                            : c_int = 6;
pub const KERN_NODENAME                                        : c_int = 7;
pub const KERN_DOMAINNAME                                      : c_int = 8;

pub const KERN_PANIC                                           : c_int = 15;
pub const KERN_REALROOTDEV                                     : c_int = 16;

pub const KERN_SPARC_REBOOT                                    : c_int = 21;
pub const KERN_CTLALTDEL                                       : c_int = 22;
pub const KERN_PRINTK                                          : c_int = 23;
pub const KERN_NAMETRANS                                       : c_int = 24;
pub const KERN_PPC_HTABRECLAIM                                 : c_int = 25;
pub const KERN_PPC_ZEROPAGED                                   : c_int = 26;
pub const KERN_PPC_POWERSAVE_NAP                               : c_int = 27;
pub const KERN_MODPROBE                                        : c_int = 28;
pub const KERN_SG_BIG_BUFF                                     : c_int = 29;
pub const KERN_ACCT                                            : c_int = 30;
pub const KERN_PPC_L2CR                                        : c_int = 31;

pub const KERN_RTSIGNR                                         : c_int = 32;
pub const KERN_RTSIGMAX                                        : c_int = 33;

pub const KERN_SHMMAX                                          : c_int = 34;
pub const KERN_MSGMAX                                          : c_int = 35;
pub const KERN_MSGMNB                                          : c_int = 36;
pub const KERN_MSGPOOL                                         : c_int = 37;
pub const KERN_SYSRQ                                           : c_int = 38;
pub const KERN_MAX_THREADS                                     : c_int = 39;
pub const KERN_RANDOM                                          : c_int = 40;
pub const KERN_SHMALL                                          : c_int = 41;
pub const KERN_MSGMNI                                          : c_int = 42;
pub const KERN_SEM                                             : c_int = 43;
pub const KERN_SPARC_STOP_A                                    : c_int = 44;
pub const KERN_SHMMNI                                          : c_int = 45;
pub const KERN_OVERFLOWUID                                     : c_int = 46;
pub const KERN_OVERFLOWGID                                     : c_int = 47;
pub const KERN_SHMPATH                                         : c_int = 48;
pub const KERN_HOTPLUG                                         : c_int = 49;
pub const KERN_IEEE_EMULATION_WARNINGS                         : c_int = 50;
pub const KERN_S390_USER_DEBUG_LOGGING                         : c_int = 51;
pub const KERN_CORE_USES_PID                                   : c_int = 52;
pub const KERN_TAINTED                                         : c_int = 53;
pub const KERN_CADPID                                          : c_int = 54;
pub const KERN_PIDMAX                                          : c_int = 55;
pub const KERN_CORE_PATTERN                                    : c_int = 56;
pub const KERN_PANIC_ON_OOPS                                   : c_int = 57;
pub const KERN_HPPA_PWRSW                                      : c_int = 58;
pub const KERN_HPPA_UNALIGNED                                  : c_int = 59;
pub const KERN_PRINTK_RATELIMIT                                : c_int = 60;
pub const KERN_PRINTK_RATELIMIT_BURST                          : c_int = 61;
pub const KERN_PTY                                             : c_int = 62;
pub const KERN_NGROUPS_MAX                                     : c_int = 63;
pub const KERN_SPARC_SCONS_PWROFF                              : c_int = 64;
pub const KERN_HZ_TIMER                                        : c_int = 65;
pub const KERN_UNKNOWN_NMI_PANIC                               : c_int = 66;
pub const KERN_BOOTLOADER_TYPE                                 : c_int = 67;
pub const KERN_RANDOMIZE                                       : c_int = 68;
pub const KERN_SETUID_DUMPABLE                                 : c_int = 69;
pub const KERN_SPIN_RETRY                                      : c_int = 70;
pub const KERN_ACPI_VIDEO_FLAGS                                : c_int = 71;
pub const KERN_IA64_UNALIGNED                                  : c_int = 72;
pub const KERN_COMPAT_LOG                                      : c_int = 73;
pub const KERN_MAX_LOCK_DEPTH                                  : c_int = 74;
pub const KERN_NMI_WATCHDOG                                    : c_int = 75;
pub const KERN_PANIC_ON_NMI                                    : c_int = 76;
pub const KERN_PANIC_ON_WARN                                   : c_int = 77;

pub const VM_UNUSED1                                           : c_int = 1;
pub const VM_UNUSED2                                           : c_int = 2;
pub const VM_UNUSED3                                           : c_int = 3;
pub const VM_UNUSED4                                           : c_int = 4;
pub const VM_OVERCOMMIT_MEMORY                                 : c_int = 5;
pub const VM_UNUSED5                                           : c_int = 6;
pub const VM_UNUSED7                                           : c_int = 7;
pub const VM_UNUSED8                                           : c_int = 8;
pub const VM_UNUSED9                                           : c_int = 9;
pub const VM_PAGE_CLUSTER                                      : c_int = 10;
pub const VM_DIRTY_BACKGROUND                                  : c_int = 11;
pub const VM_DIRTY_RATIO                                       : c_int = 12;
pub const VM_DIRTY_WB_CS                                       : c_int = 13;
pub const VM_DIRTY_EXPIRE_CS                                   : c_int = 14;
pub const VM_NR_PDFLUSH_THREADS                                : c_int = 15;
pub const VM_OVERCOMMIT_RATIO                                  : c_int = 16;
pub const VM_PAGEBUF                                           : c_int = 17;
pub const VM_HUGETLB_PAGES                                     : c_int = 18;
pub const VM_SWAPPINESS                                        : c_int = 19;
pub const VM_LOWMEM_RESERVE_RATIO                              : c_int = 20;
pub const VM_MIN_FREE_KBYTES                                   : c_int = 21;
pub const VM_MAX_MAP_COUNT                                     : c_int = 22;
pub const VM_LAPTOP_MODE                                       : c_int = 23;
pub const VM_BLOCK_DUMP                                        : c_int = 24;
pub const VM_HUGETLB_GROUP                                     : c_int = 25;
pub const VM_VFS_CACHE_PRESSURE                                : c_int = 26;
pub const VM_LEGACY_VA_LAYOUT                                  : c_int = 27;
pub const VM_SWAP_TOKEN_TIMEOUT                                : c_int = 28;
pub const VM_DROP_PAGECACHE                                    : c_int = 29;
pub const VM_PERCPU_PAGELIST_FRACTION                          : c_int = 30;
pub const VM_ZONE_RECLAIM_MODE                                 : c_int = 31;
pub const VM_MIN_UNMAPPED                                      : c_int = 32;
pub const VM_PANIC_ON_OOM                                      : c_int = 33;
pub const VM_VDSO_ENABLED                                      : c_int = 34;
pub const VM_MIN_SLAB                                          : c_int = 35;

pub const NET_CORE                                             : c_int = 1;
pub const NET_ETHER                                            : c_int = 2;
pub const NET_802                                              : c_int = 3;
pub const NET_UNIX                                             : c_int = 4;
pub const NET_IPV4                                             : c_int = 5;
pub const NET_IPX                                              : c_int = 6;
pub const NET_ATALK                                            : c_int = 7;
pub const NET_NETROM                                           : c_int = 8;
pub const NET_AX25                                             : c_int = 9;
pub const NET_BRIDGE                                           : c_int = 10;
pub const NET_ROSE                                             : c_int = 11;
pub const NET_IPV6                                             : c_int = 12;
pub const NET_X25                                              : c_int = 13;
pub const NET_TR                                               : c_int = 14;
pub const NET_DECNET                                           : c_int = 15;
pub const NET_ECONET                                           : c_int = 16;
pub const NET_SCTP                                             : c_int = 17;
pub const NET_LLC                                              : c_int = 18;
pub const NET_NETFILTER                                        : c_int = 19;
pub const NET_DCCP                                             : c_int = 20;
pub const NET_IRDA                                             : c_int = 412;

pub const RANDOM_POOLSIZE                                      : c_int = 1;
pub const RANDOM_ENTROPY_COUNT                                 : c_int = 2;
pub const RANDOM_READ_THRESH                                   : c_int = 3;
pub const RANDOM_WRITE_THRESH                                  : c_int = 4;
pub const RANDOM_BOOT_ID                                       : c_int = 5;
pub const RANDOM_UUID                                          : c_int = 6;

pub const PTY_MAX                                              : c_int = 1;
pub const PTY_NR                                               : c_int = 2;

pub const BUS_ISA_MEM_BASE                                     : c_int = 1;
pub const BUS_ISA_PORT_BASE                                    : c_int = 2;
pub const BUS_ISA_PORT_SHIFT                                   : c_int = 3;

pub const NET_CORE_WMEM_MAX                                    : c_int = 1;
pub const NET_CORE_RMEM_MAX                                    : c_int = 2;
pub const NET_CORE_WMEM_DEFAULT                                : c_int = 3;
pub const NET_CORE_RMEM_DEFAULT                                : c_int = 4;
pub const NET_CORE_MAX_BACKLOG                                 : c_int = 6;
pub const NET_CORE_FASTROUTE                                   : c_int = 7;
pub const NET_CORE_MSG_COST                                    : c_int = 8;
pub const NET_CORE_MSG_BURST                                   : c_int = 9;
pub const NET_CORE_OPTMEM_MAX                                  : c_int = 10;
pub const NET_CORE_HOT_LIST_LENGTH                             : c_int = 11;
pub const NET_CORE_DIVERT_VERSION                              : c_int = 12;
pub const NET_CORE_NO_CONG_THRESH                              : c_int = 13;
pub const NET_CORE_NO_CONG                                     : c_int = 14;
pub const NET_CORE_LO_CONG                                     : c_int = 15;
pub const NET_CORE_MOD_CONG                                    : c_int = 16;
pub const NET_CORE_DEV_WEIGHT                                  : c_int = 17;
pub const NET_CORE_SOMAXCONN                                   : c_int = 18;
pub const NET_CORE_BUDGET                                      : c_int = 19;
pub const NET_CORE_AEVENT_ETIME                                : c_int = 20;
pub const NET_CORE_AEVENT_RSEQTH                               : c_int = 21;
pub const NET_CORE_WARNINGS                                    : c_int = 22;

pub const NET_UNIX_DESTROY_DELAY                               : c_int = 1;
pub const NET_UNIX_DELETE_DELAY                                : c_int = 2;
pub const NET_UNIX_MAX_DGRAM_QLEN                              : c_int = 3;

pub const NET_NF_CONNTRACK_MAX                                 : c_int = 1;
pub const NET_NF_CONNTRACK_TCP_TIMEOUT_SYN_SENT                : c_int = 2;
pub const NET_NF_CONNTRACK_TCP_TIMEOUT_SYN_RECV                : c_int = 3;
pub const NET_NF_CONNTRACK_TCP_TIMEOUT_ESTABLISHED             : c_int = 4;
pub const NET_NF_CONNTRACK_TCP_TIMEOUT_FIN_WAIT                : c_int = 5;
pub const NET_NF_CONNTRACK_TCP_TIMEOUT_CLOSE_WAIT              : c_int = 6;
pub const NET_NF_CONNTRACK_TCP_TIMEOUT_LAST_ACK                : c_int = 7;
pub const NET_NF_CONNTRACK_TCP_TIMEOUT_TIME_WAIT               : c_int = 8;
pub const NET_NF_CONNTRACK_TCP_TIMEOUT_CLOSE                   : c_int = 9;
pub const NET_NF_CONNTRACK_UDP_TIMEOUT                         : c_int = 10;
pub const NET_NF_CONNTRACK_UDP_TIMEOUT_STREAM                  : c_int = 11;
pub const NET_NF_CONNTRACK_ICMP_TIMEOUT                        : c_int = 12;
pub const NET_NF_CONNTRACK_GENERIC_TIMEOUT                     : c_int = 13;
pub const NET_NF_CONNTRACK_BUCKETS                             : c_int = 14;
pub const NET_NF_CONNTRACK_LOG_INVALID                         : c_int = 15;
pub const NET_NF_CONNTRACK_TCP_TIMEOUT_MAX_RETRANS             : c_int = 16;
pub const NET_NF_CONNTRACK_TCP_LOOSE                           : c_int = 17;
pub const NET_NF_CONNTRACK_TCP_BE_LIBERAL                      : c_int = 18;
pub const NET_NF_CONNTRACK_TCP_MAX_RETRANS                     : c_int = 19;
pub const NET_NF_CONNTRACK_SCTP_TIMEOUT_CLOSED                 : c_int = 20;
pub const NET_NF_CONNTRACK_SCTP_TIMEOUT_COOKIE_WAIT            : c_int = 21;
pub const NET_NF_CONNTRACK_SCTP_TIMEOUT_COOKIE_ECHOED          : c_int = 22;
pub const NET_NF_CONNTRACK_SCTP_TIMEOUT_ESTABLISHED            : c_int = 23;
pub const NET_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_SENT          : c_int = 24;
pub const NET_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_RECD          : c_int = 25;
pub const NET_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_ACK_SENT      : c_int = 26;
pub const NET_NF_CONNTRACK_COUNT                               : c_int = 27;
pub const NET_NF_CONNTRACK_ICMPV6_TIMEOUT                      : c_int = 28;
pub const NET_NF_CONNTRACK_FRAG6_TIMEOUT                       : c_int = 29;
pub const NET_NF_CONNTRACK_FRAG6_LOW_THRESH                    : c_int = 30;
pub const NET_NF_CONNTRACK_FRAG6_HIGH_THRESH                   : c_int = 31;
pub const NET_NF_CONNTRACK_CHECKSUM                            : c_int = 32;

pub const NET_IPV4_FORWARD                                     : c_int = 8;
pub const NET_IPV4_DYNADDR                                     : c_int = 9;

pub const NET_IPV4_CONF                                        : c_int = 16;
pub const NET_IPV4_NEIGH                                       : c_int = 17;
pub const NET_IPV4_ROUTE                                       : c_int = 18;
pub const NET_IPV4_FIB_HASH                                    : c_int = 19;
pub const NET_IPV4_NETFILTER                                   : c_int = 20;

pub const NET_IPV4_TCP_TIMESTAMPS                              : c_int = 33;
pub const NET_IPV4_TCP_WINDOW_SCALING                          : c_int = 34;
pub const NET_IPV4_TCP_SACK                                    : c_int = 35;
pub const NET_IPV4_TCP_RETRANS_COLLAPSE                        : c_int = 36;
pub const NET_IPV4_DEFAULT_TTL                                 : c_int = 37;
pub const NET_IPV4_AUTOCONFIG                                  : c_int = 38;
pub const NET_IPV4_NO_PMTU_DISC                                : c_int = 39;
pub const NET_IPV4_TCP_SYN_RETRIES                             : c_int = 40;
pub const NET_IPV4_IPFRAG_HIGH_THRESH                          : c_int = 41;
pub const NET_IPV4_IPFRAG_LOW_THRESH                           : c_int = 42;
pub const NET_IPV4_IPFRAG_TIME                                 : c_int = 43;
pub const NET_IPV4_TCP_MAX_KA_PROBES                           : c_int = 44;
pub const NET_IPV4_TCP_KEEPALIVE_TIME                          : c_int = 45;
pub const NET_IPV4_TCP_KEEPALIVE_PROBES                        : c_int = 46;
pub const NET_IPV4_TCP_RETRIES1                                : c_int = 47;
pub const NET_IPV4_TCP_RETRIES2                                : c_int = 48;
pub const NET_IPV4_TCP_FIN_TIMEOUT                             : c_int = 49;
pub const NET_IPV4_IP_MASQ_DEBUG                               : c_int = 50;
pub const NET_TCP_SYNCOOKIES                                   : c_int = 51;
pub const NET_TCP_STDURG                                       : c_int = 52;
pub const NET_TCP_RFC1337                                      : c_int = 53;
pub const NET_TCP_SYN_TAILDROP                                 : c_int = 54;
pub const NET_TCP_MAX_SYN_BACKLOG                              : c_int = 55;
pub const NET_IPV4_LOCAL_PORT_RANGE                            : c_int = 56;
pub const NET_IPV4_ICMP_ECHO_IGNORE_ALL                        : c_int = 57;
pub const NET_IPV4_ICMP_ECHO_IGNORE_BROADCASTS                 : c_int = 58;
pub const NET_IPV4_ICMP_SOURCEQUENCH_RATE                      : c_int = 59;
pub const NET_IPV4_ICMP_DESTUNREACH_RATE                       : c_int = 60;
pub const NET_IPV4_ICMP_TIMEEXCEED_RATE                        : c_int = 61;
pub const NET_IPV4_ICMP_PARAMPROB_RATE                         : c_int = 62;
pub const NET_IPV4_ICMP_ECHOREPLY_RATE                         : c_int = 63;
pub const NET_IPV4_ICMP_IGNORE_BOGUS_ERROR_RESPONSES           : c_int = 64;
pub const NET_IPV4_IGMP_MAX_MEMBERSHIPS                        : c_int = 65;
pub const NET_TCP_TW_RECYCLE                                   : c_int = 66;
pub const NET_IPV4_ALWAYS_DEFRAG                               : c_int = 67;
pub const NET_IPV4_TCP_KEEPALIVE_INTVL                         : c_int = 68;
pub const NET_IPV4_INET_PEER_THRESHOLD                         : c_int = 69;
pub const NET_IPV4_INET_PEER_MINTTL                            : c_int = 70;
pub const NET_IPV4_INET_PEER_MAXTTL                            : c_int = 71;
pub const NET_IPV4_INET_PEER_GC_MINTIME                        : c_int = 72;
pub const NET_IPV4_INET_PEER_GC_MAXTIME                        : c_int = 73;
pub const NET_TCP_ORPHAN_RETRIES                               : c_int = 74;
pub const NET_TCP_ABORT_ON_OVERFLOW                            : c_int = 75;
pub const NET_TCP_SYNACK_RETRIES                               : c_int = 76;
pub const NET_TCP_MAX_ORPHANS                                  : c_int = 77;
pub const NET_TCP_MAX_TW_BUCKETS                               : c_int = 78;
pub const NET_TCP_FACK                                         : c_int = 79;
pub const NET_TCP_REORDERING                                   : c_int = 80;
pub const NET_TCP_ECN                                          : c_int = 81;
pub const NET_TCP_DSACK                                        : c_int = 82;
pub const NET_TCP_MEM                                          : c_int = 83;
pub const NET_TCP_WMEM                                         : c_int = 84;
pub const NET_TCP_RMEM                                         : c_int = 85;
pub const NET_TCP_APP_WIN                                      : c_int = 86;
pub const NET_TCP_ADV_WIN_SCALE                                : c_int = 87;
pub const NET_IPV4_NONLOCAL_BIND                               : c_int = 88;
pub const NET_IPV4_ICMP_RATELIMIT                              : c_int = 89;
pub const NET_IPV4_ICMP_RATEMASK                               : c_int = 90;
pub const NET_TCP_TW_REUSE                                     : c_int = 91;
pub const NET_TCP_FRTO                                         : c_int = 92;
pub const NET_TCP_LOW_LATENCY                                  : c_int = 93;
pub const NET_IPV4_IPFRAG_SECRET_INTERVAL                      : c_int = 94;
pub const NET_IPV4_IGMP_MAX_MSF                                : c_int = 96;
pub const NET_TCP_NO_METRICS_SAVE                              : c_int = 97;
pub const NET_TCP_DEFAULT_WIN_SCALE                            : c_int = 105;
pub const NET_TCP_MODERATE_RCVBUF                              : c_int = 106;
pub const NET_TCP_TSO_WIN_DIVISOR                              : c_int = 107;
pub const NET_TCP_BIC_BETA                                     : c_int = 108;
pub const NET_IPV4_ICMP_ERRORS_USE_INBOUND_IFADDR              : c_int = 109;
pub const NET_TCP_CONG_CONTROL                                 : c_int = 110;
pub const NET_TCP_ABC                                          : c_int = 111;
pub const NET_IPV4_IPFRAG_MAX_DIST                             : c_int = 112;
pub const NET_TCP_MTU_PROBING                                  : c_int = 113;
pub const NET_TCP_BASE_MSS                                     : c_int = 114;
pub const NET_IPV4_TCP_WORKAROUND_SIGNED_WINDOWS               : c_int = 115;
pub const NET_TCP_DMA_COPYBREAK                                : c_int = 116;
pub const NET_TCP_SLOW_START_AFTER_IDLE                        : c_int = 117;
pub const NET_CIPSOV4_CACHE_ENABLE                             : c_int = 118;
pub const NET_CIPSOV4_CACHE_BUCKET_SIZE                        : c_int = 119;
pub const NET_CIPSOV4_RBM_OPTFMT                               : c_int = 120;
pub const NET_CIPSOV4_RBM_STRICTVALID                          : c_int = 121;
pub const NET_TCP_AVAIL_CONG_CONTROL                           : c_int = 122;
pub const NET_TCP_ALLOWED_CONG_CONTROL                         : c_int = 123;
pub const NET_TCP_MAX_SSTHRESH                                 : c_int = 124;
pub const NET_TCP_FRTO_RESPONSE                                : c_int = 125;

pub const NET_IPV4_ROUTE_FLUSH                                 : c_int = 1;
pub const NET_IPV4_ROUTE_MIN_DELAY                             : c_int = 2;
pub const NET_IPV4_ROUTE_MAX_DELAY                             : c_int = 3;
pub const NET_IPV4_ROUTE_GC_THRESH                             : c_int = 4;
pub const NET_IPV4_ROUTE_MAX_SIZE                              : c_int = 5;
pub const NET_IPV4_ROUTE_GC_MIN_INTERVAL                       : c_int = 6;
pub const NET_IPV4_ROUTE_GC_TIMEOUT                            : c_int = 7;
pub const NET_IPV4_ROUTE_GC_INTERVAL                           : c_int = 8;
pub const NET_IPV4_ROUTE_REDIRECT_LOAD                         : c_int = 9;
pub const NET_IPV4_ROUTE_REDIRECT_NUMBER                       : c_int = 10;
pub const NET_IPV4_ROUTE_REDIRECT_SILENCE                      : c_int = 11;
pub const NET_IPV4_ROUTE_ERROR_COST                            : c_int = 12;
pub const NET_IPV4_ROUTE_ERROR_BURST                           : c_int = 13;
pub const NET_IPV4_ROUTE_GC_ELASTICITY                         : c_int = 14;
pub const NET_IPV4_ROUTE_MTU_EXPIRES                           : c_int = 15;
pub const NET_IPV4_ROUTE_MIN_PMTU                              : c_int = 16;
pub const NET_IPV4_ROUTE_MIN_ADVMSS                            : c_int = 17;
pub const NET_IPV4_ROUTE_SECRET_INTERVAL                       : c_int = 18;
pub const NET_IPV4_ROUTE_GC_MIN_INTERVAL_MS                    : c_int = 19;

pub const NET_PROTO_CONF_ALL                                   : c_int = -2;
pub const NET_PROTO_CONF_DEFAULT                               : c_int = -3;

pub const NET_IPV4_CONF_FORWARDING                             : c_int = 1;
pub const NET_IPV4_CONF_MC_FORWARDING                          : c_int = 2;
pub const NET_IPV4_CONF_PROXY_ARP                              : c_int = 3;
pub const NET_IPV4_CONF_ACCEPT_REDIRECTS                       : c_int = 4;
pub const NET_IPV4_CONF_SECURE_REDIRECTS                       : c_int = 5;
pub const NET_IPV4_CONF_SEND_REDIRECTS                         : c_int = 6;
pub const NET_IPV4_CONF_SHARED_MEDIA                           : c_int = 7;
pub const NET_IPV4_CONF_RP_FILTER                              : c_int = 8;
pub const NET_IPV4_CONF_ACCEPT_SOURCE_ROUTE                    : c_int = 9;
pub const NET_IPV4_CONF_BOOTP_RELAY                            : c_int = 10;
pub const NET_IPV4_CONF_LOG_MARTIANS                           : c_int = 11;
pub const NET_IPV4_CONF_TAG                                    : c_int = 12;
pub const NET_IPV4_CONF_ARPFILTER                              : c_int = 13;
pub const NET_IPV4_CONF_MEDIUM_ID                              : c_int = 14;
pub const NET_IPV4_CONF_NOXFRM                                 : c_int = 15;
pub const NET_IPV4_CONF_NOPOLICY                               : c_int = 16;
pub const NET_IPV4_CONF_FORCE_IGMP_VERSION                     : c_int = 17;
pub const NET_IPV4_CONF_ARP_ANNOUNCE                           : c_int = 18;
pub const NET_IPV4_CONF_ARP_IGNORE                             : c_int = 19;
pub const NET_IPV4_CONF_PROMOTE_SECONDARIES                    : c_int = 20;
pub const NET_IPV4_CONF_ARP_ACCEPT                             : c_int = 21;
pub const NET_IPV4_CONF_ARP_NOTIFY                             : c_int = 22;

pub const NET_IPV4_NF_CONNTRACK_MAX                            : c_int = 1;
pub const NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_SYN_SENT           : c_int = 2;
pub const NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_SYN_RECV           : c_int = 3;
pub const NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_ESTABLISHED        : c_int = 4;
pub const NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_FIN_WAIT           : c_int = 5;
pub const NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_CLOSE_WAIT         : c_int = 6;
pub const NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_LAST_ACK           : c_int = 7;
pub const NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_TIME_WAIT          : c_int = 8;
pub const NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_CLOSE              : c_int = 9;
pub const NET_IPV4_NF_CONNTRACK_UDP_TIMEOUT                    : c_int = 10;
pub const NET_IPV4_NF_CONNTRACK_UDP_TIMEOUT_STREAM             : c_int = 11;
pub const NET_IPV4_NF_CONNTRACK_ICMP_TIMEOUT                   : c_int = 12;
pub const NET_IPV4_NF_CONNTRACK_GENERIC_TIMEOUT                : c_int = 13;
pub const NET_IPV4_NF_CONNTRACK_BUCKETS                        : c_int = 14;
pub const NET_IPV4_NF_CONNTRACK_LOG_INVALID                    : c_int = 15;
pub const NET_IPV4_NF_CONNTRACK_TCP_TIMEOUT_MAX_RETRANS        : c_int = 16;
pub const NET_IPV4_NF_CONNTRACK_TCP_LOOSE                      : c_int = 17;
pub const NET_IPV4_NF_CONNTRACK_TCP_BE_LIBERAL                 : c_int = 18;
pub const NET_IPV4_NF_CONNTRACK_TCP_MAX_RETRANS                : c_int = 19;
pub const NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_CLOSED            : c_int = 20;
pub const NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_COOKIE_WAIT       : c_int = 21;
pub const NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_COOKIE_ECHOED     : c_int = 22;
pub const NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_ESTABLISHED       : c_int = 23;
pub const NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_SENT     : c_int = 24;
pub const NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_RECD     : c_int = 25;
pub const NET_IPV4_NF_CONNTRACK_SCTP_TIMEOUT_SHUTDOWN_ACK_SENT : c_int = 26;
pub const NET_IPV4_NF_CONNTRACK_COUNT                          : c_int = 27;
pub const NET_IPV4_NF_CONNTRACK_CHECKSUM                       : c_int = 28;

pub const NET_IPV6_CONF                                        : c_int = 16;
pub const NET_IPV6_NEIGH                                       : c_int = 17;
pub const NET_IPV6_ROUTE                                       : c_int = 18;
pub const NET_IPV6_ICMP                                        : c_int = 19;
pub const NET_IPV6_BINDV6ONLY                                  : c_int = 20;
pub const NET_IPV6_IP6FRAG_HIGH_THRESH                         : c_int = 21;
pub const NET_IPV6_IP6FRAG_LOW_THRESH                          : c_int = 22;
pub const NET_IPV6_IP6FRAG_TIME                                : c_int = 23;
pub const NET_IPV6_IP6FRAG_SECRET_INTERVAL                     : c_int = 24;
pub const NET_IPV6_MLD_MAX_MSF                                 : c_int = 25;

pub const NET_IPV6_ROUTE_FLUSH                                 : c_int = 1;
pub const NET_IPV6_ROUTE_GC_THRESH                             : c_int = 2;
pub const NET_IPV6_ROUTE_MAX_SIZE                              : c_int = 3;
pub const NET_IPV6_ROUTE_GC_MIN_INTERVAL                       : c_int = 4;
pub const NET_IPV6_ROUTE_GC_TIMEOUT                            : c_int = 5;
pub const NET_IPV6_ROUTE_GC_INTERVAL                           : c_int = 6;
pub const NET_IPV6_ROUTE_GC_ELASTICITY                         : c_int = 7;
pub const NET_IPV6_ROUTE_MTU_EXPIRES                           : c_int = 8;
pub const NET_IPV6_ROUTE_MIN_ADVMSS                            : c_int = 9;
pub const NET_IPV6_ROUTE_GC_MIN_INTERVAL_MS                    : c_int = 10;

pub const NET_IPV6_FORWARDING                                  : c_int = 1;
pub const NET_IPV6_HOP_LIMIT                                   : c_int = 2;
pub const NET_IPV6_MTU                                         : c_int = 3;
pub const NET_IPV6_ACCEPT_RA                                   : c_int = 4;
pub const NET_IPV6_ACCEPT_REDIRECTS                            : c_int = 5;
pub const NET_IPV6_AUTOCONF                                    : c_int = 6;
pub const NET_IPV6_DAD_TRANSMITS                               : c_int = 7;
pub const NET_IPV6_RTR_SOLICITS                                : c_int = 8;
pub const NET_IPV6_RTR_SOLICIT_INTERVAL                        : c_int = 9;
pub const NET_IPV6_RTR_SOLICIT_DELAY                           : c_int = 10;
pub const NET_IPV6_USE_TEMPADDR                                : c_int = 11;
pub const NET_IPV6_TEMP_VALID_LFT                              : c_int = 12;
pub const NET_IPV6_TEMP_PREFERED_LFT                           : c_int = 13;
pub const NET_IPV6_REGEN_MAX_RETRY                             : c_int = 14;
pub const NET_IPV6_MAX_DESYNC_FACTOR                           : c_int = 15;
pub const NET_IPV6_MAX_ADDRESSES                               : c_int = 16;
pub const NET_IPV6_FORCE_MLD_VERSION                           : c_int = 17;
pub const NET_IPV6_ACCEPT_RA_DEFRTR                            : c_int = 18;
pub const NET_IPV6_ACCEPT_RA_PINFO                             : c_int = 19;
pub const NET_IPV6_ACCEPT_RA_RTR_PREF                          : c_int = 20;
pub const NET_IPV6_RTR_PROBE_INTERVAL                          : c_int = 21;
pub const NET_IPV6_ACCEPT_RA_RT_INFO_MAX_PLEN                  : c_int = 22;
pub const NET_IPV6_PROXY_NDP                                   : c_int = 23;
pub const NET_IPV6_ACCEPT_SOURCE_ROUTE                         : c_int = 25;
pub const NET_IPV6_ACCEPT_RA_FROM_LOCAL                        : c_int = 26;
pub const __NET_IPV6_MAX                                       : c_int = 27;

pub const NET_IPV6_ICMP_RATELIMIT                              : c_int = 1;

pub const NET_NEIGH_MCAST_SOLICIT                              : c_int = 1;
pub const NET_NEIGH_UCAST_SOLICIT                              : c_int = 2;
pub const NET_NEIGH_APP_SOLICIT                                : c_int = 3;
pub const NET_NEIGH_RETRANS_TIME                               : c_int = 4;
pub const NET_NEIGH_REACHABLE_TIME                             : c_int = 5;
pub const NET_NEIGH_DELAY_PROBE_TIME                           : c_int = 6;
pub const NET_NEIGH_GC_STALE_TIME                              : c_int = 7;
pub const NET_NEIGH_UNRES_QLEN                                 : c_int = 8;
pub const NET_NEIGH_PROXY_QLEN                                 : c_int = 9;
pub const NET_NEIGH_ANYCAST_DELAY                              : c_int = 10;
pub const NET_NEIGH_PROXY_DELAY                                : c_int = 11;
pub const NET_NEIGH_LOCKTIME                                   : c_int = 12;
pub const NET_NEIGH_GC_INTERVAL                                : c_int = 13;
pub const NET_NEIGH_GC_THRESH1                                 : c_int = 14;
pub const NET_NEIGH_GC_THRESH2                                 : c_int = 15;
pub const NET_NEIGH_GC_THRESH3                                 : c_int = 16;
pub const NET_NEIGH_RETRANS_TIME_MS                            : c_int = 17;
pub const NET_NEIGH_REACHABLE_TIME_MS                          : c_int = 18;

pub const NET_DCCP_DEFAULT                                     : c_int = 1;

pub const NET_IPX_PPROP_BROADCASTING                           : c_int = 1;
pub const NET_IPX_FORWARDING                                   : c_int = 2;

pub const NET_LLC2                                             : c_int = 1;
pub const NET_LLC_STATION                                      : c_int = 2;

pub const NET_LLC2_TIMEOUT                                     : c_int = 1;

pub const NET_LLC_STATION_ACK_TIMEOUT                          : c_int = 1;

pub const NET_LLC2_ACK_TIMEOUT                                 : c_int = 1;
pub const NET_LLC2_P_TIMEOUT                                   : c_int = 2;
pub const NET_LLC2_REJ_TIMEOUT                                 : c_int = 3;
pub const NET_LLC2_BUSY_TIMEOUT                                : c_int = 4;

pub const NET_ATALK_AARP_EXPIRY_TIME                           : c_int = 1;
pub const NET_ATALK_AARP_TICK_TIME                             : c_int = 2;
pub const NET_ATALK_AARP_RETRANSMIT_LIMIT                      : c_int = 3;
pub const NET_ATALK_AARP_RESOLVE_TIME                          : c_int = 4;

pub const NET_NETROM_DEFAULT_PATH_QUALITY                      : c_int = 1;
pub const NET_NETROM_OBSOLESCENCE_COUNT_INITIALISER            : c_int = 2;
pub const NET_NETROM_NETWORK_TTL_INITIALISER                   : c_int = 3;
pub const NET_NETROM_TRANSPORT_TIMEOUT                         : c_int = 4;
pub const NET_NETROM_TRANSPORT_MAXIMUM_TRIES                   : c_int = 5;
pub const NET_NETROM_TRANSPORT_ACKNOWLEDGE_DELAY               : c_int = 6;
pub const NET_NETROM_TRANSPORT_BUSY_DELAY                      : c_int = 7;
pub const NET_NETROM_TRANSPORT_REQUESTED_WINDOW_SIZE           : c_int = 8;
pub const NET_NETROM_TRANSPORT_NO_ACTIVITY_TIMEOUT             : c_int = 9;
pub const NET_NETROM_ROUTING_CONTROL                           : c_int = 10;
pub const NET_NETROM_LINK_FAILS_COUNT                          : c_int = 11;
pub const NET_NETROM_RESET                                     : c_int = 12;

pub const NET_AX25_IP_DEFAULT_MODE                             : c_int = 1;
pub const NET_AX25_DEFAULT_MODE                                : c_int = 2;
pub const NET_AX25_BACKOFF_TYPE                                : c_int = 3;
pub const NET_AX25_CONNECT_MODE                                : c_int = 4;
pub const NET_AX25_STANDARD_WINDOW                             : c_int = 5;
pub const NET_AX25_EXTENDED_WINDOW                             : c_int = 6;
pub const NET_AX25_T1_TIMEOUT                                  : c_int = 7;
pub const NET_AX25_T2_TIMEOUT                                  : c_int = 8;
pub const NET_AX25_T3_TIMEOUT                                  : c_int = 9;
pub const NET_AX25_IDLE_TIMEOUT                                : c_int = 10;
pub const NET_AX25_N2                                          : c_int = 11;
pub const NET_AX25_PACLEN                                      : c_int = 12;
pub const NET_AX25_PROTOCOL                                    : c_int = 13;
pub const NET_AX25_DAMA_SLAVE_TIMEOUT                          : c_int = 14;

pub const NET_ROSE_RESTART_REQUEST_TIMEOUT                     : c_int = 1;
pub const NET_ROSE_CALL_REQUEST_TIMEOUT                        : c_int = 2;
pub const NET_ROSE_RESET_REQUEST_TIMEOUT                       : c_int = 3;
pub const NET_ROSE_CLEAR_REQUEST_TIMEOUT                       : c_int = 4;
pub const NET_ROSE_ACK_HOLD_BACK_TIMEOUT                       : c_int = 5;
pub const NET_ROSE_ROUTING_CONTROL                             : c_int = 6;
pub const NET_ROSE_LINK_FAIL_TIMEOUT                           : c_int = 7;
pub const NET_ROSE_MAX_VCS                                     : c_int = 8;
pub const NET_ROSE_WINDOW_SIZE                                 : c_int = 9;
pub const NET_ROSE_NO_ACTIVITY_TIMEOUT                         : c_int = 10;

pub const NET_X25_RESTART_REQUEST_TIMEOUT                      : c_int = 1;
pub const NET_X25_CALL_REQUEST_TIMEOUT                         : c_int = 2;
pub const NET_X25_RESET_REQUEST_TIMEOUT                        : c_int = 3;
pub const NET_X25_CLEAR_REQUEST_TIMEOUT                        : c_int = 4;
pub const NET_X25_ACK_HOLD_BACK_TIMEOUT                        : c_int = 5;
pub const NET_X25_FORWARD                                      : c_int = 6;

pub const NET_TR_RIF_TIMEOUT                                   : c_int = 1;

pub const NET_DECNET_NODE_TYPE                                 : c_int = 1;
pub const NET_DECNET_NODE_ADDRESS                              : c_int = 2;
pub const NET_DECNET_NODE_NAME                                 : c_int = 3;
pub const NET_DECNET_DEFAULT_DEVICE                            : c_int = 4;
pub const NET_DECNET_TIME_WAIT                                 : c_int = 5;
pub const NET_DECNET_DN_COUNT                                  : c_int = 6;
pub const NET_DECNET_DI_COUNT                                  : c_int = 7;
pub const NET_DECNET_DR_COUNT                                  : c_int = 8;
pub const NET_DECNET_DST_GC_INTERVAL                           : c_int = 9;
pub const NET_DECNET_CONF                                      : c_int = 10;
pub const NET_DECNET_NO_FC_MAX_CWND                            : c_int = 11;
pub const NET_DECNET_MEM                                       : c_int = 12;
pub const NET_DECNET_RMEM                                      : c_int = 13;
pub const NET_DECNET_WMEM                                      : c_int = 14;
pub const NET_DECNET_DEBUG_LEVEL                               : c_int = 255;

pub const NET_DECNET_CONF_LOOPBACK                             : c_int = -2;
pub const NET_DECNET_CONF_DDCMP                                : c_int = -3;
pub const NET_DECNET_CONF_PPP                                  : c_int = -4;
pub const NET_DECNET_CONF_X25                                  : c_int = -5;
pub const NET_DECNET_CONF_GRE                                  : c_int = -6;
pub const NET_DECNET_CONF_ETHER                                : c_int = -7;

pub const NET_DECNET_CONF_DEV_PRIORITY                         : c_int = 1;
pub const NET_DECNET_CONF_DEV_T1                               : c_int = 2;
pub const NET_DECNET_CONF_DEV_T2                               : c_int = 3;
pub const NET_DECNET_CONF_DEV_T3                               : c_int = 4;
pub const NET_DECNET_CONF_DEV_FORWARDING                       : c_int = 5;
pub const NET_DECNET_CONF_DEV_BLKSIZE                          : c_int = 6;
pub const NET_DECNET_CONF_DEV_STATE                            : c_int = 7;

pub const NET_SCTP_RTO_INITIAL                                 : c_int = 1;
pub const NET_SCTP_RTO_MIN                                     : c_int = 2;
pub const NET_SCTP_RTO_MAX                                     : c_int = 3;
pub const NET_SCTP_RTO_ALPHA                                   : c_int = 4;
pub const NET_SCTP_RTO_BETA                                    : c_int = 5;
pub const NET_SCTP_VALID_COOKIE_LIFE                           : c_int = 6;
pub const NET_SCTP_ASSOCIATION_MAX_RETRANS                     : c_int = 7;
pub const NET_SCTP_PATH_MAX_RETRANS                            : c_int = 8;
pub const NET_SCTP_MAX_INIT_RETRANSMITS                        : c_int = 9;
pub const NET_SCTP_HB_INTERVAL                                 : c_int = 10;
pub const NET_SCTP_PRESERVE_ENABLE                             : c_int = 11;
pub const NET_SCTP_MAX_BURST                                   : c_int = 12;
pub const NET_SCTP_ADDIP_ENABLE                                : c_int = 13;
pub const NET_SCTP_PRSCTP_ENABLE                               : c_int = 14;
pub const NET_SCTP_SNDBUF_POLICY                               : c_int = 15;
pub const NET_SCTP_SACK_TIMEOUT                                : c_int = 16;
pub const NET_SCTP_RCVBUF_POLICY                               : c_int = 17;

pub const NET_BRIDGE_NF_CALL_ARPTABLES                         : c_int = 1;
pub const NET_BRIDGE_NF_CALL_IPTABLES                          : c_int = 2;
pub const NET_BRIDGE_NF_CALL_IP6TABLES                         : c_int = 3;
pub const NET_BRIDGE_NF_FILTER_VLAN_TAGGED                     : c_int = 4;
pub const NET_BRIDGE_NF_FILTER_PPPOE_TAGGED                    : c_int = 5;

pub const NET_IRDA_DISCOVERY                                   : c_int = 1;
pub const NET_IRDA_DEVNAME                                     : c_int = 2;
pub const NET_IRDA_DEBUG                                       : c_int = 3;
pub const NET_IRDA_FAST_POLL                                   : c_int = 4;
pub const NET_IRDA_DISCOVERY_SLOTS                             : c_int = 5;
pub const NET_IRDA_DISCOVERY_TIMEOUT                           : c_int = 6;
pub const NET_IRDA_SLOT_TIMEOUT                                : c_int = 7;
pub const NET_IRDA_MAX_BAUD_RATE                               : c_int = 8;
pub const NET_IRDA_MIN_TX_TURN_TIME                            : c_int = 9;
pub const NET_IRDA_MAX_TX_DATA_SIZE                            : c_int = 10;
pub const NET_IRDA_MAX_TX_WINDOW                               : c_int = 11;
pub const NET_IRDA_MAX_NOREPLY_TIME                            : c_int = 12;
pub const NET_IRDA_WARN_NOREPLY_TIME                           : c_int = 13;
pub const NET_IRDA_LAP_KEEPALIVE_TIME                          : c_int = 14;

pub const FS_NRINODE                                           : c_int = 1;
pub const FS_STATINODE                                         : c_int = 2;
pub const FS_MAXINODE                                          : c_int = 3;
pub const FS_NRDQUOT                                           : c_int = 4;
pub const FS_MAXDQUOT                                          : c_int = 5;
pub const FS_NRFILE                                            : c_int = 6;
pub const FS_MAXFILE                                           : c_int = 7;
pub const FS_DENTRY                                            : c_int = 8;
pub const FS_NRSUPER                                           : c_int = 9;
pub const FS_MAXSUPER                                          : c_int = 10;
pub const FS_OVERFLOWUID                                       : c_int = 11;
pub const FS_OVERFLOWGID                                       : c_int = 12;
pub const FS_LEASES                                            : c_int = 13;
pub const FS_DIR_NOTIFY                                        : c_int = 14;
pub const FS_LEASE_TIME                                        : c_int = 15;
pub const FS_DQSTATS                                           : c_int = 16;
pub const FS_XFS                                               : c_int = 17;
pub const FS_AIO_NR                                            : c_int = 18;
pub const FS_AIO_MAX_NR                                        : c_int = 19;
pub const FS_INOTIFY                                           : c_int = 20;
pub const FS_OCFS2                                             : c_int = 988;

pub const FS_DQ_LOOKUPS                                        : c_int = 1;
pub const FS_DQ_DROPS                                          : c_int = 2;
pub const FS_DQ_READS                                          : c_int = 3;
pub const FS_DQ_WRITES                                         : c_int = 4;
pub const FS_DQ_CACHE_HITS                                     : c_int = 5;
pub const FS_DQ_ALLOCATED                                      : c_int = 6;
pub const FS_DQ_FREE                                           : c_int = 7;
pub const FS_DQ_SYNCS                                          : c_int = 8;
pub const FS_DQ_WARNINGS                                       : c_int = 9;

pub const DEV_CDROM                                            : c_int = 1;
pub const DEV_HWMON                                            : c_int = 2;
pub const DEV_PARPORT                                          : c_int = 3;
pub const DEV_RAID                                             : c_int = 4;
pub const DEV_MAC_HID                                          : c_int = 5;
pub const DEV_SCSI                                             : c_int = 6;
pub const DEV_IPMI                                             : c_int = 7;

pub const DEV_CDROM_INFO                                       : c_int = 1;
pub const DEV_CDROM_AUTOCLOSE                                  : c_int = 2;
pub const DEV_CDROM_AUTOEJECT                                  : c_int = 3;
pub const DEV_CDROM_DEBUG                                      : c_int = 4;
pub const DEV_CDROM_LOCK                                       : c_int = 5;
pub const DEV_CDROM_CHECK_MEDIA                                : c_int = 6;

pub const DEV_PARPORT_DEFAULT                                  : c_int = -3;

pub const DEV_RAID_SPEED_LIMIT_MIN                             : c_int = 1;
pub const DEV_RAID_SPEED_LIMIT_MAX                             : c_int = 2;

pub const DEV_PARPORT_DEFAULT_TIMESLICE                        : c_int = 1;
pub const DEV_PARPORT_DEFAULT_SPINTIME                         : c_int = 2;

pub const DEV_PARPORT_SPINTIME                                 : c_int = 1;
pub const DEV_PARPORT_BASE_ADDR                                : c_int = 2;
pub const DEV_PARPORT_IRQ                                      : c_int = 3;
pub const DEV_PARPORT_DMA                                      : c_int = 4;
pub const DEV_PARPORT_MODES                                    : c_int = 5;
pub const DEV_PARPORT_DEVICES                                  : c_int = 6;
pub const DEV_PARPORT_AUTOPROBE                                : c_int = 16;

pub const DEV_PARPORT_DEVICES_ACTIVE                           : c_int = -3;

pub const DEV_PARPORT_DEVICE_TIMESLICE                         : c_int = 1;

pub const DEV_MAC_HID_KEYBOARD_SENDS_LINUX_KEYCODES            : c_int = 1;
pub const DEV_MAC_HID_KEYBOARD_LOCK_KEYCODES                   : c_int = 2;
pub const DEV_MAC_HID_MOUSE_BUTTON_EMULATION                   : c_int = 3;
pub const DEV_MAC_HID_MOUSE_BUTTON2_KEYCODE                    : c_int = 4;
pub const DEV_MAC_HID_MOUSE_BUTTON3_KEYCODE                    : c_int = 5;
pub const DEV_MAC_HID_ADB_MOUSE_SENDS_KEYCODES                 : c_int = 6;

pub const DEV_SCSI_LOGGING_LEVEL                               : c_int = 1;

pub const DEV_IPMI_POWEROFF_POWERCYCLE                         : c_int = 1;

pub const ABI_DEFHANDLER_COFF                                  : c_int = 1;
pub const ABI_DEFHANDLER_ELF                                   : c_int = 2;
pub const ABI_DEFHANDLER_LCALL7                                : c_int = 3;
pub const ABI_DEFHANDLER_LIBCSO                                : c_int = 4;
pub const ABI_TRACE                                            : c_int = 5;
pub const ABI_FAKE_UTSNAME                                     : c_int = 6;

// tms.h

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct tms {
    pub tms_utime:  __kernel_clock_t,
    pub tms_stime:  __kernel_clock_t,
    pub tms_cutime: __kernel_clock_t,
    pub tms_cstime: __kernel_clock_t,
}

// types.h

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ustat {
    pub f_tfree:  __kernel_daddr_t,
    pub f_tinode: __kernel_ino_t,
    pub f_fname: [c_char; 6],
    pub f_fpack: [c_char; 6],
}

// utime.h

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct utimbuf {
    pub actime:  __kernel_time_t,
    pub modtime: __kernel_time_t,
}

// limits.h

pub const NR_OPEN        : usize = 1024;
pub const NGROUPS_MAX    : usize = 65536;
pub const ARG_MAX        : usize = 131072;
pub const LINK_MAX       : usize = 127;
pub const MAX_CANON      : usize = 255;
pub const MAX_INPUT      : usize = 255;
pub const NAME_MAX       : usize = 255;
pub const PATH_MAX       : usize = 4096;
pub const PIPE_BUF       : usize = 4096;
pub const XATTR_NAME_MAX : usize = 255;
pub const XATTR_SIZE_MAX : usize = 65536;
pub const XATTR_LIST_MAX : usize = 65536;
pub const RTSIG_MAX      : usize = 32;

// fs.h

pub const INR_OPEN_CUR     : c_int = 1024;
pub const INR_OPEN_MAX     : c_int = 4096;
pub const BLOCK_SIZE_BITS  : c_int = 10;
pub const BLOCK_SIZE       : c_int = 1 << BLOCK_SIZE_BITS;
pub const SEEK_SET         : c_uint = 0;
pub const SEEK_CUR         : c_uint = 1;
pub const SEEK_END         : c_uint = 2;
pub const SEEK_DATA        : c_uint = 3;
pub const SEEK_HOLE        : c_uint = 4;
pub const SEEK_MAX         : c_uint = SEEK_HOLE;
pub const RENAME_NOREPLACE : c_int = 1 << 0;
pub const RENAME_EXCHANGE  : c_int = 1 << 1;
pub const RENAME_WHITEOUT  : c_int = 1 << 2;

pub const NR_FILE        : c_ulong = 8192;
pub const MS_RDONLY      : c_ulong = 1;
pub const MS_NOSUID      : c_ulong = 2;
pub const MS_NODEV       : c_ulong = 4;
pub const MS_NOEXEC      : c_ulong = 8;
pub const MS_SYNCHRONOUS : c_ulong = 16;
pub const MS_REMOUNT     : c_ulong = 32;
pub const MS_MANDLOCK    : c_ulong = 64;
pub const MS_DIRSYNC     : c_ulong = 128;
pub const MS_NOATIME     : c_ulong = 1024;
pub const MS_NODIRATIME  : c_ulong = 2048;
pub const MS_BIND        : c_ulong = 4096;
pub const MS_MOVE        : c_ulong = 8192;
pub const MS_REC         : c_ulong = 16384;
pub const MS_VERBOSE     : c_ulong = 32768;
pub const MS_SILENT      : c_ulong = 32768;
pub const MS_POSIXACL    : c_ulong = 1 << 16;
pub const MS_UNBINDABLE  : c_ulong = 1 << 17;
pub const MS_PRIVATE     : c_ulong = 1 << 18;
pub const MS_SLAVE       : c_ulong = 1 << 19;
pub const MS_SHARED      : c_ulong = 1 << 20;
pub const MS_RELATIME    : c_ulong = 1 << 21;
pub const MS_KERNMOUNT   : c_ulong = 1 << 22;
pub const MS_I_VERSION   : c_ulong = 1 << 23;
pub const MS_STRICTATIME : c_ulong = 1 << 24;
pub const MS_LAZYTIME    : c_ulong = 1 << 25;
pub const MS_NOSEC       : c_ulong = 1 << 28;
pub const MS_BORN        : c_ulong = 1 << 29;
pub const MS_ACTIVE      : c_ulong = 1 << 30;
pub const MS_NOUSER      : c_ulong = 1 << 31;

pub const MS_RMT_MASK : c_ulong = MS_RDONLY|MS_SYNCHRONOUS|MS_MANDLOCK|MS_I_VERSION|
                                    MS_LAZYTIME;

pub const MS_MGC_VAL : c_ulong = 0xC0ED0000;
pub const MS_MGC_MSK : c_ulong = 0xffff0000;

pub const MNT_FORCE       : c_int = 0x00000001;
pub const MNT_DETACH      : c_int = 0x00000002;
pub const MNT_EXPIRE      : c_int = 0x00000004;
pub const UMOUNT_NOFOLLOW : c_int = 0x00000008;
pub const UMOUNT_UNUSED   : c_int = 0x80000000u64 as _;

// statfs.h

pub const ST_RDONLY      : c_ulong = 0x0001;
pub const ST_NOSUID      : c_ulong = 0x0002;
pub const ST_NODEV       : c_ulong = 0x0004;
pub const ST_NOEXEC      : c_ulong = 0x0008;
pub const ST_SYNCHRONOUS : c_ulong = 0x0010;
pub const ST_VALID       : c_ulong = 0x0020;
pub const ST_MANDLOCK    : c_ulong = 0x0040;
pub const ST_WRITE       : c_ulong = 0x0080;
pub const ST_APPEND      : c_ulong = 0x0100;
pub const ST_IMMUTABLE   : c_ulong = 0x0200;
pub const ST_NOATIME     : c_ulong = 0x0400;
pub const ST_NODIRATIME  : c_ulong = 0x0800;
pub const ST_RELATIME    : c_ulong = 0x1000;

// timerfd.h

pub const TFD_TIMER_ABSTIME       : c_int = 1 << 0;
pub const TFD_TIMER_CANCEL_ON_SET : c_int = 1 << 1;
pub const TFD_CLOEXEC             : c_int = O_CLOEXEC;
pub const TFD_NONBLOCK            : c_int = O_NONBLOCK;
pub const TFD_SHARED_FCNTL_FLAGS  : c_int = TFD_CLOEXEC | TFD_NONBLOCK;
pub const TFD_CREATE_FLAGS        : c_int = TFD_SHARED_FCNTL_FLAGS;
pub const TFD_SETTIME_FLAGS       : c_int = TFD_TIMER_ABSTIME | TFD_TIMER_CANCEL_ON_SET;
pub fn TFD_IOC_SET_TICKS() -> c_uint { _IOW::<u64>(b'T' as c_uint, 0) }

// random.h

pub fn RNDGETENTCNT   () -> c_uint { _IOR::<c_int>(b'R' as c_uint, 0x00) }
pub fn RNDADDTOENTCNT () -> c_uint { _IOW::<c_int>(b'R' as c_uint, 0x01) }
pub fn RNDGETPOOL     () -> c_uint { _IOR::<[c_int; 2]>(b'R' as c_uint, 0x02) }
pub fn RNDADDENTROPY  () -> c_uint { _IOW::<[c_int; 2]>(b'R' as c_uint, 0x03) }
pub fn RNDZAPENTCNT   () -> c_uint { _IO(b'R' as c_uint, 0x04) }
pub fn RNDCLEARPOOL   () -> c_uint { _IO(b'R' as c_uint, 0x06) }

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct rand_pool_info {
    pub entropy_count: c_int,
    pub buf_size:      c_int,
    pub buf:        [__u32; 0],
}

pub const GRND_NONBLOCK : c_uint = 0x0001;
pub const GRND_RANDOM   : c_uint = 0x0002;

// eventpoll.h

pub const EPOLL_CLOEXEC : c_int = O_CLOEXEC;
pub const EPOLL_CTL_ADD : c_int = 1;
pub const EPOLL_CTL_DEL : c_int = 2;
pub const EPOLL_CTL_MOD : c_int = 3;
pub const EPOLLWAKEUP   : c_uint = 1 << 29;
pub const EPOLLONESHOT  : c_uint = 1 << 30;
pub const EPOLLET       : c_uint = 1 << 31;

// stat.h

pub const S_IFMT   : umode_t = 0o170000;

// bit-start of the filetypes
pub const MODE_TYPE_SHIFT: usize = 12;

pub const S_IFSOCK : umode_t = 0o140000;
pub const S_IFLNK  : umode_t = 0o120000;
pub const S_IFREG  : umode_t = 0o100000;
pub const S_IFBLK  : umode_t = 0o060000;
pub const S_IFDIR  : umode_t = 0o040000;
pub const S_IFCHR  : umode_t = 0o020000;
pub const S_IFIFO  : umode_t = 0o010000;

pub const S_ISUID  : umode_t = 0o004000;
pub const S_ISGID  : umode_t = 0o002000;
pub const S_ISVTX  : umode_t = 0o001000;
pub const S_IRWXU  : umode_t = 0o000700;
pub const S_IRUSR  : umode_t = 0o000400;
pub const S_IWUSR  : umode_t = 0o000200;
pub const S_IXUSR  : umode_t = 0o000100;
pub const S_IRWXG  : umode_t = 0o000070;
pub const S_IRGRP  : umode_t = 0o000040;
pub const S_IWGRP  : umode_t = 0o000020;
pub const S_IXGRP  : umode_t = 0o000010;
pub const S_IRWXO  : umode_t = 0o000007;
pub const S_IROTH  : umode_t = 0o000004;
pub const S_IWOTH  : umode_t = 0o000002;
pub const S_IXOTH  : umode_t = 0o000001;

pub fn S_ISLNK(m: umode_t)  -> bool { m & S_IFMT == S_IFLNK }
pub fn S_ISREG(m: umode_t)  -> bool { m & S_IFMT == S_IFREG }
pub fn S_ISDIR(m: umode_t)  -> bool { m & S_IFMT == S_IFDIR }
pub fn S_ISCHR(m: umode_t)  -> bool { m & S_IFMT == S_IFCHR }
pub fn S_ISBLK(m: umode_t)  -> bool { m & S_IFMT == S_IFBLK }
pub fn S_ISFIFO(m: umode_t) -> bool { m & S_IFMT == S_IFIFO }
pub fn S_ISSOCK(m: umode_t) -> bool { m & S_IFMT == S_IFSOCK }

pub const S_IRWXUGO  : umode_t = S_IRWXU|S_IRWXG|S_IRWXO;
pub const S_IALLUGO  : umode_t = S_ISUID|S_ISGID|S_ISVTX|S_IRWXUGO;
pub const S_IRUGO    : umode_t = S_IRUSR|S_IRGRP|S_IROTH;
pub const S_IWUGO    : umode_t = S_IWUSR|S_IWGRP|S_IWOTH;
pub const S_IXUGO    : umode_t = S_IXUSR|S_IXGRP|S_IXOTH;

pub const UTIME_NOW  : k_long = (1 << 30) - 1;
pub const UTIME_OMIT : k_long = (1 << 30) - 2;

// falloc.h

pub const FALLOC_FL_KEEP_SIZE      : c_int = 0x01;
pub const FALLOC_FL_PUNCH_HOLE     : c_int = 0x02;
pub const FALLOC_FL_NO_HIDE_STALE  : c_int = 0x04;
pub const FALLOC_FL_COLLAPSE_RANGE : c_int = 0x08;
pub const FALLOC_FL_ZERO_RANGE     : c_int = 0x10;

// fcntl.h

pub const O_ASYNC : c_int = FASYNC;

// fadvise.h

pub const POSIX_FADV_NORMAL     : c_int = 0;
pub const POSIX_FADV_RANDOM     : c_int = 1;
pub const POSIX_FADV_SEQUENTIAL : c_int = 2;
pub const POSIX_FADV_WILLNEED   : c_int = 3;

// mman.h

pub const MREMAP_MAYMOVE    : c_int = 1;
pub const MREMAP_FIXED      : c_int = 2;
pub const OVERCOMMIT_GUESS  : c_int = 0;
pub const OVERCOMMIT_ALWAYS : c_int = 1;
pub const OVERCOMMIT_NEVER  : c_int = 2;

// wait.h

pub const WNOHANG     : c_int = 0x00000001;
pub const WUNTRACED   : c_int = 0x00000002;
pub const WSTOPPED    : c_int = WUNTRACED;
pub const WEXITED     : c_int = 0x00000004;
pub const WCONTINUED  : c_int = 0x00000008;
pub const WNOWAIT     : c_int = 0x01000000;
pub const __WNOTHREAD : c_int = 0x20000000;
pub const __WALL      : c_int = 0x40000000;
pub const __WCLONE    : c_int = 0x80000000u64 as _;
pub const P_ALL       : c_int = 0;
pub const P_PID       : c_int = 1;
pub const P_PGID      : c_int = 2;

// un.h

pub const UNIX_PATH_MAX : usize = 108;

#[repr(C)]
#[derive(Copy)]
pub struct sockaddr_un {
    pub sun_family: __kernel_sa_family_t,
    pub sun_path: [c_char; UNIX_PATH_MAX],
}

unsafe impl crate::util::pod::Pod for sockaddr_un { }

impl Clone for sockaddr_un {
    fn clone(&self) -> Self {
        return *self;
    }
}

// uapi/linux/net.h

pub const NPROTO          : c_int = AF_MAX;
pub const SYS_SOCKET      : c_int = 1;
pub const SYS_BIND        : c_int = 2;
pub const SYS_CONNECT     : c_int = 3;
pub const SYS_LISTEN      : c_int = 4;
pub const SYS_ACCEPT      : c_int = 5;
pub const SYS_GETSOCKNAME : c_int = 6;
pub const SYS_GETPEERNAME : c_int = 7;
pub const SYS_SOCKETPAIR  : c_int = 8;
pub const SYS_SEND        : c_int = 9;
pub const SYS_RECV        : c_int = 10;
pub const SYS_SENDTO      : c_int = 11;
pub const SYS_RECVFROM    : c_int = 12;
pub const SYS_SHUTDOWN    : c_int = 13;
pub const SYS_SETSOCKOPT  : c_int = 14;
pub const SYS_GETSOCKOPT  : c_int = 15;
pub const SYS_SENDMSG     : c_int = 16;
pub const SYS_RECVMSG     : c_int = 17;
pub const SYS_ACCEPT4     : c_int = 18;
pub const SYS_RECVMMSG    : c_int = 19;
pub const SYS_SENDMMSG    : c_int = 20;

pub const SS_FREE          : c_int = 0;
pub const SS_UNCONNECTED   : c_int = 1;
pub const SS_CONNECTING    : c_int = 2;
pub const SS_CONNECTED     : c_int = 3;
pub const SS_DISCONNECTING : c_int = 4;

pub const __SO_ACCEPTCON : c_int = 1 << 16;

// net.h

pub const SOCK_ASYNC_NOSPACE        : c_int = 0;
pub const SOCK_ASYNC_WAITDATA       : c_int = 1;
pub const SOCK_NOSPACE              : c_int = 2;
pub const SOCK_PASSCRED             : c_int = 3;
pub const SOCK_PASSSEC              : c_int = 4;
pub const SOCK_EXTERNALLY_ALLOCATED : c_int = 5;

pub const SHUT_RD   : c_int = 0;
pub const SHUT_WR   : c_int = 1;
pub const SHUT_RDWR : c_int = 2;

// XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX
// XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX
// XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX
// XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX

//////////////////////////
// include/uapi/linux/in.h
//////////////////////////

pub const IPPROTO_IP      : c_int = 0;
pub const IPPROTO_ICMP    : c_int = 1;
pub const IPPROTO_IGMP    : c_int = 2;
pub const IPPROTO_IPIP    : c_int = 4;
pub const IPPROTO_TCP     : c_int = 6;
pub const IPPROTO_EGP     : c_int = 8;
pub const IPPROTO_PUP     : c_int = 12;
pub const IPPROTO_UDP     : c_int = 17;
pub const IPPROTO_IDP     : c_int = 22;
pub const IPPROTO_TP      : c_int = 29;
pub const IPPROTO_DCCP    : c_int = 33;
pub const IPPROTO_IPV6    : c_int = 41;
pub const IPPROTO_RSVP    : c_int = 46;
pub const IPPROTO_GRE     : c_int = 47;
pub const IPPROTO_ESP     : c_int = 50;
pub const IPPROTO_AH      : c_int = 51;
pub const IPPROTO_MTP     : c_int = 92;
pub const IPPROTO_BEETPH  : c_int = 94;
pub const IPPROTO_ENCAP   : c_int = 98;
pub const IPPROTO_PIM     : c_int = 103;
pub const IPPROTO_COMP    : c_int = 108;
pub const IPPROTO_SCTP    : c_int = 132;
pub const IPPROTO_UDPLITE : c_int = 136;
pub const IPPROTO_RAW     : c_int = 255;
pub const IPPROTO_MAX     : c_int = 256;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct in_addr {
    pub s_addr: __be32,
}

pub const BYTES_PER_IN_ADDR: usize = 4;

pub const IP_TOS                    : c_int = 1;
pub const IP_TTL                    : c_int = 2;
pub const IP_HDRINCL                : c_int = 3;
pub const IP_OPTIONS                : c_int = 4;
pub const IP_ROUTER_ALERT           : c_int = 5;
pub const IP_RECVOPTS               : c_int = 6;
pub const IP_RETOPTS                : c_int = 7;
pub const IP_PKTINFO                : c_int = 8;
pub const IP_PKTOPTIONS             : c_int = 9;
pub const IP_MTU_DISCOVER           : c_int = 10;
pub const IP_RECVERR                : c_int = 11;
pub const IP_RECVTTL                : c_int = 12;
pub const IP_RECVTOS                : c_int = 13;
pub const IP_MTU                    : c_int = 14;
pub const IP_FREEBIND               : c_int = 15;
pub const IP_IPSEC_POLICY           : c_int = 16;
pub const IP_XFRM_POLICY            : c_int = 17;
pub const IP_PASSSEC                : c_int = 18;
pub const IP_TRANSPARENT            : c_int = 19;
pub const IP_RECVRETOPTS            : c_int = IP_RETOPTS;
pub const IP_ORIGDSTADDR            : c_int = 20;
pub const IP_RECVORIGDSTADDR        : c_int = IP_ORIGDSTADDR;
pub const IP_MINTTL                 : c_int = 21;
pub const IP_NODEFRAG               : c_int = 22;
pub const IP_CHECKSUM               : c_int = 23;
pub const IP_PMTUDISC_DONT          : c_int = 0;
pub const IP_PMTUDISC_WANT          : c_int = 1;
pub const IP_PMTUDISC_DO            : c_int = 2;
pub const IP_PMTUDISC_PROBE         : c_int = 3;
pub const IP_PMTUDISC_INTERFACE     : c_int = 4;
pub const IP_PMTUDISC_OMIT          : c_int = 5;
pub const IP_MULTICAST_IF           : c_int = 32;
pub const IP_MULTICAST_TTL          : c_int = 33;
pub const IP_MULTICAST_LOOP         : c_int = 34;
pub const IP_ADD_MEMBERSHIP         : c_int = 35;
pub const IP_DROP_MEMBERSHIP        : c_int = 36;
pub const IP_UNBLOCK_SOURCE         : c_int = 37;
pub const IP_BLOCK_SOURCE           : c_int = 38;
pub const IP_ADD_SOURCE_MEMBERSHIP  : c_int = 39;
pub const IP_DROP_SOURCE_MEMBERSHIP : c_int = 40;
pub const IP_MSFILTER               : c_int = 41;
pub const MCAST_JOIN_GROUP          : c_int = 42;
pub const MCAST_BLOCK_SOURCE        : c_int = 43;
pub const MCAST_UNBLOCK_SOURCE      : c_int = 44;
pub const MCAST_LEAVE_GROUP         : c_int = 45;
pub const MCAST_JOIN_SOURCE_GROUP   : c_int = 46;
pub const MCAST_LEAVE_SOURCE_GROUP  : c_int = 47;
pub const MCAST_MSFILTER            : c_int = 48;
pub const IP_MULTICAST_ALL          : c_int = 49;
pub const IP_UNICAST_IF             : c_int = 50;
pub const MCAST_EXCLUDE             : c_int = 0;
pub const MCAST_INCLUDE             : c_int = 1;
pub const IP_DEFAULT_MULTICAST_TTL  : c_int = 1;
pub const IP_DEFAULT_MULTICAST_LOOP : c_int = 1;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ip_mreq {
    pub imr_multiaddr: in_addr,
    pub imr_interface: in_addr,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ip_mreqn {
    pub imr_multiaddr: in_addr,
    pub imr_address:   in_addr,
    pub imr_ifindex:   c_int,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ip_mreq_source {
    pub imr_multiaddr:  __be32,
    pub imr_interface:  __be32,
    pub imr_sourceaddr: __be32,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ip_msfilter {
    pub imsf_multiaddr: __be32,
    pub imsf_interface: __be32,
    pub imsf_fmode:     __u32,
    pub imsf_numsrc:    __u32,
    pub imsf_slist: [__be32; 1],
}

pub const fn IP_MSFILTER_SIZE(numsrc: usize) -> usize {
    mem::size_of::<ip_msfilter>() - mem::size_of::<__u32>()
                + numsrc * mem::size_of::<__u32>()
}

#[repr(C)]
#[derive(Pod, Copy, Clone)]
pub struct group_req {
    pub gr_interface: __u32,
    pub gr_group:     __kernel_sockaddr_storage,
}

#[repr(C)]
#[derive(Pod, Copy, Clone)]
pub struct group_source_req {
    pub gsr_interface: __u32,
    pub gsr_group:     __kernel_sockaddr_storage,
    pub gsr_source:    __kernel_sockaddr_storage,
}

#[repr(C)]
#[derive(Pod, Copy, Clone)]
pub struct group_filter {
    pub gf_interface: __u32,
    pub gf_group:     __kernel_sockaddr_storage,
    pub gf_fmode:     __u32,
    pub gf_numsrc:    __u32,
    pub gf_slist:     [__kernel_sockaddr_storage; 1],
}

pub const fn GROUP_FILTER_SIZE(numsrc: usize ) -> usize {
    mem::size_of::<group_filter>() - mem::size_of::<__kernel_sockaddr_storage>()
            + numsrc * mem::size_of::<__kernel_sockaddr_storage>()
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct in_pktinfo {
    pub ipi_ifindex:  c_int,
    pub ipi_spec_dst: in_addr,
    pub ipi_addr:     in_addr,
}

pub const __SOCK_SIZE__: usize = 16;

#[repr(C)]
#[derive(Pod, Copy, Clone)]
pub struct sockaddr_in {
    pub sin_family: __kernel_sa_family_t,
    pub sin_port:   __be16,
    pub sin_addr:   in_addr,
    pub __pad: [c_uchar; __SOCK_SIZE__ - BYTES_PER_SHORT - BYTES_PER_SHORT - BYTES_PER_IN_ADDR],
}

pub fn IN_CLASSA(a: u32) -> bool { (a & 0x80000000) == 0 }
pub const IN_CLASSA_NET    : u32 = 0xff000000;
pub const IN_CLASSA_NSHIFT : u32 = 24;
pub const IN_CLASSA_HOST   : u32 = 0xffffffff & !IN_CLASSA_NET;
pub const IN_CLASSA_MAX    : u32 = 128;

pub fn IN_CLASSB(a: u32) -> bool { (a & 0xc0000000) == 0x80000000 }
pub const IN_CLASSB_NET    : u32 = 0xffff0000;
pub const IN_CLASSB_NSHIFT : u32 = 16;
pub const IN_CLASSB_HOST   : u32 = 0xffffffff & !IN_CLASSB_NET;
pub const IN_CLASSB_MAX    : u32 = 65536;

pub fn IN_CLASSC(a: u32) -> bool { (a & 0xe0000000) == 0xc0000000 }
pub const IN_CLASSC_NET    : u32 = 0xffffff00;
pub const IN_CLASSC_NSHIFT : u32 = 8;
pub const IN_CLASSC_HOST   : u32 = 0xffffffff & !IN_CLASSC_NET;

pub fn IN_CLASSD(a: u32) -> bool { (a & 0xf0000000) == 0xe0000000 }
pub fn IN_MULTICAST(a: u32) -> bool { IN_CLASSD(a) }
pub const IN_MULTICAST_NET : u32 = 0xF0000000;

pub fn IN_EXPERIMENTAL(a: u32) -> bool { (a & 0xf0000000) == 0xf0000000 }
pub fn IN_BADCLASS(a: u32) -> bool { IN_EXPERIMENTAL(a) }

pub const INADDR_ANY       : u32 = 0x00000000;
pub const INADDR_BROADCAST : u32 = 0xffffffff;
pub const INADDR_NONE      : u32 = 0xffffffff;
pub const IN_LOOPBACKNET   : u32 = 127;
pub const INADDR_LOOPBACK  : u32 = 0x7f000001;

pub fn IN_LOOPBACK(a: u32) -> bool { (a & 0xff000000) == 0x7f000000 }

pub const INADDR_UNSPEC_GROUP    : u32 = 0xe0000000;
pub const INADDR_ALLHOSTS_GROUP  : u32 = 0xe0000001;
pub const INADDR_ALLRTRS_GROUP   : u32 = 0xe0000002;
pub const INADDR_MAX_LOCAL_GROUP : u32 = 0xe00000ff;

///////////////////////////
// include/uapi/linux/in6.h
///////////////////////////

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct in6_addr {
    pub u6_addr16: [__be16; 8],
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct sockaddr_in6 {
    pub sin6_family:   c_ushort,
    pub sin6_port:     __be16,
    pub sin6_flowinfo: __be32,
    pub sin6_addr:     in6_addr,
    pub sin6_scope_id: __u32,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ipv6_mreq {
    pub ipv6mr_multiaddr: in6_addr,
    pub ipv6mr_ifindex:   c_int,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct in6_flowlabel_req {
    pub flr_dst:     in6_addr,
    pub flr_label:   __be32,
    pub flr_action:  __u8,
    pub flr_share:   __u8,
    pub flr_flags:   __u16,
    pub flr_expires: __u16,
    pub flr_linger:  __u16,
    pub __flr_pad:   __u32,
}

pub const IPV6_FL_A_GET     : __u8 = 0;
pub const IPV6_FL_A_PUT     : __u8 = 1;
pub const IPV6_FL_A_RENEW   : __u8 = 2;
pub const IPV6_FL_F_CREATE  : __u8 = 1;
pub const IPV6_FL_F_EXCL    : __u8 = 2;
pub const IPV6_FL_F_REFLECT : __u8 = 4;
pub const IPV6_FL_F_REMOTE  : __u8 = 8;
pub const IPV6_FL_S_NONE    : __u8 = 0;
pub const IPV6_FL_S_EXCL    : __u8 = 1;
pub const IPV6_FL_S_PROCESS : __u8 = 2;
pub const IPV6_FL_S_USER    : __u8 = 3;
pub const IPV6_FL_S_ANY     : __u8 = 255;

pub const IPV6_FLOWINFO_FLOWLABEL : __le32 = 0x000fffff;
pub const IPV6_FLOWINFO_PRIORITY  : __le32 = 0x0ff00000;

pub const IPV6_PRIORITY_UNCHARACTERIZED : c_int = 0x0000;
pub const IPV6_PRIORITY_FILLER          : c_int = 0x0100;
pub const IPV6_PRIORITY_UNATTENDED      : c_int = 0x0200;
pub const IPV6_PRIORITY_RESERVED1       : c_int = 0x0300;
pub const IPV6_PRIORITY_BULK            : c_int = 0x0400;
pub const IPV6_PRIORITY_RESERVED2       : c_int = 0x0500;
pub const IPV6_PRIORITY_INTERACTIVE     : c_int = 0x0600;
pub const IPV6_PRIORITY_CONTROL         : c_int = 0x0700;
pub const IPV6_PRIORITY_8               : c_int = 0x0800;
pub const IPV6_PRIORITY_9               : c_int = 0x0900;
pub const IPV6_PRIORITY_10              : c_int = 0x0a00;
pub const IPV6_PRIORITY_11              : c_int = 0x0b00;
pub const IPV6_PRIORITY_12              : c_int = 0x0c00;
pub const IPV6_PRIORITY_13              : c_int = 0x0d00;
pub const IPV6_PRIORITY_14              : c_int = 0x0e00;
pub const IPV6_PRIORITY_15              : c_int = 0x0f00;

pub const IPPROTO_HOPOPTS  : c_int = 0;
pub const IPPROTO_ROUTING  : c_int = 43;
pub const IPPROTO_FRAGMENT : c_int = 44;
pub const IPPROTO_ICMPV6   : c_int = 58;
pub const IPPROTO_NONE     : c_int = 59;
pub const IPPROTO_DSTOPTS  : c_int = 60;
pub const IPPROTO_MH       : c_int = 135;

pub const IPV6_TLV_PAD1        : c_int = 0;
pub const IPV6_TLV_PADN        : c_int = 1;
pub const IPV6_TLV_ROUTERALERT : c_int = 5;
pub const IPV6_TLV_JUMBO       : c_int = 194;
pub const IPV6_TLV_HAO         : c_int = 201;

pub const IPV6_ADDRFORM           : c_int = 1;
pub const IPV6_2292PKTINFO        : c_int = 2;
pub const IPV6_2292HOPOPTS        : c_int = 3;
pub const IPV6_2292DSTOPTS        : c_int = 4;
pub const IPV6_2292RTHDR          : c_int = 5;
pub const IPV6_2292PKTOPTIONS     : c_int = 6;
pub const IPV6_CHECKSUM           : c_int = 7;
pub const IPV6_2292HOPLIMIT       : c_int = 8;
pub const IPV6_NEXTHOP            : c_int = 9;
pub const IPV6_AUTHHDR            : c_int = 10;
pub const IPV6_FLOWINFO           : c_int = 11;
pub const IPV6_UNICAST_HOPS       : c_int = 16;
pub const IPV6_MULTICAST_IF       : c_int = 17;
pub const IPV6_MULTICAST_HOPS     : c_int = 18;
pub const IPV6_MULTICAST_LOOP     : c_int = 19;
pub const IPV6_ADD_MEMBERSHIP     : c_int = 20;
pub const IPV6_DROP_MEMBERSHIP    : c_int = 21;
pub const IPV6_ROUTER_ALERT       : c_int = 22;
pub const IPV6_MTU_DISCOVER       : c_int = 23;
pub const IPV6_MTU                : c_int = 24;
pub const IPV6_RECVERR            : c_int = 25;
pub const IPV6_V6ONLY             : c_int = 26;
pub const IPV6_JOIN_ANYCAST       : c_int = 27;
pub const IPV6_LEAVE_ANYCAST      : c_int = 28;
pub const IPV6_PMTUDISC_DONT      : c_int = 0;
pub const IPV6_PMTUDISC_WANT      : c_int = 1;
pub const IPV6_PMTUDISC_DO        : c_int = 2;
pub const IPV6_PMTUDISC_PROBE     : c_int = 3;
pub const IPV6_PMTUDISC_INTERFACE : c_int = 4;
pub const IPV6_PMTUDISC_OMIT      : c_int = 5;
pub const IPV6_FLOWLABEL_MGR      : c_int = 32;
pub const IPV6_FLOWINFO_SEND      : c_int = 33;
pub const IPV6_IPSEC_POLICY       : c_int = 34;
pub const IPV6_XFRM_POLICY        : c_int = 35;

pub const IPV6_RECVPKTINFO  : c_int = 49;
pub const IPV6_PKTINFO      : c_int = 50;
pub const IPV6_RECVHOPLIMIT : c_int = 51;
pub const IPV6_HOPLIMIT     : c_int = 52;
pub const IPV6_RECVHOPOPTS  : c_int = 53;
pub const IPV6_HOPOPTS      : c_int = 54;
pub const IPV6_RTHDRDSTOPTS : c_int = 55;
pub const IPV6_RECVRTHDR    : c_int = 56;
pub const IPV6_RTHDR        : c_int = 57;
pub const IPV6_RECVDSTOPTS  : c_int = 58;
pub const IPV6_DSTOPTS      : c_int = 59;
pub const IPV6_RECVPATHMTU  : c_int = 60;
pub const IPV6_PATHMTU      : c_int = 61;
pub const IPV6_DONTFRAG     : c_int = 62;

pub const IPV6_RECVTCLASS                : c_int = 66;
pub const IPV6_TCLASS                    : c_int = 67;
pub const IPV6_AUTOFLOWLABEL             : c_int = 70;
pub const IPV6_ADDR_PREFERENCES          : c_int = 72;
pub const IPV6_PREFER_SRC_TMP            : c_int = 0x0001;
pub const IPV6_PREFER_SRC_PUBLIC         : c_int = 0x0002;
pub const IPV6_PREFER_SRC_PUBTMP_DEFAULT : c_int = 0x0100;
pub const IPV6_PREFER_SRC_COA            : c_int = 0x0004;
pub const IPV6_PREFER_SRC_HOME           : c_int = 0x0400;
pub const IPV6_PREFER_SRC_CGA            : c_int = 0x0008;
pub const IPV6_PREFER_SRC_NONCGA         : c_int = 0x0800;
pub const IPV6_MINHOPCOUNT               : c_int = 73;
pub const IPV6_ORIGDSTADDR               : c_int = 74;
pub const IPV6_RECVORIGDSTADDR           : c_int = IPV6_ORIGDSTADDR;
pub const IPV6_TRANSPARENT               : c_int = 75;
pub const IPV6_UNICAST_IF                : c_int = 76;

///////////////////////////////
// include/uapi/linux/sockios.h
///////////////////////////////

pub const SIOCINQ                : c_int = FIONREAD as c_int;
pub const SIOCOUTQ               : c_int = TIOCOUTQ as c_int;
pub const SIOCADDRT              : c_int = 0x890B;
pub const SIOCDELRT              : c_int = 0x890C;
pub const SIOCRTMSG              : c_int = 0x890D;
pub const SIOCGIFNAME            : c_int = 0x8910;
pub const SIOCSIFLINK            : c_int = 0x8911;
pub const SIOCGIFCONF            : c_int = 0x8912;
pub const SIOCGIFFLAGS           : c_int = 0x8913;
pub const SIOCSIFFLAGS           : c_int = 0x8914;
pub const SIOCGIFADDR            : c_int = 0x8915;
pub const SIOCSIFADDR            : c_int = 0x8916;
pub const SIOCGIFDSTADDR         : c_int = 0x8917;
pub const SIOCSIFDSTADDR         : c_int = 0x8918;
pub const SIOCGIFBRDADDR         : c_int = 0x8919;
pub const SIOCSIFBRDADDR         : c_int = 0x891a;
pub const SIOCGIFNETMASK         : c_int = 0x891b;
pub const SIOCSIFNETMASK         : c_int = 0x891c;
pub const SIOCGIFMETRIC          : c_int = 0x891d;
pub const SIOCSIFMETRIC          : c_int = 0x891e;
pub const SIOCGIFMEM             : c_int = 0x891f;
pub const SIOCSIFMEM             : c_int = 0x8920;
pub const SIOCGIFMTU             : c_int = 0x8921;
pub const SIOCSIFMTU             : c_int = 0x8922;
pub const SIOCSIFNAME            : c_int = 0x8923;
pub const SIOCSIFHWADDR          : c_int = 0x8924;
pub const SIOCGIFENCAP           : c_int = 0x8925;
pub const SIOCSIFENCAP           : c_int = 0x8926;
pub const SIOCGIFHWADDR          : c_int = 0x8927;
pub const SIOCGIFSLAVE           : c_int = 0x8929;
pub const SIOCSIFSLAVE           : c_int = 0x8930;
pub const SIOCADDMULTI           : c_int = 0x8931;
pub const SIOCDELMULTI           : c_int = 0x8932;
pub const SIOCGIFINDEX           : c_int = 0x8933;
pub const SIOGIFINDEX            : c_int = SIOCGIFINDEX;
pub const SIOCSIFPFLAGS          : c_int = 0x8934;
pub const SIOCGIFPFLAGS          : c_int = 0x8935;
pub const SIOCDIFADDR            : c_int = 0x8936;
pub const SIOCSIFHWBROADCAST     : c_int = 0x8937;
pub const SIOCGIFCOUNT           : c_int = 0x8938;
pub const SIOCGIFBR              : c_int = 0x8940;
pub const SIOCSIFBR              : c_int = 0x8941;
pub const SIOCGIFTXQLEN          : c_int = 0x8942;
pub const SIOCSIFTXQLEN          : c_int = 0x8943;
pub const SIOCETHTOOL            : c_int = 0x8946;
pub const SIOCGMIIPHY            : c_int = 0x8947;
pub const SIOCGMIIREG            : c_int = 0x8948;
pub const SIOCSMIIREG            : c_int = 0x8949;
pub const SIOCWANDEV             : c_int = 0x894A;
pub const SIOCOUTQNSD            : c_int = 0x894B;
pub const SIOCDARP               : c_int = 0x8953;
pub const SIOCGARP               : c_int = 0x8954;
pub const SIOCSARP               : c_int = 0x8955;
pub const SIOCDRARP              : c_int = 0x8960;
pub const SIOCGRARP              : c_int = 0x8961;
pub const SIOCSRARP              : c_int = 0x8962;
pub const SIOCGIFMAP             : c_int = 0x8970;
pub const SIOCSIFMAP             : c_int = 0x8971;
pub const SIOCADDDLCI            : c_int = 0x8980;
pub const SIOCDELDLCI            : c_int = 0x8981;
pub const SIOCGIFVLAN            : c_int = 0x8982;
pub const SIOCSIFVLAN            : c_int = 0x8983;
pub const SIOCBONDENSLAVE        : c_int = 0x8990;
pub const SIOCBONDRELEASE        : c_int = 0x8991;
pub const SIOCBONDSETHWADDR      : c_int = 0x8992;
pub const SIOCBONDSLAVEINFOQUERY : c_int = 0x8993;
pub const SIOCBONDINFOQUERY      : c_int = 0x8994;
pub const SIOCBONDCHANGEACTIVE   : c_int = 0x8995;
pub const SIOCBRADDBR            : c_int = 0x89a0;
pub const SIOCBRDELBR            : c_int = 0x89a1;
pub const SIOCBRADDIF            : c_int = 0x89a2;
pub const SIOCBRDELIF            : c_int = 0x89a3;
pub const SIOCSHWTSTAMP          : c_int = 0x89b0;
pub const SIOCGHWTSTAMP          : c_int = 0x89b1;
pub const SIOCDEVPRIVATE         : c_int = 0x89F0;
pub const SIOCPROTOPRIVATE       : c_int = 0x89E0;

///////////////////////////
// include/uapi/linux/tcp.h
///////////////////////////

pub const TCP_MSS_DEFAULT          : c_uint = 536;
pub const TCP_MSS_DESIRED          : c_uint = 1220;

pub const TCP_NODELAY              : c_int = 1;
pub const TCP_MAXSEG               : c_int = 2;
pub const TCP_CORK                 : c_int = 3;
pub const TCP_KEEPIDLE             : c_int = 4;
pub const TCP_KEEPINTVL            : c_int = 5;
pub const TCP_KEEPCNT              : c_int = 6;
pub const TCP_SYNCNT               : c_int = 7;
pub const TCP_LINGER2              : c_int = 8;
pub const TCP_DEFER_ACCEPT         : c_int = 9;
pub const TCP_WINDOW_CLAMP         : c_int = 10;
pub const TCP_INFO                 : c_int = 11;
pub const TCP_QUICKACK             : c_int = 12;
pub const TCP_CONGESTION           : c_int = 13;
pub const TCP_MD5SIG               : c_int = 14;
pub const TCP_THIN_LINEAR_TIMEOUTS : c_int = 16;
pub const TCP_THIN_DUPACK          : c_int = 17;
pub const TCP_USER_TIMEOUT         : c_int = 18;
pub const TCP_REPAIR               : c_int = 19;
pub const TCP_REPAIR_QUEUE         : c_int = 20;
pub const TCP_QUEUE_SEQ            : c_int = 21;
pub const TCP_REPAIR_OPTIONS       : c_int = 22;
pub const TCP_FASTOPEN             : c_int = 23;
pub const TCP_TIMESTAMP            : c_int = 24;
pub const TCP_NOTSENT_LOWAT        : c_int = 25;

///////////////////////////
// include/uapi/linux/udp.h
///////////////////////////

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct udphdr {
    pub source: __be16,
    pub dst:    __be16,
    pub len:    __be16,
    pub check:  __sum16,
}

pub const UDP_CORK                   : c_int = 1;
pub const UDP_ENCAP                  : c_int = 100;
pub const UDP_NO_CHECK6_TX           : c_int = 101;
pub const UDP_NO_CHECK6_RX           : c_int = 102;
pub const UDP_ENCAP_ESPINUDP_NON_IKE : c_int = 1;
pub const UDP_ENCAP_ESPINUDP         : c_int = 2;
pub const UDP_ENCAP_L2TPINUDP        : c_int = 3;

///////////////////////////////
// include/uapi/linux/netlink.h
///////////////////////////////

pub const NETLINK_ROUTE          : c_int = 0;
pub const NETLINK_UNUSED         : c_int = 1;
pub const NETLINK_USERSOCK       : c_int = 2;
pub const NETLINK_FIREWALL       : c_int = 3;
pub const NETLINK_SOCK_DIAG      : c_int = 4;
pub const NETLINK_NFLOG          : c_int = 5;
pub const NETLINK_XFRM           : c_int = 6;
pub const NETLINK_SELINUX        : c_int = 7;
pub const NETLINK_ISCSI          : c_int = 8;
pub const NETLINK_AUDIT          : c_int = 9;
pub const NETLINK_FIB_LOOKUP     : c_int = 10;
pub const NETLINK_CONNECTOR      : c_int = 11;
pub const NETLINK_NETFILTER      : c_int = 12;
pub const NETLINK_IP6_FW         : c_int = 13;
pub const NETLINK_DNRTMSG        : c_int = 14;
pub const NETLINK_KOBJECT_UEVENT : c_int = 15;
pub const NETLINK_GENERIC        : c_int = 16;
pub const NETLINK_SCSITRANSPORT  : c_int = 18;
pub const NETLINK_ECRYPTFS       : c_int = 19;
pub const NETLINK_RDMA           : c_int = 20;
pub const NETLINK_CRYPTO         : c_int = 21;
pub const NETLINK_INET_DIAG      : c_int = NETLINK_SOCK_DIAG;
pub const MAX_LINKS              : c_int = 32;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct sockaddr_nl {
    pub nl_family: __kernel_sa_family_t,
    pub nl_pad:    c_ushort,
    pub nl_pid:    __u32,
    pub nl_groups: __u32,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct nlmsghdr {
    pub nlmsg_len:   __u32,
    pub nlmsg_type:  __u16,
    pub nlmsg_flags: __u16,
    pub nlmsg_seq:   __u32,
    pub nlmsg_pid:   __u32,
}

pub const NLM_F_REQUEST   : __u16 = 1;
pub const NLM_F_MULTI     : __u16 = 2;
pub const NLM_F_ACK       : __u16 = 4;
pub const NLM_F_ECHO      : __u16 = 8;
pub const NLM_F_DUMP_INTR : __u16 = 16;
pub const NLM_F_ROOT      : __u16 = 0x100;
pub const NLM_F_MATCH     : __u16 = 0x200;
pub const NLM_F_ATOMIC    : __u16 = 0x400;
pub const NLM_F_DUMP      : __u16 = NLM_F_ROOT|NLM_F_MATCH;
pub const NLM_F_REPLACE   : __u16 = 0x100;
pub const NLM_F_EXCL      : __u16 = 0x200;
pub const NLM_F_CREATE    : __u16 = 0x400;
pub const NLM_F_APPEND    : __u16 = 0x800;

pub const NLMSG_ALIGNTO	: c_uint = 4;

pub const fn NLMSG_ALIGN(len: c_uint) -> c_uint {
    (len + NLMSG_ALIGNTO - 1) & !(NLMSG_ALIGNTO - 1)
}

pub const fn NLMSG_LENGTH(len: c_uint) -> c_uint {
    len + NLMSG_ALIGN(mem::size_of::<nlmsghdr>() as c_uint)
}

pub const fn NLMSG_SPACE(len: c_uint) -> c_uint {
    NLMSG_ALIGN(NLMSG_LENGTH(len))
}

pub unsafe fn NLMSG_DATA(nlh: *mut nlmsghdr) -> *mut c_void {
    (nlh as usize + NLMSG_LENGTH(0) as usize) as *mut c_void
}

pub unsafe fn NLMSG_NEXT(nlh: *mut nlmsghdr, len: &mut c_uint) -> *mut nlmsghdr {
    *len -= NLMSG_ALIGN((*nlh).nlmsg_len);
    (nlh as usize + NLMSG_ALIGN((*nlh).nlmsg_len as c_uint) as usize) as *mut nlmsghdr
}

pub unsafe fn NLMSG_OK(nlh: *mut nlmsghdr, len: c_uint) -> bool {
       len >= mem::size_of::<nlmsghdr>() as c_uint
    && (*nlh).nlmsg_len >= mem::size_of::<nlmsghdr>() as c_uint
    && (*nlh).nlmsg_len <= len
}

pub unsafe fn NLMSG_PAYLOAD(nlh: *mut nlmsghdr, len: c_uint) -> c_uint {
    (*nlh).nlmsg_len as c_uint - NLMSG_SPACE(len)
}

pub const NLMSG_NOOP     : __u16 = 0x1;
pub const NLMSG_ERROR    : __u16 = 0x2;
pub const NLMSG_DONE     : __u16 = 0x3;
pub const NLMSG_OVERRUN  : __u16 = 0x4;
pub const NLMSG_MIN_TYPE : __u16 = 0x10;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct nlmsgerr {
    pub error: c_int,
    pub msg:   nlmsghdr,
}

pub const NETLINK_ADD_MEMBERSHIP  : c_int = 1;
pub const NETLINK_DROP_MEMBERSHIP : c_int = 2;
pub const NETLINK_PKTINFO         : c_int = 3;
pub const NETLINK_BROADCAST_ERROR : c_int = 4;
pub const NETLINK_NO_ENOBUFS      : c_int = 5;
pub const NETLINK_RX_RING         : c_int = 6;
pub const NETLINK_TX_RING         : c_int = 7;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct nl_pktinfo {
    pub group: __u32,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct nl_mmap_req {
    pub nm_block_size: c_uint,
    pub nm_block_nr:   c_uint,
    pub nm_frame_size: c_uint,
    pub nm_frame_nr:   c_uint,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct nl_mmap_hdr {
    pub nm_status: c_uint,
    pub nm_len:    c_uint,
    pub nm_group:  __u32,
    pub nm_pid:    __u32,
    pub nm_uid:    __u32,
    pub nm_gid:    __u32,
}

pub type nl_mmap_status = c_int;

pub const NL_MMAP_STATUS_UNUSED:   nl_mmap_status = 0;
pub const NL_MMAP_STATUS_RESERVED: nl_mmap_status = 1;
pub const NL_MMAP_STATUS_VALID:    nl_mmap_status = 2;
pub const NL_MMAP_STATUS_COPY:     nl_mmap_status = 3;
pub const NL_MMAP_STATUS_SKIP:     nl_mmap_status = 4;

pub const NL_MMAP_MSG_ALIGNMENT : c_uint = NLMSG_ALIGNTO;
// #define NL_MMAP_MSG_ALIGN(sz)		__ALIGN_KERNEL(sz, NL_MMAP_MSG_ALIGNMENT)
// #define NL_MMAP_HDRLEN			NL_MMAP_MSG_ALIGN(sizeof(struct nl_mmap_hdr))

pub const NET_MAJOR : c_int = 36;

pub const NETLINK_UNCONNECTED : c_int = 0;
pub const NETLINK_CONNECTED   : c_int = 1;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct nlattr {
    pub nla_len:  __u16,
    pub nla_type: __u16,
}

pub const NLA_F_NESTED        : c_int = 1 << 15;
pub const NLA_F_NET_BYTEORDER : c_int = 1 << 14;
pub const NLA_TYPE_MASK       : c_int = !(NLA_F_NESTED | NLA_F_NET_BYTEORDER);

pub const NLA_ALIGNTO : c_uint = 4;
pub unsafe fn NLA_ALIGN(len: c_uint) -> c_uint {
    (len + NLA_ALIGNTO - 1) & !(NLA_ALIGNTO - 1)
}
// #define NLA_HDRLEN		((int) NLA_ALIGN(sizeof(struct nlattr)))

/////////////////////////////////
// include/uapi/linux/rtnetlink.h
/////////////////////////////////

pub const RTNL_FAMILY_IPMR  : c_int = 128;
pub const RTNL_FAMILY_IP6MR : c_int = 129;
pub const RTNL_FAMILY_MAX   : c_int = 129;

pub const RTM_BASE         : u16 = 16;
pub const RTM_NEWLINK      : u16 = 16;
pub const RTM_DELLINK      : u16 = 17;
pub const RTM_GETLINK      : u16 = 18;
pub const RTM_SETLINK      : u16 = 19;
pub const RTM_NEWADDR      : u16 = 20;
pub const RTM_DELADDR      : u16 = 21;
pub const RTM_GETADDR      : u16 = 22;
pub const RTM_NEWROUTE     : u16 = 24;
pub const RTM_DELROUTE     : u16 = 25;
pub const RTM_GETROUTE     : u16 = 26;
pub const RTM_NEWNEIGH     : u16 = 28;
pub const RTM_DELNEIGH     : u16 = 29;
pub const RTM_GETNEIGH     : u16 = 30;
pub const RTM_NEWRULE      : u16 = 32;
pub const RTM_DELRULE      : u16 = 33;
pub const RTM_GETRULE      : u16 = 34;
pub const RTM_NEWQDISC     : u16 = 36;
pub const RTM_DELQDISC     : u16 = 37;
pub const RTM_GETQDISC     : u16 = 38;
pub const RTM_NEWTCLASS    : u16 = 40;
pub const RTM_DELTCLASS    : u16 = 41;
pub const RTM_GETTCLASS    : u16 = 42;
pub const RTM_NEWTFILTER   : u16 = 44;
pub const RTM_DELTFILTER   : u16 = 45;
pub const RTM_GETTFILTER   : u16 = 46;
pub const RTM_NEWACTION    : u16 = 48;
pub const RTM_DELACTION    : u16 = 49;
pub const RTM_GETACTION    : u16 = 50;
pub const RTM_NEWPREFIX    : u16 = 52;
pub const RTM_GETMULTICAST : u16 = 58;
pub const RTM_GETANYCAST   : u16 = 62;
pub const RTM_NEWNEIGHTBL  : u16 = 64;
pub const RTM_GETNEIGHTBL  : u16 = 66;
pub const RTM_SETNEIGHTBL  : u16 = 67;
pub const RTM_NEWNDUSEROPT : u16 = 68;
pub const RTM_NEWADDRLABEL : u16 = 72;
pub const RTM_DELADDRLABEL : u16 = 73;
pub const RTM_GETADDRLABEL : u16 = 74;
pub const RTM_GETDCB       : u16 = 78;
pub const RTM_SETDCB       : u16 = 79;
pub const RTM_NEWNETCONF   : u16 = 80;
pub const RTM_GETNETCONF   : u16 = 82;
pub const RTM_NEWMDB       : u16 = 84;
pub const RTM_DELMDB       : u16 = 85;
pub const RTM_GETMDB       : u16 = 86;
pub const RTM_NEWNSID      : u16 = 88;
pub const RTM_GETNSID      : u16 = 90;
pub const __RTM_MAX        : u16 = 91;

pub const RTM_MAX : u16 = ((__RTM_MAX + 3) & !3) - 1;

pub const RTM_NR_MSGTYPES : u16 = RTM_MAX + 1 - RTM_BASE;
pub const RTM_NR_FAMILIES : u16 = RTM_NR_MSGTYPES >> 2;
pub const fn RTM_FAM(cmd: u16) -> u16 { (((cmd) - RTM_BASE) >> 2) }

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct rtattr {
    pub rta_len:  c_ushort,
    pub rta_type: c_ushort,
}

pub const RTA_ALIGNTO : c_uint = 4;

pub const fn RTA_ALIGN(len: c_uint) -> c_uint {
    (len + RTA_ALIGNTO - 1) & !(RTA_ALIGNTO - 1)
}

pub unsafe fn RTA_OK(rta: *const rtattr, len: c_uint) -> bool {
       len >= mem::size_of::<rtattr>() as c_uint
    && (*rta).rta_len >= mem::size_of::<rtattr>() as c_ushort
    && (*rta).rta_len as c_uint <= len
}

pub unsafe fn RTA_NEXT(rta: *mut rtattr, attrlen: &mut c_uint) -> *mut rtattr {
    *attrlen -= RTA_ALIGN((*rta).rta_len as c_uint);
    (rta as usize + RTA_ALIGN((*rta).rta_len as c_uint) as usize) as *mut rtattr
}

pub const fn RTA_LENGTH(len: c_uint) -> c_uint {
    RTA_ALIGN(mem::size_of::<rtattr>() as c_uint) + len
}

pub const fn RTA_SPACE(len: c_uint) -> c_uint {
    RTA_ALIGN(RTA_LENGTH(len))
}

pub unsafe fn RTA_DATA(rta: *mut rtattr) -> *mut c_void {
    (rta as usize + RTA_LENGTH(0) as usize) as *mut c_void
}

pub unsafe fn RTA_PAYLOAD(rta: *mut rtattr) -> c_uint {
    (*rta).rta_len as c_uint - RTA_LENGTH(0)
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct rtmsg {
    pub rtm_family:   c_uchar,
    pub rtm_dst_len:  c_uchar,
    pub rtm_src_len:  c_uchar,
    pub rtm_tos:      c_uchar,
    pub rtm_table:    c_uchar,
    pub rtm_protocol: c_uchar,
    pub rtm_scope:    c_uchar,
    pub rtm_type:     c_uchar,
    pub rtm_flags:    c_uint,
}

pub const RTN_UNSPEC:      c_ushort = 0;
pub const RTN_UNICAST:     c_ushort = 1;
pub const RTN_LOCAL:       c_ushort = 2;
pub const RTN_BROADCAST:   c_ushort = 3;
pub const RTN_ANYCAST:     c_ushort = 4;
pub const RTN_MULTICAST:   c_ushort = 5;
pub const RTN_BLACKHOLE:   c_ushort = 6;
pub const RTN_UNREACHABLE: c_ushort = 7;
pub const RTN_PROHIBIT:    c_ushort = 8;
pub const RTN_THROW:       c_ushort = 9;
pub const RTN_NAT:         c_ushort = 10;
pub const RTN_XRESOLVE:    c_ushort = 11;
pub const __RTN_MAX:       c_ushort = 12;

pub const RTN_MAX : c_ushort = __RTN_MAX - 1;

pub const RTPROT_UNSPEC   : c_uchar = 0;
pub const RTPROT_REDIRECT : c_uchar = 1;
pub const RTPROT_KERNEL   : c_uchar = 2;
pub const RTPROT_BOOT     : c_uchar = 3;
pub const RTPROT_STATIC   : c_uchar = 4;
pub const RTPROT_GATED    : c_uchar = 8;
pub const RTPROT_RA       : c_uchar = 9;
pub const RTPROT_MRT      : c_uchar = 10;
pub const RTPROT_ZEBRA    : c_uchar = 11;
pub const RTPROT_BIRD     : c_uchar = 12;
pub const RTPROT_DNROUTED : c_uchar = 13;
pub const RTPROT_XORP     : c_uchar = 14;
pub const RTPROT_NTK      : c_uchar = 15;
pub const RTPROT_DHCP     : c_uchar = 16;
pub const RTPROT_MROUTED  : c_uchar = 17;
pub const RTPROT_BABEL    : c_uchar = 42;

pub type rt_scope_t = c_uchar;
pub const RT_SCOPE_UNIVERSE : rt_scope_t = 0;
pub const RT_SCOPE_SITE     : rt_scope_t = 200;
pub const RT_SCOPE_LINK     : rt_scope_t = 253;
pub const RT_SCOPE_HOST     : rt_scope_t = 254;
pub const RT_SCOPE_NOWHERE  : rt_scope_t = 255;

pub const RTM_F_NOTIFY   : c_uint = 0x100;
pub const RTM_F_CLONED   : c_uint = 0x200;
pub const RTM_F_EQUALIZE : c_uint = 0x400;
pub const RTM_F_PREFIX   : c_uint = 0x800;

pub type rt_class_t = c_uchar;
pub const RT_TABLE_UNSPEC  : rt_class_t = 0;
pub const RT_TABLE_COMPAT  : rt_class_t = 252;
pub const RT_TABLE_DEFAULT : rt_class_t = 253;
pub const RT_TABLE_MAIN    : rt_class_t = 254;
pub const RT_TABLE_LOCAL   : rt_class_t = 255;
pub const RT_TABLE_MAX     : rt_class_t = 0xFFFFFFFFu64 as _;

pub type rtattr_type_t = c_int;
pub const RTA_UNSPEC:    rtattr_type_t = 0;
pub const RTA_DST:       rtattr_type_t = 1;
pub const RTA_SRC:       rtattr_type_t = 2;
pub const RTA_IIF:       rtattr_type_t = 3;
pub const RTA_OIF:       rtattr_type_t = 4;
pub const RTA_GATEWAY:   rtattr_type_t = 5;
pub const RTA_PRIORITY:  rtattr_type_t = 6;
pub const RTA_PREFSRC:   rtattr_type_t = 7;
pub const RTA_METRICS:   rtattr_type_t = 8;
pub const RTA_MULTIPATH: rtattr_type_t = 9;
pub const RTA_PROTOINFO: rtattr_type_t = 10;
pub const RTA_FLOW:      rtattr_type_t = 11;
pub const RTA_CACHEINFO: rtattr_type_t = 12;
pub const RTA_SESSION:   rtattr_type_t = 13;
pub const RTA_MP_ALGO:   rtattr_type_t = 14;
pub const RTA_TABLE:     rtattr_type_t = 15;
pub const RTA_MARK:      rtattr_type_t = 16;
pub const RTA_MFC_STATS: rtattr_type_t = 17;
pub const __RTA_MAX:     rtattr_type_t = 18;

pub const RTA_MAX : rtattr_type_t = __RTA_MAX - 1;

// pub unsafe fn RTM_RTA(r)  ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct rtmsg))))
// pub unsafe fn RTM_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct rtmsg))

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct rtnexthop {
    pub rtnh_len:     c_ushort,
    pub rtnh_flags:   c_uchar,
    pub rtnh_hops:    c_uchar,
    pub rtnh_ifindex: c_int,
}

pub const RTNH_F_DEAD      : c_uchar = 1;
pub const RTNH_F_PERVASIVE : c_uchar = 2;
pub const RTNH_F_ONLINK    : c_uchar = 4;

pub const RTNH_ALIGNTO : c_uint = 4;

pub const fn RTNH_ALIGN(len: c_uint) -> c_uint {
    (len + RTNH_ALIGNTO - 1) & !(RTNH_ALIGNTO-1)
}

pub unsafe fn RTNH_OK(rtnh: *mut rtnexthop, len: c_uint) -> bool {
       (*rtnh).rtnh_len >= mem::size_of::<rtnexthop>() as c_ushort
    && (*rtnh).rtnh_len as c_uint <= len
}

pub unsafe fn RTNH_NEXT(rtnh: *mut rtnexthop) -> *mut rtnexthop {
    (rtnh as usize + RTNH_ALIGN((*rtnh).rtnh_len as c_uint) as usize) as *mut rtnexthop
}

pub const fn RTNH_LENGTH(len: c_uint) -> c_uint {
    RTNH_ALIGN(mem::size_of::<rtnexthop>() as c_uint) + len
}

pub const fn RTNH_SPACE(len: c_uint) -> c_uint {
    RTNH_ALIGN(RTNH_LENGTH(len))
}

pub unsafe fn RTNH_DATA(rtnh: *mut rtnexthop) -> *mut rtattr {
    (rtnh as usize + RTNH_LENGTH(0) as usize) as *mut rtattr
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct rta_cacheinfo {
    pub rta_clntref: __u32,
    pub rta_lastuse: __u32,
    pub rta_expires: __s32,
    pub rta_error:   __u32,
    pub rta_used:    __u32,
    pub rta_id:      __u32,
    pub rta_ts:      __u32,
    pub rta_tsage:   __u32,
}

pub const RTNETLINK_HAVE_PEERINFO: bool = true;

pub const RTAX_UNSPEC     : c_int = 0;
pub const RTAX_LOCK       : c_int = 1;
pub const RTAX_MTU        : c_int = 2;
pub const RTAX_WINDOW     : c_int = 3;
pub const RTAX_RTT        : c_int = 4;
pub const RTAX_RTTVAR     : c_int = 5;
pub const RTAX_SSTHRESH   : c_int = 6;
pub const RTAX_CWND       : c_int = 7;
pub const RTAX_ADVMSS     : c_int = 8;
pub const RTAX_REORDERING : c_int = 9;
pub const RTAX_HOPLIMIT   : c_int = 10;
pub const RTAX_INITCWND   : c_int = 11;
pub const RTAX_FEATURES   : c_int = 12;
pub const RTAX_RTO_MIN    : c_int = 13;
pub const RTAX_INITRWND   : c_int = 14;
pub const RTAX_QUICKACK   : c_int = 15;
pub const RTAX_CC_ALGO    : c_int = 16;
pub const __RTAX_MAX      : c_int = 17;

pub const RTAX_MAX : c_int = __RTAX_MAX - 1;

pub const RTAX_FEATURE_ECN       : c_int = 0x00000001;
pub const RTAX_FEATURE_SACK      : c_int = 0x00000002;
pub const RTAX_FEATURE_TIMESTAMP : c_int = 0x00000004;
pub const RTAX_FEATURE_ALLFRAG   : c_int = 0x00000008;

// #[repr(C)]
// #[derive(Pod, Copy, Clone, Eq, PartialEq)]
// pub struct rta_session {
// 	__u8	proto;
// 	__u8	pad1;
// 	__u16	pad2;
//
// 	union {
// 		struct {
// 			__u16	sport;
// 			__u16	dport;
// 		} ports;
//
// 		struct {
// 			__u8	type;
// 			__u8	code;
// 			__u16	ident;
// 		} icmpt;
//
// 		__u32		spi;
// 	} u;
// }

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct rta_mfc_stats {
    pub mfcs_packets:  __u64,
    pub mfcs_bytes:    __u64,
    pub mfcs_wrong_if: __u64,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct rtgenmsg {
    pub rtgen_family: c_uchar,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ifinfomsg {
    pub ifi_family: c_uchar,
    pub __ifi_pad:  c_uchar,
    pub ifi_type:   c_ushort,
    pub ifi_index:  c_int,
    pub ifi_flags:  c_uint,
    pub ifi_change: c_uint,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct prefixmsg {
    pub prefix_family:  c_uchar,
    pub prefix_pad1:    c_uchar,
    pub prefix_pad2:    c_ushort,
    pub prefix_ifindex: c_int,
    pub prefix_type:    c_uchar,
    pub prefix_len:     c_uchar,
    pub prefix_flags:   c_uchar,
    pub prefix_pad3:    c_uchar,
}

pub const PREFIX_UNSPEC    : c_int = 0;
pub const PREFIX_ADDRESS   : c_int = 1;
pub const PREFIX_CACHEINFO : c_int = 2;
pub const __PREFIX_MAX     : c_int = 3;

pub const PREFIX_MAX : c_int = __PREFIX_MAX - 1;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct prefix_cacheinfo {
    pub preferred_time: __u32,
    pub valid_time:     __u32,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct tcmsg {
    pub tcm_family:  c_uchar,
    pub tcm__pad1:   c_uchar,
    pub tcm__pad2:   c_ushort,
    pub tcm_ifindex: c_int,
    pub tcm_handle:  __u32,
    pub tcm_parent:  __u32,
    pub tcm_info:    __u32,
}

pub const TCA_UNSPEC  : c_int = 0;
pub const TCA_KIND    : c_int = 1;
pub const TCA_OPTIONS : c_int = 2;
pub const TCA_STATS   : c_int = 3;
pub const TCA_XSTATS  : c_int = 4;
pub const TCA_RATE    : c_int = 5;
pub const TCA_FCNT    : c_int = 6;
pub const TCA_STATS2  : c_int = 7;
pub const TCA_STAB    : c_int = 8;
pub const __TCA_MAX   : c_int = 9;

pub const TCA_MAX : c_int = __TCA_MAX - 1;

pub unsafe fn TCA_RTA(r: *mut tcmsg) -> *mut rtattr {
    (r as usize + NLMSG_ALIGN(mem::size_of::<tcmsg>() as c_uint) as usize) as *mut rtattr
}

pub unsafe fn TCA_PAYLOAD(n: *mut nlmsghdr) -> c_uint {
    NLMSG_PAYLOAD(n, mem::size_of::<tcmsg>() as c_uint)
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct nduseroptmsg {
    pub nduseropt_family:    c_uchar,
    pub nduseropt_pad1:      c_uchar,
    pub nduseropt_opts_len:  c_ushort,
    pub nduseropt_ifindex:   c_int,
    pub nduseropt_icmp_type: __u8,
    pub nduseropt_icmp_code: __u8,
    pub nduseropt_pad2:      c_ushort,
    pub nduseropt_pad3:      c_uint,
}

pub const NDUSEROPT_UNSPEC  : c_int = 0;
pub const NDUSEROPT_SRCADDR : c_int = 1;
pub const __NDUSEROPT_MAX   : c_int = 2;

pub const NDUSEROPT_MAX	: c_int = __NDUSEROPT_MAX - 1;

pub const RTMGRP_LINK          : c_int = 1;
pub const RTMGRP_NOTIFY        : c_int = 2;
pub const RTMGRP_NEIGH         : c_int = 4;
pub const RTMGRP_TC            : c_int = 8;
pub const RTMGRP_IPV4_IFADDR   : c_int = 0x10;
pub const RTMGRP_IPV4_MROUTE   : c_int = 0x20;
pub const RTMGRP_IPV4_ROUTE    : c_int = 0x40;
pub const RTMGRP_IPV4_RULE     : c_int = 0x80;
pub const RTMGRP_IPV6_IFADDR   : c_int = 0x100;
pub const RTMGRP_IPV6_MROUTE   : c_int = 0x200;
pub const RTMGRP_IPV6_ROUTE    : c_int = 0x400;
pub const RTMGRP_IPV6_IFINFO   : c_int = 0x800;
pub const RTMGRP_DECnet_IFADDR : c_int = 0x1000;
pub const RTMGRP_DECnet_ROUTE  : c_int = 0x4000;
pub const RTMGRP_IPV6_PREFIX   : c_int = 0x20000;

pub type rtnetlink_groups = c_int;
pub const RTNLGRP_NONE          : rtnetlink_groups = 0;
pub const RTNLGRP_LINK          : rtnetlink_groups = 1;
pub const RTNLGRP_NOTIFY        : rtnetlink_groups = 2;
pub const RTNLGRP_NEIGH         : rtnetlink_groups = 3;
pub const RTNLGRP_TC            : rtnetlink_groups = 4;
pub const RTNLGRP_IPV4_IFADDR   : rtnetlink_groups = 5;
pub const RTNLGRP_IPV4_MROUTE   : rtnetlink_groups = 6;
pub const RTNLGRP_IPV4_ROUTE    : rtnetlink_groups = 7;
pub const RTNLGRP_IPV4_RULE     : rtnetlink_groups = 8;
pub const RTNLGRP_IPV6_IFADDR   : rtnetlink_groups = 9;
pub const RTNLGRP_IPV6_MROUTE   : rtnetlink_groups = 10;
pub const RTNLGRP_IPV6_ROUTE    : rtnetlink_groups = 11;
pub const RTNLGRP_IPV6_IFINFO   : rtnetlink_groups = 12;
pub const RTNLGRP_DECnet_IFADDR : rtnetlink_groups = 13;
pub const RTNLGRP_NOP2          : rtnetlink_groups = 14;
pub const RTNLGRP_DECnet_ROUTE  : rtnetlink_groups = 15;
pub const RTNLGRP_DECnet_RULE   : rtnetlink_groups = 16;
pub const RTNLGRP_NOP4          : rtnetlink_groups = 17;
pub const RTNLGRP_IPV6_PREFIX   : rtnetlink_groups = 18;
pub const RTNLGRP_IPV6_RULE     : rtnetlink_groups = 19;
pub const RTNLGRP_ND_USEROPT    : rtnetlink_groups = 20;
pub const RTNLGRP_PHONET_IFADDR : rtnetlink_groups = 21;
pub const RTNLGRP_PHONET_ROUTE  : rtnetlink_groups = 22;
pub const RTNLGRP_DCB           : rtnetlink_groups = 23;
pub const RTNLGRP_IPV4_NETCONF  : rtnetlink_groups = 24;
pub const RTNLGRP_IPV6_NETCONF  : rtnetlink_groups = 25;
pub const RTNLGRP_MDB           : rtnetlink_groups = 26;
pub const __RTNLGRP_MAX         : rtnetlink_groups = 27;

pub const RTNLGRP_MAX : rtnetlink_groups = __RTNLGRP_MAX - 1;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct tcamsg {
    pub tca_family: c_uchar,
    pub tca__pad1:  c_uchar,
    pub tca__pad2:  c_ushort,
}

pub unsafe fn TA_RTA(r: *mut tcamsg) -> *mut rtattr {
    (r as usize + NLMSG_ALIGN(mem::size_of::<tcamsg>() as c_uint) as usize) as *mut rtattr
}

pub unsafe fn TA_PAYLOAD(n: *mut nlmsghdr) -> c_uint {
    NLMSG_PAYLOAD(n, mem::size_of::<tcamsg>() as c_uint)
}
pub const TCA_ACT_TAB : c_int = 1;
pub const TCAA_MAX : c_int = 1;

pub const RTEXT_FILTER_VF                : c_int = 1 << 0;
pub const RTEXT_FILTER_BRVLAN            : c_int = 1 << 1;
pub const RTEXT_FILTER_BRVLAN_COMPRESSED : c_int = 1 << 2;

///////////////////////////////
// include/uapi/linux/if_addr.h
///////////////////////////////

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ifaddrmsg {
    pub ifa_family:    __u8,
    pub ifa_prefixlen: __u8,
    pub ifa_flags:     __u8,
    pub ifa_scope:     __u8,
    pub ifa_index:     __u32,
}

pub const IFA_UNSPEC    : c_ushort = 0;
pub const IFA_ADDRESS   : c_ushort = 1;
pub const IFA_LOCAL     : c_ushort = 2;
pub const IFA_LABEL     : c_ushort = 3;
pub const IFA_BROADCAST : c_ushort = 4;
pub const IFA_ANYCAST   : c_ushort = 5;
pub const IFA_CACHEINFO : c_ushort = 6;
pub const IFA_MULTICAST : c_ushort = 7;
pub const IFA_FLAGS     : c_ushort = 8;
pub const __IFA_MAX     : c_ushort = 9;

pub const IFA_MAX : c_ushort = __IFA_MAX - 1;

pub const IFA_F_SECONDARY      : c_int = 0x01;
pub const IFA_F_TEMPORARY      : c_int = IFA_F_SECONDARY;
pub const IFA_F_NODAD          : c_int = 0x02;
pub const IFA_F_OPTIMISTIC     : c_int = 0x04;
pub const IFA_F_DADFAILED      : c_int = 0x08;
pub const IFA_F_HOMEADDRESS    : c_int = 0x10;
pub const IFA_F_DEPRECATED     : c_int = 0x20;
pub const IFA_F_TENTATIVE      : c_int = 0x40;
pub const IFA_F_PERMANENT      : c_int = 0x80;
pub const IFA_F_MANAGETEMPADDR : c_int = 0x100;
pub const IFA_F_NOPREFIXROUTE  : c_int = 0x200;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ifa_cacheinfo {
    pub ifa_prefered: __u32,
    pub ifa_valid:    __u32,
    pub cstamp:       __u32,
    pub tstamp:       __u32,
}

///////////////////////////////
// include/uapi/linux/if_link.h
///////////////////////////////

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct rtnl_link_stats {
    pub rx_packets:          __u32,
    pub tx_packets:          __u32,
    pub rx_bytes:            __u32,
    pub tx_bytes:            __u32,
    pub rx_errors:           __u32,
    pub tx_errors:           __u32,
    pub rx_dropped:          __u32,
    pub tx_dropped:          __u32,
    pub multicast:           __u32,
    pub collisions:          __u32,
    pub rx_length_errors:    __u32,
    pub rx_over_errors:      __u32,
    pub rx_crc_errors:       __u32,
    pub rx_frame_errors:     __u32,
    pub rx_fifo_errors:      __u32,
    pub rx_missed_errors:    __u32,
    pub tx_aborted_errors:   __u32,
    pub tx_carrier_errors:   __u32,
    pub tx_fifo_errors:      __u32,
    pub tx_heartbeat_errors: __u32,
    pub tx_window_errors:    __u32,
    pub rx_compressed:       __u32,
    pub tx_compressed:       __u32,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct rtnl_link_stats64 {
    pub rx_packets:          __u64,
    pub tx_packets:          __u64,
    pub rx_bytes:            __u64,
    pub tx_bytes:            __u64,
    pub rx_errors:           __u64,
    pub tx_errors:           __u64,
    pub rx_dropped:          __u64,
    pub tx_dropped:          __u64,
    pub multicast:           __u64,
    pub collisions:          __u64,
    pub rx_length_errors:    __u64,
    pub rx_over_errors:      __u64,
    pub rx_crc_errors:       __u64,
    pub rx_frame_errors:     __u64,
    pub rx_fifo_errors:      __u64,
    pub rx_missed_errors:    __u64,
    pub tx_aborted_errors:   __u64,
    pub tx_carrier_errors:   __u64,
    pub tx_fifo_errors:      __u64,
    pub tx_heartbeat_errors: __u64,
    pub tx_window_errors:    __u64,
    pub rx_compressed:       __u64,
    pub tx_compressed:       __u64,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct rtnl_link_ifmap {
    pub mem_start: __u64,
    pub mem_end:   __u64,
    pub base_addr: __u64,
    pub irq:       __u16,
    pub dma:       __u8,
    pub port:      __u8,
}

pub const IFLA_UNSPEC          : u16 = 0;
pub const IFLA_ADDRESS         : u16 = 1;
pub const IFLA_BROADCAST       : u16 = 2;
pub const IFLA_IFNAME          : u16 = 3;
pub const IFLA_MTU             : u16 = 4;
pub const IFLA_LINK            : u16 = 5;
pub const IFLA_QDISC           : u16 = 6;
pub const IFLA_STATS           : u16 = 7;
pub const IFLA_COST            : u16 = 8;
pub const IFLA_PRIORITY        : u16 = 9;
pub const IFLA_MASTER          : u16 = 10;
pub const IFLA_WIRELESS        : u16 = 11;
pub const IFLA_PROTINFO        : u16 = 12;
pub const IFLA_TXQLEN          : u16 = 13;
pub const IFLA_MAP             : u16 = 14;
pub const IFLA_WEIGHT          : u16 = 15;
pub const IFLA_OPERSTATE       : u16 = 16;
pub const IFLA_LINKMODE        : u16 = 17;
pub const IFLA_LINKINFO        : u16 = 18;
pub const IFLA_NET_NS_PID      : u16 = 19;
pub const IFLA_IFALIAS         : u16 = 20;
pub const IFLA_NUM_VF          : u16 = 21;
pub const IFLA_VFINFO_LIST     : u16 = 22;
pub const IFLA_STATS64         : u16 = 23;
pub const IFLA_VF_PORTS        : u16 = 24;
pub const IFLA_PORT_SELF       : u16 = 25;
pub const IFLA_AF_SPEC         : u16 = 26;
pub const IFLA_GROUP           : u16 = 27;
pub const IFLA_NET_NS_FD       : u16 = 28;
pub const IFLA_EXT_MASK        : u16 = 29;
pub const IFLA_PROMISCUITY     : u16 = 30;
pub const IFLA_NUM_TX_QUEUES   : u16 = 31;
pub const IFLA_NUM_RX_QUEUES   : u16 = 32;
pub const IFLA_CARRIER         : u16 = 33;
pub const IFLA_PHYS_PORT_ID    : u16 = 34;
pub const IFLA_CARRIER_CHANGES : u16 = 35;
pub const IFLA_PHYS_SWITCH_ID  : u16 = 36;
pub const IFLA_LINK_NETNSID    : u16 = 37;
pub const __IFLA_MAX           : u16 = 38;

pub const IFLA_MAX : u16 = __IFLA_MAX - 1;

pub const IFLA_INET_UNSPEC : u16 = 0;
pub const IFLA_INET_CONF   : u16 = 1;
pub const __IFLA_INET_MAX  : u16 = 2;

pub const IFLA_INET_MAX : u16 = __IFLA_INET_MAX - 1;

pub const IFLA_INET6_UNSPEC        : u16 = 0;
pub const IFLA_INET6_FLAGS         : u16 = 1;
pub const IFLA_INET6_CONF          : u16 = 2;
pub const IFLA_INET6_STATS         : u16 = 3;
pub const IFLA_INET6_MCAST         : u16 = 4;
pub const IFLA_INET6_CACHEINFO     : u16 = 5;
pub const IFLA_INET6_ICMP6STATS    : u16 = 6;
pub const IFLA_INET6_TOKEN         : u16 = 7;
pub const IFLA_INET6_ADDR_GEN_MODE : u16 = 8;
pub const __IFLA_INET6_MAX         : u16 = 9;

pub const IFLA_INET6_MAX : u16 = __IFLA_INET6_MAX - 1;

pub type in6_addr_gen_mode = c_int;
pub const IN6_ADDR_GEN_MODE_EUI64 : in6_addr_gen_mode = 0;
pub const IN6_ADDR_GEN_MODE_NONE  : in6_addr_gen_mode = 1;

pub const IFLA_BR_UNSPEC        : c_int = 0;
pub const IFLA_BR_FORWARD_DELAY : c_int = 1;
pub const IFLA_BR_HELLO_TIME    : c_int = 2;
pub const IFLA_BR_MAX_AGE       : c_int = 3;
pub const __IFLA_BR_MAX         : c_int = 4;

pub const IFLA_BR_MAX : c_int = __IFLA_BR_MAX - 1;

pub const BRIDGE_MODE_UNSPEC  : c_int = 0;
pub const BRIDGE_MODE_HAIRPIN : c_int = 1;

pub const IFLA_BRPORT_UNSPEC        : c_int = 0;
pub const IFLA_BRPORT_STATE         : c_int = 1;
pub const IFLA_BRPORT_PRIORITY      : c_int = 2;
pub const IFLA_BRPORT_COST          : c_int = 3;
pub const IFLA_BRPORT_MODE          : c_int = 4;
pub const IFLA_BRPORT_GUARD         : c_int = 5;
pub const IFLA_BRPORT_PROTECT       : c_int = 6;
pub const IFLA_BRPORT_FAST_LEAVE    : c_int = 7;
pub const IFLA_BRPORT_LEARNING      : c_int = 8;
pub const IFLA_BRPORT_UNICAST_FLOOD : c_int = 9;
pub const IFLA_BRPORT_PROXYARP      : c_int = 10;
pub const IFLA_BRPORT_LEARNING_SYNC : c_int = 11;
pub const __IFLA_BRPORT_MAX         : c_int = 12;

pub const IFLA_BRPORT_MAX : c_int = __IFLA_BRPORT_MAX - 1;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ifla_cacheinfo {
    pub max_reasm_len:  __u32,
    pub tstamp:         __u32,
    pub reachable_time: __u32,
    pub retrans_time:   __u32,
}

pub const IFLA_INFO_UNSPEC     : u16 = 0;
pub const IFLA_INFO_KIND       : u16 = 1;
pub const IFLA_INFO_DATA       : u16 = 2;
pub const IFLA_INFO_XSTATS     : u16 = 3;
pub const IFLA_INFO_SLAVE_KIND : u16 = 4;
pub const IFLA_INFO_SLAVE_DATA : u16 = 5;
pub const __IFLA_INFO_MAX      : u16 = 6;

pub const IFLA_INFO_MAX : u16 = __IFLA_INFO_MAX - 1;

pub const IFLA_VLAN_UNSPEC      : u16 = 0;
pub const IFLA_VLAN_ID          : u16 = 1;
pub const IFLA_VLAN_FLAGS       : u16 = 2;
pub const IFLA_VLAN_EGRESS_QOS  : u16 = 3;
pub const IFLA_VLAN_INGRESS_QOS : u16 = 4;
pub const IFLA_VLAN_PROTOCOL    : u16 = 5;
pub const __IFLA_VLAN_MAX       : u16 = 6;

pub const IFLA_VLAN_MAX : u16 = __IFLA_VLAN_MAX - 1;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ifla_vlan_flags {
    pub flags: __u32,
    pub mask:  __u32,
}

pub const IFLA_VLAN_QOS_UNSPEC  : c_int = 0;
pub const IFLA_VLAN_QOS_MAPPING : c_int = 1;
pub const __IFLA_VLAN_QOS_MAX   : c_int = 2;

pub const IFLA_VLAN_QOS_MAX : c_int = __IFLA_VLAN_QOS_MAX - 1;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ifla_vlan_qos_mapping {
    pub from: __u32,
    pub to:   __u32,
}

pub const IFLA_MACVLAN_UNSPEC        : c_int = 0;
pub const IFLA_MACVLAN_MODE          : c_int = 1;
pub const IFLA_MACVLAN_FLAGS         : c_int = 2;
pub const IFLA_MACVLAN_MACADDR_MODE  : c_int = 3;
pub const IFLA_MACVLAN_MACADDR       : c_int = 4;
pub const IFLA_MACVLAN_MACADDR_DATA  : c_int = 5;
pub const IFLA_MACVLAN_MACADDR_COUNT : c_int = 6;
pub const __IFLA_MACVLAN_MAX         : c_int = 7;

pub const IFLA_MACVLAN_MAX : c_int = __IFLA_MACVLAN_MAX - 1;

pub type macvlan_mode = c_int;
pub const MACVLAN_MODE_PRIVATE  : macvlan_mode = 1;
pub const MACVLAN_MODE_VEPA     : macvlan_mode = 2;
pub const MACVLAN_MODE_BRIDGE   : macvlan_mode = 4;
pub const MACVLAN_MODE_PASSTHRU : macvlan_mode = 8;
pub const MACVLAN_MODE_SOURCE   : macvlan_mode = 16;

pub type macvlan_macaddr_mode = c_int;
pub const MACVLAN_MACADDR_ADD   : macvlan_macaddr_mode = 0;
pub const MACVLAN_MACADDR_DEL   : macvlan_macaddr_mode = 1;
pub const MACVLAN_MACADDR_FLUSH : macvlan_macaddr_mode = 2;
pub const MACVLAN_MACADDR_SET   : macvlan_macaddr_mode = 3;

pub const MACVLAN_FLAG_NOPROMISC : macvlan_macaddr_mode = 1;

pub const IFLA_IPVLAN_UNSPEC : c_int = 0;
pub const IFLA_IPVLAN_MODE   : c_int = 1;
pub const __IFLA_IPVLAN_MAX  : c_int = 2;

pub const IFLA_IPVLAN_MAX : c_int = __IFLA_IPVLAN_MAX - 1;

pub type ipvlan_mode = c_int;
pub const IPVLAN_MODE_L2  : ipvlan_mode = 0;
pub const IPVLAN_MODE_L3  : ipvlan_mode = 1;
pub const IPVLAN_MODE_MAX : ipvlan_mode = 2;

pub const IFLA_VXLAN_UNSPEC            : c_int = 0;
pub const IFLA_VXLAN_ID                : c_int = 1;
pub const IFLA_VXLAN_GROUP             : c_int = 2;
pub const IFLA_VXLAN_LINK              : c_int = 3;
pub const IFLA_VXLAN_LOCAL             : c_int = 4;
pub const IFLA_VXLAN_TTL               : c_int = 5;
pub const IFLA_VXLAN_TOS               : c_int = 6;
pub const IFLA_VXLAN_LEARNING          : c_int = 7;
pub const IFLA_VXLAN_AGEING            : c_int = 8;
pub const IFLA_VXLAN_LIMIT             : c_int = 9;
pub const IFLA_VXLAN_PORT_RANGE        : c_int = 10;
pub const IFLA_VXLAN_PROXY             : c_int = 11;
pub const IFLA_VXLAN_RSC               : c_int = 12;
pub const IFLA_VXLAN_L2MISS            : c_int = 13;
pub const IFLA_VXLAN_L3MISS            : c_int = 14;
pub const IFLA_VXLAN_PORT              : c_int = 15;
pub const IFLA_VXLAN_GROUP6            : c_int = 16;
pub const IFLA_VXLAN_LOCAL6            : c_int = 17;
pub const IFLA_VXLAN_UDP_CSUM          : c_int = 18;
pub const IFLA_VXLAN_UDP_ZERO_CSUM6_TX : c_int = 19;
pub const IFLA_VXLAN_UDP_ZERO_CSUM6_RX : c_int = 20;
pub const IFLA_VXLAN_REMCSUM_TX        : c_int = 21;
pub const IFLA_VXLAN_REMCSUM_RX        : c_int = 22;
pub const IFLA_VXLAN_GBP               : c_int = 23;
pub const IFLA_VXLAN_REMCSUM_NOPARTIAL : c_int = 24;
pub const __IFLA_VXLAN_MAX             : c_int = 25;

pub const IFLA_VXLAN_MAX : c_int = __IFLA_VXLAN_MAX - 1;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ifla_vxlan_port_range {
    pub low:  __be16,
    pub high: __be16,
}

pub const IFLA_BOND_UNSPEC            : c_int = 0;
pub const IFLA_BOND_MODE              : c_int = 1;
pub const IFLA_BOND_ACTIVE_SLAVE      : c_int = 2;
pub const IFLA_BOND_MIIMON            : c_int = 3;
pub const IFLA_BOND_UPDELAY           : c_int = 4;
pub const IFLA_BOND_DOWNDELAY         : c_int = 5;
pub const IFLA_BOND_USE_CARRIER       : c_int = 6;
pub const IFLA_BOND_ARP_INTERVAL      : c_int = 7;
pub const IFLA_BOND_ARP_IP_TARGET     : c_int = 8;
pub const IFLA_BOND_ARP_VALIDATE      : c_int = 9;
pub const IFLA_BOND_ARP_ALL_TARGETS   : c_int = 10;
pub const IFLA_BOND_PRIMARY           : c_int = 11;
pub const IFLA_BOND_PRIMARY_RESELECT  : c_int = 12;
pub const IFLA_BOND_FAIL_OVER_MAC     : c_int = 13;
pub const IFLA_BOND_XMIT_HASH_POLICY  : c_int = 14;
pub const IFLA_BOND_RESEND_IGMP       : c_int = 15;
pub const IFLA_BOND_NUM_PEER_NOTIF    : c_int = 16;
pub const IFLA_BOND_ALL_SLAVES_ACTIVE : c_int = 17;
pub const IFLA_BOND_MIN_LINKS         : c_int = 18;
pub const IFLA_BOND_LP_INTERVAL       : c_int = 19;
pub const IFLA_BOND_PACKETS_PER_SLAVE : c_int = 20;
pub const IFLA_BOND_AD_LACP_RATE      : c_int = 21;
pub const IFLA_BOND_AD_SELECT         : c_int = 22;
pub const IFLA_BOND_AD_INFO           : c_int = 23;
pub const __IFLA_BOND_MAX             : c_int = 24;

pub const IFLA_BOND_MAX : c_int = __IFLA_BOND_MAX - 1;

pub const IFLA_BOND_AD_INFO_UNSPEC      : c_int = 0;
pub const IFLA_BOND_AD_INFO_AGGREGATOR  : c_int = 1;
pub const IFLA_BOND_AD_INFO_NUM_PORTS   : c_int = 2;
pub const IFLA_BOND_AD_INFO_ACTOR_KEY   : c_int = 3;
pub const IFLA_BOND_AD_INFO_PARTNER_KEY : c_int = 4;
pub const IFLA_BOND_AD_INFO_PARTNER_MAC : c_int = 5;
pub const __IFLA_BOND_AD_INFO_MAX       : c_int = 6;

pub const IFLA_BOND_AD_INFO_MAX : c_int = __IFLA_BOND_AD_INFO_MAX - 1;

pub const IFLA_BOND_SLAVE_UNSPEC             : c_int = 0;
pub const IFLA_BOND_SLAVE_STATE              : c_int = 1;
pub const IFLA_BOND_SLAVE_MII_STATUS         : c_int = 2;
pub const IFLA_BOND_SLAVE_LINK_FAILURE_COUNT : c_int = 3;
pub const IFLA_BOND_SLAVE_PERM_HWADDR        : c_int = 4;
pub const IFLA_BOND_SLAVE_QUEUE_ID           : c_int = 5;
pub const IFLA_BOND_SLAVE_AD_AGGREGATOR_ID   : c_int = 6;
pub const __IFLA_BOND_SLAVE_MAX              : c_int = 7;

pub const IFLA_BOND_SLAVE_MAX : c_int = __IFLA_BOND_SLAVE_MAX - 1;

pub const IFLA_VF_INFO_UNSPEC : c_int = 0;
pub const IFLA_VF_INFO        : c_int = 1;
pub const __IFLA_VF_INFO_MAX  : c_int = 2;

pub const IFLA_VF_INFO_MAX : c_int = __IFLA_VF_INFO_MAX - 1;

pub const IFLA_VF_UNSPEC     : c_int = 0;
pub const IFLA_VF_MAC        : c_int = 1;
pub const IFLA_VF_VLAN       : c_int = 2;
pub const IFLA_VF_TX_RATE    : c_int = 3;
pub const IFLA_VF_SPOOFCHK   : c_int = 4;
pub const IFLA_VF_LINK_STATE : c_int = 5;
pub const IFLA_VF_RATE       : c_int = 6;
pub const __IFLA_VF_MAX      : c_int = 7;

pub const IFLA_VF_MAX : c_int = __IFLA_VF_MAX - 1;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ifla_vf_mac {
    pub vf: __u32,
    pub mac: [__u8; 32],
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ifla_vf_vlan {
    pub vf:   __u32,
    pub vlan: __u32,
    pub qos:  __u32,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ifla_vf_tx_rate {
    pub vf:   __u32,
    pub rate: __u32,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ifla_vf_rate {
    pub vf:          __u32,
    pub min_tx_rate: __u32,
    pub max_tx_rate: __u32,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ifla_vf_spoofchk {
    pub vf:      __u32,
    pub setting: __u32,
}

pub const IFLA_VF_LINK_STATE_AUTO    : c_int = 0;
pub const IFLA_VF_LINK_STATE_ENABLE  : c_int = 1;
pub const IFLA_VF_LINK_STATE_DISABLE : c_int = 2;
pub const __IFLA_VF_LINK_STATE_MAX   : c_int = 3;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ifla_vf_link_state {
    pub vf:         __u32,
    pub link_state: __u32,
}

pub const IFLA_VF_PORT_UNSPEC : c_int = 0;
pub const IFLA_VF_PORT        : c_int = 1;
pub const __IFLA_VF_PORT_MAX  : c_int = 2;

pub const IFLA_VF_PORT_MAX : c_int = __IFLA_VF_PORT_MAX - 1;

pub const IFLA_PORT_UNSPEC        : c_int = 0;
pub const IFLA_PORT_VF            : c_int = 1;
pub const IFLA_PORT_PROFILE       : c_int = 2;
pub const IFLA_PORT_VSI_TYPE      : c_int = 3;
pub const IFLA_PORT_INSTANCE_UUID : c_int = 4;
pub const IFLA_PORT_HOST_UUID     : c_int = 5;
pub const IFLA_PORT_REQUEST       : c_int = 6;
pub const IFLA_PORT_RESPONSE      : c_int = 7;
pub const __IFLA_PORT_MAX         : c_int = 8;

pub const IFLA_PORT_MAX : c_int = __IFLA_PORT_MAX - 1;

pub const PORT_PROFILE_MAX : c_int = 40;
pub const PORT_UUID_MAX    : c_int = 16;
pub const PORT_SELF_VF     : c_int = -1;

pub const PORT_REQUEST_PREASSOCIATE    : c_int = 0;
pub const PORT_REQUEST_PREASSOCIATE_RR : c_int = 1;
pub const PORT_REQUEST_ASSOCIATE       : c_int = 2;
pub const PORT_REQUEST_DISASSOCIATE    : c_int = 3;

pub const PORT_VDP_RESPONSE_SUCCESS                : c_int = 0;
pub const PORT_VDP_RESPONSE_INVALID_FORMAT         : c_int = 1;
pub const PORT_VDP_RESPONSE_INSUFFICIENT_RESOURCES : c_int = 2;
pub const PORT_VDP_RESPONSE_UNUSED_VTID            : c_int = 3;
pub const PORT_VDP_RESPONSE_VTID_VIOLATION         : c_int = 4;
pub const PORT_VDP_RESPONSE_VTID_VERSION_VIOALTION : c_int = 5;
pub const PORT_VDP_RESPONSE_OUT_OF_SYNC            : c_int = 6;

pub const PORT_PROFILE_RESPONSE_SUCCESS                : c_int = 256;
pub const PORT_PROFILE_RESPONSE_INPROGRESS             : c_int = 257;
pub const PORT_PROFILE_RESPONSE_INVALID                : c_int = 258;
pub const PORT_PROFILE_RESPONSE_BADSTATE               : c_int = 259;
pub const PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES : c_int = 260;
pub const PORT_PROFILE_RESPONSE_ERROR                  : c_int = 261;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ifla_port_vsi {
    pub vsi_mgr_id: __u8,
    pub vsi_type_id: [__u8; 3],
    pub vsi_type_version: __u8,
    pub pad: [__u8; 3],
}

pub const IFLA_IPOIB_UNSPEC : c_int = 0;
pub const IFLA_IPOIB_PKEY   : c_int = 1;
pub const IFLA_IPOIB_MODE   : c_int = 2;
pub const IFLA_IPOIB_UMCAST : c_int = 3;
pub const __IFLA_IPOIB_MAX  : c_int = 4;

pub const IPOIB_MODE_DATAGRAM  : c_int = 0;
pub const IPOIB_MODE_CONNECTED : c_int = 1;

pub const IFLA_IPOIB_MAX : c_int = __IFLA_IPOIB_MAX - 1;

pub const IFLA_HSR_UNSPEC           : c_int = 0;
pub const IFLA_HSR_SLAVE1           : c_int = 1;
pub const IFLA_HSR_SLAVE2           : c_int = 2;
pub const IFLA_HSR_MULTICAST_SPEC   : c_int = 3;
pub const IFLA_HSR_SUPERVISION_ADDR : c_int = 4;
pub const IFLA_HSR_SEQ_NR           : c_int = 5;
pub const __IFLA_HSR_MAX            : c_int = 6;

pub const IFLA_HSR_MAX : c_int = __IFLA_HSR_MAX - 1;

/////////////////////////////////
// include/uapi/linux/neighbour.h
/////////////////////////////////

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ndmsg {
    pub ndm_family:  __u8,
    pub ndm_pad1:    __u8,
    pub ndm_pad2:    __u16,
    pub ndm_ifindex: __s32,
    pub ndm_state:   __u16,
    pub ndm_flags:   __u8,
    pub ndm_type:    __u8,
}

pub const NDA_UNSPEC       : c_int = 0;
pub const NDA_DST          : c_int = 1;
pub const NDA_LLADDR       : c_int = 2;
pub const NDA_CACHEINFO    : c_int = 3;
pub const NDA_PROBES       : c_int = 4;
pub const NDA_VLAN         : c_int = 5;
pub const NDA_PORT         : c_int = 6;
pub const NDA_VNI          : c_int = 7;
pub const NDA_IFINDEX      : c_int = 8;
pub const NDA_MASTER       : c_int = 9;
pub const NDA_LINK_NETNSID : c_int = 10;
pub const __NDA_MAX        : c_int = 11;

pub const NDA_MAX : c_int = __NDA_MAX - 1;

pub const NTF_USE         : u8 = 0x01;
pub const NTF_SELF        : u8 = 0x02;
pub const NTF_MASTER      : u8 = 0x04;
pub const NTF_PROXY       : u8 = 0x08;
pub const NTF_EXT_LEARNED : u8 = 0x10;
pub const NTF_ROUTER      : u8 = 0x80;

pub const NUD_INCOMPLETE : u8 = 0x01;
pub const NUD_REACHABLE  : u8 = 0x02;
pub const NUD_STALE      : u8 = 0x04;
pub const NUD_DELAY      : u8 = 0x08;
pub const NUD_PROBE      : u8 = 0x10;
pub const NUD_FAILED     : u8 = 0x20;
pub const NUD_NOARP      : u8 = 0x40;
pub const NUD_PERMANENT  : u8 = 0x80;
pub const NUD_NONE       : u8 = 0x00;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct nda_cacheinfo {
    pub ndm_confirmed: __u32,
    pub ndm_used:      __u32,
    pub ndm_updated:   __u32,
    pub ndm_refcnt:    __u32,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ndt_stats {
    pub ndts_allocs:           __u64,
    pub ndts_destroys:         __u64,
    pub ndts_hash_grows:       __u64,
    pub ndts_res_failed:       __u64,
    pub ndts_lookups:          __u64,
    pub ndts_hits:             __u64,
    pub ndts_rcv_probes_mcast: __u64,
    pub ndts_rcv_probes_ucast: __u64,
    pub ndts_periodic_gc_runs: __u64,
    pub ndts_forced_gc_runs:   __u64,
}

pub const NDTPA_UNSPEC              : c_int = 0;
pub const NDTPA_IFINDEX             : c_int = 1;
pub const NDTPA_REFCNT              : c_int = 2;
pub const NDTPA_REACHABLE_TIME      : c_int = 3;
pub const NDTPA_BASE_REACHABLE_TIME : c_int = 4;
pub const NDTPA_RETRANS_TIME        : c_int = 5;
pub const NDTPA_GC_STALETIME        : c_int = 6;
pub const NDTPA_DELAY_PROBE_TIME    : c_int = 7;
pub const NDTPA_QUEUE_LEN           : c_int = 8;
pub const NDTPA_APP_PROBES          : c_int = 9;
pub const NDTPA_UCAST_PROBES        : c_int = 10;
pub const NDTPA_MCAST_PROBES        : c_int = 11;
pub const NDTPA_ANYCAST_DELAY       : c_int = 12;
pub const NDTPA_PROXY_DELAY         : c_int = 13;
pub const NDTPA_PROXY_QLEN          : c_int = 14;
pub const NDTPA_LOCKTIME            : c_int = 15;
pub const NDTPA_QUEUE_LENBYTES      : c_int = 16;
pub const __NDTPA_MAX               : c_int = 17;

pub const NDTPA_MAX : c_int = __NDTPA_MAX - 1;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ndtmsg {
    pub ndtm_family: __u8,
    pub ndtm_pad1:   __u8,
    pub ndtm_pad2:   __u16,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ndt_config {
    pub ndtc_key_len:       __u16,
    pub ndtc_entry_size:    __u16,
    pub ndtc_entries:       __u32,
    pub ndtc_last_flush:    __u32,
    pub ndtc_last_rand:     __u32,
    pub ndtc_hash_rnd:      __u32,
    pub ndtc_hash_mask:     __u32,
    pub ndtc_hash_chain_gc: __u32,
    pub ndtc_proxy_qlen:    __u32,
}

pub const NDTA_UNSPEC      : c_int = 0;
pub const NDTA_NAME        : c_int = 1;
pub const NDTA_THRESH1     : c_int = 2;
pub const NDTA_THRESH2     : c_int = 3;
pub const NDTA_THRESH3     : c_int = 4;
pub const NDTA_CONFIG      : c_int = 5;
pub const NDTA_PARMS       : c_int = 6;
pub const NDTA_STATS       : c_int = 7;
pub const NDTA_GC_INTERVAL : c_int = 8;
pub const __NDTA_MAX       : c_int = 9;

pub const NDTA_MAX : c_int = __NDTA_MAX - 1;

////////////////////////////
// include/uapi/hdlc/ioctl.h
////////////////////////////

pub const GENERIC_HDLC_VERSION   : c_int = 4;
pub const CLOCK_DEFAULT          : c_int = 0;
pub const CLOCK_EXT              : c_int = 1;
pub const CLOCK_INT              : c_int = 2;
pub const CLOCK_TXINT            : c_int = 3;
pub const CLOCK_TXFROMRX         : c_int = 4;
pub const ENCODING_DEFAULT       : c_int = 0;
pub const ENCODING_NRZ           : c_int = 1;
pub const ENCODING_NRZI          : c_int = 2;
pub const ENCODING_FM_MARK       : c_int = 3;
pub const ENCODING_FM_SPACE      : c_int = 4;
pub const ENCODING_MANCHESTER    : c_int = 5;
pub const PARITY_DEFAULT         : c_int = 0;
pub const PARITY_NONE            : c_int = 1;
pub const PARITY_CRC16_PR0       : c_int = 2;
pub const PARITY_CRC16_PR1       : c_int = 3;
pub const PARITY_CRC16_PR0_CCITT : c_int = 4;
pub const PARITY_CRC16_PR1_CCITT : c_int = 5;
pub const PARITY_CRC32_PR0_CCITT : c_int = 6;
pub const PARITY_CRC32_PR1_CCITT : c_int = 7;
pub const LMI_DEFAULT            : c_int = 0;
pub const LMI_NONE               : c_int = 1;
pub const LMI_ANSI               : c_int = 2;
pub const LMI_CCITT              : c_int = 3;
pub const LMI_CISCO              : c_int = 4;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct sync_serial_settings {
    pub clock_rate: c_uint,
    pub clock_type: c_uint,
    pub loopback:   c_ushort,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct te1_settings {
    pub clock_rate: c_uint,
    pub clock_type: c_uint,
    pub loopback:   c_ushort,
    pub slot_map:   c_uint,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct raw_hdlc_proto {
    pub encoding: c_ushort,
    pub parity:   c_ushort,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct fr_proto {
    pub t391: c_uint,
    pub t392: c_uint,
    pub n391: c_uint,
    pub n392: c_uint,
    pub n393: c_uint,
    pub lmi:  c_ushort,
    pub dce:  c_ushort,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct fr_proto_pvc {
    pub dlci: c_uint,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct fr_proto_pvc_info {
    pub dlci: c_uint,
    pub master: [c_char; IFNAMSIZ],
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct cisco_proto {
    pub interval: c_uint,
    pub timeout:  c_uint,
}

//////////////////////////
// include/uapi/linux/if.h
//////////////////////////

pub const IFNAMSIZ : usize = 16;
pub const IFALIASZ : usize = 256;

pub type net_device_flags = c_int;
pub const IFF_UP          : net_device_flags = 1<<0;
pub const IFF_BROADCAST   : net_device_flags = 1<<1;
pub const IFF_DEBUG       : net_device_flags = 1<<2;
pub const IFF_LOOPBACK    : net_device_flags = 1<<3;
pub const IFF_POINTOPOINT : net_device_flags = 1<<4;
pub const IFF_NOTRAILERS  : net_device_flags = 1<<5;
pub const IFF_RUNNING     : net_device_flags = 1<<6;
pub const IFF_NOARP       : net_device_flags = 1<<7;
pub const IFF_PROMISC     : net_device_flags = 1<<8;
pub const IFF_ALLMULTI    : net_device_flags = 1<<9;
pub const IFF_MASTER      : net_device_flags = 1<<10;
pub const IFF_SLAVE       : net_device_flags = 1<<11;
pub const IFF_MULTICAST   : net_device_flags = 1<<12;
pub const IFF_PORTSEL     : net_device_flags = 1<<13;
pub const IFF_AUTOMEDIA   : net_device_flags = 1<<14;
pub const IFF_DYNAMIC     : net_device_flags = 1<<15;
pub const IFF_LOWER_UP    : net_device_flags = 1<<16;
pub const IFF_DORMANT     : net_device_flags = 1<<17;
pub const IFF_ECHO        : net_device_flags = 1<<18;

pub const IFF_VOLATILE : net_device_flags =
        IFF_LOOPBACK | IFF_POINTOPOINT | IFF_BROADCAST | IFF_ECHO |
		IFF_MASTER | IFF_SLAVE | IFF_RUNNING | IFF_LOWER_UP | IFF_DORMANT;

pub const IF_GET_IFACE            : c_int = 0x0001;
pub const IF_GET_PROTO            : c_int = 0x0002;
pub const IF_IFACE_V35            : c_int = 0x1000;
pub const IF_IFACE_V24            : c_int = 0x1001;
pub const IF_IFACE_X21            : c_int = 0x1002;
pub const IF_IFACE_T1             : c_int = 0x1003;
pub const IF_IFACE_E1             : c_int = 0x1004;
pub const IF_IFACE_SYNC_SERIAL    : c_int = 0x1005;
pub const IF_IFACE_X21D           : c_int = 0x1006;
pub const IF_PROTO_HDLC           : c_int = 0x2000;
pub const IF_PROTO_PPP            : c_int = 0x2001;
pub const IF_PROTO_CISCO          : c_int = 0x2002;
pub const IF_PROTO_FR             : c_int = 0x2003;
pub const IF_PROTO_FR_ADD_PVC     : c_int = 0x2004;
pub const IF_PROTO_FR_DEL_PVC     : c_int = 0x2005;
pub const IF_PROTO_X25            : c_int = 0x2006;
pub const IF_PROTO_HDLC_ETH       : c_int = 0x2007;
pub const IF_PROTO_FR_ADD_ETH_PVC : c_int = 0x2008;
pub const IF_PROTO_FR_DEL_ETH_PVC : c_int = 0x2009;
pub const IF_PROTO_FR_PVC         : c_int = 0x200A;
pub const IF_PROTO_FR_ETH_PVC     : c_int = 0x200B;
pub const IF_PROTO_RAW            : c_int = 0x200C;

pub const IF_OPER_UNKNOWN        : c_int = 0;
pub const IF_OPER_NOTPRESENT     : c_int = 1;
pub const IF_OPER_DOWN           : c_int = 2;
pub const IF_OPER_LOWERLAYERDOWN : c_int = 3;
pub const IF_OPER_TESTING        : c_int = 4;
pub const IF_OPER_DORMANT        : c_int = 5;
pub const IF_OPER_UP             : c_int = 6;

pub const IF_LINK_MODE_DEFAULT : c_int = 0;
pub const IF_LINK_MODE_DORMANT : c_int = 1;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct ifmap {
    pub mem_start: c_ulong,
    pub mem_end:   c_ulong,
    pub base_addr: c_ushort,
    pub irq:       c_uchar,
    pub dma:       c_uchar,
    pub port:      c_uchar,
}

////////////////////////////
// include/uapi/linux/veth.h
////////////////////////////

pub const VETH_INFO_UNSPEC : u16 = 0;
pub const VETH_INFO_PEER   : u16 = 1;
pub const __VETH_INFO_MAX  : u16 = 2;
pub const VETH_INFO_MAX    : u16 = __VETH_INFO_MAX - 1;

/////////////////////////////
// include/uapi/linux/sched.h
/////////////////////////////

pub const CSIGNAL              : c_int = 0x000000ff;
pub const CLONE_VM             : c_int = 0x00000100;
pub const CLONE_FS             : c_int = 0x00000200;
pub const CLONE_FILES          : c_int = 0x00000400;
pub const CLONE_SIGHAND        : c_int = 0x00000800;
pub const CLONE_PTRACE         : c_int = 0x00002000;
pub const CLONE_VFORK          : c_int = 0x00004000;
pub const CLONE_PARENT         : c_int = 0x00008000;
pub const CLONE_THREAD         : c_int = 0x00010000;
pub const CLONE_NEWNS          : c_int = 0x00020000;
pub const CLONE_SYSVSEM        : c_int = 0x00040000;
pub const CLONE_SETTLS         : c_int = 0x00080000;
pub const CLONE_PARENT_SETTID  : c_int = 0x00100000;
pub const CLONE_CHILD_CLEARTID : c_int = 0x00200000;
pub const CLONE_DETACHED       : c_int = 0x00400000;
pub const CLONE_UNTRACED       : c_int = 0x00800000;
pub const CLONE_CHILD_SETTID   : c_int = 0x01000000;
pub const CLONE_NEWUTS         : c_int = 0x04000000;
pub const CLONE_NEWIPC         : c_int = 0x08000000;
pub const CLONE_NEWUSER        : c_int = 0x10000000;
pub const CLONE_NEWPID         : c_int = 0x20000000;
pub const CLONE_NEWNET         : c_int = 0x40000000;
pub const CLONE_IO             : c_int = 0x80000000u64 as _;

pub const SCHED_NORMAL   : c_int = 0;
pub const SCHED_FIFO     : c_int = 1;
pub const SCHED_RR       : c_int = 2;
pub const SCHED_BATCH    : c_int = 3;
pub const SCHED_IDLE     : c_int = 5;
pub const SCHED_DEADLINE : c_int = 6;

pub const SCHED_RESET_ON_FORK      : c_int = 0x40000000;
pub const SCHED_FLAG_RESET_ON_FORK : c_int = 0x01;

////////////////////////////////
// include/uapi/linux/signalfd.h
////////////////////////////////

pub const SFD_CLOEXEC  : c_int = O_CLOEXEC;
pub const SFD_NONBLOCK : c_int = O_NONBLOCK;

#[repr(C)]
#[derive(Copy)]
pub struct signalfd_siginfo {
    pub ssi_signo    : __u32,
    pub ssi_errno    : __s32,
    pub ssi_code     : __s32,
    pub ssi_pid      : __u32,
    pub ssi_uid      : __u32,
    pub ssi_fd       : __s32,
    pub ssi_tid      : __u32,
    pub ssi_band     : __u32,
    pub ssi_overrun  : __u32,
    pub ssi_trapno   : __u32,
    pub ssi_status   : __s32,
    pub ssi_int      : __s32,
    pub ssi_ptr      : __u64,
    pub ssi_utime    : __u64,
    pub ssi_stime    : __u64,
    pub ssi_addr     : __u64,
    pub ssi_addr_lsb : __u16,
    pub __pad : [__u8; 46],
}

unsafe impl crate::util::pod::Pod for signalfd_siginfo { }

impl Clone for signalfd_siginfo {
    fn clone(&self) -> Self {
        return *self;
    }
}

/////////////////////////
// include/linux/splice.h
/////////////////////////

pub const SPLICE_F_MOVE     : c_uint = 0x01;
pub const SPLICE_F_NONBLOCK : c_uint = 0x02;
pub const SPLICE_F_MORE     : c_uint = 0x04;
pub const SPLICE_F_GIFT     : c_uint = 0x08;

///////////////////////////////
// include/uapi/linux/inotify.h
///////////////////////////////

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct inotify_event {
    pub wd:      __s32,
    pub mask:    __u32,
    pub cookie:  __u32,
    pub len:     __u32,
    pub name: [c_char; 0],
}


pub const IN_ACCESS        : u32 = 0x00000001;
pub const IN_MODIFY        : u32 = 0x00000002;
pub const IN_ATTRIB        : u32 = 0x00000004;
pub const IN_CLOSE_WRITE   : u32 = 0x00000008;
pub const IN_CLOSE_NOWRITE : u32 = 0x00000010;
pub const IN_OPEN          : u32 = 0x00000020;
pub const IN_MOVED_FROM    : u32 = 0x00000040;
pub const IN_MOVED_TO      : u32 = 0x00000080;
pub const IN_CREATE        : u32 = 0x00000100;
pub const IN_DELETE        : u32 = 0x00000200;
pub const IN_DELETE_SELF   : u32 = 0x00000400;
pub const IN_MOVE_SELF     : u32 = 0x00000800;
pub const IN_UNMOUNT       : u32 = 0x00002000;
pub const IN_Q_OVERFLOW    : u32 = 0x00004000;
pub const IN_IGNORED       : u32 = 0x00008000;
pub const IN_CLOSE         : u32 = IN_CLOSE_WRITE | IN_CLOSE_NOWRITE;
pub const IN_MOVE          : u32 = IN_MOVED_FROM | IN_MOVED_TO;
pub const IN_ONLYDIR       : u32 = 0x01000000;
pub const IN_DONT_FOLLOW   : u32 = 0x02000000;
pub const IN_EXCL_UNLINK   : u32 = 0x04000000;
pub const IN_MASK_ADD      : u32 = 0x20000000;
pub const IN_ISDIR         : u32 = 0x40000000;
pub const IN_ONESHOT       : u32 = 0x80000000;

pub const IN_ALL_EVENTS : u32 = IN_ACCESS | IN_MODIFY | IN_ATTRIB | IN_CLOSE_WRITE |
                                IN_CLOSE_NOWRITE | IN_OPEN | IN_MOVED_FROM |
                                IN_MOVED_TO | IN_DELETE | IN_CREATE | IN_DELETE_SELF |
                                IN_MOVE_SELF;

pub const IN_CLOEXEC  : c_int = O_CLOEXEC;
pub const IN_NONBLOCK : c_int = O_NONBLOCK;

//////////////////////////
// include/linux/eventfd.h
//////////////////////////

pub const EFD_SEMAPHORE          : c_int = 1 << 0;
pub const EFD_CLOEXEC            : c_int = O_CLOEXEC;
pub const EFD_NONBLOCK           : c_int = O_NONBLOCK;
pub const EFD_SHARED_FCNTL_FLAGS : c_int = O_CLOEXEC | O_NONBLOCK;
pub const EFD_FLAGS_SET          : c_int = EFD_SHARED_FCNTL_FLAGS | EFD_SEMAPHORE;

//////////////////////////////
// include/uapi/linux/reboot.h
//////////////////////////////

pub const LINUX_REBOOT_MAGIC1         : c_int = 0xfee1deadu64 as _;
pub const LINUX_REBOOT_MAGIC2         : c_int = 672274793;
pub const LINUX_REBOOT_MAGIC2A        : c_int = 85072278;
pub const LINUX_REBOOT_MAGIC2B        : c_int = 369367448;
pub const LINUX_REBOOT_MAGIC2C        : c_int = 537993216;
pub const LINUX_REBOOT_CMD_RESTART    : c_uint = 0x01234567;
pub const LINUX_REBOOT_CMD_HALT       : c_uint = 0xCDEF0123;
pub const LINUX_REBOOT_CMD_CAD_ON     : c_uint = 0x89ABCDEF;
pub const LINUX_REBOOT_CMD_CAD_OFF    : c_uint = 0x00000000;
pub const LINUX_REBOOT_CMD_POWER_OFF  : c_uint = 0x4321FEDC;
pub const LINUX_REBOOT_CMD_RESTART2   : c_uint = 0xA1B2C3D4;
pub const LINUX_REBOOT_CMD_SW_SUSPEND : c_uint = 0xD000FCE2;
pub const LINUX_REBOOT_CMD_KEXEC      : c_uint = 0x45584543;

/////////////////////////////
// include/uapi/linux/memfd.h
/////////////////////////////

pub const MFD_CLOEXEC       : c_uint = 0x0001;
pub const MFD_ALLOW_SEALING : c_uint = 0x0002;

///////////////////////////
// include/uapi/linux/tty.h
///////////////////////////

pub const NR_LDISCS      : c_int = 30;
pub const N_TTY          : c_int = 0;
pub const N_SLIP         : c_int = 1;
pub const N_MOUSE        : c_int = 2;
pub const N_PPP          : c_int = 3;
pub const N_STRIP        : c_int = 4;
pub const N_AX25         : c_int = 5;
pub const N_X25          : c_int = 6;
pub const N_6PACK        : c_int = 7;
pub const N_MASC         : c_int = 8;
pub const N_R3964        : c_int = 9;
pub const N_PROFIBUS_FDL : c_int = 10;
pub const N_IRDA         : c_int = 11;
pub const N_SMSBLOCK     : c_int = 12;
pub const N_HDLC         : c_int = 13;
pub const N_SYNC_PPP     : c_int = 14;
pub const N_HCI          : c_int = 15;
pub const N_GIGASET_M101 : c_int = 16;
pub const N_SLCAN        : c_int = 17;
pub const N_PPS          : c_int = 18;
pub const N_V253         : c_int = 19;
pub const N_CAIF         : c_int = 20;
pub const N_GSM0710      : c_int = 21;
pub const N_TI_WL        : c_int = 22;
pub const N_TRACESINK    : c_int = 23;
pub const N_TRACEROUTER  : c_int = 24;

/////////////////////////////
// include/uapi/linux/prctl.h
/////////////////////////////

pub const PR_SET_PDEATHSIG            : c_int = 1;
pub const PR_GET_PDEATHSIG            : c_int = 2;
pub const PR_GET_DUMPABLE             : c_int = 3;
pub const PR_SET_DUMPABLE             : c_int = 4;
pub const PR_GET_UNALIGN              : c_int = 5;
pub const PR_SET_UNALIGN              : c_int = 6;
pub const PR_UNALIGN_NOPRINT          : k_ulong = 1;
pub const PR_UNALIGN_SIGBUS           : k_ulong = 2;
pub const PR_GET_KEEPCAPS             : c_int = 7;
pub const PR_SET_KEEPCAPS             : c_int = 8;
pub const PR_GET_FPEMU                : c_int = 9;
pub const PR_SET_FPEMU                : c_int = 10;
pub const PR_FPEMU_NOPRINT            : k_ulong = 1;
pub const PR_FPEMU_SIGFPE             : k_ulong = 2;
pub const PR_GET_FPEXC                : c_int = 11;
pub const PR_SET_FPEXC                : c_int = 12;
pub const PR_FP_EXC_SW_ENABLE         : k_ulong = 0x80;
pub const PR_FP_EXC_DIV               : k_ulong = 0x010000;
pub const PR_FP_EXC_OVF               : k_ulong = 0x020000;
pub const PR_FP_EXC_UND               : k_ulong = 0x040000;
pub const PR_FP_EXC_RES               : k_ulong = 0x080000;
pub const PR_FP_EXC_INV               : k_ulong = 0x100000;
pub const PR_FP_EXC_DISABLED          : k_ulong = 0;
pub const PR_FP_EXC_NONRECOV          : k_ulong = 1;
pub const PR_FP_EXC_ASYNC             : k_ulong = 2;
pub const PR_FP_EXC_PRECISE           : k_ulong = 3;
pub const PR_GET_TIMING               : c_int = 13;
pub const PR_SET_TIMING               : c_int = 14;
pub const PR_TIMING_STATISTICAL       : k_ulong = 0;
pub const PR_TIMING_TIMESTAMP         : k_ulong = 1;
pub const PR_SET_NAME                 : c_int = 15;
pub const PR_GET_NAME                 : c_int = 16;
pub const PR_GET_ENDIAN               : c_int = 19;
pub const PR_SET_ENDIAN               : c_int = 20;
pub const PR_ENDIAN_BIG               : k_ulong = 0;
pub const PR_ENDIAN_LITTLE            : k_ulong = 1;
pub const PR_ENDIAN_PPC_LITTLE        : k_ulong = 2;
pub const PR_GET_SECCOMP              : c_int = 21;
pub const PR_SET_SECCOMP              : c_int = 22;
pub const PR_CAPBSET_READ             : c_int = 23;
pub const PR_CAPBSET_DROP             : c_int = 24;
pub const PR_GET_TSC                  : c_int = 25;
pub const PR_SET_TSC                  : c_int = 26;
pub const PR_TSC_ENABLE               : k_ulong = 1;
pub const PR_TSC_SIGSEGV              : k_ulong = 2;
pub const PR_GET_SECUREBITS           : c_int = 27;
pub const PR_SET_SECUREBITS           : c_int = 28;
pub const PR_SET_TIMERSLACK           : c_int = 29;
pub const PR_GET_TIMERSLACK           : c_int = 30;
pub const PR_TASK_PERF_EVENTS_DISABLE : c_int = 31;
pub const PR_TASK_PERF_EVENTS_ENABLE  : c_int = 32;
pub const PR_MCE_KILL                 : c_int = 33;
pub const PR_MCE_KILL_CLEAR           : k_ulong = 0;
pub const PR_MCE_KILL_SET             : k_ulong = 1;
pub const PR_MCE_KILL_LATE            : k_ulong = 0;
pub const PR_MCE_KILL_EARLY           : k_ulong = 1;
pub const PR_MCE_KILL_DEFAULT         : k_ulong = 2;
pub const PR_MCE_KILL_GET             : c_int = 34;
pub const PR_SET_MM                   : c_int = 35;
pub const PR_SET_MM_START_CODE        : k_ulong = 1;
pub const PR_SET_MM_END_CODE          : k_ulong = 2;
pub const PR_SET_MM_START_DATA        : k_ulong = 3;
pub const PR_SET_MM_END_DATA          : k_ulong = 4;
pub const PR_SET_MM_START_STACK       : k_ulong = 5;
pub const PR_SET_MM_START_BRK         : k_ulong = 6;
pub const PR_SET_MM_BRK               : k_ulong = 7;
pub const PR_SET_MM_ARG_START         : k_ulong = 8;
pub const PR_SET_MM_ARG_END           : k_ulong = 9;
pub const PR_SET_MM_ENV_START         : k_ulong = 10;
pub const PR_SET_MM_ENV_END           : k_ulong = 11;
pub const PR_SET_MM_AUXV              : k_ulong = 12;
pub const PR_SET_MM_EXE_FILE          : k_ulong = 13;
pub const PR_SET_MM_MAP               : k_ulong = 14;
pub const PR_SET_MM_MAP_SIZE          : k_ulong = 15;
pub const PR_CAP_AMBIENT              : k_int = 47;
pub const PR_CAP_AMBIENT_IS_SET       : k_ulong = 1;
pub const PR_CAP_AMBIENT_RAISE        : k_ulong = 2;
pub const PR_CAP_AMBIENT_LOWER        : k_ulong = 3;
pub const PR_CAP_AMBIENT_CLEAR_ALL    : k_ulong = 4;


#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct prctl_mm_map {
    pub start_code:  __u64,
    pub end_code:    __u64,
    pub start_data:  __u64,
    pub end_data:    __u64,
    pub start_brk:   __u64,
    pub brk:         __u64,
    pub start_stack: __u64,
    pub arg_start:   __u64,
    pub arg_end:     __u64,
    pub env_start:   __u64,
    pub env_end:     __u64,
    pub auxv:        *mut __u64,
    pub auxv_size:   __u32,
    pub exe_fd:      __u32,
}

pub const PR_SET_PTRACER            : c_int = 0x59616d61;
pub const PR_SET_PTRACER_ANY        : k_ulong = -1i64 as _;
pub const PR_SET_CHILD_SUBREAPER    : c_int = 36;
pub const PR_GET_CHILD_SUBREAPER    : c_int = 37;
pub const PR_SET_NO_NEW_PRIVS       : c_int = 38;
pub const PR_GET_NO_NEW_PRIVS       : c_int = 39;
pub const PR_GET_TID_ADDRESS        : c_int = 40;
pub const PR_SET_THP_DISABLE        : c_int = 41;
pub const PR_GET_THP_DISABLE        : c_int = 42;
pub const PR_MPX_ENABLE_MANAGEMENT  : c_int = 43;
pub const PR_MPX_DISABLE_MANAGEMENT : c_int = 44;
pub const PR_SET_FP_MODE            : c_int = 45;
pub const PR_GET_FP_MODE            : c_int = 46;
pub const PR_FP_MODE_FR             : k_ulong = 1<<0;
pub const PR_FP_MODE_FRE            : k_ulong = 1<<1;

///////////////////////////////
// include/uapi/linux/seccomp.h
///////////////////////////////

pub const SECCOMP_MODE_DISABLED     : c_uint = 0;
pub const SECCOMP_MODE_STRICT       : c_uint = 1;
pub const SECCOMP_MODE_FILTER       : c_uint = 2;
pub const SECCOMP_SET_MODE_STRICT   : c_uint = 0;
pub const SECCOMP_SET_MODE_FILTER   : c_uint = 1;
pub const SECCOMP_FILTER_FLAG_TSYNC : c_uint = 1;
pub const SECCOMP_RET_KILL          : c_uint = 0x00000000;
pub const SECCOMP_RET_TRAP          : c_uint = 0x00030000;
pub const SECCOMP_RET_ERRNO         : c_uint = 0x00050000;
pub const SECCOMP_RET_TRACE         : c_uint = 0x7ff00000;
pub const SECCOMP_RET_ALLOW         : c_uint = 0x7fff0000;
pub const SECCOMP_RET_ACTION        : c_uint = 0x7fff0000;
pub const SECCOMP_RET_DATA          : c_uint = 0x0000ffff;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct seccomp_data {
    pub nr:                  c_int,
    pub arch:                __u32,
    pub instruction_pointer: __u64,
    pub args:             [__u64; 6],
}

///////////////////////
// include/linux/swap.h
///////////////////////

pub const SWAP_FLAG_PREFER        : c_int = 0x8000;
pub const SWAP_FLAG_PRIO_MASK     : c_int = 0x7fff;
pub const SWAP_FLAG_PRIO_SHIFT    : c_int = 0;
pub const SWAP_FLAG_DISCARD       : c_int = 0x10000;
pub const SWAP_FLAG_DISCARD_ONCE  : c_int = 0x20000;
pub const SWAP_FLAG_DISCARD_PAGES : c_int = 0x40000;

//////////////////////////////
// include/linux/uapi/auxvec.h
//////////////////////////////

pub const AT_NULL          : usize = 0;
pub const AT_IGNORE        : usize = 1;
pub const AT_EXECFD        : usize = 2;
pub const AT_PHDR          : usize = 3;
pub const AT_PHENT         : usize = 4;
pub const AT_PHNUM         : usize = 5;
pub const AT_PAGESZ        : usize = 6;
pub const AT_BASE          : usize = 7;
pub const AT_FLAGS         : usize = 8;
pub const AT_ENTRY         : usize = 9;
pub const AT_NOTELF        : usize = 10;
pub const AT_UID           : usize = 11;
pub const AT_EUID          : usize = 12;
pub const AT_GID           : usize = 13;
pub const AT_EGID          : usize = 14;
pub const AT_PLATFORM      : usize = 15;
pub const AT_HWCAP         : usize = 16;
pub const AT_CLKTCK        : usize = 17;
pub const AT_SECURE        : usize = 23;
pub const AT_BASE_PLATFORM : usize = 24;
pub const AT_RANDOM        : usize = 25;
pub const AT_HWCAP2        : usize = 26;
pub const AT_EXECFN        : usize = 31;

//////////////////////////////
// include/uapi/linux/elf-em.h
//////////////////////////////

pub const EM_NONE           : u16 = 0;
pub const EM_M32            : u16 = 1;
pub const EM_SPARC          : u16 = 2;
pub const EM_386            : u16 = 3;
pub const EM_68K            : u16 = 4;
pub const EM_88K            : u16 = 5;
pub const EM_486            : u16 = 6;
pub const EM_860            : u16 = 7;
pub const EM_MIPS           : u16 = 8;
pub const EM_MIPS_RS3_LE    : u16 = 10;
pub const EM_MIPS_RS4_BE    : u16 = 10;
pub const EM_PARISC         : u16 = 15;
pub const EM_SPARC32PLUS    : u16 = 18;
pub const EM_PPC            : u16 = 20;
pub const EM_PPC64          : u16 = 21;
pub const EM_SPU            : u16 = 23;
pub const EM_ARM            : u16 = 40;
pub const EM_SH             : u16 = 42;
pub const EM_SPARCV9        : u16 = 43;
pub const EM_IA_64          : u16 = 50;
pub const EM_X86_64         : u16 = 62;
pub const EM_S390           : u16 = 22;
pub const EM_CRIS           : u16 = 76;
pub const EM_V850           : u16 = 87;
pub const EM_M32R           : u16 = 88;
pub const EM_MN10300        : u16 = 89;
pub const EM_OPENRISC       : u16 = 92;
pub const EM_BLACKFIN       : u16 = 106;
pub const EM_ALTERA_NIOS2   : u16 = 113;
pub const EM_TI_C6000       : u16 = 140;
pub const EM_AARCH64        : u16 = 183;
pub const EM_FRV            : u16 = 0x5441;
pub const EM_AVR32          : u16 = 0x18ad;
pub const EM_ALPHA          : u16 = 0x9026;
pub const EM_CYGNUS_V850    : u16 = 0x9080;
pub const EM_CYGNUS_M32R    : u16 = 0x9041;
pub const EM_S390_OLD       : u16 = 0xA390;
pub const EM_CYGNUS_MN10300 : u16 = 0xbeef;

///////////////////////////
// include/uapi/linux/elf.h
///////////////////////////

pub type Elf32_Addr   = u32;
pub type Elf32_Half   = u16;
pub type Elf32_Off    = u32;
pub type Elf32_Sword  = i32;
pub type Elf32_Word   = u32;

pub type Elf64_Addr   = u64;
pub type Elf64_Half   = u16;
pub type Elf64_SHalf  = i16;
pub type Elf64_Off    = u64;
pub type Elf64_Sword  = i32;
pub type Elf64_Word   = u32;
pub type Elf64_Xword  = u64;
pub type Elf64_Sxword = i64;

pub const PT_NULL         : u32 = 0;
pub const PT_LOAD         : u32 = 1;
pub const PT_DYNAMIC      : u32 = 2;
pub const PT_INTERP       : u32 = 3;
pub const PT_NOTE         : u32 = 4;
pub const PT_SHLIB        : u32 = 5;
pub const PT_PHDR         : u32 = 6;
pub const PT_TLS          : u32 = 7;
pub const PT_LOOS         : u32 = 0x60000000;
pub const PT_HIOS         : u32 = 0x6fffffff;
pub const PT_LOPROC       : u32 = 0x70000000;
pub const PT_HIPROC       : u32 = 0x7fffffff;
pub const PT_GNU_EH_FRAME : u32 = 0x6474e550;
pub const PT_GNU_STACK    : u32 = PT_LOOS + 0x474e551;

pub const PN_XNUM : u16 = 0xffff;

pub const ET_NONE   : u16 = 0;
pub const ET_REL    : u16 = 1;
pub const ET_EXEC   : u16 = 2;
pub const ET_DYN    : u16 = 3;
pub const ET_CORE   : u16 = 4;
pub const ET_LOPROC : u16 = 0xff00;
pub const ET_HIPROC : u16 = 0xffff;

pub const DT_NULL       : u32 = 0;
pub const DT_NEEDED     : u32 = 1;
pub const DT_PLTRELSZ   : u32 = 2;
pub const DT_PLTGOT     : u32 = 3;
pub const DT_HASH       : u32 = 4;
pub const DT_STRTAB     : u32 = 5;
pub const DT_SYMTAB     : u32 = 6;
pub const DT_RELA       : u32 = 7;
pub const DT_RELASZ     : u32 = 8;
pub const DT_RELAENT    : u32 = 9;
pub const DT_STRSZ      : u32 = 10;
pub const DT_SYMENT     : u32 = 11;
pub const DT_INIT       : u32 = 12;
pub const DT_FINI       : u32 = 13;
pub const DT_SONAME     : u32 = 14;
pub const DT_RPATH      : u32 = 15;
pub const DT_SYMBOLIC   : u32 = 16;
pub const DT_REL        : u32 = 17;
pub const DT_RELSZ      : u32 = 18;
pub const DT_RELENT     : u32 = 19;
pub const DT_PLTREL     : u32 = 20;
pub const DT_DEBUG      : u32 = 21;
pub const DT_TEXTREL    : u32 = 22;
pub const DT_JMPREL     : u32 = 23;
pub const DT_ENCODING   : u32 = 32;
pub const OLD_DT_LOOS   : u32 = 0x60000000;
pub const DT_LOOS       : u32 = 0x6000000d;
pub const DT_HIOS       : u32 = 0x6ffff000;
pub const DT_VALRNGLO   : u32 = 0x6ffffd00;
pub const DT_VALRNGHI   : u32 = 0x6ffffdff;
pub const DT_ADDRRNGLO  : u32 = 0x6ffffe00;
pub const DT_ADDRRNGHI  : u32 = 0x6ffffeff;
pub const DT_VERSYM     : u32 = 0x6ffffff0;
pub const DT_RELACOUNT  : u32 = 0x6ffffff9;
pub const DT_RELCOUNT   : u32 = 0x6ffffffa;
pub const DT_FLAGS_1    : u32 = 0x6ffffffb;
pub const DT_VERDEF     : u32 = 0x6ffffffc;
pub const DT_VERDEFNUM  : u32 = 0x6ffffffd;
pub const DT_VERNEED    : u32 = 0x6ffffffe;
pub const DT_VERNEEDNUM : u32 = 0x6fffffff;
pub const OLD_DT_HIOS   : u32 = 0x6fffffff;
pub const DT_LOPROC     : u32 = 0x70000000;
pub const DT_HIPROC     : u32 = 0x7fffffff;

pub const STB_LOCAL  : u16 = 0;
pub const STB_GLOBAL : u16 = 1;
pub const STB_WEAK   : u16 = 2;

pub const STT_NOTYPE  : u32 = 0;
pub const STT_OBJECT  : u32 = 1;
pub const STT_FUNC    : u32 = 2;
pub const STT_SECTION : u32 = 3;
pub const STT_FILE    : u32 = 4;
pub const STT_COMMON  : u32 = 5;
pub const STT_TLS     : u32 = 6;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct Elf32_Dyn {
    pub d_tag: Elf32_Sword,
    pub d_val: Elf32_Sword,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct Elf64_Dyn {
    pub d_tag: Elf64_Sxword,
    pub d_val: Elf64_Xword,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct Elf32_Rel {
    pub r_offset: Elf32_Addr,
    pub r_info:   Elf32_Word,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct Elf64_Rel {
    pub r_offset: Elf64_Addr,
    pub r_info:   Elf64_Xword,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct Elf32_Rela {
    pub r_offset: Elf32_Addr,
    pub r_info:   Elf32_Word,
    pub r_addend: Elf32_Sword,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct Elf64_Rela {
    pub r_offset: Elf64_Addr,
    pub r_info:   Elf64_Xword,
    pub r_addend: Elf64_Sxword,
}

macro_rules! impl_elf_rel {
    ($name:ident, $shift:expr, $mask:expr) => {
        impl $name {
            pub fn r_sym(&self) -> u32 {
                (self.r_info >> $shift) as u32
            }

            pub fn r_type(&self) -> u32 {
                (self.r_info & $mask) as u32
            }
        }
    }
}

impl_elf_rel!(Elf32_Rel, 8, 0xff);
impl_elf_rel!(Elf32_Rela, 8, 0xff);
impl_elf_rel!(Elf64_Rel, 32, 0xffffffff);
impl_elf_rel!(Elf64_Rela, 32, 0xffffffff);

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct Elf32_Sym {
    pub st_name:  Elf32_Word,
    pub st_value: Elf32_Addr,
    pub st_size:  Elf32_Word,
    pub st_info:  u8,
    pub st_other: u8,
    pub st_shndx: Elf32_Half,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct Elf64_Sym {
    pub st_name:  Elf64_Word,
    pub st_info:  u8,
    pub st_other: u8,
    pub st_shndx: Elf64_Half,
    pub st_value: Elf64_Addr,
    pub st_size:  Elf64_Xword,
}

macro_rules! impl_elf_sym {
    ($name:ident) => {
        impl $name {
            pub fn st_bind(&self) -> u8 {
                self.st_info >> 4
            }

            pub fn st_type(&self) -> u8 {
                self.st_info & 0xf
            }
        }
    }
}

impl_elf_sym!(Elf32_Sym);
impl_elf_sym!(Elf64_Sym);

pub const EI_NIDENT : usize = 16;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct Elf32_Ehdr {
    pub e_ident:     [u8; EI_NIDENT],
    pub e_type:      Elf32_Half,
    pub e_machine:   Elf32_Half,
    pub e_version:   Elf32_Word,
    pub e_entry:     Elf32_Addr,
    pub e_phoff:     Elf32_Off,
    pub e_shoff:     Elf32_Off,
    pub e_flags:     Elf32_Word,
    pub e_ehsize:    Elf32_Half,
    pub e_phentsize: Elf32_Half,
    pub e_phnum:     Elf32_Half,
    pub e_shentsize: Elf32_Half,
    pub e_shnum:     Elf32_Half,
    pub e_shstrndx:  Elf32_Half,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct Elf64_Ehdr {
    pub e_ident:     [u8; EI_NIDENT],
    pub e_type:      Elf64_Half,
    pub e_machine:   Elf64_Half,
    pub e_version:   Elf64_Word,
    pub e_entry:     Elf64_Addr,
    pub e_phoff:     Elf64_Off,
    pub e_shoff:     Elf64_Off,
    pub e_flags:     Elf64_Word,
    pub e_ehsize:    Elf64_Half,
    pub e_phentsize: Elf64_Half,
    pub e_phnum:     Elf64_Half,
    pub e_shentsize: Elf64_Half,
    pub e_shnum:     Elf64_Half,
    pub e_shstrndx:  Elf64_Half,
}

pub const PF_R : u32 = 0x4;
pub const PF_W : u32 = 0x2;
pub const PF_X : u32 = 0x1;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct Elf32_Phdr{
    pub p_type:   Elf32_Word,
    pub p_offset: Elf32_Off,
    pub p_vaddr:  Elf32_Addr,
    pub p_paddr:  Elf32_Addr,
    pub p_filesz: Elf32_Word,
    pub p_memsz:  Elf32_Word,
    pub p_flags:  Elf32_Word,
    pub p_align:  Elf32_Word,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct Elf64_Phdr {
    pub p_type:   Elf64_Word,
    pub p_flags:  Elf64_Word,
    pub p_offset: Elf64_Off,
    pub p_vaddr:  Elf64_Addr,
    pub p_paddr:  Elf64_Addr,
    pub p_filesz: Elf64_Xword,
    pub p_memsz:  Elf64_Xword,
    pub p_align:  Elf64_Xword,
}

pub const SHT_NULL     : u32 = 0;
pub const SHT_PROGBITS : u32 = 1;
pub const SHT_SYMTAB   : u32 = 2;
pub const SHT_STRTAB   : u32 = 3;
pub const SHT_RELA     : u32 = 4;
pub const SHT_HASH     : u32 = 5;
pub const SHT_DYNAMIC  : u32 = 6;
pub const SHT_NOTE     : u32 = 7;
pub const SHT_NOBITS   : u32 = 8;
pub const SHT_REL      : u32 = 9;
pub const SHT_SHLIB    : u32 = 10;
pub const SHT_DYNSYM   : u32 = 11;
pub const SHT_NUM      : u32 = 12;
pub const SHT_LOPROC   : u32 = 0x70000000;
pub const SHT_HIPROC   : u32 = 0x7fffffff;
pub const SHT_LOUSER   : u32 = 0x80000000;
pub const SHT_HIUSER   : u32 = 0xffffffff;

pub const SHF_WRITE     : u32 = 0x1;
pub const SHF_ALLOC     : u32 = 0x2;
pub const SHF_EXECINSTR : u32 = 0x4;
pub const SHF_MASKPROC  : u32 = 0xf0000000;

pub const SHN_UNDEF     : u32 = 0;
pub const SHN_LORESERVE : u32 = 0xff00;
pub const SHN_LOPROC    : u32 = 0xff00;
pub const SHN_HIPROC    : u32 = 0xff1f;
pub const SHN_ABS       : u32 = 0xfff1;
pub const SHN_COMMON    : u32 = 0xfff2;
pub const SHN_HIRESERVE : u32 = 0xffff;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct Elf32_Shdr {
    pub sh_name:      Elf32_Word,
    pub sh_type:      Elf32_Word,
    pub sh_flags:     Elf32_Word,
    pub sh_addr:      Elf32_Addr,
    pub sh_offset:    Elf32_Off,
    pub sh_size:      Elf32_Word,
    pub sh_link:      Elf32_Word,
    pub sh_info:      Elf32_Word,
    pub sh_addralign: Elf32_Word,
    pub sh_entsize:   Elf32_Word,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct Elf64_Shdr {
    pub sh_name:      Elf64_Word,
    pub sh_type:      Elf64_Word,
    pub sh_flags:     Elf64_Xword,
    pub sh_addr:      Elf64_Addr,
    pub sh_offset:    Elf64_Off,
    pub sh_size:      Elf64_Xword,
    pub sh_link:      Elf64_Word,
    pub sh_info:      Elf64_Word,
    pub sh_addralign: Elf64_Xword,
    pub sh_entsize:   Elf64_Xword,
}

pub const EI_MAG0    : usize = 0;
pub const EI_MAG1    : usize = 1;
pub const EI_MAG2    : usize = 2;
pub const EI_MAG3    : usize = 3;
pub const EI_CLASS   : usize = 4;
pub const EI_DATA    : usize = 5;
pub const EI_VERSION : usize = 6;
pub const EI_OSABI   : usize = 7;
pub const EI_PAD     : usize = 8;

pub const ELFMAG0 : u8 = 0x7f;
pub const ELFMAG1 : u8 = b'E';
pub const ELFMAG2 : u8 = b'L';
pub const ELFMAG3 : u8 = b'F';
pub const ELFMAG : [u8; 4] = *b"\x7fELF";
pub const SELFMAG : usize = 4;

pub const ELFCLASSNONE : u8 = 0;
pub const ELFCLASS32   : u8 = 1;
pub const ELFCLASS64   : u8 = 2;
pub const ELFCLASSNUM  : u8 = 3;

pub const ELFDATANONE : u8 = 0;
pub const ELFDATA2LSB : u8 = 1;
pub const ELFDATA2MSB : u8 = 2;

pub const EV_NONE    : u8 = 0;
pub const EV_CURRENT : u8 = 1;
pub const EV_NUM     : u8 = 2;

pub const ELFOSABI_NONE  : u8 = 0;
pub const ELFOSABI_LINUX : u8 = 3;

pub const NT_PRSTATUS         : u32 = 1;
pub const NT_PRFPREG          : u32 = 2;
pub const NT_PRPSINFO         : u32 = 3;
pub const NT_TASKSTRUCT       : u32 = 4;
pub const NT_AUXV             : u32 = 6;
pub const NT_SIGINFO          : u32 = 0x53494749;
pub const NT_FILE             : u32 = 0x46494c45;
pub const NT_PRXFPREG         : u32 = 0x46e62b7f;
pub const NT_PPC_VMX          : u32 = 0x100;
pub const NT_PPC_SPE          : u32 = 0x101;
pub const NT_PPC_VSX          : u32 = 0x102;
pub const NT_386_TLS          : u32 = 0x200;
pub const NT_386_IOPERM       : u32 = 0x201;
pub const NT_X86_XSTATE       : u32 = 0x202;
pub const NT_S390_HIGH_GPRS   : u32 = 0x300;
pub const NT_S390_TIMER       : u32 = 0x301;
pub const NT_S390_TODCMP      : u32 = 0x302;
pub const NT_S390_TODPREG     : u32 = 0x303;
pub const NT_S390_CTRS        : u32 = 0x304;
pub const NT_S390_PREFIX      : u32 = 0x305;
pub const NT_S390_LAST_BREAK  : u32 = 0x306;
pub const NT_S390_SYSTEM_CALL : u32 = 0x307;
pub const NT_S390_TDB         : u32 = 0x308;
pub const NT_S390_VXRS_LOW    : u32 = 0x309;
pub const NT_S390_VXRS_HIGH   : u32 = 0x30a;
pub const NT_ARM_VFP          : u32 = 0x400;
pub const NT_ARM_TLS          : u32 = 0x401;
pub const NT_ARM_HW_BREAK     : u32 = 0x402;
pub const NT_ARM_HW_WATCH     : u32 = 0x403;
pub const NT_ARM_SYSTEM_CALL  : u32 = 0x404;
pub const NT_METAG_CBUF       : u32 = 0x500;
pub const NT_METAG_RPIPE      : u32 = 0x501;
pub const NT_METAG_TLS        : u32 = 0x502;

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct Elf32_Nhdr {
    pub n_namesz: Elf32_Word,
    pub n_descsz: Elf32_Word,
    pub n_type:   Elf32_Word,
}

#[repr(C)]
#[derive(Pod, Copy, Clone, Eq, PartialEq)]
pub struct Elf64_Nhdr {
    pub n_namesz: Elf64_Word,
    pub n_descsz: Elf64_Word,
    pub n_type:   Elf64_Word,
}