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

uint32_t smb_is_executable(char *);
static void smb_node_create_audit_buf(smb_node_t *, int);
static void smb_node_destroy_audit_buf(smb_node_t *);
static void smb_node_audit(smb_node_t *);
static smb_node_t *smb_node_alloc(char *, vnode_t *, smb_llist_t *, uint32_t);
static void smb_node_free(smb_node_t *);
static int smb_node_constructor(void *, void *, int);
static void smb_node_destructor(void *, void *);
static smb_llist_t *smb_node_get_hash(fsid_t *, smb_attr_t *, uint32_t *);

static void smb_node_init_reparse(smb_node_t *, smb_attr_t *);
static void smb_node_init_system(smb_node_t *);

#define	VALIDATE_DIR_NODE(_dir_, _node_) \
    ASSERT((_dir_)->n_magic == SMB_NODE_MAGIC); \
    ASSERT(((_dir_)->vp->v_xattrdir) || ((_dir_)->vp->v_type == VDIR)); \
    ASSERT((_dir_)->n_dnode != (_node_));

/* round sz to DEV_BSIZE block */
#define	SMB_ALLOCSZ(sz)	(((sz) + DEV_BSIZE-1) & ~(DEV_BSIZE-1))

static kmem_cache_t	*smb_node_cache = NULL;
static smb_llist_t	smb_node_hash_table[SMBND_HASH_MASK+1];
static smb_node_t	*smb_root_node;

/*
 * smb_node_init
 *
 * Initialization of the SMB node layer.
 *
 * This function is not multi-thread safe. The caller must make sure only one
 * thread makes the call.
 */
void
smb_node_init(void)
{
	smb_attr_t	attr;
	smb_llist_t	*node_hdr;
	smb_node_t	*node;
	uint32_t	hashkey;
	int		i;

	if (smb_node_cache != NULL)
		return;

	smb_node_cache = kmem_cache_create(SMBSRV_KSTAT_NODE_CACHE,
	    sizeof (smb_node_t), 8, smb_node_constructor, smb_node_destructor,
	    NULL, NULL, NULL, 0);

	for (i = 0; i <= SMBND_HASH_MASK; i++) {
		smb_llist_constructor(&smb_node_hash_table[i],
		    sizeof (smb_node_t), offsetof(smb_node_t, n_lnd));
	}

	/*
	 * The node cache is shared by all zones, so the smb_root_node
	 * must represent the real (global zone) rootdir.
	 * Note intentional use of kcred here.
	 */
	attr.sa_mask = SMB_AT_ALL;
	VERIFY0(smb_vop_getattr(rootdir, NULL, &attr, 0, kcred));
	node_hdr = smb_node_get_hash(&rootdir->v_vfsp->vfs_fsid, &attr,
	    &hashkey);
	node = smb_node_alloc("/", rootdir, node_hdr, hashkey);
	smb_llist_enter(node_hdr, RW_WRITER);
	smb_llist_insert_head(node_hdr, node);
	smb_llist_exit(node_hdr);
	smb_root_node = node;	/* smb_node_release in smb_node_fini */
}

/*
 * smb_node_fini
 *
 * This function is not multi-thread safe. The caller must make sure only one
 * thread makes the call.
 */
void
smb_node_fini(void)
{
	int	i;

	if (smb_root_node != NULL) {
		smb_node_release(smb_root_node);
		smb_root_node = NULL;
	}

	if (smb_node_cache == NULL)
		return;

#ifdef DEBUG
	for (i = 0; i <= SMBND_HASH_MASK; i++) {
		smb_llist_t	*bucket;
		smb_node_t	*node;

		/*
		 * The following sequence is just intended for sanity check.
		 * This will have to be modified when the code goes into
		 * production.
		 *
		 * The SMB node hash table should be emtpy at this point. If the
		 * hash table is not empty a panic will be triggered.
		 *
		 * The reason why SMB nodes are still remaining in the hash
		 * table is problably due to a mismatch between calls to
		 * smb_node_lookup() and smb_node_release(). You must track that
		 * down.
		 */
		bucket = &smb_node_hash_table[i];
		node = smb_llist_head(bucket);
		while (node != NULL) {
			cmn_err(CE_NOTE, "leaked node: 0x%p %s",
			    (void *)node, node->od_name);
			node = smb_llist_next(bucket, node);
		}
	}
#endif

	for (i = 0; i <= SMBND_HASH_MASK; i++) {
		smb_llist_destructor(&smb_node_hash_table[i]);
	}
	kmem_cache_destroy(smb_node_cache);
	smb_node_cache = NULL;
}

/*
 * smb_node_lookup()
 *
 * NOTE: This routine should only be called by the file system interface layer,
 * and not by SMB.
 *
 * smb_node_lookup() is called upon successful lookup, mkdir, and create
 * (for both non-streams and streams).  In each of these cases, a held vnode is
 * passed into this routine.  If a new smb_node is created it will take its
 * own hold on the vnode.  The caller's hold therefore still belongs to, and
 * should be released by, the caller.
 *
 * A reference is taken on the smb_node whether found in the hash table
 * or newly created.
 *
 * If an smb_node needs to be created, a reference is also taken on the
 * dnode (if passed in).
 *
 * See smb_node_release() for details on the release of these references.
 */

