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
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2007 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <ctype.h>
#include <syslog.h>
#include <string.h>
#include <deflt.h>
#include <kstat.h>
#include <sys/param.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <signal.h>
#include <sys/signal.h>
#include <rpc/rpc.h>
#include <rpc/pmap_clnt.h>
#include <sys/mount.h>
#include <sys/mntent.h>
#include <sys/mnttab.h>
#include <sys/fstyp.h>
#include <sys/fsid.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <netconfig.h>
#include <netdir.h>
#include <errno.h>
#define NFSCLIENT
#include <nfs/nfs.h>
#include <nfs/mount.h>
#include <rpcsvc/mount.h>
#include <rpc/nettype.h>
#include <locale.h>
#include <setjmp.h>
#include <sys/socket.h>
#include <thread.h>
#include <limits.h>
#include <nss_dbdefs.h> /* for NSS_BUFLEN_HOSTS */
#include <nfs/nfs_sec.h>
#include <sys/sockio.h>
#include <net/if.h>
#include <assert.h>
#include <nfs/nfs_clnt.h>
#include <rpcsvc/nfs4_prot.h>
#define NO_RDDIR_CACHE
#include "automount.h"
#include "replica.h"
#include "nfs_subr.h"
#include "webnfs.h"
#include <sys/sockio.h>
#include <net/if.h>
#include <assert.h>
#include <rpcsvc/daemon_utils.h>
#include <pwd.h>
#include <strings.h>
#include <tsol/label.h>
#include <zone.h>
extern char *nfs_get_qop_name();
extern AUTH *nfs_create_ah();
extern enum snego_stat nfs_sec_nego();
#define MAXHOSTS 512
/* number of transports to try */
#define MNT_PREF_LISTLEN 2
#define FIRST_TRY 1
#define SECOND_TRY 2
#define MNTTYPE_CACHEFS "cachefs"
/*
* host cache states
*/
#define NOHOST 0
#define GOODHOST 1
#define DEADHOST 2
#define NFS_ARGS_EXTB_secdata(args, secdata) \
{ (args).nfs_args_ext = NFS_ARGS_EXTB, \
(args).nfs_ext_u.nfs_extB.secdata = secdata; }
struct cache_entry {
struct cache_entry *cache_next;
char *cache_host;
time_t cache_time;
int cache_state;
rpcvers_t cache_reqvers;
rpcvers_t cache_outvers;
char *cache_proto;
};
struct mfs_snego_t {
int sec_opt;
bool_t snego_done;
char *nfs_flavor;
seconfig_t nfs_sec;
};
typedef struct mfs_snego_t mfs_snego_t;
static struct cache_entry *cache_head = NULL;
rwlock_t cache_lock; /* protect the cache chain */
static enum nfsstat nfsmount(struct mapfs *, char *, char *, int, int, uid_t,
action_list *);
static int is_nfs_port(char *);
void netbuf_free(struct netbuf *);
struct knetconfig *get_knconf(struct netconfig *);
void free_knconf(struct knetconfig *);
static int get_pathconf(CLIENT *, char *, char *, struct pathcnf **, int);
static struct mapfs *enum_servers(struct mapent *, char *);
static struct mapfs *get_mysubnet_servers(struct mapfs *);
static int subnet_test(int af, struct sioc_addrreq *);
static struct netbuf *get_addr(char *, rpcprog_t, rpcvers_t,
struct netconfig **, char *, ushort_t, struct t_info *);
static struct netbuf *get_pubfh(char *, rpcvers_t, mfs_snego_t *,
struct netconfig **, char *, ushort_t, struct t_info *, caddr_t *,
bool_t, char *);
static int create_homedir(const char *, const char *);
enum type_of_stuff {
SERVER_ADDR = 0,
SERVER_PING = 1,
SERVER_FH = 2
};
void *get_server_stuff(enum type_of_stuff, char *, rpcprog_t,
rpcvers_t, mfs_snego_t *, struct netconfig **, char *, ushort_t,
struct t_info *, caddr_t *, bool_t, char *, enum clnt_stat *);
void *get_the_stuff(enum type_of_stuff, char *, rpcprog_t,
rpcvers_t, mfs_snego_t *, struct netconfig *, ushort_t, struct t_info *,
caddr_t *, bool_t, char *, enum clnt_stat *);
struct mapfs *add_mfs(struct mapfs *, int, struct mapfs **, struct mapfs **);
void free_mfs(struct mapfs *);
static void dump_mfs(struct mapfs *, char *, int);
static char *dump_distance(struct mapfs *);
static void cache_free(struct cache_entry *);
static int cache_check(char *, rpcvers_t *, char *);
static void cache_enter(char *, rpcvers_t, rpcvers_t, char *, int);
void destroy_auth_client_handle(CLIENT *cl);
#ifdef CACHE_DEBUG
static void trace_host_cache();
static void trace_portmap_cache();
#endif /* CACHE_DEBUG */
static int rpc_timeout = 20;
#ifdef CACHE_DEBUG
/*
* host cache counters. These variables do not need to be protected
* by mutex's. They have been added to measure the utility of the
* goodhost/deadhost cache in the lazy hierarchical mounting scheme.
*/
static int host_cache_accesses = 0;
static int host_cache_lookups = 0;
static int deadhost_cache_hits = 0;
static int goodhost_cache_hits = 0;
/*
* portmap cache counters. These variables do not need to be protected
* by mutex's. They have been added to measure the utility of the portmap
* cache in the lazy hierarchical mounting scheme.
*/
static int portmap_cache_accesses = 0;
static int portmap_cache_lookups = 0;
static int portmap_cache_hits = 0;
#endif /* CACHE_DEBUG */
/*
* There are the defaults (range) for the client when determining
* which NFS version to use when probing the server (see above).
* These will only be used when the vers mount option is not used and
* these may be reset if /etc/default/nfs is configured to do so.
*/
static rpcvers_t vers_max_default = NFS_VERSMAX_DEFAULT;
static rpcvers_t vers_min_default = NFS_VERSMIN_DEFAULT;
/*
* list of support services needed
*/
static char *service_list[] = { STATD, LOCKD, NULL };
static char *service_list_v4[] = { STATD, LOCKD, NFS4CBD, NFSMAPID, NULL };
static void read_default_nfs(void);
static int is_v4_mount(char *);
static void start_nfs4cbd(void);
int
mount_nfs(
struct mapent *me,
char *mntpnt,
char *prevhost,
int overlay,
uid_t uid,
action_list **alpp)
{
struct mapfs *mfs, *mp;
int err = -1;
int cached;
action_list *alp;
alp = *alpp;
read_default_nfs();
mfs = enum_servers(me, prevhost);
if (mfs == NULL)
return (ENOENT);
/*
* Try loopback if we have something on localhost; if nothing
* works, we will fall back to NFS
*/
if (is_nfs_port(me->map_mntopts)) {
for (mp = mfs; mp; mp = mp->mfs_next) {
if (self_check(mp->mfs_host)) {
err = loopbackmount(mp->mfs_dir,
mntpnt, me->map_mntopts, overlay);
if (err) {
mp->mfs_ignore = 1;
} else {
/*
* Free action_list if there
* is one as it is not needed.
* Make sure to set alpp to null
* so caller doesn't try to free it
* again.
*/
if (*alpp) {
free(*alpp);
*alpp = NULL;
}
break;
}
}
}
}
if (err) {
cached = strcmp(me->map_mounter, MNTTYPE_CACHEFS) == 0;
err = nfsmount(mfs, mntpnt, me->map_mntopts,
cached, overlay, uid, alp);
if (err && trace > 1) {
trace_prt(1, " Couldn't mount %s:%s, err=%d\n",
mfs->mfs_host, mfs->mfs_dir, err);
}
}
free_mfs(mfs);
return (err);
}
/*
* Using the new ioctl SIOCTONLINK to determine if a host is on the same
* subnet. Remove the old network, subnet check.
*/
static struct mapfs *
get_mysubnet_servers(struct mapfs *mfs_in)
{
int s;
struct mapfs *mfs, *p, *mfs_head = NULL, *mfs_tail = NULL;
struct netconfig *nconf;
NCONF_HANDLE *nc = NULL;
struct nd_hostserv hs;
struct nd_addrlist *retaddrs;
struct netbuf *nb;
struct sioc_addrreq areq;
int res;
int af;
int i;
int sa_size;
hs.h_serv = "rpcbind";
for (mfs = mfs_in; mfs; mfs = mfs->mfs_next) {
nc = setnetconfig();
while (nconf = getnetconfig(nc)) {
/*
* Care about INET family only. proto_done flag
* indicates if we have already covered this
* protocol family. If so skip it
*/
if (((strcmp(nconf->nc_protofmly, NC_INET6) == 0) ||
(strcmp(nconf->nc_protofmly, NC_INET) == 0)) &&
(nconf->nc_semantics == NC_TPI_CLTS)) {
} else
continue;
hs.h_host = mfs->mfs_host;
if (netdir_getbyname(nconf, &hs, &retaddrs) != ND_OK)
continue;
/*
* For each host address see if it's on our
* local subnet.
*/
if (strcmp(nconf->nc_protofmly, NC_INET6) == 0)
af = AF_INET6;
else
af = AF_INET;
nb = retaddrs->n_addrs;
for (i = 0; i < retaddrs->n_cnt; i++, nb++) {
memset(&areq.sa_addr, 0, sizeof (areq.sa_addr));
memcpy(&areq.sa_addr, nb->buf, MIN(nb->len,
sizeof (areq.sa_addr)));
if (res = subnet_test(af, &areq)) {
p = add_mfs(mfs, DIST_MYNET,
&mfs_head, &mfs_tail);
if (!p) {
netdir_free(retaddrs,
ND_ADDRLIST);
endnetconfig(nc);
return (NULL);
}
break;
}
} /* end of every host */
if (trace > 2) {
trace_prt(1, "get_mysubnet_servers: host=%s "
"netid=%s res=%s\n", mfs->mfs_host,
nconf->nc_netid, res == 1?"SUC":"FAIL");
}
netdir_free(retaddrs, ND_ADDRLIST);
} /* end of while */
endnetconfig(nc);
} /* end of every map */
return (mfs_head);
}
int
subnet_test(int af, struct sioc_addrreq *areq)
{
int s;
if ((s = socket(af, SOCK_DGRAM, 0)) < 0) {
return (0);
}
areq->sa_res = -1;
if (ioctl(s, SIOCTONLINK, (caddr_t)areq) < 0) {
syslog(LOG_ERR, "subnet_test:SIOCTONLINK failed");
return (0);
}
close(s);
if (areq->sa_res == 1)
return (1);
else
return (0);
}
/*
* ping a bunch of hosts at once and sort by who responds first
*/
static struct mapfs *
sort_servers(struct mapfs *mfs_in, int timeout)
{
struct mapfs *m1 = NULL;
enum clnt_stat clnt_stat;
if (!mfs_in)
return (NULL);
clnt_stat = nfs_cast(mfs_in, &m1, timeout);
if (!m1) {
char buff[2048] = {'\0'};
for (m1 = mfs_in; m1; m1 = m1->mfs_next) {
(void) strcat(buff, m1->mfs_host);
if (m1->mfs_next)
(void) strcat(buff, ",");
}
syslog(LOG_ERR, "servers %s not responding: %s",
buff, clnt_sperrno(clnt_stat));
}
return (m1);
}
/*
* Add a mapfs entry to the list described by *mfs_head and *mfs_tail,
* provided it is not marked "ignored" and isn't a dupe of ones we've
* already seen.
*/
struct mapfs *
add_mfs(struct mapfs *mfs, int distance, struct mapfs **mfs_head,
struct mapfs **mfs_tail)
{
struct mapfs *tmp, *new;
for (tmp = *mfs_head; tmp; tmp = tmp->mfs_next)
if ((strcmp(tmp->mfs_host, mfs->mfs_host) == 0 &&
strcmp(tmp->mfs_dir, mfs->mfs_dir) == 0) ||
mfs->mfs_ignore)
return (*mfs_head);
new = (struct mapfs *)malloc(sizeof (struct mapfs));
if (!new) {
syslog(LOG_ERR, "Memory allocation failed: %m");
return (NULL);
}
bcopy(mfs, new, sizeof (struct mapfs));
new->mfs_next = NULL;
if (distance)
new->mfs_distance = distance;
if (!*mfs_head)
*mfs_tail = *mfs_head = new;
else {
(*mfs_tail)->mfs_next = new;
*mfs_tail = new;
}
return (*mfs_head);
}
static void
dump_mfs(struct mapfs *mfs, char *message, int level)
{
struct mapfs *m1;
if (trace <= level)
return;
trace_prt(1, "%s", message);
if (!mfs) {
trace_prt(0, "mfs is null\n");
return;
}
for (m1 = mfs; m1; m1 = m1->mfs_next)
trace_prt(0, "%s[%s] ", m1->mfs_host, dump_distance(m1));
trace_prt(0, "\n");
}
static char *
dump_distance(struct mapfs *mfs)
{
switch (mfs->mfs_distance) {
case 0: return ("zero");
case DIST_SELF: return ("self");
case DIST_MYSUB: return ("mysub");
case DIST_MYNET: return ("mynet");
case DIST_OTHER: return ("other");
default: return ("other");
}
}
/*
* Walk linked list "raw", building a new list consisting of members
* NOT found in list "filter", returning the result.
*/
static struct mapfs *
filter_mfs(struct mapfs *raw, struct mapfs *filter)
{
struct mapfs *mfs, *p, *mfs_head = NULL, *mfs_tail = NULL;
int skip;
if (!raw)
return (NULL);
for (mfs = raw; mfs; mfs = mfs->mfs_next) {
for (skip = 0, p = filter; p; p = p->mfs_next) {
if (strcmp(p->mfs_host, mfs->mfs_host) == 0 &&
strcmp(p->mfs_dir, mfs->mfs_dir) == 0) {
skip = 1;
break;
}
}
if (skip)
continue;
p = add_mfs(mfs, 0, &mfs_head, &mfs_tail);
if (!p)
return (NULL);
}
return (mfs_head);
}
/*
* Walk a linked list of mapfs structs, freeing each member.
*/
void
free_mfs(struct mapfs *mfs)
{
struct mapfs *tmp;
while (mfs) {
tmp = mfs->mfs_next;
free(mfs);
mfs = tmp;
}
}
/*
* New code for NFS client failover: we need to carry and sort
* lists of server possibilities rather than return a single
* entry. It preserves previous behaviour of sorting first by
* locality (loopback-or-preferred/subnet/net/other) and then
* by ping times. We'll short-circuit this process when we
* have ENOUGH or more entries.
*/
static struct mapfs *
enum_servers(struct mapent *me, char *preferred)
{
struct mapfs *p, *m1, *m2, *mfs_head = NULL, *mfs_tail = NULL;
/*
* Short-circuit for simple cases.
*/
if (!me->map_fs->mfs_next) {
p = add_mfs(me->map_fs, DIST_OTHER, &mfs_head, &mfs_tail);
if (!p)
return (NULL);
return (mfs_head);
}
dump_mfs(me->map_fs, " enum_servers: mapent: ", 2);
/*
* get addresses & see if any are myself
* or were mounted from previously in a
* hierarchical mount.
*/
if (trace > 2)
trace_prt(1, " enum_servers: looking for pref/self\n");
for (m1 = me->map_fs; m1; m1 = m1->mfs_next) {
if (m1->mfs_ignore)
continue;
if (self_check(m1->mfs_host) ||
strcmp(m1->mfs_host, preferred) == 0) {
p = add_mfs(m1, DIST_SELF, &mfs_head, &mfs_tail);
if (!p)
return (NULL);
}
}
if (trace > 2 && m1)
trace_prt(1, " enum_servers: pref/self found, %s\n",
m1->mfs_host);
/*
* look for entries on this subnet
*/
dump_mfs(m1, " enum_servers: input of get_mysubnet_servers: ", 2);
m1 = get_mysubnet_servers(me->map_fs);
dump_mfs(m1, " enum_servers: output of get_mysubnet_servers: ", 3);
if (m1 && m1->mfs_next) {
m2 = sort_servers(m1, rpc_timeout / 2);
dump_mfs(m2, " enum_servers: output of sort_servers: ", 3);
free_mfs(m1);
m1 = m2;
}
for (m2 = m1; m2; m2 = m2->mfs_next) {
p = add_mfs(m2, 0, &mfs_head, &mfs_tail);
if (!p)
return (NULL);
}
if (m1)
free_mfs(m1);
/*
* add the rest of the entries at the end
*/
m1 = filter_mfs(me->map_fs, mfs_head);
dump_mfs(m1, " enum_servers: etc: output of filter_mfs: ", 3);
m2 = sort_servers(m1, rpc_timeout / 2);
dump_mfs(m2, " enum_servers: etc: output of sort_servers: ", 3);
if (m1)
free_mfs(m1);
m1 = m2;
for (m2 = m1; m2; m2 = m2->mfs_next) {
p = add_mfs(m2, DIST_OTHER, &mfs_head, &mfs_tail);
if (!p)
return (NULL);
}
if (m1)
free_mfs(m1);
done:
dump_mfs(mfs_head, " enum_servers: output: ", 1);
return (mfs_head);
}
static enum nfsstat
nfsmount(
struct mapfs *mfs_in,
char *mntpnt, char *opts,
int cached, int overlay,
uid_t uid,
action_list *alp)
{
CLIENT *cl;
char remname[MAXPATHLEN], *mnttabtext = NULL;
char mopts[MAX_MNTOPT_STR];
char netname[MAXNETNAMELEN+1];
char *mntopts = NULL;
int mnttabcnt = 0;
int loglevel;
struct mnttab m;
struct nfs_args *argp = NULL, *head = NULL, *tail = NULL,
*prevhead, *prevtail;
int flags;
struct fhstatus fhs;
struct timeval timeout;
enum clnt_stat rpc_stat;
enum nfsstat status;
struct stat stbuf;
struct netconfig *nconf;
rpcvers_t vers, versmin; /* used to negotiate nfs version in pingnfs */
/* and mount version with mountd */
rpcvers_t outvers; /* final version to be used during mount() */
rpcvers_t nfsvers; /* version in map options, 0 if not there */
rpcvers_t mountversmax; /* tracks the max mountvers during retries */
/* used to negotiate nfs version using webnfs */
rpcvers_t pubvers, pubversmin, pubversmax;
int posix;
struct nd_addrlist *retaddrs;
struct mountres3 res3;
nfs_fh3 fh3;
char *fstype;
int count, i;
char scerror_msg[MAXMSGLEN];
int *auths;
int delay;
int retries;
char *nfs_proto = NULL;
uint_t nfs_port = 0;
char *p, *host, *rhost, *dir;
struct mapfs *mfs = NULL;
int error, last_error = 0;
int replicated;
int entries = 0;
int v2cnt = 0, v3cnt = 0, v4cnt = 0;
int v2near = 0, v3near = 0, v4near = 0;
int skipentry = 0;
char *nfs_flavor;
seconfig_t nfs_sec;
int sec_opt, scerror;
struct sec_data *secdata;
int secflags;
struct netbuf *syncaddr;
bool_t use_pubfh;
ushort_t thisport;
int got_val;
mfs_snego_t mfssnego_init, mfssnego;
dump_mfs(mfs_in, " nfsmount: input: ", 2);
replicated = (mfs_in->mfs_next != NULL);
m.mnt_mntopts = opts;
if (replicated && hasmntopt(&m, MNTOPT_SOFT)) {
if (verbose)
syslog(LOG_WARNING,
"mount on %s is soft and will not be replicated.", mntpnt);
replicated = 0;
}
if (replicated && !hasmntopt(&m, MNTOPT_RO)) {
if (verbose)
syslog(LOG_WARNING,
"mount on %s is not read-only and will not be replicated.",
mntpnt);
replicated = 0;
}
if (replicated && cached) {
if (verbose)
syslog(LOG_WARNING,
"mount on %s is cached and will not be replicated.",
mntpnt);
replicated = 0;
}
if (replicated)
loglevel = LOG_WARNING;
else
loglevel = LOG_ERR;
if (trace > 1) {
if (replicated)
trace_prt(1, " nfsmount: replicated mount on %s %s:\n",
mntpnt, opts);
else
trace_prt(1, " nfsmount: standard mount on %s %s:\n",
mntpnt, opts);
for (mfs = mfs_in; mfs; mfs = mfs->mfs_next)
trace_prt(1, " %s:%s\n",
mfs->mfs_host, mfs->mfs_dir);
}
/*
* Make sure mountpoint is safe to mount on
*/
if (lstat(mntpnt, &stbuf) < 0) {
syslog(LOG_ERR, "Couldn't stat %s: %m", mntpnt);
return (NFSERR_NOENT);
}
/*
* Get protocol specified in options list, if any.
*/
if ((str_opt(&m, "proto", &nfs_proto)) == -1) {
return (NFSERR_NOENT);
}
/*
* Get port specified in options list, if any.
*/
got_val = nopt(&m, MNTOPT_PORT, (int *)&nfs_port);
if (!got_val)
nfs_port = 0; /* "unspecified" */
if (nfs_port > USHRT_MAX) {
syslog(LOG_ERR, "%s: invalid port number %d", mntpnt, nfs_port);
return (NFSERR_NOENT);
}
/*
* Set mount(2) flags here, outside of the loop.
*/
flags = MS_OPTIONSTR;
flags |= (hasmntopt(&m, MNTOPT_RO) == NULL) ? 0 : MS_RDONLY;
flags |= (hasmntopt(&m, MNTOPT_NOSUID) == NULL) ? 0 : MS_NOSUID;
flags |= overlay ? MS_OVERLAY : 0;
if (mntpnt[strlen(mntpnt) - 1] != ' ')
/* direct mount point without offsets */
flags |= MS_OVERLAY;
use_pubfh = (hasmntopt(&m, MNTOPT_PUBLIC) == NULL) ? FALSE : TRUE;
(void) memset(&mfssnego_init, 0, sizeof (mfs_snego_t));
if (hasmntopt(&m, MNTOPT_SECURE) != NULL) {
if (++mfssnego_init.sec_opt > 1) {
syslog(loglevel,
"conflicting security options");
return (NFSERR_IO);
}
if (nfs_getseconfig_byname("dh", &mfssnego_init.nfs_sec)) {
syslog(loglevel,
"error getting dh information from %s",
NFSSEC_CONF);
return (NFSERR_IO);
}
}
/*
* Have to workaround the fact that hasmntopt() returns true
* when comparing "secure" (in &m) with "sec".
*/
if (hasmntopt(&m, "sec=") != NULL) {
if ((str_opt(&m, MNTOPT_SEC,
&mfssnego_init.nfs_flavor)) == -1) {
syslog(LOG_ERR, "nfsmount: no memory");
return (NFSERR_IO);
}
}
if (mfssnego_init.nfs_flavor) {
if (++mfssnego_init.sec_opt > 1) {
syslog(loglevel,
"conflicting security options");
free(mfssnego_init.nfs_flavor);
return (NFSERR_IO);
}
if (nfs_getseconfig_byname(mfssnego_init.nfs_flavor,
&mfssnego_init.nfs_sec)) {
syslog(loglevel,
"error getting %s information from %s",
mfssnego_init.nfs_flavor, NFSSEC_CONF);
free(mfssnego_init.nfs_flavor);
return (NFSERR_IO);
}
free(mfssnego_init.nfs_flavor);
}
nextentry:
skipentry = 0;
got_val = nopt(&m, MNTOPT_VERS, (int *)&nfsvers);
if (!got_val)
nfsvers = 0; /* "unspecified" */
if (set_versrange(nfsvers, &vers, &versmin) != 0) {
syslog(LOG_ERR, "Incorrect NFS version specified for %s",
mntpnt);
last_error = NFSERR_NOENT;
goto ret;
}
if (nfsvers != 0) {
pubversmax = pubversmin = nfsvers;
} else {
pubversmax = vers;
pubversmin = versmin;
}
/*
* Walk the whole list, pinging and collecting version
* info so that we can make sure the mount will be
* homogeneous with respect to version.
*
* If we have a version preference, this is easy; we'll
* just reject anything that doesn't match.
*
* If not, we want to try to provide the best compromise
* that considers proximity, preference for a higher version,
* sorted order, and number of replicas. We will count
* the number of V2 and V3 replicas and also the number
* which are "near", i.e. the localhost or on the same
* subnet.
*/
for (mfs = mfs_in; mfs; mfs = mfs->mfs_next) {
if (mfs->mfs_ignore)
continue;
/*
* If the host is '[a:d:d:r:e:s:s'],
* only use 'a:d:d:r:e:s:s' for communication
*/
host = strdup(mfs->mfs_host);
if (host == NULL) {
syslog(LOG_ERR, "nfsmount: no memory");
last_error = NFSERR_IO;
goto out;
}
unbracket(&host);
(void) memcpy(&mfssnego, &mfssnego_init, sizeof (mfs_snego_t));
if (use_pubfh == TRUE || mfs->mfs_flags & MFS_URL) {
char *path;
if (nfs_port != 0 && mfs->mfs_port != 0 &&
nfs_port != mfs->mfs_port) {
syslog(LOG_ERR, "nfsmount: port (%u) in nfs URL"
" not the same as port (%d) in port "
"option\n", mfs->mfs_port, nfs_port);
last_error = NFSERR_IO;
goto out;
} else if (nfs_port != 0)
thisport = nfs_port;
else
thisport = mfs->mfs_port;
dir = mfs->mfs_dir;
if ((mfs->mfs_flags & MFS_URL) == 0) {
path = malloc(strlen(dir) + 2);
if (path == NULL) {
syslog(LOG_ERR, "nfsmount: no memory");
last_error = NFSERR_IO;
goto out;
}
path[0] = (char)WNL_NATIVEPATH;
(void) strcpy(&path[1], dir);
} else {
path = dir;
}
argp = (struct nfs_args *)
malloc(sizeof (struct nfs_args));
if (!argp) {
if (path != dir)
free(path);
syslog(LOG_ERR, "nfsmount: no memory");
last_error = NFSERR_IO;
goto out;
}
(void) memset(argp, 0, sizeof (*argp));
/*
* RDMA support
* By now Mount argument struct has been allocated,
* either a pub_fh path will be taken or the regular
* one. So here if a protocol was specified and it
* was not rdma we let it be, else we set DO_RDMA.
* If no proto was there we advise on trying RDMA.
*/
if (nfs_proto) {
if (strcmp(nfs_proto, "rdma") == 0) {
free(nfs_proto);
nfs_proto = NULL;
argp->flags |= NFSMNT_DORDMA;
}
} else
argp->flags |= NFSMNT_TRYRDMA;
for (pubvers = pubversmax; pubvers >= pubversmin;
pubvers--) {
nconf = NULL;
argp->addr = get_pubfh(host, pubvers, &mfssnego,
&nconf, nfs_proto, thisport, NULL,
&argp->fh, TRUE, path);
if (argp->addr != NULL)
break;
if (nconf != NULL)
freenetconfigent(nconf);
}
if (path != dir)
free(path);
if (argp->addr != NULL) {
/*
* The use of llock option for NFSv4
* mounts is not required since file
* locking is included within the protocol
*/
if (pubvers != NFS_V4)
argp->flags |= NFSMNT_LLOCK;
argp->flags |= NFSMNT_PUBLIC;
mfs->mfs_args = argp;
mfs->mfs_version = pubvers;
mfs->mfs_nconf = nconf;
mfs->mfs_flags |= MFS_FH_VIA_WEBNFS;
} else {
free(argp);
/*
* If -public was specified, give up
* on this entry now.
*/
if (use_pubfh == TRUE) {
syslog(loglevel,
"%s: no public file handle support",
host);
last_error = NFSERR_NOENT;
mfs->mfs_ignore = 1;
continue;
}
/*
* Back off to a conventional mount.
*
* URL's can contain escape characters. Get
* rid of them.
*/
path = malloc(strlen(dir) + 2);
if (path == NULL) {
syslog(LOG_ERR, "nfsmount: no memory");
last_error = NFSERR_IO;
goto out;
}
strcpy(path, dir);
URLparse(path);
mfs->mfs_dir = path;
mfs->mfs_flags |= MFS_ALLOC_DIR;
mfs->mfs_flags &= ~MFS_URL;
}
}
if ((mfs->mfs_flags & MFS_FH_VIA_WEBNFS) == 0) {
i = pingnfs(host, get_retry(opts) + 1, &vers, versmin,
0, FALSE, NULL, nfs_proto);
if (i != RPC_SUCCESS) {
if (i == RPC_PROGVERSMISMATCH) {
syslog(loglevel, "server %s: NFS "
"protocol version mismatch",
host);
} else {
syslog(loglevel, "server %s not "
"responding", host);
}
mfs->mfs_ignore = 1;
last_error = NFSERR_NOENT;
continue;
}
if (nfsvers != 0 && nfsvers != vers) {
if (nfs_proto == NULL)
syslog(loglevel,
"NFS version %d "
"not supported by %s",
nfsvers, host);
else
syslog(loglevel,
"NFS version %d "
"with proto %s "
"not supported by %s",
nfsvers, nfs_proto, host);
mfs->mfs_ignore = 1;
last_error = NFSERR_NOENT;
continue;
}
}
free(host);
switch (vers) {
case NFS_V4: v4cnt++; break;
case NFS_V3: v3cnt++; break;
case NFS_VERSION: v2cnt++; break;
default: break;
}
/*
* It's not clear how useful this stuff is if
* we are using webnfs across the internet, but it
* can't hurt.
*/
if (mfs->mfs_distance &&
mfs->mfs_distance <= DIST_MYSUB) {
switch (vers) {
case NFS_V4: v4near++; break;
case NFS_V3: v3near++; break;
case NFS_VERSION: v2near++; break;
default: break;
}
}
/*
* If the mount is not replicated, we don't want to
* ping every entry, so we'll stop here. This means
* that we may have to go back to "nextentry" above
* to consider another entry if we can't get
* all the way to mount(2) with this one.
*/
if (!replicated)
break;
}
if (nfsvers == 0) {
/*
* Choose the NFS version.
* We prefer higher versions, but will choose a one-
* version downgrade in service if we can use a local
* network interface and avoid a router.
*/
if (v4cnt && v4cnt >= v3cnt && (v4near || !v3near))
nfsvers = NFS_V4;
else if (v3cnt && v3cnt >= v2cnt && (v3near || !v2near))
nfsvers = NFS_V3;
else
nfsvers = NFS_VERSION;
if (trace > 2)
trace_prt(1,
" nfsmount: v4=%d[%d]v3=%d[%d],v2=%d[%d] => v%d.\n",
v4cnt, v4near, v3cnt, v3near,
v2cnt, v2near, nfsvers);
}
/*
* Since we don't support different NFS versions in replicated
* mounts, set fstype now.
* Also take the opportunity to set
* the mount protocol version as appropriate.
*/
switch (nfsvers) {
case NFS_V4:
fstype = MNTTYPE_NFS4;
break;
case NFS_V3:
fstype = MNTTYPE_NFS3;
if (use_pubfh == FALSE) {
mountversmax = MOUNTVERS3;
versmin = MOUNTVERS3;
}
break;
case NFS_VERSION:
fstype = MNTTYPE_NFS;
if (use_pubfh == FALSE) {
mountversmax = MOUNTVERS_POSIX;
versmin = MOUNTVERS;
}
break;
}
/*
* Our goal here is to evaluate each of several possible
* replicas and try to come up with a list we can hand
* to mount(2). If we don't have a valid "head" at the
* end of this process, it means we have rejected all
* potential server:/path tuples. We will fail quietly
* in front of mount(2), and will have printed errors
* where we found them.
* XXX - do option work outside loop w careful design
* XXX - use macro for error condition free handling
*/
for (mfs = mfs_in; mfs; mfs = mfs->mfs_next) {
/*
* Initialize retry and delay values on a per-server basis.
*/
retries = get_retry(opts);
delay = INITDELAY;
retry:
if (mfs->mfs_ignore)
continue;
/*
* If we don't have a fh yet, and if this is not a replicated
* mount, we haven't done a pingnfs() on the next entry,
* so we don't know if the next entry is up or if it
* supports an NFS version we like. So if we had a problem
* with an entry, we need to go back and run through some new
* code.
*/
if ((mfs->mfs_flags & MFS_FH_VIA_WEBNFS) == 0 &&
!replicated && skipentry)
goto nextentry;
vers = mountversmax;
host = mfs->mfs_host;
dir = mfs->mfs_dir;
/*
* Remember the possible '[a:d:d:r:e:s:s]' as the address to be
* later passed to mount(2) and used in the mnttab line, but
* only use 'a:d:d:r:e:s:s' for communication
*/
rhost = strdup(host);
if (rhost == NULL) {
syslog(LOG_ERR, "nfsmount: no memory");
last_error = NFSERR_IO;
goto out;
}
unbracket(&host);
(void) sprintf(remname, "%s:%s", rhost, dir);
if (trace > 4 && replicated)
trace_prt(1, " nfsmount: examining %s\n", remname);
/*
* If it's cached we need to get cachefs to mount it.
*/
if (cached) {
char *copts = opts;
/*
* If we started with a URL we need to turn on
* -o public if not on already
*/
if (use_pubfh == FALSE &&
(mfs->mfs_flags & MFS_FH_VIA_WEBNFS)) {
copts = malloc(strlen(opts) +
strlen(",public")+1);
if (copts == NULL) {
syslog(LOG_ERR, "nfsmount: no memory");
last_error = NFSERR_IO;
goto out;
}
strcpy(copts, opts);
if (strlen(copts) != 0)
strcat(copts, ",");
strcat(copts, "public");
}
last_error = mount_generic(remname, MNTTYPE_CACHEFS,
copts, mntpnt, overlay);
if (copts != opts)
free(copts);
if (last_error) {
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
goto out;
}
if (mfs->mfs_args == NULL) {
/*
* Allocate nfs_args structure
*/
argp = (struct nfs_args *)
malloc(sizeof (struct nfs_args));
if (!argp) {
syslog(LOG_ERR, "nfsmount: no memory");
last_error = NFSERR_IO;
goto out;
}
(void) memset(argp, 0, sizeof (*argp));
/*
* RDMA support
* By now Mount argument struct has been allocated,
* either a pub_fh path will be taken or the regular
* one. So here if a protocol was specified and it
* was not rdma we let it be, else we set DO_RDMA.
* If no proto was there we advise on trying RDMA.
*/
if (nfs_proto) {
if (strcmp(nfs_proto, "rdma") == 0) {
free(nfs_proto);
nfs_proto = NULL;
argp->flags |= NFSMNT_DORDMA;
}
} else
argp->flags |= NFSMNT_TRYRDMA;
} else {
argp = mfs->mfs_args;
mfs->mfs_args = NULL;
/*
* Skip entry if we already have file handle but the
* NFS version is wrong.
*/
if ((mfs->mfs_flags & MFS_FH_VIA_WEBNFS) &&
mfs->mfs_version != nfsvers) {
free(argp);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
}
prevhead = head;
prevtail = tail;
if (!head)
head = tail = argp;
else
tail = tail->nfs_ext_u.nfs_extB.next = argp;
/*
* WebNFS and NFSv4 behave similarly in that they
* don't use the mount protocol. Therefore, avoid
* mount protocol like things when version 4 is being
* used.
*/
if ((mfs->mfs_flags & MFS_FH_VIA_WEBNFS) == 0 &&
nfsvers != NFS_V4) {
timeout.tv_usec = 0;
timeout.tv_sec = rpc_timeout;
rpc_stat = RPC_TIMEDOUT;
/* Create the client handle. */
if (trace > 1) {
trace_prt(1, " nfsmount: Get mount version: request "
"vers=%d min=%d\n", vers, versmin);
}
while ((cl = clnt_create_vers(host, MOUNTPROG, &outvers,
versmin, vers, "udp")) == NULL) {
if (trace > 4) {
trace_prt(1,
" nfsmount: Can't get mount version: rpcerr=%d\n",
rpc_createerr.cf_stat);
}
if (rpc_createerr.cf_stat == RPC_UNKNOWNHOST ||
rpc_createerr.cf_stat == RPC_TIMEDOUT)
break;
/*
* backoff and return lower version to retry the ping.
* XXX we should be more careful and handle
* RPC_PROGVERSMISMATCH here, because that error
* is handled in clnt_create_vers(). It's not done to
* stay in sync with the nfs mount command.
*/
vers--;
if (vers < versmin)
break;
if (trace > 4) {
trace_prt(1, " nfsmount: Try version=%d\n", vers);
}
}
if (cl == NULL) {
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
last_error = NFSERR_NOENT;
if (rpc_createerr.cf_stat != RPC_UNKNOWNHOST &&
rpc_createerr.cf_stat != RPC_PROGVERSMISMATCH &&
retries-- > 0) {
DELAY(delay)
goto retry;
}
syslog(loglevel, "%s %s", host,
clnt_spcreateerror("server not responding"));
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
if (trace > 1) {
trace_prt(1, " nfsmount: mount version=%d\n", outvers);
}
#ifdef MALLOC_DEBUG
add_alloc("CLNT_HANDLE", cl, 0, __FILE__, __LINE__);
add_alloc("AUTH_HANDLE", cl->cl_auth, 0,
__FILE__, __LINE__);
#endif
if (__clnt_bindresvport(cl) < 0) {
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
last_error = NFSERR_NOENT;
if (retries-- > 0) {
destroy_auth_client_handle(cl);
DELAY(delay);
goto retry;
}
syslog(loglevel, "mount %s: %s", host,
"Couldn't bind to reserved port");
destroy_auth_client_handle(cl);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
#ifdef MALLOC_DEBUG
drop_alloc("AUTH_HANDLE", cl->cl_auth, __FILE__, __LINE__);
#endif
AUTH_DESTROY(cl->cl_auth);
if ((cl->cl_auth = authsys_create_default()) == NULL) {
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
last_error = NFSERR_NOENT;
if (retries-- > 0) {
destroy_auth_client_handle(cl);
DELAY(delay);
goto retry;
}
syslog(loglevel, "mount %s: %s", host,
"Failed creating default auth handle");
destroy_auth_client_handle(cl);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
#ifdef MALLOC_DEBUG
add_alloc("AUTH_HANDLE", cl->cl_auth, 0,
__FILE__, __LINE__);
#endif
} else
cl = NULL;
/*
* set security options
*/
sec_opt = 0;
(void) memset(&nfs_sec, 0, sizeof (nfs_sec));
if (hasmntopt(&m, MNTOPT_SECURE) != NULL) {
if (++sec_opt > 1) {
syslog(loglevel,
"conflicting security options for %s",
remname);
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
last_error = NFSERR_IO;
destroy_auth_client_handle(cl);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
if (nfs_getseconfig_byname("dh", &nfs_sec)) {
syslog(loglevel,
"error getting dh information from %s",
NFSSEC_CONF);
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
last_error = NFSERR_IO;
destroy_auth_client_handle(cl);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
}
nfs_flavor = NULL;
/*
* Have to workaround the fact that hasmntopt() returns true
* when comparing "secure" (in &m) with "sec".
*/
if (hasmntopt(&m, "sec=") != NULL) {
if ((str_opt(&m, MNTOPT_SEC, &nfs_flavor)) == -1) {
syslog(LOG_ERR, "nfsmount: no memory");
last_error = NFSERR_IO;
destroy_auth_client_handle(cl);
goto out;
}
}
if (nfs_flavor) {
if (++sec_opt > 1) {
syslog(loglevel,
"conflicting security options for %s",
remname);
free(nfs_flavor);
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
last_error = NFSERR_IO;
destroy_auth_client_handle(cl);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
if (nfs_getseconfig_byname(nfs_flavor, &nfs_sec)) {
syslog(loglevel,
"error getting %s information from %s",
nfs_flavor, NFSSEC_CONF);
free(nfs_flavor);
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
last_error = NFSERR_IO;
destroy_auth_client_handle(cl);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
free(nfs_flavor);
}
posix = (nfsvers != NFS_V4 &&
hasmntopt(&m, MNTOPT_POSIX) != NULL) ? 1 : 0;
if ((mfs->mfs_flags & MFS_FH_VIA_WEBNFS) == 0 &&
nfsvers != NFS_V4) {
bool_t give_up_on_mnt;
bool_t got_mnt_error;
/*
* If we started with a URL, if first byte of path is not "/",
* then the mount will likely fail, so we should try again
* with a prepended "/".
*/
if (mfs->mfs_flags & MFS_ALLOC_DIR && *dir != '/')
give_up_on_mnt = FALSE;
else
give_up_on_mnt = TRUE;
got_mnt_error = FALSE;
try_mnt_slash:
if (got_mnt_error == TRUE) {
int i, l;
give_up_on_mnt = TRUE;
l = strlen(dir);
/*
* Insert a "/" to front of mfs_dir.
*/
for (i = l; i > 0; i--)
dir[i] = dir[i-1];
dir[0] = '/';
}
/* Get fhandle of remote path from server's mountd */
switch (outvers) {
case MOUNTVERS:
if (posix) {
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
last_error = NFSERR_NOENT;
syslog(loglevel, "can't get posix info for %s",
host);
destroy_auth_client_handle(cl);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
/* FALLTHRU */
case MOUNTVERS_POSIX:
if (nfsvers == NFS_V3) {
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
last_error = NFSERR_NOENT;
syslog(loglevel,
"%s doesn't support NFS Version 3",
host);
destroy_auth_client_handle(cl);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
rpc_stat = clnt_call(cl, MOUNTPROC_MNT,
xdr_dirpath, (caddr_t)&dir,
xdr_fhstatus, (caddr_t)&fhs, timeout);
if (rpc_stat != RPC_SUCCESS) {
if (give_up_on_mnt == FALSE) {
got_mnt_error = TRUE;
goto try_mnt_slash;
}
/*
* Given the way "clnt_sperror" works, the "%s"
* immediately following the "not responding"
* is correct.
*/
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
last_error = NFSERR_NOENT;
if (retries-- > 0) {
destroy_auth_client_handle(cl);
DELAY(delay);
goto retry;
}
if (trace > 3) {
trace_prt(1,
" nfsmount: mount RPC failed for %s\n",
host);
}
syslog(loglevel, "%s server not responding%s",
host, clnt_sperror(cl, ""));
destroy_auth_client_handle(cl);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
if ((errno = fhs.fhs_status) != MNT_OK) {
if (give_up_on_mnt == FALSE) {
got_mnt_error = TRUE;
goto try_mnt_slash;
}
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
if (errno == EACCES) {
status = NFSERR_ACCES;
} else {
syslog(loglevel, "%s: %m", host);
status = NFSERR_IO;
}
if (trace > 3) {
trace_prt(1, " nfsmount: mount RPC gave"
" %d for %s:%s\n",
errno, host, dir);
}
last_error = status;
destroy_auth_client_handle(cl);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
argp->fh = malloc((sizeof (fhandle)));
if (!argp->fh) {
syslog(LOG_ERR, "nfsmount: no memory");
last_error = NFSERR_IO;
destroy_auth_client_handle(cl);
goto out;
}
(void) memcpy(argp->fh, &fhs.fhstatus_u.fhs_fhandle,
sizeof (fhandle));
break;
case MOUNTVERS3:
posix = 0;
(void) memset((char *)&res3, '\0', sizeof (res3));
rpc_stat = clnt_call(cl, MOUNTPROC_MNT,
xdr_dirpath, (caddr_t)&dir,
xdr_mountres3, (caddr_t)&res3, timeout);
if (rpc_stat != RPC_SUCCESS) {
if (give_up_on_mnt == FALSE) {
got_mnt_error = TRUE;
goto try_mnt_slash;
}
/*
* Given the way "clnt_sperror" works, the "%s"
* immediately following the "not responding"
* is correct.
*/
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
last_error = NFSERR_NOENT;
if (retries-- > 0) {
destroy_auth_client_handle(cl);
DELAY(delay);
goto retry;
}
if (trace > 3) {
trace_prt(1,
" nfsmount: mount RPC failed for %s\n",
host);
}
syslog(loglevel, "%s server not responding%s",
remname, clnt_sperror(cl, ""));
destroy_auth_client_handle(cl);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
if ((errno = res3.fhs_status) != MNT_OK) {
if (give_up_on_mnt == FALSE) {
got_mnt_error = TRUE;
goto try_mnt_slash;
}
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
if (errno == EACCES) {
status = NFSERR_ACCES;
} else {
syslog(loglevel, "%s: %m", remname);
status = NFSERR_IO;
}
if (trace > 3) {
trace_prt(1, " nfsmount: mount RPC gave"
" %d for %s:%s\n",
errno, host, dir);
}
last_error = status;
destroy_auth_client_handle(cl);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
/*
* Negotiate the security flavor for nfs_mount
*/
auths =
res3.mountres3_u.mountinfo.auth_flavors.auth_flavors_val;
count =
res3.mountres3_u.mountinfo.auth_flavors.auth_flavors_len;
if (sec_opt) {
for (i = 0; i < count; i++)
if (auths[i] == nfs_sec.sc_nfsnum) {
break;
}
if (i >= count) {
syslog(LOG_ERR,
"%s: does not support security \"%s\"\n",
remname, nfs_sec.sc_name);
clnt_freeres(cl, xdr_mountres3,
(caddr_t)&res3);
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
last_error = NFSERR_IO;
destroy_auth_client_handle(cl);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
} else {
if (count > 0) {
for (i = 0; i < count; i++) {
if (!(scerror =
nfs_getseconfig_bynumber(auths[i], &nfs_sec))) {
sec_opt++;
break;
}
}
if (i >= count) {
if (nfs_syslog_scerr(scerror,
scerror_msg)
!= -1) {
syslog(LOG_ERR,
"%s cannot be mounted because it is shared with "
"security flavor %d which %s",
remname,
auths[i-1],
scerror_msg);
}
clnt_freeres(cl, xdr_mountres3,
(caddr_t)&res3);
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
last_error = NFSERR_IO;
destroy_auth_client_handle(cl);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
}
}
fh3.fh3_length =
res3.mountres3_u.mountinfo.fhandle.fhandle3_len;
(void) memcpy(fh3.fh3_u.data,
res3.mountres3_u.mountinfo.fhandle.fhandle3_val,
fh3.fh3_length);
clnt_freeres(cl, xdr_mountres3,
(caddr_t)&res3);
argp->fh = malloc(sizeof (nfs_fh3));
if (!argp->fh) {
syslog(LOG_ERR, "nfsmount: no memory");
last_error = NFSERR_IO;
destroy_auth_client_handle(cl);
goto out;
}
(void) memcpy(argp->fh, &fh3, sizeof (nfs_fh3));
break;
default:
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
last_error = NFSERR_NOENT;
syslog(loglevel, "unknown MOUNT version %ld on %s",
vers, remname);
destroy_auth_client_handle(cl);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
} /* switch */
}
if (nfsvers == NFS_V4) {
argp->fh = strdup(dir);
if (argp->fh == NULL) {
syslog(LOG_ERR, "nfsmount: no memory");
last_error = NFSERR_IO;
goto out;
}
}
if (trace > 4)
trace_prt(1, " nfsmount: have %s filehandle for %s\n",
fstype, remname);
argp->flags |= NFSMNT_NEWARGS;
argp->flags |= NFSMNT_INT; /* default is "intr" */
argp->flags |= NFSMNT_HOSTNAME;
argp->hostname = strdup(host);
if (argp->hostname == NULL) {
syslog(LOG_ERR, "nfsmount: no memory");
last_error = NFSERR_IO;
goto out;
}
/*
* In this case, we want NFSv4 to behave like
* non-WebNFS so that we get the server address.
*/
if ((mfs->mfs_flags & MFS_FH_VIA_WEBNFS) == 0) {
nconf = NULL;
if (nfs_port != 0)
thisport = nfs_port;
else
thisport = mfs->mfs_port;
/*
* For NFSv4, we want to avoid rpcbind, so call
* get_server_stuff() directly to tell it that
* we want to go "direct_to_server". Otherwise,
* do what has always been done.
*/
if (nfsvers == NFS_V4) {
enum clnt_stat cstat;
argp->addr = get_server_stuff(SERVER_ADDR,
host, NFS_PROGRAM, nfsvers, NULL,
&nconf, nfs_proto, thisport, NULL,
NULL, TRUE, NULL, &cstat);
} else {
argp->addr = get_addr(host, NFS_PROGRAM,
nfsvers, &nconf, nfs_proto,
thisport, NULL);
}
if (argp->addr == NULL) {
if (argp->hostname)
free(argp->hostname);
free(argp->fh);
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
last_error = NFSERR_NOENT;
if (retries-- > 0) {
destroy_auth_client_handle(cl);
DELAY(delay);
goto retry;
}
syslog(loglevel, "%s: no NFS service", host);
destroy_auth_client_handle(cl);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
if (trace > 4)
trace_prt(1,
"\tnfsmount: have net address for %s\n",
remname);
} else {
nconf = mfs->mfs_nconf;
mfs->mfs_nconf = NULL;
}
argp->flags |= NFSMNT_KNCONF;
argp->knconf = get_knconf(nconf);
if (argp->knconf == NULL) {
netbuf_free(argp->addr);
freenetconfigent(nconf);
if (argp->hostname)
free(argp->hostname);
free(argp->fh);
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
last_error = NFSERR_NOSPC;
destroy_auth_client_handle(cl);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
if (trace > 4)
trace_prt(1,
"\tnfsmount: have net config for %s\n",
remname);
if (hasmntopt(&m, MNTOPT_SOFT) != NULL) {
argp->flags |= NFSMNT_SOFT;
}
if (hasmntopt(&m, MNTOPT_NOINTR) != NULL) {
argp->flags &= ~(NFSMNT_INT);
}
if (hasmntopt(&m, MNTOPT_NOAC) != NULL) {
argp->flags |= NFSMNT_NOAC;
}
if (hasmntopt(&m, MNTOPT_NOCTO) != NULL) {
argp->flags |= NFSMNT_NOCTO;
}
if (hasmntopt(&m, MNTOPT_FORCEDIRECTIO) != NULL) {
argp->flags |= NFSMNT_DIRECTIO;
}
if (hasmntopt(&m, MNTOPT_NOFORCEDIRECTIO) != NULL) {
argp->flags &= ~(NFSMNT_DIRECTIO);
}
/*
* Set up security data for argp->nfs_ext_u.nfs_extB.secdata.
*/
if (mfssnego.snego_done) {
memcpy(&nfs_sec, &mfssnego.nfs_sec,
sizeof (seconfig_t));
} else if (!sec_opt) {
/*
* Get default security mode.
*/
if (nfs_getseconfig_default(&nfs_sec)) {
syslog(loglevel,
"error getting default security entry\n");
free_knconf(argp->knconf);
netbuf_free(argp->addr);
freenetconfigent(nconf);
if (argp->hostname)
free(argp->hostname);
free(argp->fh);
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
last_error = NFSERR_NOSPC;
destroy_auth_client_handle(cl);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
argp->flags |= NFSMNT_SECDEFAULT;
}
/*
* For AUTH_DH
* get the network address for the time service on
* the server. If an RPC based time service is
* not available then try the IP time service.
*
* Eventurally, we want to move this code to nfs_clnt_secdata()
* when autod_nfs.c and mount.c can share the same
* get_the_addr/get_the_stuff routine.
*/
secflags = 0;
syncaddr = NULL;
retaddrs = NULL;
if (nfs_sec.sc_rpcnum == AUTH_DH || nfsvers == NFS_V4) {
/*
* If not using the public fh and not NFS_V4, we can try
* talking RPCBIND. Otherwise, assume that firewalls
* prevent us from doing that.
*/
if ((mfs->mfs_flags & MFS_FH_VIA_WEBNFS) == 0 &&
nfsvers != NFS_V4) {
syncaddr = get_the_stuff(SERVER_ADDR, host, RPCBPROG,
RPCBVERS, NULL, nconf, 0, NULL, NULL, FALSE,
NULL, NULL);
}
if (syncaddr != NULL) {
/* for flags in sec_data */
secflags |= AUTH_F_RPCTIMESYNC;
} else {
struct nd_hostserv hs;
int error;
hs.h_host = host;
hs.h_serv = "timserver";
error = netdir_getbyname(nconf, &hs, &retaddrs);
if (error != ND_OK && nfs_sec.sc_rpcnum == AUTH_DH) {
syslog(loglevel,
"%s: secure: no time service\n", host);
free_knconf(argp->knconf);
netbuf_free(argp->addr);
freenetconfigent(nconf);
if (argp->hostname)
free(argp->hostname);
free(argp->fh);
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
last_error = NFSERR_IO;
destroy_auth_client_handle(cl);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
if (error == ND_OK)
syncaddr = retaddrs->n_addrs;
/*
* For potential usage by NFS V4 when AUTH_DH
* is negotiated via SECINFO in the kernel.
*/
if (nfsvers == NFS_V4 && syncaddr &&
host2netname(netname, host, NULL)) {
argp->syncaddr = malloc(sizeof (struct netbuf));
argp->syncaddr->buf = malloc(syncaddr->len);
(void) memcpy(argp->syncaddr->buf,
syncaddr->buf, syncaddr->len);
argp->syncaddr->len = syncaddr->len;
argp->syncaddr->maxlen = syncaddr->maxlen;
argp->netname = strdup(netname);
argp->flags |= NFSMNT_SECURE;
}
} /* syncaddr */
} /* AUTH_DH */
/*
* TSOL notes: automountd in tsol extension
* has "read down" capability, i.e. we allow
* a user to trigger an nfs mount into a lower
* labeled zone. We achieve this by always having
* root issue the mount request so that the
* lookup ops can go past /zone/<zone_name>
* on the server side.
*/
if (is_system_labeled())
nfs_sec.sc_uid = (uid_t)0;
else
nfs_sec.sc_uid = uid;
/*
* If AUTH_DH is a chosen flavor now, its data will be stored
* in the sec_data structure via nfs_clnt_secdata().
*/
if (!(secdata = nfs_clnt_secdata(&nfs_sec, host, argp->knconf,
syncaddr, secflags))) {
syslog(LOG_ERR,
"errors constructing security related data\n");
if (secflags & AUTH_F_RPCTIMESYNC)
netbuf_free(syncaddr);
else if (retaddrs)
netdir_free(retaddrs, ND_ADDRLIST);
if (argp->syncaddr)
netbuf_free(argp->syncaddr);
if (argp->netname)
free(argp->netname);
if (argp->hostname)
free(argp->hostname);
free_knconf(argp->knconf);
netbuf_free(argp->addr);
freenetconfigent(nconf);
free(argp->fh);
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
last_error = NFSERR_IO;
destroy_auth_client_handle(cl);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
NFS_ARGS_EXTB_secdata(*argp, secdata);
/* end of security stuff */
if (trace > 4)
trace_prt(1,
" nfsmount: have secure info for %s\n", remname);
if (hasmntopt(&m, MNTOPT_GRPID) != NULL) {
argp->flags |= NFSMNT_GRPID;
}
if (nopt(&m, MNTOPT_RSIZE, &argp->rsize)) {
argp->flags |= NFSMNT_RSIZE;
}
if (nopt(&m, MNTOPT_WSIZE, &argp->wsize)) {
argp->flags |= NFSMNT_WSIZE;
}
if (nopt(&m, MNTOPT_TIMEO, &argp->timeo)) {
argp->flags |= NFSMNT_TIMEO;
}
if (nopt(&m, MNTOPT_RETRANS, &argp->retrans)) {
argp->flags |= NFSMNT_RETRANS;
}
if (nopt(&m, MNTOPT_ACTIMEO, &argp->acregmax)) {
argp->flags |= NFSMNT_ACREGMAX;
argp->flags |= NFSMNT_ACDIRMAX;
argp->flags |= NFSMNT_ACDIRMIN;
argp->flags |= NFSMNT_ACREGMIN;
argp->acdirmin = argp->acregmin = argp->acdirmax
= argp->acregmax;
} else {
if (nopt(&m, MNTOPT_ACREGMIN, &argp->acregmin)) {
argp->flags |= NFSMNT_ACREGMIN;
}
if (nopt(&m, MNTOPT_ACREGMAX, &argp->acregmax)) {
argp->flags |= NFSMNT_ACREGMAX;
}
if (nopt(&m, MNTOPT_ACDIRMIN, &argp->acdirmin)) {
argp->flags |= NFSMNT_ACDIRMIN;
}
if (nopt(&m, MNTOPT_ACDIRMAX, &argp->acdirmax)) {
argp->flags |= NFSMNT_ACDIRMAX;
}
}
if (posix) {
argp->pathconf = NULL;
if (error = get_pathconf(cl, dir, remname,
&argp->pathconf, retries)) {
if (secflags & AUTH_F_RPCTIMESYNC)
netbuf_free(syncaddr);
else if (retaddrs)
netdir_free(retaddrs, ND_ADDRLIST);
free_knconf(argp->knconf);
netbuf_free(argp->addr);
freenetconfigent(nconf);
nfs_free_secdata(
argp->nfs_ext_u.nfs_extB.secdata);
if (argp->syncaddr)
netbuf_free(argp->syncaddr);
if (argp->netname)
free(argp->netname);
if (argp->hostname)
free(argp->hostname);
free(argp->fh);
free(argp);
head = prevhead;
tail = prevtail;
if (tail)
tail->nfs_ext_u.nfs_extB.next = NULL;
last_error = NFSERR_IO;
if (error == RET_RETRY && retries-- > 0) {
destroy_auth_client_handle(cl);
DELAY(delay);
goto retry;
}
destroy_auth_client_handle(cl);
skipentry = 1;
mfs->mfs_ignore = 1;
continue;
}
argp->flags |= NFSMNT_POSIX;
if (trace > 4)
trace_prt(1,
" nfsmount: have pathconf for %s\n",
remname);
}
/*
* free loop-specific data structures
*/
destroy_auth_client_handle(cl);
freenetconfigent(nconf);
if (secflags & AUTH_F_RPCTIMESYNC)
netbuf_free(syncaddr);
else if (retaddrs)
netdir_free(retaddrs, ND_ADDRLIST);
/*
* Decide whether to use remote host's lockd or local locking.
* If we are using the public fh, we've already turned
* LLOCK on.
*/
if (hasmntopt(&m, MNTOPT_LLOCK))
argp->flags |= NFSMNT_LLOCK;
if (!(argp->flags & NFSMNT_LLOCK) && nfsvers == NFS_VERSION &&
remote_lock(host, argp->fh)) {
syslog(loglevel, "No network locking on %s : "
"contact admin to install server change", host);
argp->flags |= NFSMNT_LLOCK;
}
/*
* Build a string for /etc/mnttab.
* If possible, coalesce strings with same 'dir' info.
*/
if ((mfs->mfs_flags & MFS_URL) == 0) {
char *tmp;
if (mnttabcnt) {
p = strrchr(mnttabtext, (int)':');
if (!p || strcmp(p+1, dir) != 0) {
mnttabcnt += strlen(remname) + 2;
} else {
*p = '\0';
mnttabcnt += strlen(rhost) + 2;
}
if ((tmp = realloc(mnttabtext,
mnttabcnt)) != NULL) {
mnttabtext = tmp;
strcat(mnttabtext, ",");
} else {
free(mnttabtext);
mnttabtext = NULL;
}
} else {
mnttabcnt = strlen(remname) + 1;
if ((mnttabtext = malloc(mnttabcnt)) != NULL)
mnttabtext[0] = '\0';
}
if (mnttabtext != NULL)
strcat(mnttabtext, remname);
} else {
char *tmp;
int more_cnt = 0;
char sport[16];
more_cnt += strlen("nfs://");
more_cnt += strlen(mfs->mfs_host);
if (mfs->mfs_port != 0) {
(void) sprintf(sport, ":%u", mfs->mfs_port);
} else
sport[0] = '\0';
more_cnt += strlen(sport);
more_cnt += 1; /* "/" */
more_cnt += strlen(mfs->mfs_dir);
if (mnttabcnt) {
more_cnt += 1; /* "," */
mnttabcnt += more_cnt;
if ((tmp = realloc(mnttabtext,
mnttabcnt)) != NULL) {
mnttabtext = tmp;
strcat(mnttabtext, ",");
} else {
free(mnttabtext);
mnttabtext = NULL;
}
} else {
mnttabcnt = more_cnt + 1;
if ((mnttabtext = malloc(mnttabcnt)) != NULL)
mnttabtext[0] = '\0';
}
if (mnttabtext != NULL) {
strcat(mnttabtext, "nfs://");
strcat(mnttabtext, mfs->mfs_host);
strcat(mnttabtext, sport);
strcat(mnttabtext, "/");
strcat(mnttabtext, mfs->mfs_dir);
}
}
if (!mnttabtext) {
syslog(LOG_ERR, "nfsmount: no memory");
last_error = NFSERR_IO;
goto out;
}
/*
* At least one entry, can call mount(2).
*/
entries++;
/*
* If replication was defeated, don't do more work
*/
if (!replicated)
break;
}
/*
* Did we get through all possibilities without success?
*/
if (!entries)
goto out;
/* Make "xattr" the default if "noxattr" is not specified. */
strcpy(mopts, opts);
if (!hasmntopt(&m, MNTOPT_NOXATTR) && !hasmntopt(&m, MNTOPT_XATTR)) {
if (strlen(mopts) > 0)
strcat(mopts, ",");
strcat(mopts, "xattr");
}
/*
* enable services as needed.
*/
{
char **sl;
if (strcmp(fstype, MNTTYPE_NFS4) == 0)
sl = service_list_v4;
else
sl = service_list;
(void) _check_services(sl);
}
/*
* Whew; do the mount, at last.
*/
if (trace > 1) {
trace_prt(1, " mount %s %s (%s)\n", mnttabtext, mntpnt, mopts);
}
/*
* If no action list pointer then do the mount, otherwise
* build the actions list pointer with the mount information.
* so the mount can be done in the kernel.
*/
if (alp == NULL) {
if (mount(mnttabtext, mntpnt, flags | MS_DATA, fstype,
head, sizeof (*head), mopts, MAX_MNTOPT_STR) < 0) {
if (trace > 1)
trace_prt(1, " Mount of %s on %s: %d\n",
mnttabtext, mntpnt, errno);
if (errno != EBUSY || verbose)
syslog(LOG_ERR,
"Mount of %s on %s: %m", mnttabtext, mntpnt);
last_error = NFSERR_IO;
goto out;
}
last_error = NFS_OK;
if (stat(mntpnt, &stbuf) == 0) {
if (trace > 1) {
trace_prt(1, " mount %s dev=%x rdev=%x OK\n",
mnttabtext, stbuf.st_dev, stbuf.st_rdev);
}
} else {
if (trace > 1) {
trace_prt(1, " mount %s OK\n", mnttabtext);
trace_prt(1, " stat of %s failed\n", mntpnt);
}
}
} else {
alp->action.action = AUTOFS_MOUNT_RQ;
alp->action.action_list_entry_u.mounta.spec =
strdup(mnttabtext);
alp->action.action_list_entry_u.mounta.dir = strdup(mntpnt);
alp->action.action_list_entry_u.mounta.flags =
flags | MS_DATA;
alp->action.action_list_entry_u.mounta.fstype =
strdup(fstype);
alp->action.action_list_entry_u.mounta.dataptr = (char *)head;
alp->action.action_list_entry_u.mounta.datalen =
sizeof (*head);
mntopts = malloc(strlen(mopts) + 1);
strcpy(mntopts, mopts);
mntopts[strlen(mopts)] = '\0';
alp->action.action_list_entry_u.mounta.optptr = mntopts;
alp->action.action_list_entry_u.mounta.optlen =
strlen(mntopts) + 1;
last_error = NFS_OK;
goto ret;
}
out:
argp = head;
while (argp) {
if (argp->pathconf)
free(argp->pathconf);
free_knconf(argp->knconf);
netbuf_free(argp->addr);
if (argp->syncaddr)
netbuf_free(argp->syncaddr);
if (argp->netname) {
free(argp->netname);
}
if (argp->hostname)
free(argp->hostname);
nfs_free_secdata(argp->nfs_ext_u.nfs_extB.secdata);
free(argp->fh);
head = argp;
argp = argp->nfs_ext_u.nfs_extB.next;
free(head);
}
ret:
if (nfs_proto)
free(nfs_proto);
if (mnttabtext)
free(mnttabtext);
for (mfs = mfs_in; mfs; mfs = mfs->mfs_next) {
if (mfs->mfs_flags & MFS_ALLOC_DIR) {
free(mfs->mfs_dir);
mfs->mfs_dir = NULL;
mfs->mfs_flags &= ~MFS_ALLOC_DIR;
}
if (mfs->mfs_args != NULL && alp == NULL) {
free(mfs->mfs_args);
mfs->mfs_args = NULL;
}
if (mfs->mfs_nconf != NULL) {
freenetconfigent(mfs->mfs_nconf);
mfs->mfs_nconf = NULL;
}
}
return (last_error);
}
/*
* get_pathconf(cl, path, fsname, pcnf, cretries)
* ugliness that requires that ppathcnf and pathcnf stay consistent
* cretries is a copy of retries used to determine when to syslog
* on retry situations.
*/
static int
get_pathconf(CLIENT *cl, char *path, char *fsname, struct pathcnf **pcnf,
int cretries)
{
struct ppathcnf *p = NULL;
enum clnt_stat rpc_stat;
struct timeval timeout;
p = (struct ppathcnf *)malloc(sizeof (struct ppathcnf));
if (p == NULL) {
syslog(LOG_ERR, "get_pathconf: Out of memory");
return (RET_ERR);
}
memset((caddr_t)p, 0, sizeof (struct ppathcnf));
timeout.tv_sec = 10;
timeout.tv_usec = 0;
rpc_stat = clnt_call(cl, MOUNTPROC_PATHCONF,
xdr_dirpath, (caddr_t)&path, xdr_ppathcnf, (caddr_t)p, timeout);
if (rpc_stat != RPC_SUCCESS) {
if (cretries-- <= 0) {
syslog(LOG_ERR,
"get_pathconf: %s: server not responding: %s",
fsname, clnt_sperror(cl, ""));
}
free(p);
return (RET_RETRY);
}
if (_PC_ISSET(_PC_ERROR, p->pc_mask)) {
syslog(LOG_ERR, "get_pathconf: no info for %s", fsname);
free(p);
return (RET_ERR);
}
*pcnf = (struct pathcnf *)p;
return (RET_OK);
}
struct knetconfig *
get_knconf(nconf)
struct netconfig *nconf;
{
struct stat stbuf;
struct knetconfig *k;
if (stat(nconf->nc_device, &stbuf) < 0) {
syslog(LOG_ERR, "get_knconf: stat %s: %m", nconf->nc_device);
return (NULL);
}
k = (struct knetconfig *)malloc(sizeof (*k));
if (k == NULL)
goto nomem;
k->knc_semantics = nconf->nc_semantics;
k->knc_protofmly = strdup(nconf->nc_protofmly);
if (k->knc_protofmly == NULL)
goto nomem;
k->knc_proto = strdup(nconf->nc_proto);
if (k->knc_proto == NULL)
goto nomem;
k->knc_rdev = stbuf.st_rdev;
return (k);
nomem:
syslog(LOG_ERR, "get_knconf: no memory");
free_knconf(k);
return (NULL);
}
void
free_knconf(k)
struct knetconfig *k;
{
if (k == NULL)
return;
if (k->knc_protofmly)
free(k->knc_protofmly);
if (k->knc_proto)
free(k->knc_proto);
free(k);
}
void
netbuf_free(nb)
struct netbuf *nb;
{
if (nb == NULL)
return;
if (nb->buf)
free(nb->buf);
free(nb);
}
#define SMALL_HOSTNAME 20
#define SMALL_PROTONAME 10
#define SMALL_PROTOFMLYNAME 10
struct portmap_cache {
int cache_prog;
int cache_vers;
time_t cache_time;
char cache_small_hosts[SMALL_HOSTNAME + 1];
char *cache_hostname;
char *cache_proto;
char *cache_protofmly;
char cache_small_protofmly[SMALL_PROTOFMLYNAME + 1];
char cache_small_proto[SMALL_PROTONAME + 1];
struct netbuf cache_srv_addr;
struct portmap_cache *cache_prev, *cache_next;
};
rwlock_t portmap_cache_lock;
static int portmap_cache_valid_time = 30;
struct portmap_cache *portmap_cache_head, *portmap_cache_tail;
#ifdef MALLOC_DEBUG
void
portmap_cache_flush()
{
struct portmap_cache *next = NULL, *cp;
(void) rw_wrlock(&portmap_cache_lock);
for (cp = portmap_cache_head; cp; cp = cp->cache_next) {
if (cp->cache_hostname != NULL &&
cp->cache_hostname !=
cp->cache_small_hosts)
free(cp->cache_hostname);
if (cp->cache_proto != NULL &&
cp->cache_proto !=
cp->cache_small_proto)
free(cp->cache_proto);
if (cp->cache_srv_addr.buf != NULL)
free(cp->cache_srv_addr.buf);
next = cp->cache_next;
free(cp);
}
portmap_cache_head = NULL;
portmap_cache_tail = NULL;
(void) rw_unlock(&portmap_cache_lock);
}
#endif
/*
* Returns 1 if the entry is found in the cache, 0 otherwise.
*/
static int
portmap_cache_lookup(hostname, prog, vers, nconf, addrp)
char *hostname;
rpcprog_t prog;
rpcvers_t vers;
struct netconfig *nconf;
struct netbuf *addrp;
{
struct portmap_cache *cachep, *prev, *next = NULL, *cp;
int retval = 0;
timenow = time(NULL);
(void) rw_rdlock(&portmap_cache_lock);
/*
* Increment the portmap cache counters for # accesses and lookups
* Use a smaller factor (100 vs 1000 for the host cache) since
* initial analysis shows this cache is looked up 10% that of the
* host cache.
*/
#ifdef CACHE_DEBUG
portmap_cache_accesses++;
portmap_cache_lookups++;
if ((portmap_cache_lookups%100) == 0)
trace_portmap_cache();
#endif /* CACHE_DEBUG */
for (cachep = portmap_cache_head; cachep;
cachep = cachep->cache_next) {
if (timenow > cachep->cache_time) {
/*
* We stumbled across an entry in the cache which
* has timed out. Free up all the entries that
* were added before it, which will positionally
* be after this entry. And adjust neighboring
* pointers.
* When we drop the lock and re-acquire it, we
* need to start from the beginning.
*/
(void) rw_unlock(&portmap_cache_lock);
(void) rw_wrlock(&portmap_cache_lock);
for (cp = portmap_cache_head;
cp && (cp->cache_time >= timenow);
cp = cp->cache_next)
;
if (cp == NULL)
goto done;
/*
* Adjust the link of the predecessor.
* Make the tail point to the new last entry.
*/
prev = cp->cache_prev;
if (prev == NULL) {
portmap_cache_head = NULL;
portmap_cache_tail = NULL;
} else {
prev->cache_next = NULL;
portmap_cache_tail = prev;
}
for (; cp; cp = next) {
if (cp->cache_hostname != NULL &&
cp->cache_hostname !=
cp->cache_small_hosts)
free(cp->cache_hostname);
if (cp->cache_proto != NULL &&
cp->cache_proto !=
cp->cache_small_proto)
free(cp->cache_proto);
if (cp->cache_srv_addr.buf != NULL)
free(cp->cache_srv_addr.buf);
next = cp->cache_next;
free(cp);
}
goto done;
}
if (cachep->cache_hostname == NULL ||
prog != cachep->cache_prog || vers != cachep->cache_vers ||
strcmp(nconf->nc_proto, cachep->cache_proto) != 0 ||
strcmp(nconf->nc_protofmly, cachep->cache_protofmly) != 0 ||
strcmp(hostname, cachep->cache_hostname) != 0)
continue;
/*
* Cache Hit.
*/
#ifdef CACHE_DEBUG
portmap_cache_hits++; /* up portmap cache hit counter */
#endif /* CACHE_DEBUG */
addrp->len = cachep->cache_srv_addr.len;
memcpy(addrp->buf, cachep->cache_srv_addr.buf, addrp->len);
retval = 1;
break;
}
done:
(void) rw_unlock(&portmap_cache_lock);
return (retval);
}
static void
portmap_cache_enter(hostname, prog, vers, nconf, addrp)
char *hostname;
rpcprog_t prog;
rpcvers_t vers;
struct netconfig *nconf;
struct netbuf *addrp;
{
struct portmap_cache *cachep;
int protofmlylen;
int protolen, hostnamelen;
timenow = time(NULL);
cachep = malloc(sizeof (struct portmap_cache));
if (cachep == NULL)
return;
memset((char *)cachep, 0, sizeof (*cachep));
hostnamelen = strlen(hostname);
if (hostnamelen <= SMALL_HOSTNAME)
cachep->cache_hostname = cachep->cache_small_hosts;
else {
cachep->cache_hostname = malloc(hostnamelen + 1);
if (cachep->cache_hostname == NULL)
goto nomem;
}
strcpy(cachep->cache_hostname, hostname);
protolen = strlen(nconf->nc_proto);
if (protolen <= SMALL_PROTONAME)
cachep->cache_proto = cachep->cache_small_proto;
else {
cachep->cache_proto = malloc(protolen + 1);
if (cachep->cache_proto == NULL)
goto nomem;
}
protofmlylen = strlen(nconf->nc_protofmly);
if (protofmlylen <= SMALL_PROTOFMLYNAME)
cachep->cache_protofmly = cachep->cache_small_protofmly;
else {
cachep->cache_protofmly = malloc(protofmlylen + 1);
if (cachep->cache_protofmly == NULL)
goto nomem;
}
strcpy(cachep->cache_proto, nconf->nc_proto);
cachep->cache_prog = prog;
cachep->cache_vers = vers;
cachep->cache_time = timenow + portmap_cache_valid_time;
cachep->cache_srv_addr.len = addrp->len;
cachep->cache_srv_addr.buf = malloc(addrp->len);
if (cachep->cache_srv_addr.buf == NULL)
goto nomem;
memcpy(cachep->cache_srv_addr.buf, addrp->buf, addrp->maxlen);
cachep->cache_prev = NULL;
(void) rw_wrlock(&portmap_cache_lock);
/*
* There's a window in which we could have multiple threads making
* the same cache entry. This can be avoided by walking the cache
* once again here to check and see if there are duplicate entries
* (after grabbing the write lock). This isn't fatal and I'm not
* going to bother with this.
*/
#ifdef CACHE_DEBUG
portmap_cache_accesses++; /* up portmap cache access counter */
#endif /* CACHE_DEBUG */
cachep->cache_next = portmap_cache_head;
if (portmap_cache_head != NULL)
portmap_cache_head->cache_prev = cachep;
portmap_cache_head = cachep;
(void) rw_unlock(&portmap_cache_lock);
return;
nomem:
syslog(LOG_ERR, "portmap_cache_enter: Memory allocation failed");
if (cachep->cache_srv_addr.buf)
free(cachep->cache_srv_addr.buf);
if (cachep->cache_proto && protolen > SMALL_PROTONAME)
free(cachep->cache_proto);
if (cachep->cache_hostname && hostnamelen > SMALL_HOSTNAME)
free(cachep->cache_hostname);
if (cachep->cache_protofmly && protofmlylen > SMALL_PROTOFMLYNAME)
free(cachep->cache_protofmly);
if (cachep)
free(cachep);
cachep = NULL;
}
static int
get_cached_srv_addr(char *hostname, rpcprog_t prog, rpcvers_t vers,
struct netconfig *nconf, struct netbuf *addrp)
{
if (portmap_cache_lookup(hostname, prog, vers, nconf, addrp))
return (1);
if (rpcb_getaddr(prog, vers, nconf, addrp, hostname) == 0)
return (0);
portmap_cache_enter(hostname, prog, vers, nconf, addrp);
return (1);
}
/*
* Get the network address on "hostname" for program "prog"
* with version "vers" by using the nconf configuration data
* passed in.
*
* If the address of a netconfig pointer is null then
* information is not sufficient and no netbuf will be returned.
*
* tinfo argument is for matching the get_the_addr() defined in
* ../nfs/mount/mount.c
*/
void *
get_the_stuff(
enum type_of_stuff type_of_stuff,
char *hostname,
rpcprog_t prog,
rpcprog_t vers,
mfs_snego_t *mfssnego,
struct netconfig *nconf,
ushort_t port,
struct t_info *tinfo,
caddr_t *fhp,
bool_t direct_to_server,
char *fspath,
enum clnt_stat *cstat)
{
struct netbuf *nb = NULL;
struct t_bind *tbind = NULL;
int fd = -1;
enum clnt_stat cs = RPC_TIMEDOUT;
CLIENT *cl = NULL;
struct timeval tv;
AUTH *ah = NULL;
AUTH *new_ah = NULL;
struct snego_t snego;
if (nconf == NULL) {
goto done;
}
if (prog == NFS_PROGRAM && vers == NFS_V4)
if (strncasecmp(nconf->nc_proto, NC_UDP, strlen(NC_UDP)) == 0)
goto done;
if ((fd = t_open(nconf->nc_device, O_RDWR, tinfo)) < 0) {
goto done;
}
/* LINTED pointer alignment */
if ((tbind = (struct t_bind *)t_alloc(fd, T_BIND, T_ADDR))
== NULL) {
goto done;
}
if (direct_to_server == TRUE) {
struct nd_hostserv hs;
struct nd_addrlist *retaddrs;
hs.h_host = hostname;
if (trace > 1)
trace_prt(1, " get_the_stuff: %s call "
"direct to server %s\n",
type_of_stuff == SERVER_FH ? "pub fh" :
type_of_stuff == SERVER_ADDR ? "get address" :
type_of_stuff == SERVER_PING ? "ping" :
"unknown", hostname);
if (port == 0)
hs.h_serv = "nfs";
else
hs.h_serv = NULL;
if (netdir_getbyname(nconf, &hs, &retaddrs) != ND_OK) {
goto done;
}
memcpy(tbind->addr.buf, retaddrs->n_addrs->buf,
retaddrs->n_addrs->len);
tbind->addr.len = retaddrs->n_addrs->len;
netdir_free((void *)retaddrs, ND_ADDRLIST);
if (port) {
/* LINTED pointer alignment */
if (strcmp(nconf->nc_protofmly, NC_INET) == NULL)
((struct sockaddr_in *)
tbind->addr.buf)->sin_port =
htons((ushort_t)port);
else if (strcmp(nconf->nc_protofmly, NC_INET6) == NULL)
((struct sockaddr_in6 *)
tbind->addr.buf)->sin6_port =
htons((ushort_t)port);
}
if (type_of_stuff == SERVER_FH) {
if (netdir_options(nconf, ND_SET_RESERVEDPORT, fd,
NULL) == -1)
if (trace > 1)
trace_prt(1, "\tget_the_stuff: "
"ND_SET_RESERVEDPORT(%s) "
"failed\n", hostname);
}
cl = clnt_tli_create(fd, nconf, &tbind->addr, prog,
vers, 0, 0);
if (trace > 1)
trace_prt(1, " get_the_stuff: clnt_tli_create(%s) "
"returned %p\n", hostname, cl);
if (cl == NULL)
goto done;
#ifdef MALLOC_DEBUG
add_alloc("CLNT_HANDLE", cl, 0, __FILE__, __LINE__);
add_alloc("AUTH_HANDLE", cl->cl_auth, 0,
__FILE__, __LINE__);
#endif
switch (type_of_stuff) {
case SERVER_FH:
{
enum snego_stat sec;
ah = authsys_create_default();
if (ah != NULL) {
#ifdef MALLOC_DEBUG
drop_alloc("AUTH_HANDLE", cl->cl_auth,
__FILE__, __LINE__);
#endif
AUTH_DESTROY(cl->cl_auth);
cl->cl_auth = ah;
#ifdef MALLOC_DEBUG
add_alloc("AUTH_HANDLE", cl->cl_auth, 0,
__FILE__, __LINE__);
#endif
}
if (!mfssnego->snego_done && vers != NFS_V4) {
/*
* negotiate sec flavor.
*/
snego.cnt = 0;
if ((sec = nfs_sec_nego(vers, cl, fspath, &snego)) ==
SNEGO_SUCCESS) {
int jj;
/*
* check if server supports the one
* specified in the sec= option.
*/
if (mfssnego->sec_opt) {
for (jj = 0; jj < snego.cnt; jj++) {
if (snego.array[jj] ==
mfssnego->nfs_sec.sc_nfsnum) {
mfssnego->snego_done = TRUE;
break;
}
}
}
/*
* find a common sec flavor
*/
if (!mfssnego->snego_done) {
for (jj = 0; jj < snego.cnt; jj++) {
if (!nfs_getseconfig_bynumber(
snego.array[jj], &mfssnego->nfs_sec)) {
mfssnego->snego_done = TRUE;
break;
}
}
}
if (!mfssnego->snego_done)
return (NULL);
/*
* Now that the flavor has been
* negotiated, get the fh.
*
* First, create an auth handle using the negotiated
* sec flavor in the next lookup to
* fetch the filehandle.
*/
new_ah = nfs_create_ah(cl, hostname,
&mfssnego->nfs_sec);
if (new_ah == NULL)
goto done;
#ifdef MALLOC_DEBUG
drop_alloc("AUTH_HANDLE", cl->cl_auth,
__FILE__, __LINE__);
#endif
AUTH_DESTROY(cl->cl_auth);
cl->cl_auth = new_ah;
#ifdef MALLOC_DEBUG
add_alloc("AUTH_HANDLE", cl->cl_auth, 0,
__FILE__, __LINE__);
#endif
} else if (sec == SNEGO_ARRAY_TOO_SMALL ||
sec == SNEGO_FAILURE) {
goto done;
}
/*
* Note that if sec == SNEGO_DEF_VALID
* the default sec flavor is acceptable.
* Use it to get the filehandle.
*/
}
}
switch (vers) {
case NFS_VERSION:
{
wnl_diropargs arg;
wnl_diropres *res;
memset((char *)&arg.dir, 0, sizeof (wnl_fh));
arg.name = fspath;
res = wnlproc_lookup_2(&arg, cl);
if (res == NULL || res->status != NFS_OK)
goto done;
*fhp = malloc(sizeof (wnl_fh));
if (*fhp == NULL) {
syslog(LOG_ERR, "no memory\n");
goto done;
}
memcpy((char *)*fhp,
(char *)&res->wnl_diropres_u.wnl_diropres.file,
sizeof (wnl_fh));
cs = RPC_SUCCESS;
}
break;
case NFS_V3:
{
WNL_LOOKUP3args arg;
WNL_LOOKUP3res *res;
nfs_fh3 *fh3p;
memset((char *)&arg.what.dir, 0, sizeof (wnl_fh3));
arg.what.name = fspath;
res = wnlproc3_lookup_3(&arg, cl);
if (res == NULL || res->status != NFS3_OK)
goto done;
fh3p = (nfs_fh3 *)malloc(sizeof (*fh3p));
if (fh3p == NULL) {
syslog(LOG_ERR, "no memory\n");
CLNT_FREERES(cl, xdr_WNL_LOOKUP3res,
(char *)res);
goto done;
}
fh3p->fh3_length = res->
WNL_LOOKUP3res_u.res_ok.object.data.data_len;
memcpy(fh3p->fh3_u.data, res->
WNL_LOOKUP3res_u.res_ok.object.data.data_val,
fh3p->fh3_length);
*fhp = (caddr_t)fh3p;
CLNT_FREERES(cl, xdr_WNL_LOOKUP3res, (char *)res);
cs = RPC_SUCCESS;
}
break;
case NFS_V4:
*fhp = strdup(fspath);
cs = RPC_SUCCESS;
break;
}
break;
case SERVER_ADDR:
case SERVER_PING:
tv.tv_sec = 10;
tv.tv_usec = 0;
cs = clnt_call(cl, NULLPROC, xdr_void, 0,
xdr_void, 0, tv);
if (trace > 1)
trace_prt(1,
"get_the_stuff: clnt_call(%s) "
"returned %s\n",
hostname,
cs == RPC_SUCCESS ? "success" :
"failure");
if (cs != RPC_SUCCESS)
goto done;
break;
}
} else if (type_of_stuff != SERVER_FH) {
if (type_of_stuff == SERVER_ADDR) {
if (get_cached_srv_addr(hostname, prog, vers, nconf,
&tbind->addr) == 0)
goto done;
}
if (port) {
/* LINTED pointer alignment */
if (strcmp(nconf->nc_protofmly, NC_INET) == NULL)
((struct sockaddr_in *)
tbind->addr.buf)->sin_port =
htons((ushort_t)port);
else if (strcmp(nconf->nc_protofmly, NC_INET6) == NULL)
((struct sockaddr_in6 *)
tbind->addr.buf)->sin6_port =
htons((ushort_t)port);
cl = clnt_tli_create(fd, nconf, &tbind->addr,
prog, vers, 0, 0);
if (cl == NULL)
goto done;
#ifdef MALLOC_DEBUG
add_alloc("CLNT_HANDLE", cl, 0, __FILE__, __LINE__);
add_alloc("AUTH_HANDLE", cl->cl_auth, 0,
__FILE__, __LINE__);
#endif
tv.tv_sec = 10;
tv.tv_usec = 0;
cs = clnt_call(cl, NULLPROC, xdr_void, 0, xdr_void,
0, tv);
if (cs != RPC_SUCCESS)
goto done;
}
} else {
/* can't happen */
goto done;
}
if (type_of_stuff != SERVER_PING) {
cs = RPC_SYSTEMERROR;
/*
* Make a copy of the netbuf to return
*/
nb = (struct netbuf *)malloc(sizeof (struct netbuf));
if (nb == NULL) {
syslog(LOG_ERR, "no memory\n");
goto done;
}
*nb = tbind->addr;
nb->buf = (char *)malloc(nb->maxlen);
if (nb->buf == NULL) {
syslog(LOG_ERR, "no memory\n");
free(nb);
nb = NULL;
goto done;
}
(void) memcpy(nb->buf, tbind->addr.buf, tbind->addr.len);
cs = RPC_SUCCESS;
}
done:
if (cl != NULL) {
if (ah != NULL) {
#ifdef MALLOC_DEBUG
drop_alloc("AUTH_HANDLE", cl->cl_auth,
__FILE__, __LINE__);
#endif
AUTH_DESTROY(cl->cl_auth);
cl->cl_auth = NULL;
}
#ifdef MALLOC_DEBUG
drop_alloc("CLNT_HANDLE", cl, __FILE__, __LINE__);
#endif
clnt_destroy(cl);
}
if (tbind) {
t_free((char *)tbind, T_BIND);
tbind = NULL;
}
if (fd >= 0)
(void) t_close(fd);
if (cstat != NULL)
*cstat = cs;
return (nb);
}
/*
* Get a network address on "hostname" for program "prog"
* with version "vers". If the port number is specified (non zero)
* then try for a TCP/UDP transport and set the port number of the
* resulting IP address.
*
* If the address of a netconfig pointer was passed and
* if it's not null, use it as the netconfig otherwise
* assign the address of the netconfig that was used to
* establish contact with the service.
*
* tinfo argument is for matching the get_addr() defined in
* ../nfs/mount/mount.c
*/
static struct netbuf *
get_addr(char *hostname, rpcprog_t prog, rpcvers_t vers,
struct netconfig **nconfp, char *proto, ushort_t port,
struct t_info *tinfo)
{
enum clnt_stat cstat;
return (get_server_stuff(SERVER_ADDR, hostname, prog, vers, NULL,
nconfp, proto, port, tinfo, NULL, FALSE, NULL, &cstat));
}
static struct netbuf *
get_pubfh(char *hostname, rpcvers_t vers, mfs_snego_t *mfssnego,
struct netconfig **nconfp, char *proto, ushort_t port,
struct t_info *tinfo, caddr_t *fhp, bool_t get_pubfh, char *fspath)
{
enum clnt_stat cstat;
return (get_server_stuff(SERVER_FH, hostname, NFS_PROGRAM, vers,
mfssnego, nconfp, proto, port, tinfo, fhp, get_pubfh, fspath,
&cstat));
}
static enum clnt_stat
get_ping(char *hostname, rpcprog_t prog, rpcvers_t vers,
struct netconfig **nconfp, ushort_t port, bool_t direct_to_server)
{
enum clnt_stat cstat;
(void) get_server_stuff(SERVER_PING, hostname, prog, vers, NULL, nconfp,
NULL, port, NULL, NULL, direct_to_server, NULL, &cstat);
return (cstat);
}
void *
get_server_stuff(
enum type_of_stuff type_of_stuff,
char *hostname,
rpcprog_t prog,
rpcvers_t vers,
mfs_snego_t *mfssnego,
struct netconfig **nconfp,
char *proto,
ushort_t port, /* may be zero */
struct t_info *tinfo,
caddr_t *fhp,
bool_t direct_to_server,
char *fspath,
enum clnt_stat *cstatp)
{
struct netbuf *nb = NULL;
struct netconfig *nconf = NULL;
NCONF_HANDLE *nc = NULL;
int nthtry = FIRST_TRY;
if (nconfp && *nconfp)
return (get_the_stuff(type_of_stuff, hostname, prog, vers,
mfssnego, *nconfp, port, tinfo, fhp, direct_to_server,
fspath, cstatp));
/*
* No nconf passed in.
*
* Try to get a nconf from /etc/netconfig.
* First choice is COTS, second is CLTS unless proto
* is specified. When we retry, we reset the
* netconfig list, so that we search the whole list
* for the next choice.
*/
if ((nc = setnetpath()) == NULL)
goto done;
/*
* If proto is specified, then only search for the match,
* otherwise try COTS first, if failed, then try CLTS.
*/
if (proto) {
while (nconf = getnetpath(nc)) {
if (strcmp(nconf->nc_proto, proto))
continue;
/*
* If the port number is specified then TCP/UDP
* is needed. Otherwise any cots/clts will do.
*/
if (port) {
if ((strcmp(nconf->nc_protofmly, NC_INET) &&
strcmp(nconf->nc_protofmly, NC_INET6)) ||
(strcmp(nconf->nc_proto, NC_TCP) &&
strcmp(nconf->nc_proto, NC_UDP)))
continue;
}
nb = get_the_stuff(type_of_stuff, hostname, prog, vers,
mfssnego, nconf, port, tinfo, fhp,
direct_to_server, fspath, cstatp);
if (*cstatp == RPC_SUCCESS)
break;
assert(nb == NULL);
} /* end of while */
if (nconf == NULL)
goto done;
} else {
retry:
while (nconf = getnetpath(nc)) {
if (nconf->nc_flag & NC_VISIBLE) {
if (nthtry == FIRST_TRY) {
if ((nconf->nc_semantics == NC_TPI_COTS_ORD) ||
(nconf->nc_semantics == NC_TPI_COTS)) {
if (port == 0)
break;
if ((strcmp(nconf->nc_protofmly,
NC_INET) == 0 ||
strcmp(nconf->nc_protofmly,
NC_INET6) == 0) &&
(strcmp(nconf->nc_proto, NC_TCP) == 0))
break;
}
}
if (nthtry == SECOND_TRY) {
if (nconf->nc_semantics == NC_TPI_CLTS) {
if (port == 0)
break;
if ((strcmp(nconf->nc_protofmly,
NC_INET) == 0 ||
strcmp(nconf->nc_protofmly,
NC_INET6) == 0) &&
(strcmp(nconf->nc_proto, NC_UDP) == 0))
break;
}
}
}
} /* while */
if (nconf == NULL) {
if (++nthtry <= MNT_PREF_LISTLEN) {
endnetpath(nc);
if ((nc = setnetpath()) == NULL)
goto done;
goto retry;
} else
goto done;
} else {
nb = get_the_stuff(type_of_stuff, hostname, prog, vers,
mfssnego, nconf, port, tinfo, fhp, direct_to_server,
fspath, cstatp);
if (*cstatp != RPC_SUCCESS)
/*
* Continue the same search path in the
* netconfig db until no more matched nconf
* (nconf == NULL).
*/
goto retry;
}
} /* if !proto */
/*
* Got nconf and nb. Now dup the netconfig structure (nconf)
* and return it thru nconfp.
*/
*nconfp = getnetconfigent(nconf->nc_netid);
if (*nconfp == NULL) {
syslog(LOG_ERR, "no memory\n");
free(nb);
nb = NULL;
}
done:
if (nc)
endnetpath(nc);
return (nb);
}
/*
* Sends a null call to the remote host's (NFS program, versp). versp
* may be "NULL" in which case the default maximum version is used.
* Upon return, versp contains the maximum version supported iff versp!= NULL.
*/
enum clnt_stat
pingnfs(
char *hostpart,
int attempts,
rpcvers_t *versp,
rpcvers_t versmin,
ushort_t port, /* may be zero */
bool_t usepub,
char *path,
char *proto)
{
CLIENT *cl = NULL;
struct timeval rpc_to_new = {15, 0};
static struct timeval rpc_rtrans_new = {-1, -1};
enum clnt_stat clnt_stat;
int i, j;
rpcvers_t versmax; /* maximum version to try against server */
rpcvers_t outvers; /* version supported by host on last call */
rpcvers_t vers_to_try; /* to try different versions against host */
char *hostname;
struct netconfig *nconf;
hostname = strdup(hostpart);
if (hostname == NULL) {
return (RPC_SYSTEMERROR);
}
unbracket(&hostname);
if (path != NULL && strcmp(hostname, "nfs") == 0 &&
strncmp(path, "//", 2) == 0) {
char *sport;
hostname = strdup(path+2);
if (hostname == NULL)
return (RPC_SYSTEMERROR);
path = strchr(hostname, '/');
/*
* This cannot happen. If it does, give up
* on the ping as this is obviously a corrupt
* entry.
*/
if (path == NULL) {
free(hostname);
return (RPC_SUCCESS);
}
/*
* Probable end point of host string.
*/
*path = '\0';
sport = strchr(hostname, ':');
if (sport != NULL && sport < path) {
/*
* Actual end point of host string.
*/
*sport = '\0';
port = htons((ushort_t)atoi(sport+1));
}
usepub = TRUE;
}
/* Pick up the default versions and then set them appropriately */
if (versp) {
versmax = *versp;
/* use versmin passed in */
} else {
read_default_nfs();
set_versrange(0, &versmax, &versmin);
}
if (proto &&
strncasecmp(proto, NC_UDP, strlen(NC_UDP)) == 0 &&
versmax == NFS_V4) {
if (versmin == NFS_V4) {
if (versp) {
*versp = versmax - 1;
return (RPC_SUCCESS);
}
return (RPC_PROGUNAVAIL);
} else {
versmax--;
}
}
if (versp)
*versp = versmax;
switch (cache_check(hostname, versp, proto)) {
case GOODHOST:
if (hostname != hostpart)
free(hostname);
return (RPC_SUCCESS);
case DEADHOST:
if (hostname != hostpart)
free(hostname);
return (RPC_TIMEDOUT);
case NOHOST:
default:
break;
}
/*
* XXX The retransmission time rpcbrmttime is a global defined
* in the rpc library (rpcb_clnt.c). We use (and like) the default
* value of 15 sec in the rpc library. The code below is to protect
* us in case it changes. This need not be done under a lock since
* any # of threads entering this function will get the same
* retransmission value.
*/
if (rpc_rtrans_new.tv_sec == -1 && rpc_rtrans_new.tv_usec == -1) {
__rpc_control(CLCR_GET_RPCB_RMTTIME, (char *)&rpc_rtrans_new);
if (rpc_rtrans_new.tv_sec != 15 && rpc_rtrans_new.tv_sec != 0)
if (trace > 1)
trace_prt(1, "RPC library rttimer changed\n");
}
/*
* XXX Manipulate the total timeout to get the number of
* desired retransmissions. This code is heavily dependant on
* the RPC backoff mechanism in clnt_dg_call (clnt_dg.c).
*/
for (i = 0, j = rpc_rtrans_new.tv_sec; i < attempts-1; i++) {
if (j < RPC_MAX_BACKOFF)
j *= 2;
else
j = RPC_MAX_BACKOFF;
rpc_to_new.tv_sec += j;
}
vers_to_try = versmax;
/*
* check the host's version within the timeout
*/
if (trace > 1)
trace_prt(1, " ping: %s timeout=%ld request vers=%d min=%d\n",
hostname, rpc_to_new.tv_sec, versmax, versmin);
if (usepub == FALSE) {
do {
/*
* If NFSv4, then we do the same thing as is used
* for public filehandles so that we avoid rpcbind
*/
if (vers_to_try == NFS_V4) {
if (trace > 4) {
trace_prt(1, " pingnfs: Trying ping via "
"\"circuit_v\"\n");
}
if ((cl = clnt_create_service_timed(hostname, "nfs",
NFS_PROGRAM,
vers_to_try,
port, "circuit_v",
&rpc_to_new))
!= NULL) {
outvers = vers_to_try;
break;
}
if (trace > 4) {
trace_prt(1, " pingnfs: Can't ping via "
"\"circuit_v\" %s: RPC error=%d\n",
hostname, rpc_createerr.cf_stat);
}
} else {
if ((cl = clnt_create_vers_timed(hostname, NFS_PROGRAM,
&outvers, versmin, vers_to_try,
"datagram_v", &rpc_to_new))
!= NULL)
break;
if (trace > 4) {
trace_prt(1, " pingnfs: Can't ping via "
"\"datagram_v\"%s: RPC error=%d\n",
hostname, rpc_createerr.cf_stat);
}
if (rpc_createerr.cf_stat == RPC_UNKNOWNHOST ||
rpc_createerr.cf_stat == RPC_TIMEDOUT)
break;
if (rpc_createerr.cf_stat == RPC_PROGNOTREGISTERED) {
if (trace > 4) {
trace_prt(1, " pingnfs: Trying ping "
"via \"circuit_v\"\n");
}
if ((cl = clnt_create_vers_timed(hostname,
NFS_PROGRAM, &outvers,
versmin, vers_to_try,
"circuit_v", &rpc_to_new)) != NULL)
break;
if (trace > 4) {
trace_prt(1, " pingnfs: Can't ping "
"via \"circuit_v\" %s: "
"RPC error=%d\n",
hostname,
rpc_createerr.cf_stat);
}
}
}
/*
* backoff and return lower version to retry the ping.
* XXX we should be more careful and handle
* RPC_PROGVERSMISMATCH here, because that error is handled
* in clnt_create_vers(). It's not done to stay in sync
* with the nfs mount command.
*/
vers_to_try--;
if (vers_to_try < versmin)
break;
if (versp != NULL) { /* recheck the cache */
*versp = vers_to_try;
if (trace > 4) {
trace_prt(1,
" pingnfs: check cache: vers=%d\n",
*versp);
}
switch (cache_check(hostname, versp, proto)) {
case GOODHOST:
if (hostname != hostpart)
free(hostname);
return (RPC_SUCCESS);
case DEADHOST:
if (hostname != hostpart)
free(hostname);
return (RPC_TIMEDOUT);
case NOHOST:
default:
break;
}
}
if (trace > 4) {
trace_prt(1, " pingnfs: Try version=%d\n",
vers_to_try);
}
} while (cl == NULL);
if (cl == NULL) {
if (verbose)
syslog(LOG_ERR, "pingnfs: %s%s",
hostname, clnt_spcreateerror(""));
clnt_stat = rpc_createerr.cf_stat;
} else {
clnt_destroy(cl);
clnt_stat = RPC_SUCCESS;
}
} else {
for (vers_to_try = versmax; vers_to_try >= versmin;
vers_to_try--) {
nconf = NULL;
if (trace > 4) {
trace_prt(1, " pingnfs: Try version=%d "
"using get_ping()\n", vers_to_try);
}
clnt_stat = get_ping(hostname, NFS_PROGRAM,
vers_to_try, &nconf, port, TRUE);
if (nconf != NULL)
freenetconfigent(nconf);
if (clnt_stat == RPC_SUCCESS) {
outvers = vers_to_try;
break;
}
}
}
if (trace > 1)
clnt_stat == RPC_SUCCESS ?
trace_prt(1, " pingnfs OK: nfs version=%d\n", outvers):
trace_prt(1, " pingnfs FAIL: can't get nfs version\n");
if (clnt_stat == RPC_SUCCESS) {
cache_enter(hostname, versmax, outvers, proto, GOODHOST);
if (versp != NULL)
*versp = outvers;
} else
cache_enter(hostname, versmax, versmax, proto, DEADHOST);
if (hostpart != hostname)
free(hostname);
return (clnt_stat);
}
#define MNTTYPE_LOFS "lofs"
int
loopbackmount(fsname, dir, mntopts, overlay)
char *fsname; /* Directory being mounted */
char *dir; /* Directory being mounted on */
char *mntopts;
int overlay;
{
struct mnttab mnt;
int flags = 0;
char fstype[] = MNTTYPE_LOFS;
int dirlen;
struct stat st;
char optbuf[MAX_MNTOPT_STR];
dirlen = strlen(dir);
if (dir[dirlen-1] == ' ')
dirlen--;
if (dirlen == strlen(fsname) &&
strncmp(fsname, dir, dirlen) == 0) {
syslog(LOG_ERR,
"Mount of %s on %s would result in deadlock, aborted\n",
fsname, dir);
return (RET_ERR);
}
mnt.mnt_mntopts = mntopts;
if (hasmntopt(&mnt, MNTOPT_RO) != NULL)
flags |= MS_RDONLY;
(void) strlcpy(optbuf, mntopts, sizeof (optbuf));
if (overlay)
flags |= MS_OVERLAY;
if (trace > 1)
trace_prt(1,
" loopbackmount: fsname=%s, dir=%s, flags=%d\n",
fsname, dir, flags);
if (is_system_labeled()) {
if (create_homedir((const char *)fsname,
(const char *)dir) == 0) {
return (NFSERR_NOENT);
}
}
if (mount(fsname, dir, flags | MS_DATA | MS_OPTIONSTR, fstype,
NULL, 0, optbuf, sizeof (optbuf)) < 0) {
syslog(LOG_ERR, "Mount of %s on %s: %m", fsname, dir);
return (RET_ERR);
}
if (stat(dir, &st) == 0) {
if (trace > 1) {
trace_prt(1,
" loopbackmount of %s on %s dev=%x rdev=%x OK\n",
fsname, dir, st.st_dev, st.st_rdev);
}
} else {
if (trace > 1) {
trace_prt(1,
" loopbackmount of %s on %s OK\n", fsname, dir);
trace_prt(1, " stat of %s failed\n", dir);
}
}
return (0);
}
/*
* Look for the value of a numeric option of the form foo=x. If found, set
* *valp to the value and return non-zero. If not found or the option is
* malformed, return zero.
*/
int
nopt(mnt, opt, valp)
struct mnttab *mnt;
char *opt;
int *valp; /* OUT */
{
char *equal;
char *str;
/*
* We should never get a null pointer, but if we do, it's better to
* ignore the option than to dump core.
*/
if (valp == NULL) {
syslog(LOG_DEBUG, "null pointer for %s option", opt);
return (0);
}
if (str = hasmntopt(mnt, opt)) {
if (equal = strchr(str, '=')) {
*valp = atoi(&equal[1]);
return (1);
} else {
syslog(LOG_ERR, "Bad numeric option '%s'", str);
}
}
return (0);
}
int
nfsunmount(mnt)
struct mnttab *mnt;
{
struct timeval timeout;
CLIENT *cl;
enum clnt_stat rpc_stat;
char *host, *path;
struct replica *list;
int i, count = 0;
int isv4mount = is_v4_mount(mnt->mnt_mountp);
if (trace > 1)
trace_prt(1, " nfsunmount: umount %s\n", mnt->mnt_mountp);
if (umount(mnt->mnt_mountp) < 0) {
if (trace > 1)
trace_prt(1, " nfsunmount: umount %s FAILED\n",
mnt->mnt_mountp);
if (errno)
return (errno);
}
/*
* If this is a NFSv4 mount, the mount protocol was not used
* so we just return.
*/
if (isv4mount) {
if (trace > 1)
trace_prt(1, " nfsunmount: umount %s OK\n",
mnt->mnt_mountp);
return (0);
}
/*
* If mounted with -o public, then no need to contact server
* because mount protocol was not used.
*/
if (hasmntopt(mnt, MNTOPT_PUBLIC) != NULL) {
return (0);
}
/*
* The rest of this code is advisory to the server.
* If it fails return success anyway.
*/
list = parse_replica(mnt->mnt_special, &count);
if (!list) {
if (count >= 0)
syslog(LOG_ERR,
"Memory allocation failed: %m");
return (ENOMEM);
}
for (i = 0; i < count; i++) {
host = list[i].host;
path = list[i].path;
/*
* Skip file systems mounted using WebNFS, because mount
* protocol was not used.
*/
if (strcmp(host, "nfs") == 0 && strncmp(path, "//", 2) == 0)
continue;
cl = clnt_create(host, MOUNTPROG, MOUNTVERS, "datagram_v");
if (cl == NULL)
break;
#ifdef MALLOC_DEBUG
add_alloc("CLNT_HANDLE", cl, 0, __FILE__, __LINE__);
add_alloc("AUTH_HANDLE", cl->cl_auth, 0,
__FILE__, __LINE__);
#endif
if (__clnt_bindresvport(cl) < 0) {
if (verbose)
syslog(LOG_ERR, "umount %s:%s: %s",
host, path,
"Couldn't bind to reserved port");
destroy_auth_client_handle(cl);
continue;
}
#ifdef MALLOC_DEBUG
drop_alloc("AUTH_HANDLE", cl->cl_auth, __FILE__, __LINE__);
#endif
AUTH_DESTROY(cl->cl_auth);
if ((cl->cl_auth = authsys_create_default()) == NULL) {
if (verbose)
syslog(LOG_ERR, "umount %s:%s: %s",
host, path,
"Failed creating default auth handle");
destroy_auth_client_handle(cl);
continue;
}
#ifdef MALLOC_DEBUG
add_alloc("AUTH_HANDLE", cl->cl_auth, 0, __FILE__, __LINE__);
#endif
timeout.tv_usec = 0;
timeout.tv_sec = 5;
rpc_stat = clnt_call(cl, MOUNTPROC_UMNT, xdr_dirpath,
(caddr_t)&path, xdr_void, (char *)NULL, timeout);
if (verbose && rpc_stat != RPC_SUCCESS)
syslog(LOG_ERR, "%s: %s",
host, clnt_sperror(cl, "unmount"));
destroy_auth_client_handle(cl);
}
free_replica(list, count);
if (trace > 1)
trace_prt(1, " nfsunmount: umount %s OK\n", mnt->mnt_mountp);
done:
return (0);
}
/*
* Put a new entry in the cache chain by prepending it to the front.
* If there isn't enough memory then just give up.
*/
static void
cache_enter(host, reqvers, outvers, proto, state)
char *host;
rpcvers_t reqvers;
rpcvers_t outvers;
char *proto;
int state;
{
struct cache_entry *entry;
int cache_time = 30; /* sec */
timenow = time(NULL);
entry = (struct cache_entry *)malloc(sizeof (struct cache_entry));
if (entry == NULL)
return;
(void) memset((caddr_t)entry, 0, sizeof (struct cache_entry));
entry->cache_host = strdup(host);
if (entry->cache_host == NULL) {
cache_free(entry);
return;
}
entry->cache_reqvers = reqvers;
entry->cache_outvers = outvers;
entry->cache_proto = (proto == NULL ? NULL : strdup(proto));
entry->cache_state = state;
entry->cache_time = timenow + cache_time;
(void) rw_wrlock(&cache_lock);
#ifdef CACHE_DEBUG
host_cache_accesses++; /* up host cache access counter */
#endif /* CACHE DEBUG */
entry->cache_next = cache_head;
cache_head = entry;
(void) rw_unlock(&cache_lock);
}
static int
cache_check(host, versp, proto)
char *host;
rpcvers_t *versp;
char *proto;
{
int state = NOHOST;
struct cache_entry *ce, *prev;
timenow = time(NULL);
(void) rw_rdlock(&cache_lock);
#ifdef CACHE_DEBUG
/* Increment the lookup and access counters for the host cache */
host_cache_accesses++;
host_cache_lookups++;
if ((host_cache_lookups%1000) == 0)
trace_host_cache();
#endif /* CACHE DEBUG */
for (ce = cache_head; ce; ce = ce->cache_next) {
if (timenow > ce->cache_time) {
(void) rw_unlock(&cache_lock);
(void) rw_wrlock(&cache_lock);
for (prev = NULL, ce = cache_head; ce;
prev = ce, ce = ce->cache_next) {
if (timenow > ce->cache_time) {
cache_free(ce);
if (prev)
prev->cache_next = NULL;
else
cache_head = NULL;
break;
}
}
(void) rw_unlock(&cache_lock);
return (state);
}
if (strcmp(host, ce->cache_host) != 0)
continue;
if ((proto == NULL && ce->cache_proto != NULL) ||
(proto != NULL && ce->cache_proto == NULL))
continue;
if (proto != NULL &&
strcmp(proto, ce->cache_proto) != 0)
continue;
if (versp == NULL ||
(versp != NULL && *versp == ce->cache_reqvers) ||
(versp != NULL && *versp == ce->cache_outvers)) {
if (versp != NULL)
*versp = ce->cache_outvers;
state = ce->cache_state;
/* increment the host cache hit counters */
#ifdef CACHE_DEBUG
if (state == GOODHOST)
goodhost_cache_hits++;
if (state == DEADHOST)
deadhost_cache_hits++;
#endif /* CACHE_DEBUG */
(void) rw_unlock(&cache_lock);
return (state);
}
}
(void) rw_unlock(&cache_lock);
return (state);
}
/*
* Free a cache entry and all entries
* further down the chain since they
* will also be expired.
*/
static void
cache_free(entry)
struct cache_entry *entry;
{
struct cache_entry *ce, *next = NULL;
for (ce = entry; ce; ce = next) {
if (ce->cache_host)
free(ce->cache_host);
if (ce->cache_proto)
free(ce->cache_proto);
next = ce->cache_next;
free(ce);
}
}
#ifdef MALLOC_DEBUG
void
cache_flush()
{
(void) rw_wrlock(&cache_lock);
cache_free(cache_head);
cache_head = NULL;
(void) rw_unlock(&cache_lock);
}
void
flush_caches()
{
mutex_lock(&cleanup_lock);
cond_signal(&cleanup_start_cv);
(void) cond_wait(&cleanup_done_cv, &cleanup_lock);
mutex_unlock(&cleanup_lock);
cache_flush();
portmap_cache_flush();
}
#endif
/*
* Returns 1, if port option is NFS_PORT or
* nfsd is running on the port given
* Returns 0, if both port is not NFS_PORT and nfsd is not
* running on the port.
*/
static int
is_nfs_port(char *opts)
{
struct mnttab m;
uint_t nfs_port = 0;
struct servent sv;
char buf[256];
int got_port;
m.mnt_mntopts = opts;
/*
* Get port specified in options list, if any.
*/
got_port = nopt(&m, MNTOPT_PORT, (int *)&nfs_port);
/*
* if no port specified or it is same as NFS_PORT return nfs
* To use any other daemon the port number should be different
*/
if (!got_port || nfs_port == NFS_PORT)
return (1);
/*
* If daemon is nfsd, return nfs
*/
if (getservbyport_r(nfs_port, NULL, &sv, buf, 256) == &sv &&
strcmp(sv.s_name, "nfsd") == 0)
return (1);
/*
* daemon is not nfs
*/
return (0);
}
/*
* destroy_auth_client_handle(cl)
* destroys the created client handle
*/
void
destroy_auth_client_handle(CLIENT *cl)
{
if (cl) {
if (cl->cl_auth) {
#ifdef MALLOC_DEBUG
drop_alloc("AUTH_HANDLE", cl->cl_auth,
__FILE__, __LINE__);
#endif
AUTH_DESTROY(cl->cl_auth);
cl->cl_auth = NULL;
}
#ifdef MALLOC_DEBUG
drop_alloc("CLNT_HANDLE", cl,
__FILE__, __LINE__);
#endif
clnt_destroy(cl);
}
}
/*
* Attempt to figure out which version of NFS to use in pingnfs(). If
* the version number was specified (i.e., non-zero), then use it.
* Otherwise, default to the compiled-in default or the default as set
* by the /etc/default/nfs configuration (as read by read_default().
*/
int
set_versrange(rpcvers_t nfsvers, rpcvers_t *vers, rpcvers_t *versmin)
{
switch (nfsvers) {
case 0:
*vers = vers_max_default;
*versmin = vers_min_default;
break;
case NFS_V4:
*vers = NFS_V4;
*versmin = NFS_V4;
break;
case NFS_V3:
*vers = NFS_V3;
*versmin = NFS_V3;
break;
case NFS_VERSION:
*vers = NFS_VERSION; /* version 2 */
*versmin = NFS_VERSMIN; /* version 2 */
break;
default:
return (-1);
}
return (0);
}
#ifdef CACHE_DEBUG
/*
* trace_portmap_cache()
* traces the portmap cache values at desired points
*/
static void
trace_portmap_cache()
{
syslog(LOG_ERR, "portmap_cache: accesses=%d lookups=%d hits=%d\n",
portmap_cache_accesses, portmap_cache_lookups,
portmap_cache_hits);
}
/*
* trace_host_cache()
* traces the host cache values at desired points
*/
static void
trace_host_cache()
{
syslog(LOG_ERR,
"host_cache: accesses=%d lookups=%d deadhits=%d goodhits=%d\n",
host_cache_accesses, host_cache_lookups, deadhost_cache_hits,
goodhost_cache_hits);
}
#endif /* CACHE_DEBUG */
/*
* Read the /etc/default/nfs configuration file to determine if the
* client has been configured for a new min/max for the NFS version to
* use.
*/
#define NFS_DEFAULT_CHECK 60 /* Seconds to check for nfs default changes */
static void
read_default_nfs(void)
{
static time_t lastread = 0;
struct stat buf;
char *defval;
int errno;
int tmp;
/*
* Fail silently if we can't stat the default nfs config file
*/
if (stat(NFSADMIN, &buf))
return;
if (buf.st_mtime == lastread)
return;
/*
* Fail silently if error in opening the default nfs config file
* We'll check back in NFS_DEFAULT_CHECK seconds
*/
if ((defopen(NFSADMIN)) == 0) {
if ((defval = defread("NFS_CLIENT_VERSMIN=")) != NULL) {
errno = 0;
tmp = strtol(defval, (char **)NULL, 10);
if (errno == 0) {
vers_min_default = tmp;
}
}
if ((defval = defread("NFS_CLIENT_VERSMAX=")) != NULL) {
errno = 0;
tmp = strtol(defval, (char **)NULL, 10);
if (errno == 0) {
vers_max_default = tmp;
}
}
/* close defaults file */
defopen(NULL);
lastread = buf.st_mtime;
/*
* Quick sanity check on the values picked up from the
* defaults file. Make sure that a mistake wasn't
* made that will confuse things later on.
* If so, reset to compiled-in defaults
*/
if (vers_min_default > vers_max_default ||
vers_min_default < NFS_VERSMIN ||
vers_max_default > NFS_VERSMAX) {
if (trace > 1) {
trace_prt(1,
" read_default: version minimum/maximum incorrectly configured\n");
trace_prt(1,
" read_default: config is min=%d, max%d. Resetting to min=%d, max%d\n",
vers_min_default, vers_max_default,
NFS_VERSMIN_DEFAULT,
NFS_VERSMAX_DEFAULT);
}
vers_min_default = NFS_VERSMIN_DEFAULT;
vers_max_default = NFS_VERSMAX_DEFAULT;
}
}
}
/*
* Find the mnttab entry that corresponds to "name".
* We're not sure what the name represents: either
* a mountpoint name, or a special name (server:/path).
* Return the last entry in the file that matches.
*/
static struct extmnttab *
mnttab_find(dirname)
char *dirname;
{
FILE *fp;
struct extmnttab mnt;
struct extmnttab *res = NULL;
fp = fopen(MNTTAB, "r");
if (fp == NULL) {
if (trace > 1)
trace_prt(1, " mnttab_find: unable to open mnttab\n");
return (NULL);
}
while (getextmntent(fp, &mnt, sizeof (struct extmnttab)) == 0) {
if (strcmp(mnt.mnt_mountp, dirname) == 0 ||
strcmp(mnt.mnt_special, dirname) == 0) {
if (res)
fsfreemnttab(res);
res = fsdupmnttab(&mnt);
}
}
resetmnttab(fp);
fclose(fp);
if (res == NULL) {
if (trace > 1)
trace_prt(1, " mnttab_find: unable to find %s\n",
dirname);
}
return (res);
}
/*
* This function's behavior is taken from nfsstat.
* Trying to determine what NFS version was used for the mount.
*/
static int
is_v4_mount(char *mntpath)
{
kstat_ctl_t *kc = NULL; /* libkstat cookie */
kstat_t *ksp;
ulong_t fsid;
struct mntinfo_kstat mik;
struct extmnttab *mntp;
uint_t mnt_minor;
if ((mntp = mnttab_find(mntpath)) == NULL)
return (FALSE);
/* save the minor number and free the struct so we don't forget */
mnt_minor = mntp->mnt_minor;
fsfreemnttab(mntp);
if ((kc = kstat_open()) == NULL)
return (FALSE);
for (ksp = kc->kc_chain; ksp; ksp = ksp->ks_next) {
if (ksp->ks_type != KSTAT_TYPE_RAW)
continue;
if (strcmp(ksp->ks_module, "nfs") != 0)
continue;
if (strcmp(ksp->ks_name, "mntinfo") != 0)
continue;
if (mnt_minor != ksp->ks_instance)
continue;
if (kstat_read(kc, ksp, &mik) == -1)
continue;
(void) kstat_close(kc);
if (mik.mik_vers == 4)
return (TRUE);
else
return (FALSE);
}
(void) kstat_close(kc);
return (FALSE);
}
static int
create_homedir(const char *src, const char *dst) {
struct stat stbuf;
char *dst_username;
struct passwd *pwd, pwds;
char buf_pwd[NSS_BUFLEN_PASSWD];
int homedir_len;
int dst_dir_len;
int src_dir_len;
if (trace > 1)
trace_prt(1, "entered create_homedir\n");
if (stat(src, &stbuf) == 0) {
if (trace > 1)
trace_prt(1, "src exists\n");
return (1);
}
dst_username = strrchr(dst, '/');
if (dst_username) {
dst_username++; /* Skip over slash */
pwd = getpwnam_r(dst_username, &pwds, buf_pwd,
sizeof (buf_pwd));
if (pwd == NULL) {
return (0);
}
} else {
return (0);
}
homedir_len = strlen(pwd->pw_dir);
dst_dir_len = strlen(dst) - homedir_len;
src_dir_len = strlen(src) - homedir_len;
/* Check that the paths are in the same zone */
if (src_dir_len < dst_dir_len ||
(strncmp(dst, src, dst_dir_len) != 0)) {
if (trace > 1)
trace_prt(1, " paths don't match\n");
return (0);
}
/* Check that mountpoint is an auto_home entry */
if (dst_dir_len < 0 ||
(strcmp(pwd->pw_dir, dst + dst_dir_len) != 0)) {
return (0);
}
/* Check that source is an home directory entry */
if (src_dir_len < 0 ||
(strcmp(pwd->pw_dir, src + src_dir_len) != 0)) {
if (trace > 1)
trace_prt(1, " homedir (2) doesn't match %s\n",
src+src_dir_len);
return (0);
}
if (mkdir(src,
S_IRUSR | S_IWUSR | S_IXUSR | S_IXGRP | S_IXOTH) == -1) {
if (trace > 1) {
trace_prt(1, " Couldn't mkdir %s\n", src);
}
return (0);
}
if (chown(src, pwd->pw_uid, pwd->pw_gid) == -1) {
unlink(src);
return (0);
}
/* Created new home directory for the user */
return (1);
}
void
free_nfs_args(struct nfs_args *argp)
{
struct nfs_args *oldp;
while (argp) {
if (argp->pathconf)
free(argp->pathconf);
if (argp->knconf)
free_knconf(argp->knconf);
if (argp->addr)
netbuf_free(argp->addr);
if (argp->syncaddr)
netbuf_free(argp->syncaddr);
if (argp->netname)
free(argp->netname);
if (argp->hostname)
free(argp->hostname);
if (argp->nfs_ext_u.nfs_extB.secdata)
nfs_free_secdata(argp->nfs_ext_u.nfs_extB.secdata);
if (argp->fh)
free(argp->fh);
if (argp->nfs_ext_u.nfs_extA.secdata) {
sec_data_t *sd;
sd = argp->nfs_ext_u.nfs_extA.secdata;
if (sd == NULL)
break;
switch (sd->rpcflavor) {
case AUTH_NONE:
case AUTH_UNIX:
case AUTH_LOOPBACK:
break;
case AUTH_DES:
{
dh_k4_clntdata_t *dhk4;
dhk4 = (dh_k4_clntdata_t *)sd->data;
if (dhk4 == NULL)
break;
if (dhk4->syncaddr.buf)
free(dhk4->syncaddr.buf);
if (dhk4->knconf->knc_protofmly)
free(dhk4->knconf->knc_protofmly);
if (dhk4->knconf->knc_proto)
free(dhk4->knconf->knc_proto);
if (dhk4->knconf)
free(dhk4->knconf);
if (dhk4->netname)
free(dhk4->netname);
free(dhk4);
break;
}
case RPCSEC_GSS:
{
gss_clntdata_t *gss;
gss = (gss_clntdata_t *)sd->data;
if (gss == NULL)
break;
if (gss->mechanism.elements)
free(gss->mechanism.elements);
free(gss);
break;
}
}
}
oldp = argp;
if (argp->nfs_args_ext == NFS_ARGS_EXTB)
argp = argp->nfs_ext_u.nfs_extB.next;
else
argp = NULL;
free(oldp);
}
}
|