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
|
/*
* 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 2010 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* Copyright (c) 1983,1984,1985,1986,1987,1988,1989 AT&T.
* All Rights Reserved
*/
/*
* Copyright 2011 Nexenta Systems, Inc. All rights reserved.
*/
#include <sys/param.h>
#include <sys/types.h>
#include <sys/systm.h>
#include <sys/cred.h>
#include <sys/proc.h>
#include <sys/user.h>
#include <sys/time.h>
#include <sys/buf.h>
#include <sys/vfs.h>
#include <sys/vnode.h>
#include <sys/socket.h>
#include <sys/uio.h>
#include <sys/tiuser.h>
#include <sys/swap.h>
#include <sys/errno.h>
#include <sys/debug.h>
#include <sys/kmem.h>
#include <sys/kstat.h>
#include <sys/cmn_err.h>
#include <sys/vtrace.h>
#include <sys/session.h>
#include <sys/dnlc.h>
#include <sys/bitmap.h>
#include <sys/acl.h>
#include <sys/ddi.h>
#include <sys/pathname.h>
#include <sys/flock.h>
#include <sys/dirent.h>
#include <sys/flock.h>
#include <sys/callb.h>
#include <sys/sdt.h>
#include <vm/pvn.h>
#include <rpc/types.h>
#include <rpc/xdr.h>
#include <rpc/auth.h>
#include <rpc/rpcsec_gss.h>
#include <rpc/clnt.h>
#include <nfs/nfs.h>
#include <nfs/nfs_clnt.h>
#include <nfs/nfs_acl.h>
#include <nfs/nfs4.h>
#include <nfs/rnode4.h>
#include <nfs/nfs4_clnt.h>
/*
* The hash queues for the access to active and cached rnodes
* are organized as doubly linked lists. A reader/writer lock
* for each hash bucket is used to control access and to synchronize
* lookups, additions, and deletions from the hash queue.
*
* The rnode freelist is organized as a doubly linked list with
* a head pointer. Additions and deletions are synchronized via
* a single mutex.
*
* In order to add an rnode to the free list, it must be hashed into
* a hash queue and the exclusive lock to the hash queue be held.
* If an rnode is not hashed into a hash queue, then it is destroyed
* because it represents no valuable information that can be reused
* about the file. The exclusive lock to the hash queue must be
* held in order to prevent a lookup in the hash queue from finding
* the rnode and using it and assuming that the rnode is not on the
* freelist. The lookup in the hash queue will have the hash queue
* locked, either exclusive or shared.
*
* The vnode reference count for each rnode is not allowed to drop
* below 1. This prevents external entities, such as the VM
* subsystem, from acquiring references to vnodes already on the
* freelist and then trying to place them back on the freelist
* when their reference is released. This means that the when an
* rnode is looked up in the hash queues, then either the rnode
* is removed from the freelist and that reference is transferred to
* the new reference or the vnode reference count must be incremented
* accordingly. The mutex for the freelist must be held in order to
* accurately test to see if the rnode is on the freelist or not.
* The hash queue lock might be held shared and it is possible that
* two different threads may race to remove the rnode from the
* freelist. This race can be resolved by holding the mutex for the
* freelist. Please note that the mutex for the freelist does not
* need to be held if the rnode is not on the freelist. It can not be
* placed on the freelist due to the requirement that the thread
* putting the rnode on the freelist must hold the exclusive lock
* to the hash queue and the thread doing the lookup in the hash
* queue is holding either a shared or exclusive lock to the hash
* queue.
*
* The lock ordering is:
*
* hash bucket lock -> vnode lock
* hash bucket lock -> freelist lock -> r_statelock
*/
r4hashq_t *rtable4;
static kmutex_t rp4freelist_lock;
static rnode4_t *rp4freelist = NULL;
static long rnode4_new = 0;
int rtable4size;
static int rtable4mask;
static struct kmem_cache *rnode4_cache;
static int rnode4_hashlen = 4;
static void r4inactive(rnode4_t *, cred_t *);
static vnode_t *make_rnode4(nfs4_sharedfh_t *, r4hashq_t *, struct vfs *,
struct vnodeops *,
int (*)(vnode_t *, page_t *, u_offset_t *, size_t *, int,
cred_t *),
int *, cred_t *);
static void rp4_rmfree(rnode4_t *);
int nfs4_free_data_reclaim(rnode4_t *);
static int nfs4_active_data_reclaim(rnode4_t *);
static int nfs4_free_reclaim(void);
static int nfs4_active_reclaim(void);
static int nfs4_rnode_reclaim(void);
static void nfs4_reclaim(void *);
static int isrootfh(nfs4_sharedfh_t *, rnode4_t *);
static void uninit_rnode4(rnode4_t *);
static void destroy_rnode4(rnode4_t *);
static void r4_stub_set(rnode4_t *, nfs4_stub_type_t);
#ifdef DEBUG
static int r4_check_for_dups = 0; /* Flag to enable dup rnode detection. */
static int nfs4_rnode_debug = 0;
/* if nonzero, kmem_cache_free() rnodes rather than place on freelist */
static int nfs4_rnode_nofreelist = 0;
/* give messages on colliding shared filehandles */
static void r4_dup_check(rnode4_t *, vfs_t *);
#endif
/*
* If the vnode has pages, run the list and check for any that are
* still dangling. We call this routine before putting an rnode on
* the free list.
*/
static int
nfs4_dross_pages(vnode_t *vp)
{
page_t *pp;
kmutex_t *vphm;
vphm = page_vnode_mutex(vp);
mutex_enter(vphm);
if ((pp = vp->v_pages) != NULL) {
do {
if (pp->p_hash != PVN_VPLIST_HASH_TAG &&
pp->p_fsdata != C_NOCOMMIT) {
mutex_exit(vphm);
return (1);
}
} while ((pp = pp->p_vpnext) != vp->v_pages);
}
mutex_exit(vphm);
return (0);
}
/*
* Flush any pages left on this rnode.
*/
static void
r4flushpages(rnode4_t *rp, cred_t *cr)
{
vnode_t *vp;
int error;
/*
* Before freeing anything, wait until all asynchronous
* activity is done on this rnode. This will allow all
* asynchronous read ahead and write behind i/o's to
* finish.
*/
mutex_enter(&rp->r_statelock);
while (rp->r_count > 0)
cv_wait(&rp->r_cv, &rp->r_statelock);
mutex_exit(&rp->r_statelock);
/*
* Flush and invalidate all pages associated with the vnode.
*/
vp = RTOV4(rp);
if (nfs4_has_pages(vp)) {
ASSERT(vp->v_type != VCHR);
if ((rp->r_flags & R4DIRTY) && !rp->r_error) {
error = VOP_PUTPAGE(vp, (u_offset_t)0, 0, 0, cr, NULL);
if (error && (error == ENOSPC || error == EDQUOT)) {
mutex_enter(&rp->r_statelock);
if (!rp->r_error)
rp->r_error = error;
mutex_exit(&rp->r_statelock);
}
}
nfs4_invalidate_pages(vp, (u_offset_t)0, cr);
}
}
/*
* Free the resources associated with an rnode.
*/
static void
r4inactive(rnode4_t *rp, cred_t *cr)
{
vnode_t *vp;
char *contents;
int size;
vsecattr_t *vsp;
vnode_t *xattr;
r4flushpages(rp, cr);
vp = RTOV4(rp);
/*
* Free any held caches which may be
* associated with this rnode.
*/
mutex_enter(&rp->r_statelock);
contents = rp->r_symlink.contents;
size = rp->r_symlink.size;
rp->r_symlink.contents = NULL;
vsp = rp->r_secattr;
rp->r_secattr = NULL;
xattr = rp->r_xattr_dir;
rp->r_xattr_dir = NULL;
mutex_exit(&rp->r_statelock);
/*
* Free the access cache entries.
*/
(void) nfs4_access_purge_rp(rp);
/*
* Free the readdir cache entries.
*/
nfs4_purge_rddir_cache(vp);
/*
* Free the symbolic link cache.
*/
if (contents != NULL) {
kmem_free((void *)contents, size);
}
/*
* Free any cached ACL.
*/
if (vsp != NULL)
nfs4_acl_free_cache(vsp);
/*
* Release the cached xattr_dir
*/
if (xattr != NULL)
VN_RELE(xattr);
}
/*
* We have seen a case that the fh passed in is for "." which
* should be a VROOT node, however, the fh is different from the
* root fh stored in the mntinfo4_t. The invalid fh might be
* from a misbehaved server and will panic the client system at
* a later time. To avoid the panic, we drop the bad fh, use
* the root fh from mntinfo4_t, and print an error message
* for attention.
*/
nfs4_sharedfh_t *
badrootfh_check(nfs4_sharedfh_t *fh, nfs4_fname_t *nm, mntinfo4_t *mi,
int *wasbad)
{
char *s;
*wasbad = 0;
s = fn_name(nm);
ASSERT(strcmp(s, "..") != 0);
if ((s[0] == '.' && s[1] == '\0') && fh &&
!SFH4_SAME(mi->mi_rootfh, fh)) {
#ifdef DEBUG
nfs4_fhandle_t fhandle;
zcmn_err(mi->mi_zone->zone_id, CE_WARN,
"Server %s returns a different "
"root filehandle for the path %s:",
mi->mi_curr_serv->sv_hostname,
mi->mi_curr_serv->sv_path);
/* print the bad fh */
fhandle.fh_len = fh->sfh_fh.nfs_fh4_len;
bcopy(fh->sfh_fh.nfs_fh4_val, fhandle.fh_buf,
fhandle.fh_len);
nfs4_printfhandle(&fhandle);
/* print mi_rootfh */
fhandle.fh_len = mi->mi_rootfh->sfh_fh.nfs_fh4_len;
bcopy(mi->mi_rootfh->sfh_fh.nfs_fh4_val, fhandle.fh_buf,
fhandle.fh_len);
nfs4_printfhandle(&fhandle);
#endif
/* use mi_rootfh instead; fh will be rele by the caller */
fh = mi->mi_rootfh;
*wasbad = 1;
}
kmem_free(s, MAXNAMELEN);
return (fh);
}
void
r4_do_attrcache(vnode_t *vp, nfs4_ga_res_t *garp, int newnode,
hrtime_t t, cred_t *cr, int index)
{
int is_stub;
vattr_t *attr;
/*
* Don't add to attrcache if time overflow, but
* no need to check because either attr is null or the time
* values in it were processed by nfs4_time_ntov(), which checks
* for time overflows.
*/
attr = garp ? &garp->n4g_va : NULL;
if (attr) {
if (!newnode) {
rw_exit(&rtable4[index].r_lock);
#ifdef DEBUG
if (vp->v_type != attr->va_type &&
vp->v_type != VNON && attr->va_type != VNON) {
zcmn_err(VTOMI4(vp)->mi_zone->zone_id, CE_WARN,
"makenfs4node: type (%d) doesn't "
"match type of found node at %p (%d)",
attr->va_type, (void *)vp, vp->v_type);
}
#endif
nfs4_attr_cache(vp, garp, t, cr, TRUE, NULL);
} else {
rnode4_t *rp = VTOR4(vp);
vp->v_type = attr->va_type;
vp->v_rdev = attr->va_rdev;
/*
* Turn this object into a "stub" object if we
* crossed an underlying server fs boundary.
* To make this check, during mount we save the
* fsid of the server object being mounted.
* Here we compare this object's server fsid
* with the fsid we saved at mount. If they
* are different, we crossed server fs boundary.
*
* The stub type is set (or not) at rnode
* creation time and it never changes for life
* of the rnode.
*
* This stub will be for a mirror-mount, rather than
* a referral (the latter also sets R4SRVSTUB).
*
* The stub type is also set during RO failover,
* nfs4_remap_file().
*
* We don't bother with taking r_state_lock to
* set the stub type because this is a new rnode
* and we're holding the hash bucket r_lock RW_WRITER.
* No other thread could have obtained access
* to this rnode.
*/
is_stub = 0;
if (garp->n4g_fsid_valid) {
fattr4_fsid ga_fsid = garp->n4g_fsid;
servinfo4_t *svp = rp->r_server;
rp->r_srv_fsid = ga_fsid;
(void) nfs_rw_enter_sig(&svp->sv_lock,
RW_READER, 0);
if (!FATTR4_FSID_EQ(&ga_fsid, &svp->sv_fsid))
is_stub = 1;
nfs_rw_exit(&svp->sv_lock);
}
if (is_stub)
r4_stub_mirrormount(rp);
else
r4_stub_none(rp);
/* Can not cache partial attr */
if (attr->va_mask == AT_ALL)
nfs4_attrcache_noinval(vp, garp, t);
else
PURGE_ATTRCACHE4(vp);
rw_exit(&rtable4[index].r_lock);
}
} else {
if (newnode) {
PURGE_ATTRCACHE4(vp);
}
rw_exit(&rtable4[index].r_lock);
}
}
/*
* Find or create an rnode based primarily on filehandle. To be
* used when dvp (vnode for parent directory) is not available;
* otherwise, makenfs4node() should be used.
*
* The nfs4_fname_t argument *npp is consumed and nulled out.
*/
vnode_t *
makenfs4node_by_fh(nfs4_sharedfh_t *sfh, nfs4_sharedfh_t *psfh,
nfs4_fname_t **npp, nfs4_ga_res_t *garp,
mntinfo4_t *mi, cred_t *cr, hrtime_t t)
{
vfs_t *vfsp = mi->mi_vfsp;
int newnode = 0;
vnode_t *vp;
rnode4_t *rp;
svnode_t *svp;
nfs4_fname_t *name, *svpname;
int index;
ASSERT(npp && *npp);
name = *npp;
*npp = NULL;
index = rtable4hash(sfh);
rw_enter(&rtable4[index].r_lock, RW_READER);
vp = make_rnode4(sfh, &rtable4[index], vfsp,
nfs4_vnodeops, nfs4_putapage, &newnode, cr);
svp = VTOSV(vp);
rp = VTOR4(vp);
if (newnode) {
svp->sv_forw = svp->sv_back = svp;
svp->sv_name = name;
if (psfh != NULL)
sfh4_hold(psfh);
svp->sv_dfh = psfh;
} else {
/*
* It is possible that due to a server
* side rename fnames have changed.
* update the fname here.
*/
mutex_enter(&rp->r_svlock);
svpname = svp->sv_name;
if (svp->sv_name != name) {
svp->sv_name = name;
mutex_exit(&rp->r_svlock);
fn_rele(&svpname);
} else {
mutex_exit(&rp->r_svlock);
fn_rele(&name);
}
}
ASSERT(RW_LOCK_HELD(&rtable4[index].r_lock));
r4_do_attrcache(vp, garp, newnode, t, cr, index);
ASSERT(rw_owner(&rtable4[index].r_lock) != curthread);
return (vp);
}
/*
* Find or create a vnode for the given filehandle, filesystem, parent, and
* name. The reference to nm is consumed, so the caller must first do an
* fn_hold() if it wants to continue using nm after this call.
*/
vnode_t *
makenfs4node(nfs4_sharedfh_t *fh, nfs4_ga_res_t *garp, struct vfs *vfsp,
hrtime_t t, cred_t *cr, vnode_t *dvp, nfs4_fname_t *nm)
{
vnode_t *vp;
int newnode;
int index;
mntinfo4_t *mi = VFTOMI4(vfsp);
int had_badfh = 0;
rnode4_t *rp;
ASSERT(dvp != NULL);
fh = badrootfh_check(fh, nm, mi, &had_badfh);
index = rtable4hash(fh);
rw_enter(&rtable4[index].r_lock, RW_READER);
/*
* Note: make_rnode4() may upgrade the hash bucket lock to exclusive.
*/
vp = make_rnode4(fh, &rtable4[index], vfsp, nfs4_vnodeops,
nfs4_putapage, &newnode, cr);
rp = VTOR4(vp);
sv_activate(&vp, dvp, &nm, newnode);
if (dvp->v_flag & V_XATTRDIR) {
mutex_enter(&rp->r_statelock);
rp->r_flags |= R4ISXATTR;
mutex_exit(&rp->r_statelock);
}
/* if getting a bad file handle, do not cache the attributes. */
if (had_badfh) {
rw_exit(&rtable4[index].r_lock);
return (vp);
}
ASSERT(RW_LOCK_HELD(&rtable4[index].r_lock));
r4_do_attrcache(vp, garp, newnode, t, cr, index);
ASSERT(rw_owner(&rtable4[index].r_lock) != curthread);
return (vp);
}
/*
* Hash on address of filehandle object.
* XXX totally untuned.
*/
int
rtable4hash(nfs4_sharedfh_t *fh)
{
return (((uintptr_t)fh / sizeof (*fh)) & rtable4mask);
}
/*
* Find or create the vnode for the given filehandle and filesystem.
* *newnode is set to zero if the vnode already existed; non-zero if it had
* to be created.
*
* Note: make_rnode4() may upgrade the hash bucket lock to exclusive.
*/
static vnode_t *
make_rnode4(nfs4_sharedfh_t *fh, r4hashq_t *rhtp, struct vfs *vfsp,
struct vnodeops *vops,
int (*putapage)(vnode_t *, page_t *, u_offset_t *, size_t *, int, cred_t *),
int *newnode, cred_t *cr)
{
rnode4_t *rp;
rnode4_t *trp;
vnode_t *vp;
mntinfo4_t *mi;
ASSERT(RW_READ_HELD(&rhtp->r_lock));
mi = VFTOMI4(vfsp);
start:
if ((rp = r4find(rhtp, fh, vfsp)) != NULL) {
vp = RTOV4(rp);
*newnode = 0;
return (vp);
}
rw_exit(&rhtp->r_lock);
mutex_enter(&rp4freelist_lock);
if (rp4freelist != NULL && rnode4_new >= nrnode) {
rp = rp4freelist;
rp4_rmfree(rp);
mutex_exit(&rp4freelist_lock);
vp = RTOV4(rp);
if (rp->r_flags & R4HASHED) {
rw_enter(&rp->r_hashq->r_lock, RW_WRITER);
mutex_enter(&vp->v_lock);
if (vp->v_count > 1) {
vp->v_count--;
mutex_exit(&vp->v_lock);
rw_exit(&rp->r_hashq->r_lock);
rw_enter(&rhtp->r_lock, RW_READER);
goto start;
}
mutex_exit(&vp->v_lock);
rp4_rmhash_locked(rp);
rw_exit(&rp->r_hashq->r_lock);
}
r4inactive(rp, cr);
mutex_enter(&vp->v_lock);
if (vp->v_count > 1) {
vp->v_count--;
mutex_exit(&vp->v_lock);
rw_enter(&rhtp->r_lock, RW_READER);
goto start;
}
mutex_exit(&vp->v_lock);
vn_invalid(vp);
/*
* destroy old locks before bzero'ing and
* recreating the locks below.
*/
uninit_rnode4(rp);
/*
* Make sure that if rnode is recycled then
* VFS count is decremented properly before
* reuse.
*/
VFS_RELE(vp->v_vfsp);
vn_reinit(vp);
} else {
vnode_t *new_vp;
mutex_exit(&rp4freelist_lock);
rp = kmem_cache_alloc(rnode4_cache, KM_SLEEP);
new_vp = vn_alloc(KM_SLEEP);
atomic_add_long((ulong_t *)&rnode4_new, 1);
#ifdef DEBUG
clstat4_debug.nrnode.value.ui64++;
#endif
vp = new_vp;
}
bzero(rp, sizeof (*rp));
rp->r_vnode = vp;
nfs_rw_init(&rp->r_rwlock, NULL, RW_DEFAULT, NULL);
nfs_rw_init(&rp->r_lkserlock, NULL, RW_DEFAULT, NULL);
mutex_init(&rp->r_svlock, NULL, MUTEX_DEFAULT, NULL);
mutex_init(&rp->r_statelock, NULL, MUTEX_DEFAULT, NULL);
mutex_init(&rp->r_statev4_lock, NULL, MUTEX_DEFAULT, NULL);
mutex_init(&rp->r_os_lock, NULL, MUTEX_DEFAULT, NULL);
rp->created_v4 = 0;
list_create(&rp->r_open_streams, sizeof (nfs4_open_stream_t),
offsetof(nfs4_open_stream_t, os_node));
rp->r_lo_head.lo_prev_rnode = &rp->r_lo_head;
rp->r_lo_head.lo_next_rnode = &rp->r_lo_head;
cv_init(&rp->r_cv, NULL, CV_DEFAULT, NULL);
cv_init(&rp->r_commit.c_cv, NULL, CV_DEFAULT, NULL);
rp->r_flags = R4READDIRWATTR;
rp->r_fh = fh;
rp->r_hashq = rhtp;
sfh4_hold(rp->r_fh);
rp->r_server = mi->mi_curr_serv;
rp->r_deleg_type = OPEN_DELEGATE_NONE;
rp->r_deleg_needs_recovery = OPEN_DELEGATE_NONE;
nfs_rw_init(&rp->r_deleg_recall_lock, NULL, RW_DEFAULT, NULL);
rddir4_cache_create(rp);
rp->r_putapage = putapage;
vn_setops(vp, vops);
vp->v_data = (caddr_t)rp;
vp->v_vfsp = vfsp;
VFS_HOLD(vfsp);
vp->v_type = VNON;
vp->v_flag |= VMODSORT;
if (isrootfh(fh, rp))
vp->v_flag = VROOT;
vn_exists(vp);
/*
* There is a race condition if someone else
* alloc's the rnode while no locks are held, so we
* check again and recover if found.
*/
rw_enter(&rhtp->r_lock, RW_WRITER);
if ((trp = r4find(rhtp, fh, vfsp)) != NULL) {
vp = RTOV4(trp);
*newnode = 0;
rw_exit(&rhtp->r_lock);
rp4_addfree(rp, cr);
rw_enter(&rhtp->r_lock, RW_READER);
return (vp);
}
rp4_addhash(rp);
*newnode = 1;
return (vp);
}
static void
uninit_rnode4(rnode4_t *rp)
{
vnode_t *vp = RTOV4(rp);
ASSERT(rp != NULL);
ASSERT(vp != NULL);
ASSERT(vp->v_count == 1);
ASSERT(rp->r_count == 0);
ASSERT(rp->r_mapcnt == 0);
if (rp->r_flags & R4LODANGLERS) {
nfs4_flush_lock_owners(rp);
}
ASSERT(rp->r_lo_head.lo_next_rnode == &rp->r_lo_head);
ASSERT(rp->r_lo_head.lo_prev_rnode == &rp->r_lo_head);
ASSERT(!(rp->r_flags & R4HASHED));
ASSERT(rp->r_freef == NULL && rp->r_freeb == NULL);
nfs4_clear_open_streams(rp);
list_destroy(&rp->r_open_streams);
/*
* Destroy the rddir cache first since we need to grab the r_statelock.
*/
mutex_enter(&rp->r_statelock);
rddir4_cache_destroy(rp);
mutex_exit(&rp->r_statelock);
sv_uninit(&rp->r_svnode);
sfh4_rele(&rp->r_fh);
nfs_rw_destroy(&rp->r_rwlock);
nfs_rw_destroy(&rp->r_lkserlock);
mutex_destroy(&rp->r_statelock);
mutex_destroy(&rp->r_statev4_lock);
mutex_destroy(&rp->r_os_lock);
cv_destroy(&rp->r_cv);
cv_destroy(&rp->r_commit.c_cv);
nfs_rw_destroy(&rp->r_deleg_recall_lock);
if (rp->r_flags & R4DELMAPLIST)
list_destroy(&rp->r_indelmap);
}
/*
* Put an rnode on the free list.
*
* Rnodes which were allocated above and beyond the normal limit
* are immediately freed.
*/
void
rp4_addfree(rnode4_t *rp, cred_t *cr)
{
vnode_t *vp;
vnode_t *xattr;
struct vfs *vfsp;
vp = RTOV4(rp);
ASSERT(vp->v_count >= 1);
ASSERT(rp->r_freef == NULL && rp->r_freeb == NULL);
/*
* If we have too many rnodes allocated and there are no
* references to this rnode, or if the rnode is no longer
* accessible by it does not reside in the hash queues,
* or if an i/o error occurred while writing to the file,
* then just free it instead of putting it on the rnode
* freelist.
*/
vfsp = vp->v_vfsp;
if (((rnode4_new > nrnode || !(rp->r_flags & R4HASHED) ||
#ifdef DEBUG
(nfs4_rnode_nofreelist != 0) ||
#endif
rp->r_error || (rp->r_flags & R4RECOVERR) ||
(vfsp->vfs_flag & VFS_UNMOUNTED)) && rp->r_count == 0)) {
if (rp->r_flags & R4HASHED) {
rw_enter(&rp->r_hashq->r_lock, RW_WRITER);
mutex_enter(&vp->v_lock);
if (vp->v_count > 1) {
vp->v_count--;
mutex_exit(&vp->v_lock);
rw_exit(&rp->r_hashq->r_lock);
return;
}
mutex_exit(&vp->v_lock);
rp4_rmhash_locked(rp);
rw_exit(&rp->r_hashq->r_lock);
}
/*
* Make sure we don't have a delegation on this rnode
* before destroying it.
*/
if (rp->r_deleg_type != OPEN_DELEGATE_NONE) {
(void) nfs4delegreturn(rp,
NFS4_DR_FORCE|NFS4_DR_PUSH|NFS4_DR_REOPEN);
}
r4inactive(rp, cr);
/*
* Recheck the vnode reference count. We need to
* make sure that another reference has not been
* acquired while we were not holding v_lock. The
* rnode is not in the rnode hash queues; one
* way for a reference to have been acquired
* is for a VOP_PUTPAGE because the rnode was marked
* with R4DIRTY or for a modified page. This
* reference may have been acquired before our call
* to r4inactive. The i/o may have been completed,
* thus allowing r4inactive to complete, but the
* reference to the vnode may not have been released
* yet. In any case, the rnode can not be destroyed
* until the other references to this vnode have been
* released. The other references will take care of
* either destroying the rnode or placing it on the
* rnode freelist. If there are no other references,
* then the rnode may be safely destroyed.
*/
mutex_enter(&vp->v_lock);
if (vp->v_count > 1) {
vp->v_count--;
mutex_exit(&vp->v_lock);
return;
}
mutex_exit(&vp->v_lock);
destroy_rnode4(rp);
return;
}
/*
* Lock the hash queue and then recheck the reference count
* to ensure that no other threads have acquired a reference
* to indicate that the rnode should not be placed on the
* freelist. If another reference has been acquired, then
* just release this one and let the other thread complete
* the processing of adding this rnode to the freelist.
*/
again:
rw_enter(&rp->r_hashq->r_lock, RW_WRITER);
mutex_enter(&vp->v_lock);
if (vp->v_count > 1) {
vp->v_count--;
mutex_exit(&vp->v_lock);
rw_exit(&rp->r_hashq->r_lock);
return;
}
mutex_exit(&vp->v_lock);
/*
* Make sure we don't put an rnode with a delegation
* on the free list.
*/
if (rp->r_deleg_type != OPEN_DELEGATE_NONE) {
rw_exit(&rp->r_hashq->r_lock);
(void) nfs4delegreturn(rp,
NFS4_DR_FORCE|NFS4_DR_PUSH|NFS4_DR_REOPEN);
goto again;
}
/*
* Now that we have the hash queue lock, and we know there
* are not anymore references on the vnode, check to make
* sure there aren't any open streams still on the rnode.
* If so, drop the hash queue lock, remove the open streams,
* and recheck the v_count.
*/
mutex_enter(&rp->r_os_lock);
if (list_head(&rp->r_open_streams) != NULL) {
mutex_exit(&rp->r_os_lock);
rw_exit(&rp->r_hashq->r_lock);
if (nfs_zone() != VTOMI4(vp)->mi_zone)
nfs4_clear_open_streams(rp);
else
(void) nfs4close_all(vp, cr);
goto again;
}
mutex_exit(&rp->r_os_lock);
/*
* Before we put it on the freelist, make sure there are no pages.
* If there are, flush and commit of all of the dirty and
* uncommitted pages, assuming the file system isn't read only.
*/
if (!(vp->v_vfsp->vfs_flag & VFS_RDONLY) && nfs4_dross_pages(vp)) {
rw_exit(&rp->r_hashq->r_lock);
r4flushpages(rp, cr);
goto again;
}
/*
* Before we put it on the freelist, make sure there is no
* active xattr directory cached, the freelist will not
* have its entries r4inactive'd if there is still an active
* rnode, thus nothing in the freelist can hold another
* rnode active.
*/
xattr = rp->r_xattr_dir;
rp->r_xattr_dir = NULL;
/*
* If there is no cached data or metadata for this file, then
* put the rnode on the front of the freelist so that it will
* be reused before other rnodes which may have cached data or
* metadata associated with them.
*/
mutex_enter(&rp4freelist_lock);
if (rp4freelist == NULL) {
rp->r_freef = rp;
rp->r_freeb = rp;
rp4freelist = rp;
} else {
rp->r_freef = rp4freelist;
rp->r_freeb = rp4freelist->r_freeb;
rp4freelist->r_freeb->r_freef = rp;
rp4freelist->r_freeb = rp;
if (!nfs4_has_pages(vp) && rp->r_dir == NULL &&
rp->r_symlink.contents == NULL && rp->r_secattr == NULL)
rp4freelist = rp;
}
mutex_exit(&rp4freelist_lock);
rw_exit(&rp->r_hashq->r_lock);
if (xattr)
VN_RELE(xattr);
}
/*
* Remove an rnode from the free list.
*
* The caller must be holding rp4freelist_lock and the rnode
* must be on the freelist.
*/
static void
rp4_rmfree(rnode4_t *rp)
{
ASSERT(MUTEX_HELD(&rp4freelist_lock));
ASSERT(rp->r_freef != NULL && rp->r_freeb != NULL);
if (rp == rp4freelist) {
rp4freelist = rp->r_freef;
if (rp == rp4freelist)
rp4freelist = NULL;
}
rp->r_freeb->r_freef = rp->r_freef;
rp->r_freef->r_freeb = rp->r_freeb;
rp->r_freef = rp->r_freeb = NULL;
}
/*
* Put a rnode in the hash table.
*
* The caller must be holding the exclusive hash queue lock
*/
void
rp4_addhash(rnode4_t *rp)
{
ASSERT(RW_WRITE_HELD(&rp->r_hashq->r_lock));
ASSERT(!(rp->r_flags & R4HASHED));
#ifdef DEBUG
r4_dup_check(rp, RTOV4(rp)->v_vfsp);
#endif
rp->r_hashf = rp->r_hashq->r_hashf;
rp->r_hashq->r_hashf = rp;
rp->r_hashb = (rnode4_t *)rp->r_hashq;
rp->r_hashf->r_hashb = rp;
mutex_enter(&rp->r_statelock);
rp->r_flags |= R4HASHED;
mutex_exit(&rp->r_statelock);
}
/*
* Remove a rnode from the hash table.
*
* The caller must be holding the hash queue lock.
*/
void
rp4_rmhash_locked(rnode4_t *rp)
{
ASSERT(RW_WRITE_HELD(&rp->r_hashq->r_lock));
ASSERT(rp->r_flags & R4HASHED);
rp->r_hashb->r_hashf = rp->r_hashf;
rp->r_hashf->r_hashb = rp->r_hashb;
mutex_enter(&rp->r_statelock);
rp->r_flags &= ~R4HASHED;
mutex_exit(&rp->r_statelock);
}
/*
* Remove a rnode from the hash table.
*
* The caller must not be holding the hash queue lock.
*/
void
rp4_rmhash(rnode4_t *rp)
{
rw_enter(&rp->r_hashq->r_lock, RW_WRITER);
rp4_rmhash_locked(rp);
rw_exit(&rp->r_hashq->r_lock);
}
/*
* Lookup a rnode by fhandle. Ignores rnodes that had failed recovery.
* Returns NULL if no match. If an rnode is returned, the reference count
* on the master vnode is incremented.
*
* The caller must be holding the hash queue lock, either shared or exclusive.
*/
rnode4_t *
r4find(r4hashq_t *rhtp, nfs4_sharedfh_t *fh, struct vfs *vfsp)
{
rnode4_t *rp;
vnode_t *vp;
ASSERT(RW_LOCK_HELD(&rhtp->r_lock));
for (rp = rhtp->r_hashf; rp != (rnode4_t *)rhtp; rp = rp->r_hashf) {
vp = RTOV4(rp);
if (vp->v_vfsp == vfsp && SFH4_SAME(rp->r_fh, fh)) {
mutex_enter(&rp->r_statelock);
if (rp->r_flags & R4RECOVERR) {
mutex_exit(&rp->r_statelock);
continue;
}
mutex_exit(&rp->r_statelock);
#ifdef DEBUG
r4_dup_check(rp, vfsp);
#endif
if (rp->r_freef != NULL) {
mutex_enter(&rp4freelist_lock);
/*
* If the rnode is on the freelist,
* then remove it and use that reference
* as the new reference. Otherwise,
* need to increment the reference count.
*/
if (rp->r_freef != NULL) {
rp4_rmfree(rp);
mutex_exit(&rp4freelist_lock);
} else {
mutex_exit(&rp4freelist_lock);
VN_HOLD(vp);
}
} else
VN_HOLD(vp);
/*
* if root vnode, set v_flag to indicate that
*/
if (isrootfh(fh, rp)) {
if (!(vp->v_flag & VROOT)) {
mutex_enter(&vp->v_lock);
vp->v_flag |= VROOT;
mutex_exit(&vp->v_lock);
}
}
return (rp);
}
}
return (NULL);
}
/*
* Lookup an rnode by fhandle. Just a wrapper for r4find()
* that assumes the caller hasn't already got the lock
* on the hash bucket.
*/
rnode4_t *
r4find_unlocked(nfs4_sharedfh_t *fh, struct vfs *vfsp)
{
rnode4_t *rp;
int index;
index = rtable4hash(fh);
rw_enter(&rtable4[index].r_lock, RW_READER);
rp = r4find(&rtable4[index], fh, vfsp);
rw_exit(&rtable4[index].r_lock);
return (rp);
}
/*
* Return >0 if there is a active vnode belonging to this vfs in the
* rtable4 cache.
*
* Several of these checks are done without holding the usual
* locks. This is safe because destroy_rtable(), rp_addfree(),
* etc. will redo the necessary checks before actually destroying
* any rnodes.
*/
int
check_rtable4(struct vfs *vfsp)
{
rnode4_t *rp;
vnode_t *vp;
int busy = NFSV4_RTABLE4_OK;
int index;
for (index = 0; index < rtable4size; index++) {
rw_enter(&rtable4[index].r_lock, RW_READER);
for (rp = rtable4[index].r_hashf;
rp != (rnode4_t *)(&rtable4[index]);
rp = rp->r_hashf) {
vp = RTOV4(rp);
if (vp->v_vfsp == vfsp) {
if (rp->r_freef == NULL) {
busy = NFSV4_RTABLE4_NOT_FREE_LIST;
} else if (nfs4_has_pages(vp) &&
(rp->r_flags & R4DIRTY)) {
busy = NFSV4_RTABLE4_DIRTY_PAGES;
} else if (rp->r_count > 0) {
busy = NFSV4_RTABLE4_POS_R_COUNT;
}
if (busy != NFSV4_RTABLE4_OK) {
#ifdef DEBUG
char *path;
path = fn_path(rp->r_svnode.sv_name);
DTRACE_NFSV4_3(rnode__e__debug,
int, busy, char *, path,
rnode4_t *, rp);
kmem_free(path, strlen(path)+1);
#endif
rw_exit(&rtable4[index].r_lock);
return (busy);
}
}
}
rw_exit(&rtable4[index].r_lock);
}
return (busy);
}
/*
* Destroy inactive vnodes from the hash queues which
* belong to this vfs. All of the vnodes should be inactive.
* It is essential that we destroy all rnodes in case of
* forced unmount as well as in normal unmount case.
*/
void
destroy_rtable4(struct vfs *vfsp, cred_t *cr)
{
int index;
vnode_t *vp;
rnode4_t *rp, *r_hashf, *rlist;
rlist = NULL;
for (index = 0; index < rtable4size; index++) {
rw_enter(&rtable4[index].r_lock, RW_WRITER);
for (rp = rtable4[index].r_hashf;
rp != (rnode4_t *)(&rtable4[index]);
rp = r_hashf) {
/* save the hash pointer before destroying */
r_hashf = rp->r_hashf;
vp = RTOV4(rp);
if (vp->v_vfsp == vfsp) {
mutex_enter(&rp4freelist_lock);
if (rp->r_freef != NULL) {
rp4_rmfree(rp);
mutex_exit(&rp4freelist_lock);
rp4_rmhash_locked(rp);
rp->r_hashf = rlist;
rlist = rp;
} else
mutex_exit(&rp4freelist_lock);
}
}
rw_exit(&rtable4[index].r_lock);
}
for (rp = rlist; rp != NULL; rp = r_hashf) {
r_hashf = rp->r_hashf;
/*
* This call to rp4_addfree will end up destroying the
* rnode, but in a safe way with the appropriate set
* of checks done.
*/
rp4_addfree(rp, cr);
}
}
/*
* This routine destroys all the resources of an rnode
* and finally the rnode itself.
*/
static void
destroy_rnode4(rnode4_t *rp)
{
vnode_t *vp;
vfs_t *vfsp;
ASSERT(rp->r_deleg_type == OPEN_DELEGATE_NONE);
vp = RTOV4(rp);
vfsp = vp->v_vfsp;
uninit_rnode4(rp);
atomic_add_long((ulong_t *)&rnode4_new, -1);
#ifdef DEBUG
clstat4_debug.nrnode.value.ui64--;
#endif
kmem_cache_free(rnode4_cache, rp);
vn_invalid(vp);
vn_free(vp);
VFS_RELE(vfsp);
}
/*
* Invalidate the attributes on all rnodes forcing the next getattr
* to go over the wire. Used to flush stale uid and gid mappings.
* Maybe done on a per vfsp, or all rnodes (vfsp == NULL)
*/
void
nfs4_rnode_invalidate(struct vfs *vfsp)
{
int index;
rnode4_t *rp;
vnode_t *vp;
/*
* Walk the hash queues looking for rnodes.
*/
for (index = 0; index < rtable4size; index++) {
rw_enter(&rtable4[index].r_lock, RW_READER);
for (rp = rtable4[index].r_hashf;
rp != (rnode4_t *)(&rtable4[index]);
rp = rp->r_hashf) {
vp = RTOV4(rp);
if (vfsp != NULL && vp->v_vfsp != vfsp)
continue;
if (!mutex_tryenter(&rp->r_statelock))
continue;
/*
* Expire the attributes by resetting the change
* and attr timeout.
*/
rp->r_change = 0;
PURGE_ATTRCACHE4_LOCKED(rp);
mutex_exit(&rp->r_statelock);
}
rw_exit(&rtable4[index].r_lock);
}
}
/*
* Flush all vnodes in this (or every) vfs.
* Used by nfs_sync and by nfs_unmount.
*/
void
r4flush(struct vfs *vfsp, cred_t *cr)
{
int index;
rnode4_t *rp;
vnode_t *vp, **vplist;
long num, cnt;
/*
* Check to see whether there is anything to do.
*/
num = rnode4_new;
if (num == 0)
return;
/*
* Allocate a slot for all currently active rnodes on the
* supposition that they all may need flushing.
*/
vplist = kmem_alloc(num * sizeof (*vplist), KM_SLEEP);
cnt = 0;
/*
* Walk the hash queues looking for rnodes with page
* lists associated with them. Make a list of these
* files.
*/
for (index = 0; index < rtable4size; index++) {
rw_enter(&rtable4[index].r_lock, RW_READER);
for (rp = rtable4[index].r_hashf;
rp != (rnode4_t *)(&rtable4[index]);
rp = rp->r_hashf) {
vp = RTOV4(rp);
/*
* Don't bother sync'ing a vp if it
* is part of virtual swap device or
* if VFS is read-only
*/
if (IS_SWAPVP(vp) || vn_is_readonly(vp))
continue;
/*
* If flushing all mounted file systems or
* the vnode belongs to this vfs, has pages
* and is marked as either dirty or mmap'd,
* hold and add this vnode to the list of
* vnodes to flush.
*/
if ((vfsp == NULL || vp->v_vfsp == vfsp) &&
nfs4_has_pages(vp) &&
((rp->r_flags & R4DIRTY) || rp->r_mapcnt > 0)) {
VN_HOLD(vp);
vplist[cnt++] = vp;
if (cnt == num) {
rw_exit(&rtable4[index].r_lock);
goto toomany;
}
}
}
rw_exit(&rtable4[index].r_lock);
}
toomany:
/*
* Flush and release all of the files on the list.
*/
while (cnt-- > 0) {
vp = vplist[cnt];
(void) VOP_PUTPAGE(vp, (u_offset_t)0, 0, B_ASYNC, cr, NULL);
VN_RELE(vp);
}
/*
* Free the space allocated to hold the list.
*/
kmem_free(vplist, num * sizeof (*vplist));
}
int
nfs4_free_data_reclaim(rnode4_t *rp)
{
char *contents;
vnode_t *xattr;
int size;
vsecattr_t *vsp;
int freed;
bool_t rdc = FALSE;
/*
* Free any held caches which may
* be associated with this rnode.
*/
mutex_enter(&rp->r_statelock);
if (rp->r_dir != NULL)
rdc = TRUE;
contents = rp->r_symlink.contents;
size = rp->r_symlink.size;
rp->r_symlink.contents = NULL;
vsp = rp->r_secattr;
rp->r_secattr = NULL;
xattr = rp->r_xattr_dir;
rp->r_xattr_dir = NULL;
mutex_exit(&rp->r_statelock);
/*
* Free the access cache entries.
*/
freed = nfs4_access_purge_rp(rp);
if (rdc == FALSE && contents == NULL && vsp == NULL && xattr == NULL)
return (freed);
/*
* Free the readdir cache entries, incompletely if we can't block.
*/
nfs4_purge_rddir_cache(RTOV4(rp));
/*
* Free the symbolic link cache.
*/
if (contents != NULL) {
kmem_free((void *)contents, size);
}
/*
* Free any cached ACL.
*/
if (vsp != NULL)
nfs4_acl_free_cache(vsp);
/*
* Release the xattr directory vnode
*/
if (xattr != NULL)
VN_RELE(xattr);
return (1);
}
static int
nfs4_active_data_reclaim(rnode4_t *rp)
{
char *contents;
vnode_t *xattr = NULL;
int size;
vsecattr_t *vsp;
int freed;
bool_t rdc = FALSE;
/*
* Free any held credentials and caches which
* may be associated with this rnode.
*/
if (!mutex_tryenter(&rp->r_statelock))
return (0);
contents = rp->r_symlink.contents;
size = rp->r_symlink.size;
rp->r_symlink.contents = NULL;
vsp = rp->r_secattr;
rp->r_secattr = NULL;
if (rp->r_dir != NULL)
rdc = TRUE;
/*
* To avoid a deadlock, do not free r_xattr_dir cache if it is hashed
* on the same r_hashq queue. We are not mandated to free all caches.
* VN_RELE(rp->r_xattr_dir) will be done sometime later - e.g. when the
* rnode 'rp' is freed or put on the free list.
*
* We will retain NFS4_XATTR_DIR_NOTSUPP because:
* - it has no associated rnode4_t (its v_data is NULL),
* - it is preallocated statically and will never go away,
* so we cannot save anything by releasing it.
*/
if (rp->r_xattr_dir && rp->r_xattr_dir != NFS4_XATTR_DIR_NOTSUPP &&
VTOR4(rp->r_xattr_dir)->r_hashq != rp->r_hashq) {
xattr = rp->r_xattr_dir;
rp->r_xattr_dir = NULL;
}
mutex_exit(&rp->r_statelock);
/*
* Free the access cache entries.
*/
freed = nfs4_access_purge_rp(rp);
if (contents == NULL && vsp == NULL && rdc == FALSE && xattr == NULL)
return (freed);
/*
* Free the symbolic link cache.
*/
if (contents != NULL) {
kmem_free((void *)contents, size);
}
/*
* Free any cached ACL.
*/
if (vsp != NULL)
nfs4_acl_free_cache(vsp);
nfs4_purge_rddir_cache(RTOV4(rp));
/*
* Release the xattr directory vnode
*/
if (xattr != NULL)
VN_RELE(xattr);
return (1);
}
static int
nfs4_free_reclaim(void)
{
int freed;
rnode4_t *rp;
#ifdef DEBUG
clstat4_debug.f_reclaim.value.ui64++;
#endif
freed = 0;
mutex_enter(&rp4freelist_lock);
rp = rp4freelist;
if (rp != NULL) {
do {
if (nfs4_free_data_reclaim(rp))
freed = 1;
} while ((rp = rp->r_freef) != rp4freelist);
}
mutex_exit(&rp4freelist_lock);
return (freed);
}
static int
nfs4_active_reclaim(void)
{
int freed;
int index;
rnode4_t *rp;
#ifdef DEBUG
clstat4_debug.a_reclaim.value.ui64++;
#endif
freed = 0;
for (index = 0; index < rtable4size; index++) {
rw_enter(&rtable4[index].r_lock, RW_READER);
for (rp = rtable4[index].r_hashf;
rp != (rnode4_t *)(&rtable4[index]);
rp = rp->r_hashf) {
if (nfs4_active_data_reclaim(rp))
freed = 1;
}
rw_exit(&rtable4[index].r_lock);
}
return (freed);
}
static int
nfs4_rnode_reclaim(void)
{
int freed;
rnode4_t *rp;
vnode_t *vp;
#ifdef DEBUG
clstat4_debug.r_reclaim.value.ui64++;
#endif
freed = 0;
mutex_enter(&rp4freelist_lock);
while ((rp = rp4freelist) != NULL) {
rp4_rmfree(rp);
mutex_exit(&rp4freelist_lock);
if (rp->r_flags & R4HASHED) {
vp = RTOV4(rp);
rw_enter(&rp->r_hashq->r_lock, RW_WRITER);
mutex_enter(&vp->v_lock);
if (vp->v_count > 1) {
vp->v_count--;
mutex_exit(&vp->v_lock);
rw_exit(&rp->r_hashq->r_lock);
mutex_enter(&rp4freelist_lock);
continue;
}
mutex_exit(&vp->v_lock);
rp4_rmhash_locked(rp);
rw_exit(&rp->r_hashq->r_lock);
}
/*
* This call to rp_addfree will end up destroying the
* rnode, but in a safe way with the appropriate set
* of checks done.
*/
rp4_addfree(rp, CRED());
mutex_enter(&rp4freelist_lock);
}
mutex_exit(&rp4freelist_lock);
return (freed);
}
/*ARGSUSED*/
static void
nfs4_reclaim(void *cdrarg)
{
#ifdef DEBUG
clstat4_debug.reclaim.value.ui64++;
#endif
if (nfs4_free_reclaim())
return;
if (nfs4_active_reclaim())
return;
(void) nfs4_rnode_reclaim();
}
/*
* Returns the clientid4 to use for the given mntinfo4. Note that the
* clientid can change if the caller drops mi_recovlock.
*/
clientid4
mi2clientid(mntinfo4_t *mi)
{
nfs4_server_t *sp;
clientid4 clientid = 0;
/* this locks down sp if it is found */
sp = find_nfs4_server(mi);
if (sp != NULL) {
clientid = sp->clientid;
mutex_exit(&sp->s_lock);
nfs4_server_rele(sp);
}
return (clientid);
}
/*
* Return the current lease time for the server associated with the given
* file. Note that the lease time could change immediately after this
* call.
*/
time_t
r2lease_time(rnode4_t *rp)
{
nfs4_server_t *sp;
time_t lease_time;
mntinfo4_t *mi = VTOMI4(RTOV4(rp));
(void) nfs_rw_enter_sig(&mi->mi_recovlock, RW_READER, 0);
/* this locks down sp if it is found */
sp = find_nfs4_server(VTOMI4(RTOV4(rp)));
if (VTOMI4(RTOV4(rp))->mi_vfsp->vfs_flag & VFS_UNMOUNTED) {
if (sp != NULL) {
mutex_exit(&sp->s_lock);
nfs4_server_rele(sp);
}
nfs_rw_exit(&mi->mi_recovlock);
return (1); /* 1 second */
}
ASSERT(sp != NULL);
lease_time = sp->s_lease_time;
mutex_exit(&sp->s_lock);
nfs4_server_rele(sp);
nfs_rw_exit(&mi->mi_recovlock);
return (lease_time);
}
/*
* Return a list with information about all the known open instances for
* a filesystem. The caller must call r4releopenlist() when done with the
* list.
*
* We are safe at looking at os_valid and os_pending_close across dropping
* the 'os_sync_lock' to count up the number of open streams and then
* allocate memory for the osp list due to:
* -Looking at os_pending_close is safe since this routine is
* only called via recovery, and os_pending_close can only be set via
* a non-recovery operation (which are all blocked when recovery
* is active).
*
* -Examining os_valid is safe since non-recovery operations, which
* could potentially switch os_valid to 0, are blocked (via
* nfs4_start_fop) and recovery is single-threaded per mntinfo4_t
* (which means we are the only recovery thread potentially acting
* on this open stream).
*/
nfs4_opinst_t *
r4mkopenlist(mntinfo4_t *mi)
{
nfs4_opinst_t *reopenlist, *rep;
rnode4_t *rp;
vnode_t *vp;
vfs_t *vfsp = mi->mi_vfsp;
int numosp;
nfs4_open_stream_t *osp;
int index;
open_delegation_type4 dtype;
int hold_vnode;
reopenlist = NULL;
for (index = 0; index < rtable4size; index++) {
rw_enter(&rtable4[index].r_lock, RW_READER);
for (rp = rtable4[index].r_hashf;
rp != (rnode4_t *)(&rtable4[index]);
rp = rp->r_hashf) {
vp = RTOV4(rp);
if (vp->v_vfsp != vfsp)
continue;
hold_vnode = 0;
mutex_enter(&rp->r_os_lock);
/* Count the number of valid open_streams of the file */
numosp = 0;
for (osp = list_head(&rp->r_open_streams); osp != NULL;
osp = list_next(&rp->r_open_streams, osp)) {
mutex_enter(&osp->os_sync_lock);
if (osp->os_valid && !osp->os_pending_close)
numosp++;
mutex_exit(&osp->os_sync_lock);
}
/* Fill in the valid open streams per vp */
if (numosp > 0) {
int j;
hold_vnode = 1;
/*
* Add a new open instance to the list
*/
rep = kmem_zalloc(sizeof (*reopenlist),
KM_SLEEP);
rep->re_next = reopenlist;
reopenlist = rep;
rep->re_vp = vp;
rep->re_osp = kmem_zalloc(
numosp * sizeof (*(rep->re_osp)),
KM_SLEEP);
rep->re_numosp = numosp;
j = 0;
for (osp = list_head(&rp->r_open_streams);
osp != NULL;
osp = list_next(&rp->r_open_streams, osp)) {
mutex_enter(&osp->os_sync_lock);
if (osp->os_valid &&
!osp->os_pending_close) {
osp->os_ref_count++;
rep->re_osp[j] = osp;
j++;
}
mutex_exit(&osp->os_sync_lock);
}
/*
* Assuming valid osp(s) stays valid between
* the time obtaining j and numosp.
*/
ASSERT(j == numosp);
}
mutex_exit(&rp->r_os_lock);
/* do this here to keep v_lock > r_os_lock */
if (hold_vnode)
VN_HOLD(vp);
mutex_enter(&rp->r_statev4_lock);
if (rp->r_deleg_type != OPEN_DELEGATE_NONE) {
/*
* If this rnode holds a delegation,
* but if there are no valid open streams,
* then just discard the delegation
* without doing delegreturn.
*/
if (numosp > 0)
rp->r_deleg_needs_recovery =
rp->r_deleg_type;
}
/* Save the delegation type for use outside the lock */
dtype = rp->r_deleg_type;
mutex_exit(&rp->r_statev4_lock);
/*
* If we have a delegation then get rid of it.
* We've set rp->r_deleg_needs_recovery so we have
* enough information to recover.
*/
if (dtype != OPEN_DELEGATE_NONE) {
(void) nfs4delegreturn(rp, NFS4_DR_DISCARD);
}
}
rw_exit(&rtable4[index].r_lock);
}
return (reopenlist);
}
/*
* Given a filesystem id, check to see if any rnodes
* within this fsid reside in the rnode cache, other
* than one we know about.
*
* Return 1 if an rnode is found, 0 otherwise
*/
int
r4find_by_fsid(mntinfo4_t *mi, fattr4_fsid *moved_fsid)
{
rnode4_t *rp;
vnode_t *vp;
vfs_t *vfsp = mi->mi_vfsp;
fattr4_fsid *fsid;
int index, found = 0;
for (index = 0; index < rtable4size; index++) {
rw_enter(&rtable4[index].r_lock, RW_READER);
for (rp = rtable4[index].r_hashf;
rp != (rnode4_t *)(&rtable4[index]);
rp = rp->r_hashf) {
vp = RTOV4(rp);
if (vp->v_vfsp != vfsp)
continue;
/*
* XXX there might be a case where a
* replicated fs may have the same fsid
* across two different servers. This
* check isn't good enough in that case
*/
fsid = &rp->r_srv_fsid;
if (FATTR4_FSID_EQ(moved_fsid, fsid)) {
found = 1;
break;
}
}
rw_exit(&rtable4[index].r_lock);
if (found)
break;
}
return (found);
}
/*
* Release the list of open instance references.
*/
void
r4releopenlist(nfs4_opinst_t *reopenp)
{
nfs4_opinst_t *rep, *next;
int i;
for (rep = reopenp; rep; rep = next) {
next = rep->re_next;
for (i = 0; i < rep->re_numosp; i++)
open_stream_rele(rep->re_osp[i], VTOR4(rep->re_vp));
VN_RELE(rep->re_vp);
kmem_free(rep->re_osp,
rep->re_numosp * sizeof (*(rep->re_osp)));
kmem_free(rep, sizeof (*rep));
}
}
int
nfs4_rnode_init(void)
{
ulong_t nrnode4_max;
int i;
/*
* Compute the size of the rnode4 hash table
*/
if (nrnode <= 0)
nrnode = ncsize;
nrnode4_max =
(ulong_t)((kmem_maxavail() >> 2) / sizeof (struct rnode4));
if (nrnode > nrnode4_max || (nrnode == 0 && ncsize == 0)) {
zcmn_err(GLOBAL_ZONEID, CE_NOTE,
"!setting nrnode to max value of %ld", nrnode4_max);
nrnode = nrnode4_max;
}
rtable4size = 1 << highbit(nrnode / rnode4_hashlen);
rtable4mask = rtable4size - 1;
/*
* Allocate and initialize the hash buckets
*/
rtable4 = kmem_alloc(rtable4size * sizeof (*rtable4), KM_SLEEP);
for (i = 0; i < rtable4size; i++) {
rtable4[i].r_hashf = (rnode4_t *)(&rtable4[i]);
rtable4[i].r_hashb = (rnode4_t *)(&rtable4[i]);
rw_init(&rtable4[i].r_lock, NULL, RW_DEFAULT, NULL);
}
rnode4_cache = kmem_cache_create("rnode4_cache", sizeof (rnode4_t),
0, NULL, NULL, nfs4_reclaim, NULL, NULL, 0);
return (0);
}
int
nfs4_rnode_fini(void)
{
int i;
/*
* Deallocate the rnode hash queues
*/
kmem_cache_destroy(rnode4_cache);
for (i = 0; i < rtable4size; i++)
rw_destroy(&rtable4[i].r_lock);
kmem_free(rtable4, rtable4size * sizeof (*rtable4));
return (0);
}
/*
* Return non-zero if the given filehandle refers to the root filehandle
* for the given rnode.
*/
static int
isrootfh(nfs4_sharedfh_t *fh, rnode4_t *rp)
{
int isroot;
isroot = 0;
if (SFH4_SAME(VTOMI4(RTOV4(rp))->mi_rootfh, fh))
isroot = 1;
return (isroot);
}
/*
* The r4_stub_* routines assume that the rnode is newly activated, and
* that the caller either holds the hash bucket r_lock for this rnode as
* RW_WRITER, or holds r_statelock.
*/
static void
r4_stub_set(rnode4_t *rp, nfs4_stub_type_t type)
{
vnode_t *vp = RTOV4(rp);
krwlock_t *hash_lock = &rp->r_hashq->r_lock;
ASSERT(RW_WRITE_HELD(hash_lock) || MUTEX_HELD(&rp->r_statelock));
rp->r_stub_type = type;
/*
* Safely switch this vnode to the trigger vnodeops.
*
* Currently, we don't ever switch a trigger vnode back to using
* "regular" v4 vnodeops. NFS4_STUB_NONE is only used to note that
* a new v4 object is not a trigger, and it will already have the
* correct v4 vnodeops by default. So, no "else" case required here.
*/
if (type != NFS4_STUB_NONE)
vn_setops(vp, nfs4_trigger_vnodeops);
}
void
r4_stub_mirrormount(rnode4_t *rp)
{
r4_stub_set(rp, NFS4_STUB_MIRRORMOUNT);
}
void
r4_stub_referral(rnode4_t *rp)
{
DTRACE_PROBE1(nfs4clnt__func__referral__moved,
vnode_t *, RTOV4(rp));
r4_stub_set(rp, NFS4_STUB_REFERRAL);
}
void
r4_stub_none(rnode4_t *rp)
{
r4_stub_set(rp, NFS4_STUB_NONE);
}
#ifdef DEBUG
/*
* Look in the rnode table for other rnodes that have the same filehandle.
* Assume the lock is held for the hash chain of checkrp
*/
static void
r4_dup_check(rnode4_t *checkrp, vfs_t *vfsp)
{
rnode4_t *rp;
vnode_t *tvp;
nfs4_fhandle_t fh, fh2;
int index;
if (!r4_check_for_dups)
return;
ASSERT(RW_LOCK_HELD(&checkrp->r_hashq->r_lock));
sfh4_copyval(checkrp->r_fh, &fh);
for (index = 0; index < rtable4size; index++) {
if (&rtable4[index] != checkrp->r_hashq)
rw_enter(&rtable4[index].r_lock, RW_READER);
for (rp = rtable4[index].r_hashf;
rp != (rnode4_t *)(&rtable4[index]);
rp = rp->r_hashf) {
if (rp == checkrp)
continue;
tvp = RTOV4(rp);
if (tvp->v_vfsp != vfsp)
continue;
sfh4_copyval(rp->r_fh, &fh2);
if (nfs4cmpfhandle(&fh, &fh2) == 0) {
cmn_err(CE_PANIC, "rnodes with same fs, fh "
"(%p, %p)", (void *)checkrp, (void *)rp);
}
}
if (&rtable4[index] != checkrp->r_hashq)
rw_exit(&rtable4[index].r_lock);
}
}
#endif /* DEBUG */
|