/*ARGSUSED*/
smb_node_t *
smb_node_lookup(
    struct smb_request	*sr,
    struct open_param	*op,
    cred_t		*cred,
    vnode_t		*vp,
    char		*od_name,
    smb_node_t		*dnode,
    smb_node_t		*unode)
{
	smb_llist_t		*node_hdr;
	smb_node_t		*node;
	smb_attr_t		attr;
	uint32_t		hashkey = 0;
	fsid_t			fsid;
	int			error;
	krw_t			lock_mode;
	vnode_t			*unnamed_vp = NULL;

	/*
	 * smb_vop_getattr() is called here instead of smb_fsop_getattr(),
	 * because the node may not yet exist.  We also do not want to call
	 * it with the list lock held.
	 */

	if (unode)
		unnamed_vp = unode->vp;

	/*
	 * This getattr is performed on behalf of the server
	 * that's why kcred is used not the user's cred
	 */
	attr.sa_mask = SMB_AT_ALL;
	error = smb_vop_getattr(vp, unnamed_vp, &attr, 0, zone_kcred());
	if (error)
		return (NULL);

	if (sr && sr->tid_tree) {
		/*
		 * The fsid for a file is that of the tree, even
		 * if the file resides in a different mountpoint
		 * under the share.
		 */
		fsid = SMB_TREE_FSID(sr->tid_tree);
	} else {
		/*
		 * This should be getting executed only for the
		 * tree root smb_node.
		 */
		fsid = vp->v_vfsp->vfs_fsid;
	}

	node_hdr = smb_node_get_hash(&fsid, &attr, &hashkey);
	lock_mode = RW_READER;

	smb_llist_enter(node_hdr, lock_mode);
	for (;;) {
		node = list_head(&node_hdr->ll_list);
		while (node) {
			ASSERT(node->n_magic == SMB_NODE_MAGIC);
			ASSERT(node->n_hash_bucket == node_hdr);
			if ((node->n_hashkey == hashkey) && (node->vp == vp)) {
				mutex_enter(&node->n_mutex);
				DTRACE_PROBE1(smb_node_lookup_hit,
				    smb_node_t *, node);
				switch (node->n_state) {
				case SMB_NODE_STATE_AVAILABLE:
					/* The node was found. */
					node->n_refcnt++;
					if ((node->n_dnode == NULL) &&
					    (dnode != NULL) &&
					    (node != dnode) &&
					    (strcmp(od_name, "..") != 0) &&
					    (strcmp(od_name, ".") != 0)) {
						VALIDATE_DIR_NODE(dnode, node);
						node->n_dnode = dnode;
						smb_node_ref(dnode);
					}

					smb_node_audit(node);
					mutex_exit(&node->n_mutex);
					smb_llist_exit(node_hdr);
					return (node);

				case SMB_NODE_STATE_DESTROYING:
					/*
					 * Although the node exists it is about
					 * to be destroyed. We act as it hasn't
					 * been found.
					 */
					mutex_exit(&node->n_mutex);
					break;
				default:
					/*
					 * Although the node exists it is in an
					 * unknown state. We act as it hasn't
					 * been found.
					 */
					ASSERT(0);
					mutex_exit(&node->n_mutex);
					break;
				}
			}
			node = smb_llist_next(node_hdr, node);
		}
		if ((lock_mode == RW_READER) && smb_llist_upgrade(node_hdr)) {
			lock_mode = RW_WRITER;
			continue;
		}
		break;
	}
	node = smb_node_alloc(od_name, vp, node_hdr, hashkey);
	smb_node_init_reparse(node, &attr);

	if (op)
		node->flags |= smb_is_executable(op->fqi.fq_last_comp);

	if (dnode) {
		smb_node_ref(dnode);
		node->n_dnode = dnode;
		ASSERT(dnode->n_dnode != node);
		ASSERT((dnode->vp->v_xattrdir) ||
		    (dnode->vp->v_type == VDIR));
	}

	if (unode) {
		smb_node_ref(unode);
		node->n_unode = unode;
	}

	smb_node_init_system(node);

	DTRACE_PROBE1(smb_node_lookup_miss, smb_node_t *, node);
	smb_node_audit(node);
	smb_llist_insert_head(node_hdr, node);
	smb_llist_exit(node_hdr);
	return (node);
}

/*
 * smb_stream_node_lookup()
 *
 * Note: stream_name (the name that will be stored in the "od_name" field
 * of a stream's smb_node) is the same as the on-disk name for the stream
 * except that it does not have SMB_STREAM_PREFIX prepended.
 */

smb_node_t *
smb_stream_node_lookup(smb_request_t *sr, cred_t *cr, smb_node_t *fnode,
    vnode_t *xattrdirvp, vnode_t *vp, char *stream_name)
{
	smb_node_t	*xattrdir_node;
	smb_node_t	*snode;

	xattrdir_node = smb_node_lookup(sr, NULL, cr, xattrdirvp, XATTR_DIR,
	    fnode, NULL);

	if (xattrdir_node == NULL)
		return (NULL);

	snode = smb_node_lookup(sr, NULL, cr, vp, stream_name, xattrdir_node,
	    fnode);

	(void) smb_node_release(xattrdir_node);
	return (snode);
}


/*
 * This function should be called whenever a reference is needed on an
 * smb_node pointer.  The copy of an smb_node pointer from one non-local
 * data structure to another requires a reference to be taken on the smb_node
 * (unless the usage is localized).  Each data structure deallocation routine
 * will call smb_node_release() on its smb_node pointers.
 *
 * In general, an smb_node pointer residing in a structure should never be
 * stale.  A node pointer may be NULL, however, and care should be taken
 * prior to calling smb_node_ref(), which ASSERTs that the pointer is valid.
 * Care also needs to be taken with respect to racing deallocations of a
 * structure.
 */
void
smb_node_ref(smb_node_t *node)
{
	SMB_NODE_VALID(node);

	mutex_enter(&node->n_mutex);
	switch (node->n_state) {
	case SMB_NODE_STATE_AVAILABLE:
		node->n_refcnt++;
		ASSERT(node->n_refcnt);
		DTRACE_PROBE1(smb_node_ref_exit, smb_node_t *, node);
		smb_node_audit(node);
		break;
	default:
		SMB_PANIC();
	}
	mutex_exit(&node->n_mutex);
}

/*
 * smb_node_lookup() takes a hold on an smb_node, whether found in the
 * hash table or newly created.  This hold is expected to be released
 * in the following manner.
 *
 * smb_node_lookup() takes an address of an smb_node pointer.  This should
 * be getting passed down via a lookup (whether path name or component), mkdir,
 * create.  If the original smb_node pointer resides in a data structure, then
 * the deallocation routine for the data structure is responsible for calling
 * smb_node_release() on the smb_node pointer.  Alternatively,
 * smb_node_release() can be called as soon as the smb_node pointer is no longer
 * needed.  In this case, callers are responsible for setting an embedded
 * pointer to NULL if it is known that the last reference is being released.
 *
 * If the passed-in address of the smb_node pointer belongs to a local variable,
 * then the caller with the local variable should call smb_node_release()
 * directly.
 *
 * smb_node_release() itself will call smb_node_release() on a node's n_dnode,
 * as smb_node_lookup() takes a hold on dnode.
 */
void
smb_node_release(smb_node_t *node)
{
	SMB_NODE_VALID(node);

	mutex_enter(&node->n_mutex);
	ASSERT(node->n_refcnt);
	DTRACE_PROBE1(smb_node_release, smb_node_t *, node);
	if (--node->n_refcnt == 0) {
		switch (node->n_state) {

		case SMB_NODE_STATE_AVAILABLE:
			node->n_state = SMB_NODE_STATE_DESTROYING;

			/*
			 * While we still hold n_mutex,
			 * make sure FEM hooks are gone.
			 */
			if (node->n_fcn_count > 0) {
				DTRACE_PROBE1(fem__fcn__dangles,
				    smb_node_t *, node);
				node->n_fcn_count = 0;
				(void) smb_fem_fcn_uninstall(node);
			}

			mutex_exit(&node->n_mutex);

			/*
			 * Out of caution, make sure FEM hooks
			 * used by oplocks are also gone.
			 */
			mutex_enter(&node->n_oplock.ol_mutex);
			ASSERT(node->n_oplock.ol_fem == B_FALSE);
			if (node->n_oplock.ol_fem == B_TRUE) {
				smb_fem_oplock_uninstall(node);
				node->n_oplock.ol_fem = B_FALSE;
			}
			mutex_exit(&node->n_oplock.ol_mutex);

			smb_llist_enter(node->n_hash_bucket, RW_WRITER);
			smb_llist_remove(node->n_hash_bucket, node);
			smb_llist_exit(node->n_hash_bucket);

			/*
			 * Check if the file was deleted
			 */
			if (node->flags & NODE_FLAGS_DELETE_ON_CLOSE) {
				smb_node_delete_on_close(node);
			}

			if (node->n_dnode) {
				ASSERT(node->n_dnode->n_magic ==
				    SMB_NODE_MAGIC);
				smb_node_release(node->n_dnode);
			}

			if (node->n_unode) {
				ASSERT(node->n_unode->n_magic ==
				    SMB_NODE_MAGIC);
				smb_node_release(node->n_unode);
			}

			smb_node_free(node);
			return;

		default:
			SMB_PANIC();
		}
	}
	smb_node_audit(node);
	mutex_exit(&node->n_mutex);
}

void
smb_node_delete_on_close(smb_node_t *node)
{
	smb_node_t	*d_snode;
	int		rc = 0;
	uint32_t	flags = 0;

	d_snode = node->n_dnode;

	ASSERT((node->flags & NODE_FLAGS_DELETE_ON_CLOSE) != 0);

	node->flags &= ~NODE_FLAGS_DELETE_ON_CLOSE;
	node->flags |= NODE_FLAGS_DELETE_COMMITTED;
	flags = node->n_delete_on_close_flags;
	ASSERT(node->od_name != NULL);

	if (smb_node_is_dir(node))
		rc = smb_fsop_rmdir(0, node->delete_on_close_cred,
		    d_snode, node->od_name, flags);
	else
		rc = smb_fsop_remove(0, node->delete_on_close_cred,
		    d_snode, node->od_name, flags);
	crfree(node->delete_on_close_cred);
	node->delete_on_close_cred = NULL;

	if (rc != 0)
		cmn_err(CE_WARN, "File %s could not be removed, rc=%d\n",
		    node->od_name, rc);
	DTRACE_PROBE2(smb_node_delete_on_close, int, rc, smb_node_t *, node);
}

/*
 * smb_node_rename()
 *
 */
void
smb_node_rename(
    smb_node_t	*from_dnode,
    smb_node_t	*ret_node,
    smb_node_t	*to_dnode,
    char	*to_name)
{
	SMB_NODE_VALID(from_dnode);
	SMB_NODE_VALID(to_dnode);
	SMB_NODE_VALID(ret_node);

	smb_node_ref(to_dnode);
	mutex_enter(&ret_node->n_mutex);
	switch (ret_node->n_state) {
	case SMB_NODE_STATE_AVAILABLE:
		ret_node->n_dnode = to_dnode;
		mutex_exit(&ret_node->n_mutex);
		ASSERT(to_dnode->n_dnode != ret_node);
		ASSERT((to_dnode->vp->v_xattrdir) ||
		    (to_dnode->vp->v_type == VDIR));
		smb_node_release(from_dnode);
		(void) strcpy(ret_node->od_name, to_name);
		/*
		 * XXX Need to update attributes?
		 */
		break;
	default:
		SMB_PANIC();
	}
}

/*
 * Find/create an SMB node for the root of this zone and store it
 * in *svrootp.  Also create nodes leading to this directory.
 */
int
smb_node_root_init(smb_server_t *sv, smb_node_t **svrootp)
{
	zone_t		*zone = curzone;
	int		error;

	ASSERT(zone->zone_id == sv->sv_zid);
	if (smb_root_node == NULL)
		return (ENOENT);

	/*
	 * We're getting smb nodes below the zone root here,
	 * so need to use kcred, not zone_kcred().
	 */
	error = smb_pathname(NULL, zone->zone_rootpath, 0,
	    smb_root_node, smb_root_node, NULL, svrootp, kcred, NULL);

	return (error);
}

/*
 * Helper function for smb_node_set_delete_on_close(). Assumes node is a dir.
 * Return 0 if this is an empty dir. Otherwise return a NT_STATUS code.
 * Unfortunately, to find out if a directory is empty, we have to read it
 * and check for anything other than "." or ".." in the readdir buf.
 */
static uint32_t
smb_rmdir_possible(smb_node_t *n)
{
	ASSERT(n->vp->v_type == VDIR);
	char *buf;
	char *bufptr;
	struct dirent64	*dp;
	uint32_t status = NT_STATUS_SUCCESS;
	int bsize = SMB_ODIR_BUFSIZE;
	int eof = 0;

	buf = kmem_alloc(SMB_ODIR_BUFSIZE, KM_SLEEP);

	/* Flags zero: no edirent, no ABE wanted here */
	if (smb_vop_readdir(n->vp, 0, buf, &bsize, &eof, 0, zone_kcred())) {
		status = NT_STATUS_INTERNAL_ERROR;
		goto out;
	}

	bufptr = buf;
	while (bsize > 0) {
		/* LINTED pointer alignment */
		dp = (struct dirent64 *)bufptr;

		bufptr += dp->d_reclen;
		bsize  -= dp->d_reclen;
		if (bsize < 0) {
			/* partial record */
			status = NT_STATUS_DIRECTORY_NOT_EMPTY;
			break;
		}

		if (strcmp(dp->d_name, ".") != 0 &&
		    strcmp(dp->d_name, "..") != 0) {
			status = NT_STATUS_DIRECTORY_NOT_EMPTY;
			break;
		}
	}

out:
	kmem_free(buf, SMB_ODIR_BUFSIZE);
	return (status);
}

/*
 * When DeleteOnClose is set on an smb_node, the common open code will
 * reject subsequent open requests for the file. Observation of Windows
 * 2000 indicates that subsequent opens should be allowed (assuming
 * there would be no sharing violation) until the file is closed using
 * the fid on which the DeleteOnClose was requested.
 *
 * If there are multiple opens with delete-on-close create options,
 * whichever the first file handle is closed will trigger the node to be
 * marked as delete-on-close. The credentials of that ofile will be used
 * as the delete-on-close credentials of the node.
 *
 * Note that "read-only" tests have already happened before this call.
 */
uint32_t
smb_node_set_delete_on_close(smb_node_t *node, cred_t *cr, uint32_t flags)
{
	uint32_t status;

	/*
	 * If the directory is not empty we should fail setting del-on-close
	 * with STATUS_DIRECTORY_NOT_EMPTY. see MS's
	 * "File System Behavior Overview" doc section 4.3.2
	 */
	if (smb_node_is_dir(node)) {
		status = smb_rmdir_possible(node);
		if (status != 0) {
			return (status);
		}
	}

	/* Dataset roots can't be deleted, so don't set DOC */
	if ((node->flags & NODE_FLAGS_VFSROOT) != 0) {
		return (NT_STATUS_CANNOT_DELETE);
	}

	mutex_enter(&node->n_mutex);
	if (node->flags & NODE_FLAGS_DELETE_ON_CLOSE) {
		/* It was already marked.  We're done. */
		mutex_exit(&node->n_mutex);
		return (NT_STATUS_SUCCESS);
	}

	crhold(cr);
	node->delete_on_close_cred = cr;
	node->n_delete_on_close_flags = flags;
	node->flags |= NODE_FLAGS_DELETE_ON_CLOSE;
	mutex_exit(&node->n_mutex);

	/*
	 * Tell any change notify calls to close their handles
	 * and get out of the way.  FILE_ACTION_DELETE_PENDING
	 * is a special, internal-only action for this purpose.
	 */
	smb_node_notify_change(node, FILE_ACTION_DELETE_PENDING, NULL);

	return (NT_STATUS_SUCCESS);
}

void
smb_node_reset_delete_on_close(smb_node_t *node)
{
	mutex_enter(&node->n_mutex);
	if (node->flags & NODE_FLAGS_DELETE_ON_CLOSE) {
		node->flags &= ~NODE_FLAGS_DELETE_ON_CLOSE;
		crfree(node->delete_on_close_cred);
		node->delete_on_close_cred = NULL;
		node->n_delete_on_close_flags = 0;
	}
	mutex_exit(&node->n_mutex);
}

/*
 * smb_node_open_check
 *
 * check file sharing rules for current open request
 * against all existing opens for a file.
 *
 * Returns NT_STATUS_SHARING_VIOLATION if there is any
 * sharing conflict, otherwise returns NT_STATUS_SUCCESS.
 */
uint32_t
smb_node_open_check(smb_node_t *node, uint32_t desired_access,
    uint32_t share_access)
{
	smb_ofile_t *of;
	uint32_t status;

	SMB_NODE_VALID(node);

	smb_llist_enter(&node->n_ofile_list, RW_READER);
	of = smb_llist_head(&node->n_ofile_list);
	while (of) {
		status = smb_ofile_open_check(of, desired_access, share_access);

		switch (status) {
		case NT_STATUS_INVALID_HANDLE:
		case NT_STATUS_SUCCESS:
			of = smb_llist_next(&node->n_ofile_list, of);
			break;
		default:
			ASSERT(status == NT_STATUS_SHARING_VIOLATION);
			DTRACE_PROBE3(conflict3,
			    smb_ofile_t, of,
			    uint32_t, desired_access,
			    uint32_t, share_access);
			smb_llist_exit(&node->n_ofile_list);
			return (status);
		}
	}

	smb_llist_exit(&node->n_ofile_list);
	return (NT_STATUS_SUCCESS);
}

uint32_t
smb_node_rename_check(smb_node_t *node)
{
	smb_ofile_t	*of;
	uint32_t	status;

	SMB_NODE_VALID(node);

	/*
	 * Intra-CIFS check
	 */
	smb_llist_enter(&node->n_ofile_list, RW_READER);
	of = smb_llist_head(&node->n_ofile_list);
	while (of) {
		status = smb_ofile_rename_check(of);

		switch (status) {
		case NT_STATUS_INVALID_HANDLE:
		case NT_STATUS_SUCCESS:
			of = smb_llist_next(&node->n_ofile_list, of);
			break;
		default:
			ASSERT(status == NT_STATUS_SHARING_VIOLATION);
			DTRACE_PROBE1(conflict1, smb_ofile_t, of);
			smb_llist_exit(&node->n_ofile_list);
			return (status);
		}
	}
	smb_llist_exit(&node->n_ofile_list);
	return (NT_STATUS_SUCCESS);
}

uint32_t
smb_node_delete_check(smb_node_t *node)
{
	smb_ofile_t	*of;
	uint32_t	status;

	SMB_NODE_VALID(node);

	if (smb_node_is_dir(node))
		return (NT_STATUS_SUCCESS);

	if (smb_node_is_reparse(node))
		return (NT_STATUS_ACCESS_DENIED);

	/*
	 * intra-CIFS check
	 */
	smb_llist_enter(&node->n_ofile_list, RW_READER);
	of = smb_llist_head(&node->n_ofile_list);
	while (of) {
		status = smb_ofile_delete_check(of);

		switch (status) {
		case NT_STATUS_INVALID_HANDLE:
		case NT_STATUS_SUCCESS:
			of = smb_llist_next(&node->n_ofile_list, of);
			break;
		default:
			ASSERT(status == NT_STATUS_SHARING_VIOLATION);
			DTRACE_PROBE1(conflict1, smb_ofile_t, of);
			smb_llist_exit(&node->n_ofile_list);
			return (status);
		}
	}
	smb_llist_exit(&node->n_ofile_list);
	return (NT_STATUS_SUCCESS);
}

/*
 * smb_node_share_check
 *
 * Returns: TRUE    - ofiles have non-zero share access
 *          B_FALSE - ofile with share access NONE.
 */
boolean_t
smb_node_share_check(smb_node_t *node)
{
	smb_ofile_t	*of;
	boolean_t	status = B_TRUE;

	SMB_NODE_VALID(node);

	smb_llist_enter(&node->n_ofile_list, RW_READER);
	of = smb_llist_head(&node->n_ofile_list);
	if (of)
		status = smb_ofile_share_check(of);
	smb_llist_exit(&node->n_ofile_list);

	return (status);
}

/*
 * SMB Change Notification
 */

void
smb_node_fcn_subscribe(smb_node_t *node)
{

	mutex_enter(&node->n_mutex);
	if (node->n_fcn_count == 0)
		(void) smb_fem_fcn_install(node);
	node->n_fcn_count++;
	mutex_exit(&node->n_mutex);
}

void
smb_node_fcn_unsubscribe(smb_node_t *node)
{

	mutex_enter(&node->n_mutex);
	node->n_fcn_count--;
	if (node->n_fcn_count == 0) {
		VERIFY0(smb_fem_fcn_uninstall(node));
	}
	mutex_exit(&node->n_mutex);
}

void
smb_node_notify_change(smb_node_t *node, uint_t action, const char *name)
{
	smb_ofile_t	*of;

	SMB_NODE_VALID(node);

	smb_llist_enter(&node->n_ofile_list, RW_READER);
	of = smb_llist_head(&node->n_ofile_list);
	while (of) {
		/*
		 * We'd rather deliver events only to ofiles that have
		 * subscribed.  There's no explicit synchronization with
		 * where this flag is set, but other actions cause this
		 * value to reach visibility soon enough for events to
		 * start arriving by the time we need them to start.
		 * Once nc_subscribed is set, it stays set for the
		 * life of the ofile.
		 */
		if (of->f_notify.nc_subscribed)
			smb_notify_ofile(of, action, name);
		of = smb_llist_next(&node->n_ofile_list, of);
	}
	smb_llist_exit(&node->n_ofile_list);

	/*
	 * After changes that add or remove a name,
	 * we know the directory attributes changed,
	 * and we can tell the immediate parent.
	 */
	switch (action) {
	case FILE_ACTION_ADDED:
	case FILE_ACTION_REMOVED:
	case FILE_ACTION_RENAMED_NEW_NAME:
		/*
		 * Note: FILE_ACTION_RENAMED_OLD_NAME is intentionally
		 * omitted, because it's always followed by another
		 * event with FILE_ACTION_RENAMED_NEW_NAME posted to
		 * the same directory, and we only need/want one.
		 */
		if (node->n_dnode != NULL) {
			smb_node_notify_change(node->n_dnode,
			    FILE_ACTION_MODIFIED, node->od_name);
		}
		break;
	}

	/*
	 * If we wanted to support recursive notify events
	 * (where a notify call on some directory receives
	 * events from all objects below that directory),
	 * we might deliver _SUBDIR_CHANGED to all our
	 * parents, grandparents etc, here.  However, we
	 * don't currently subscribe to changes on all the
	 * child (and grandchild) objects that would be
	 * needed to make that work. It's prohibitively
	 * expensive to do that, and support for recursive
	 * notify is optional anyway, so don't bother.
	 */
}

/*
 * Change notify modified differs for stream vs regular file.
 * Changes to a stream give a notification on the "unnamed" node,
 * which is the parent object of the stream.
 */
void
smb_node_notify_modified(smb_node_t *node)
{
	smb_node_t *u_node;

	u_node = SMB_IS_STREAM(node);
	if (u_node != NULL) {
		/* This is a named stream */
		if (u_node->n_dnode != NULL) {
			smb_node_notify_change(u_node->n_dnode,
			    FILE_ACTION_MODIFIED_STREAM, u_node->od_name);
		}
	} else {
		/* regular file or directory */
		if (node->n_dnode != NULL) {
			smb_node_notify_change(node->n_dnode,
			    FILE_ACTION_MODIFIED, node->od_name);
		}
	}
}

/*
 * smb_node_start_crit()
 *
 * Enter critical region for share reservations.
 * See comments above smb_fsop_shrlock().
 */
void
smb_node_start_crit(smb_node_t *node, krw_t mode)
{
	rw_enter(&node->n_lock, mode);
	nbl_start_crit(node->vp, mode);
}

/*
 * smb_node_end_crit()
 *
 * Exit critical region for share reservations.
 */
void
smb_node_end_crit(smb_node_t *node)
{
	nbl_end_crit(node->vp);
	rw_exit(&node->n_lock);
}

int
smb_node_in_crit(smb_node_t *node)
{
	return (nbl_in_crit(node->vp) && RW_LOCK_HELD(&node->n_lock));
}

void
smb_node_rdlock(smb_node_t *node)
{
	rw_enter(&node->n_lock, RW_READER);
}

void
smb_node_wrlock(smb_node_t *node)
{
	rw_enter(&node->n_lock, RW_WRITER);
}

void
smb_node_unlock(smb_node_t *node)
{
	rw_exit(&node->n_lock);
}

void
smb_node_add_ofile(smb_node_t *node, smb_ofile_t *of)
{
	SMB_NODE_VALID(node);

	smb_llist_enter(&node->n_ofile_list, RW_WRITER);
	smb_llist_insert_tail(&node->n_ofile_list, of);
	smb_llist_exit(&node->n_ofile_list);
}

void
smb_node_rem_ofile(smb_node_t *node, smb_ofile_t *of)
{
	SMB_NODE_VALID(node);

	smb_llist_enter(&node->n_ofile_list, RW_WRITER);
	smb_llist_remove(&node->n_ofile_list, of);
	smb_llist_exit(&node->n_ofile_list);
}

/*
 * smb_node_inc_open_ofiles
 */
void
smb_node_inc_open_ofiles(smb_node_t *node)
{
	SMB_NODE_VALID(node);
	atomic_inc_32(&node->n_open_count);
}

/*
 * smb_node_dec_open_ofiles
 * returns new value
 */
uint32_t
smb_node_dec_open_ofiles(smb_node_t *node)
{
	SMB_NODE_VALID(node);
	return (atomic_dec_32_nv(&node->n_open_count));
}

/*
 * smb_node_inc_opening_count
 */
void
smb_node_inc_opening_count(smb_node_t *node)
{
	SMB_NODE_VALID(node);
	atomic_inc_32(&node->n_opening_count);
}

/*
 * smb_node_dec_opening_count
 */
void
smb_node_dec_opening_count(smb_node_t *node)
{
	SMB_NODE_VALID(node);
	atomic_dec_32(&node->n_opening_count);
}

/*
 * smb_node_getmntpath
 */
int
smb_node_getmntpath(smb_node_t *node, char *buf, uint32_t buflen)
{
	vnode_t *vp, *root_vp;
	vfs_t *vfsp;
	int err;

	ASSERT(node);
	ASSERT(node->vp);
	ASSERT(node->vp->v_vfsp);

	vp = node->vp;
	vfsp = vp->v_vfsp;

	if (VFS_ROOT(vfsp, &root_vp))
		return (ENOENT);

	VN_HOLD(vp);

	/* NULL is passed in as we want to start at "/" */
	err = vnodetopath(NULL, root_vp, buf, buflen, zone_kcred());

	VN_RELE(vp);
	VN_RELE(root_vp);
	return (err);
}

/*
 * smb_node_getshrpath
 *
 * Determine the absolute pathname of 'node' within the share (tree).
 * For example if the node represents file "test1.txt" in directory
 * "dir1" the pathname would be: \dir1\test1.txt
 */
int
smb_node_getshrpath(smb_node_t *node, smb_tree_t *tree,
    char *buf, uint32_t buflen)
{
	int rc;

	ASSERT(node);
	ASSERT(tree);
	ASSERT(tree->t_snode);

	rc = smb_node_getpath(node, tree->t_snode->vp, buf, buflen);
	(void) strsubst(buf, '/', '\\');
	return (rc);
}

/*
 * smb_node_getpath
 *
 * Determine the absolute pathname of 'node' from 'rootvp'.
 *
 * Using vnodetopath is only reliable for directory nodes (due to
 * its reliance on the DNLC for non-directory nodes). Thus, if node
 * represents a file, construct the pathname for the parent dnode
 * and append filename.
 * If node represents a named stream, construct the pathname for the
 * associated unnamed stream and append the stream name.
 *
 * The pathname returned in buf will be '/' separated.
 */
int
smb_node_getpath(smb_node_t *node, vnode_t *rootvp, char *buf, uint32_t buflen)
{
	int rc;
	vnode_t *vp;
	smb_node_t *unode, *dnode;
	cred_t *kcr = zone_kcred();

	unode = (SMB_IS_STREAM(node)) ? node->n_unode : node;
	dnode = (smb_node_is_dir(unode)) ? unode : unode->n_dnode;

	/* find path to directory node */
	vp = dnode->vp;
	VN_HOLD(vp);
	if (rootvp) {
		VN_HOLD(rootvp);
		rc = vnodetopath(rootvp, vp, buf, buflen, kcr);
		VN_RELE(rootvp);
	} else {
		rc = vnodetopath(NULL, vp, buf, buflen, kcr);
	}
	VN_RELE(vp);

	if (rc != 0)
		return (rc);

	/* append filename if necessary */
	if (!smb_node_is_dir(unode)) {
		if (buf[strlen(buf) - 1] != '/')
			(void) strlcat(buf, "/", buflen);
		(void) strlcat(buf, unode->od_name, buflen);
	}

	/* append named stream name if necessary */
	if (SMB_IS_STREAM(node))
		(void) strlcat(buf, node->od_name, buflen);

	return (rc);
}

/*
 * smb_node_alloc
 */
static smb_node_t *
smb_node_alloc(
    char	*od_name,
    vnode_t	*vp,
    smb_llist_t	*bucket,
    uint32_t	hashkey)
{
	smb_node_t	*node;
	vnode_t		*root_vp;

	node = kmem_cache_alloc(smb_node_cache, KM_SLEEP);

	if (node->n_audit_buf != NULL)
		node->n_audit_buf->anb_index = 0;

	node->flags = 0;
	VN_HOLD(vp);
	node->vp = vp;
	node->n_refcnt = 1;
	node->n_hash_bucket = bucket;
	node->n_hashkey = hashkey;
	node->n_open_count = 0;
	node->n_allocsz = 0;
	node->n_dnode = NULL;
	node->n_unode = NULL;
	node->delete_on_close_cred = NULL;
	node->n_delete_on_close_flags = 0;
	node->n_oplock.ol_fem = B_FALSE;

	(void) strlcpy(node->od_name, od_name, sizeof (node->od_name));
	if (strcmp(od_name, XATTR_DIR) == 0)
		node->flags |= NODE_XATTR_DIR;

	if (VFS_ROOT(vp->v_vfsp, &root_vp) == 0) {
		if (vp == root_vp)
			node->flags |= NODE_FLAGS_VFSROOT;
		VN_RELE(root_vp);
	}

	node->n_state = SMB_NODE_STATE_AVAILABLE;
	node->n_magic = SMB_NODE_MAGIC;

	return (node);
}

/*
 * smb_node_free
 */
static void
smb_node_free(smb_node_t *node)
{
	SMB_NODE_VALID(node);

	node->n_magic = 0;
	VERIFY(!list_link_active(&node->n_lnd));
	VERIFY(node->n_lock_list.ll_count == 0);
	VERIFY(node->n_wlock_list.ll_count == 0);
	VERIFY(node->n_ofile_list.ll_count == 0);
	VERIFY(node->n_oplock.ol_fem == B_FALSE);
	VERIFY(MUTEX_NOT_HELD(&node->n_mutex));
	VERIFY(!RW_LOCK_HELD(&node->n_lock));
	VN_RELE(node->vp);
	kmem_cache_free(smb_node_cache, node);
}

/*
 * smb_node_constructor
 */
static int
smb_node_constructor(void *buf, void *un, int kmflags)
{
	_NOTE(ARGUNUSED(kmflags, un))

	smb_node_t	*node = (smb_node_t *)buf;

	bzero(node, sizeof (smb_node_t));

	smb_llist_constructor(&node->n_ofile_list, sizeof (smb_ofile_t),
	    offsetof(smb_ofile_t, f_node_lnd));
	smb_llist_constructor(&node->n_lock_list, sizeof (smb_lock_t),
	    offsetof(smb_lock_t, l_lnd));
	smb_llist_constructor(&node->n_wlock_list, sizeof (smb_lock_t),
	    offsetof(smb_lock_t, l_lnd));
	mutex_init(&node->n_oplock.ol_mutex, NULL, MUTEX_DEFAULT, NULL);
	cv_init(&node->n_oplock.WaitingOpenCV, NULL, CV_DEFAULT, NULL);
	rw_init(&node->n_lock, NULL, RW_DEFAULT, NULL);
	mutex_init(&node->n_mutex, NULL, MUTEX_DEFAULT, NULL);
	smb_node_create_audit_buf(node, kmflags);
	return (0);
}

/*
 * smb_node_destructor
 */
static void
smb_node_destructor(void *buf, void *un)
{
	_NOTE(ARGUNUSED(un))

	smb_node_t	*node = (smb_node_t *)buf;

	smb_node_destroy_audit_buf(node);
	mutex_destroy(&node->n_mutex);
	rw_destroy(&node->n_lock);
	cv_destroy(&node->n_oplock.WaitingOpenCV);
	mutex_destroy(&node->n_oplock.ol_mutex);
	smb_llist_destructor(&node->n_lock_list);
	smb_llist_destructor(&node->n_wlock_list);
	smb_llist_destructor(&node->n_ofile_list);
}

/*
 * smb_node_create_audit_buf
 */
static void
smb_node_create_audit_buf(smb_node_t *node, int kmflags)
{
	smb_audit_buf_node_t	*abn;

	if (smb_audit_flags & SMB_AUDIT_NODE) {
		abn = kmem_zalloc(sizeof (smb_audit_buf_node_t), kmflags);
		abn->anb_max_index = SMB_AUDIT_BUF_MAX_REC - 1;
		node->n_audit_buf = abn;
	}
}

/*
 * smb_node_destroy_audit_buf
 */
static void
smb_node_destroy_audit_buf(smb_node_t *node)
{
	if (node->n_audit_buf != NULL) {
		kmem_free(node->n_audit_buf, sizeof (smb_audit_buf_node_t));
		node->n_audit_buf = NULL;
	}
}

/*
 * smb_node_audit
 *
 * This function saves the calling stack in the audit buffer of the node passed
 * in.
 */
static void
smb_node_audit(smb_node_t *node)
{
#ifdef	_KERNEL
	smb_audit_buf_node_t	*abn;
	smb_audit_record_node_t	*anr;

	if (node->n_audit_buf) {
		abn = node->n_audit_buf;
		anr = abn->anb_records;
		anr += abn->anb_index;
		abn->anb_index++;
		abn->anb_index &= abn->anb_max_index;
		anr->anr_refcnt = node->n_refcnt;
		anr->anr_depth = getpcstack(anr->anr_stack,
		    SMB_AUDIT_STACK_DEPTH);
	}
#else	/* _KERNEL */
	_NOTE(ARGUNUSED(node))
#endif	/* _KERNEL */
}

static smb_llist_t *
smb_node_get_hash(fsid_t *fsid, smb_attr_t *attr, uint32_t *phashkey)
{
	uint32_t	hashkey;

	hashkey = fsid->val[0] + attr->sa_vattr.va_nodeid;
	hashkey += (hashkey >> 24) + (hashkey >> 16) + (hashkey >> 8);
	*phashkey = hashkey;
	return (&smb_node_hash_table[(hashkey & SMBND_HASH_MASK)]);
}

boolean_t
smb_node_is_file(smb_node_t *node)
{
	SMB_NODE_VALID(node);
	return (node->vp->v_type == VREG);
}

boolean_t
smb_node_is_dir(smb_node_t *node)
{
	SMB_NODE_VALID(node);
	return ((node->vp->v_type == VDIR) ||
	    (node->flags & NODE_FLAGS_DFSLINK));
}

boolean_t
smb_node_is_symlink(smb_node_t *node)
{
	SMB_NODE_VALID(node);
	return ((node->vp->v_type == VLNK) &&
	    ((node->flags & NODE_FLAGS_REPARSE) == 0));
}

boolean_t
smb_node_is_dfslink(smb_node_t *node)
{
	SMB_NODE_VALID(node);
	return ((node->vp->v_type == VLNK) &&
	    (node->flags & NODE_FLAGS_DFSLINK));
}

boolean_t
smb_node_is_reparse(smb_node_t *node)
{
	SMB_NODE_VALID(node);
	return ((node->vp->v_type == VLNK) &&
	    (node->flags & NODE_FLAGS_REPARSE));
}

boolean_t
smb_node_is_vfsroot(smb_node_t *node)
{
	SMB_NODE_VALID(node);
	return ((node->flags & NODE_FLAGS_VFSROOT) == NODE_FLAGS_VFSROOT);
}

boolean_t
smb_node_is_system(smb_node_t *node)
{
	SMB_NODE_VALID(node);
	return ((node->flags & NODE_FLAGS_SYSTEM) == NODE_FLAGS_SYSTEM);
}

/*
 * smb_node_file_is_readonly
 *
 * Checks if the file (which node represents) is marked readonly
 * in the filesystem.  Note that there may be handles open with
 * modify rights, and those continue to allow access even after
 * the DOS read-only flag has been set in the file system.
 */
boolean_t
smb_node_file_is_readonly(smb_node_t *node)
{
	smb_attr_t attr;

	if (node == NULL)
		return (B_FALSE);	/* pipes */

	bzero(&attr, sizeof (smb_attr_t));
	attr.sa_mask = SMB_AT_DOSATTR;
	(void) smb_fsop_getattr(NULL, zone_kcred(), node, &attr);
	return ((attr.sa_dosattr & FILE_ATTRIBUTE_READONLY) != 0);
}

/*
 * smb_node_setattr
 *
 * The sr may be NULL, for example when closing an ofile.
 * The ofile may be NULL, for example when a client request
 * specifies the file by pathname.
 *
 * Returns: errno
 *
 * Timestamps
 *
 * Windows and Unix have different models for timestamp updates.
 * [MS-FSA 2.1.5.14 Server Requests Setting of File Information]
 *
 * An open "handle" in Windows can control whether and when
 * any timestamp updates happen for that handle.  For example,
 * timestamps set via some handle are no longer updated by I/O
 * operations on that handle.  In Unix we don't really have any
 * way to avoid the timestamp updates that the file system does.
 * Therefore, we need to make some compromises, and simulate the
 * more important parts of the Windows file system semantics.
 *
 * For example, when an SMB client sets file times, set those
 * times in the file system (so the change will be visible to
 * other clients, at least until they change again) but we also
 * make those times "sticky" in our open handle, and reapply
 * those times when the handle is closed.  That reapply on close
 * simulates the Windows behavior where the timestamp updates
 * would be discontinued after they were set.  These "sticky"
 * attributes are returned in any query on the handle where
 * they are stored.
 *
 * Other than the above, the file system layer takes care of the
 * normal time stamp updates, such as updating the mtime after a
 * write, and ctime after an attribute change.
 *
 * File allocation size is also simulated, and not persistent.
 * When the file allocation size is set it is first rounded up
 * to block size. If the file size is smaller than the allocation
 * size the file is truncated by setting the filesize to allocsz.
 */
int
smb_node_setattr(smb_request_t *sr, smb_node_t *node,
    cred_t *cr, smb_ofile_t *of, smb_attr_t *attr)
{
	int rc;
	uint_t times_mask;
	smb_attr_t tmp_attr;

	SMB_NODE_VALID(node);

	/* set attributes specified in attr */
	if (attr->sa_mask == 0)
		return (0);  /* nothing to do (caller bug?) */

	/*
	 * Allocation size and EOF position interact.
	 * We don't persistently store the allocation size
	 * but make it look like we do while there are opens.
	 * Note: We update the caller's attr in the cases
	 * where they're setting only one of allocsz|size.
	 */
	switch (attr->sa_mask & (SMB_AT_ALLOCSZ | SMB_AT_SIZE)) {

	case SMB_AT_ALLOCSZ:
		/*
		 * Setting the allocation size but not EOF position.
		 * Get the current EOF in tmp_attr and (if necessary)
		 * truncate to the (rounded up) allocation size.
		 * Using kcred here because if we don't have access,
		 * we want to fail at setattr below and not here.
		 */
		bzero(&tmp_attr, sizeof (smb_attr_t));
		tmp_attr.sa_mask = SMB_AT_SIZE;
		rc = smb_fsop_getattr(NULL, zone_kcred(), node, &tmp_attr);
		if (rc != 0)
			return (rc);
		attr->sa_allocsz = SMB_ALLOCSZ(attr->sa_allocsz);
		if (tmp_attr.sa_vattr.va_size > attr->sa_allocsz) {
			/* truncate the file to allocsz */
			attr->sa_vattr.va_size = attr->sa_allocsz;
			attr->sa_mask |= SMB_AT_SIZE;
		}
		break;

	case SMB_AT_SIZE:
		/*
		 * Setting the EOF position but not allocation size.
		 * If the new EOF position would be greater than
		 * the allocation size, increase the latter.
		 */
		if (node->n_allocsz < attr->sa_vattr.va_size) {
			attr->sa_mask |= SMB_AT_ALLOCSZ;
			attr->sa_allocsz =
			    SMB_ALLOCSZ(attr->sa_vattr.va_size);
		}
		break;

	case SMB_AT_ALLOCSZ | SMB_AT_SIZE:
		/*
		 * Setting both.  Increase alloc size if needed.
		 */
		if (attr->sa_allocsz < attr->sa_vattr.va_size)
			attr->sa_allocsz =
			    SMB_ALLOCSZ(attr->sa_vattr.va_size);
		break;

	default:
		break;
	}

	/*
	 * When operating on an open file, some settable attributes
	 * become "sticky" in the open file object until close.
	 * (see above re. timestamps)
	 */
	times_mask = attr->sa_mask & SMB_AT_TIMES;
	if (of != NULL && times_mask != 0) {
		smb_attr_t *pa;

		SMB_OFILE_VALID(of);
		mutex_enter(&of->f_mutex);
		pa = &of->f_pending_attr;

		pa->sa_mask |= times_mask;

		if (times_mask & SMB_AT_ATIME)
			pa->sa_vattr.va_atime =
			    attr->sa_vattr.va_atime;
		if (times_mask & SMB_AT_MTIME)
			pa->sa_vattr.va_mtime =
			    attr->sa_vattr.va_mtime;
		if (times_mask & SMB_AT_CTIME)
			pa->sa_vattr.va_ctime =
			    attr->sa_vattr.va_ctime;
		if (times_mask & SMB_AT_CRTIME)
			pa->sa_crtime =
			    attr->sa_crtime;

		mutex_exit(&of->f_mutex);

		/*
		 * The f_pending_attr times are reapplied in
		 * smb_ofile_close().
		 */

		/*
		 * If this change is coming directly from a client
		 * (sr != NULL) and it's a persistent handle, save
		 * the "sticky times" in the handle.
		 */
		if (sr != NULL && of->dh_persist) {
			smb2_dh_update_times(sr, of, attr);
		}
	}

	if ((attr->sa_mask & SMB_AT_ALLOCSZ) != 0) {
		mutex_enter(&node->n_mutex);
		/*
		 * Simulate n_allocsz persistence only while
		 * there are opens.  See smb_node_getattr
		 */
		if (node->n_open_count != 0)
			node->n_allocsz = attr->sa_allocsz;
		mutex_exit(&node->n_mutex);
	}

	rc = smb_fsop_setattr(sr, cr, node, attr);

	/*
	 * Only generate change notify events for client requests.
	 * Internal operations use sr=NULL
	 */
	if (rc == 0 && sr != NULL)
		smb_node_notify_modified(node);

	return (rc);
}

/*
 * smb_node_getattr
 *
 * Get attributes from the file system and apply any smb-specific
 * overrides for size, dos attributes and timestamps
 *
 * Returns: errno
 */
int
smb_node_getattr(smb_request_t *sr, smb_node_t *node, cred_t *cr,
    smb_ofile_t *of, smb_attr_t *attr)
{
	int rc;
	uint_t want_mask, pend_mask;
	boolean_t isdir;

	SMB_NODE_VALID(node);

	/* Deal with some interdependencies */
	if (attr->sa_mask & SMB_AT_ALLOCSZ)
		attr->sa_mask |= SMB_AT_SIZE;
	if (attr->sa_mask & SMB_AT_DOSATTR)
		attr->sa_mask |= SMB_AT_TYPE;

	rc = smb_fsop_getattr(sr, cr, node, attr);
	if (rc != 0)
		return (rc);

	isdir = smb_node_is_dir(node);

	mutex_enter(&node->n_mutex);

	if (attr->sa_mask & SMB_AT_DOSATTR) {
		if (attr->sa_dosattr == 0) {
			attr->sa_dosattr = (isdir) ?
			    FILE_ATTRIBUTE_DIRECTORY:
			    FILE_ATTRIBUTE_NORMAL;
		}
	}

	/*
	 * Also fix-up sa_allocsz, which is not persistent.
	 * When there are no open files, allocsz is faked.
	 * While there are open files, we pretend we have a
	 * persistent allocation size in n_allocsz, and
	 * keep that up-to-date here, increasing it when
	 * we see the file size grow past it.
	 */
	if (attr->sa_mask & SMB_AT_ALLOCSZ) {
		if (isdir) {
			attr->sa_allocsz = 0;
		} else if (node->n_open_count == 0) {
			attr->sa_allocsz =
			    SMB_ALLOCSZ(attr->sa_vattr.va_size);
		} else {
			if (node->n_allocsz < attr->sa_vattr.va_size)
				node->n_allocsz =
				    SMB_ALLOCSZ(attr->sa_vattr.va_size);
			attr->sa_allocsz = node->n_allocsz;
		}
	}

	mutex_exit(&node->n_mutex);

	if (isdir) {
		attr->sa_vattr.va_size = 0;
		attr->sa_vattr.va_nlink = 1;
	}

	/*
	 * getattr with an ofile gets any "pending" times that
	 * might have been previously set via this ofile.
	 * This is what makes these times "sticky".
	 */
	want_mask = attr->sa_mask & SMB_AT_TIMES;
	if (of != NULL && want_mask != 0) {
		smb_attr_t *pa;

		SMB_OFILE_VALID(of);
		mutex_enter(&of->f_mutex);
		pa = &of->f_pending_attr;

		pend_mask = pa->sa_mask;

		if (want_mask & pend_mask & SMB_AT_ATIME)
			attr->sa_vattr.va_atime =
			    pa->sa_vattr.va_atime;
		if (want_mask & pend_mask & SMB_AT_MTIME)
			attr->sa_vattr.va_mtime =
			    pa->sa_vattr.va_mtime;
		if (want_mask & pend_mask & SMB_AT_CTIME)
			attr->sa_vattr.va_ctime =
			    pa->sa_vattr.va_ctime;
		if (want_mask & pend_mask & SMB_AT_CRTIME)
			attr->sa_crtime =
			    pa->sa_crtime;

		mutex_exit(&of->f_mutex);
	}


	return (0);
}


#ifndef	_KERNEL
extern int reparse_vnode_parse(vnode_t *vp, nvlist_t *nvl);
#endif	/* _KERNEL */

/*
 * Check to see if the node represents a reparse point.
 * If yes, whether the reparse point contains a DFS link.
 */
static void
smb_node_init_reparse(smb_node_t *node, smb_attr_t *attr)
{
	nvlist_t *nvl;
	nvpair_t *rec;
	char *rec_type;

	if ((attr->sa_dosattr & FILE_ATTRIBUTE_REPARSE_POINT) == 0)
		return;

	if ((nvl = reparse_init()) == NULL)
		return;

	if (reparse_vnode_parse(node->vp, nvl) != 0) {
		reparse_free(nvl);
		return;
	}

	node->flags |= NODE_FLAGS_REPARSE;

	rec = nvlist_next_nvpair(nvl, NULL);
	while (rec != NULL) {
		rec_type = nvpair_name(rec);
		if ((rec_type != NULL) &&
		    (strcasecmp(rec_type, DFS_REPARSE_SVCTYPE) == 0)) {
			node->flags |= NODE_FLAGS_DFSLINK;
			break;
		}
		rec = nvlist_next_nvpair(nvl, rec);
	}

	reparse_free(nvl);
}

/*
 * smb_node_init_system
 *
 * If the node represents a special system file set NODE_FLAG_SYSTEM.
 * System files:
 * - any node whose parent dnode has NODE_FLAG_SYSTEM set
 * - any node whose associated unnamed stream node (unode) has
 *   NODE_FLAG_SYSTEM set
 * - .$EXTEND at root of share (quota management)
 */
static void
smb_node_init_system(smb_node_t *node)
{
	smb_node_t *dnode = node->n_dnode;
	smb_node_t *unode = node->n_unode;

	if ((dnode) && (dnode->flags & NODE_FLAGS_SYSTEM)) {
		node->flags |= NODE_FLAGS_SYSTEM;
		return;
	}

	if ((unode) && (unode->flags & NODE_FLAGS_SYSTEM)) {
		node->flags |= NODE_FLAGS_SYSTEM;
		return;
	}

	if ((dnode) && (smb_node_is_vfsroot(node->n_dnode) &&
	    (strcasecmp(node->od_name, ".$EXTEND") == 0))) {
		node->flags |= NODE_FLAGS_SYSTEM;
	}
}