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
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2007 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
/*
* Vnode operations for the High Sierra filesystem
*/
#include <sys/types.h>
#include <sys/t_lock.h>
#include <sys/param.h>
#include <sys/time.h>
#include <sys/systm.h>
#include <sys/sysmacros.h>
#include <sys/resource.h>
#include <sys/signal.h>
#include <sys/cred.h>
#include <sys/user.h>
#include <sys/buf.h>
#include <sys/vfs.h>
#include <sys/vfs_opreg.h>
#include <sys/stat.h>
#include <sys/vnode.h>
#include <sys/mode.h>
#include <sys/proc.h>
#include <sys/disp.h>
#include <sys/file.h>
#include <sys/fcntl.h>
#include <sys/flock.h>
#include <sys/kmem.h>
#include <sys/uio.h>
#include <sys/conf.h>
#include <sys/errno.h>
#include <sys/mman.h>
#include <sys/pathname.h>
#include <sys/debug.h>
#include <sys/vmsystm.h>
#include <sys/cmn_err.h>
#include <sys/fbuf.h>
#include <sys/dirent.h>
#include <sys/errno.h>
#include <vm/hat.h>
#include <vm/page.h>
#include <vm/pvn.h>
#include <vm/as.h>
#include <vm/seg.h>
#include <vm/seg_map.h>
#include <vm/seg_kmem.h>
#include <vm/seg_vn.h>
#include <vm/rm.h>
#include <vm/page.h>
#include <sys/swap.h>
#include <sys/fs/hsfs_spec.h>
#include <sys/fs/hsfs_node.h>
#include <sys/fs/hsfs_impl.h>
#include <sys/fs/hsfs_susp.h>
#include <sys/fs/hsfs_rrip.h>
#include <fs/fs_subr.h>
/* ARGSUSED */
static int
hsfs_fsync(vnode_t *cp, int syncflag, cred_t *cred)
{
return (0);
}
/*ARGSUSED*/
static int
hsfs_read(struct vnode *vp, struct uio *uiop, int ioflag, struct cred *cred,
struct caller_context *ct)
{
caddr_t base;
offset_t diff;
int error;
struct hsnode *hp;
uint_t filesize;
hp = VTOH(vp);
/*
* if vp is of type VDIR, make sure dirent
* is filled up with all info (because of ptbl)
*/
if (vp->v_type == VDIR) {
if (hp->hs_dirent.ext_size == 0)
hs_filldirent(vp, &hp->hs_dirent);
}
filesize = hp->hs_dirent.ext_size;
/* Sanity checks. */
if (uiop->uio_resid == 0 || /* No data wanted. */
uiop->uio_loffset > HS_MAXFILEOFF || /* Offset too big. */
uiop->uio_loffset >= filesize) /* Past EOF. */
return (0);
do {
/*
* We want to ask for only the "right" amount of data.
* In this case that means:-
*
* We can't get data from beyond our EOF. If asked,
* we will give a short read.
*
* segmap_getmapflt returns buffers of MAXBSIZE bytes.
* These buffers are always MAXBSIZE aligned.
* If our starting offset is not MAXBSIZE aligned,
* we can only ask for less than MAXBSIZE bytes.
*
* If our requested offset and length are such that
* they belong in different MAXBSIZE aligned slots
* then we'll be making more than one call on
* segmap_getmapflt.
*
* This diagram shows the variables we use and their
* relationships.
*
* |<-----MAXBSIZE----->|
* +--------------------------...+
* |.....mapon->|<--n-->|....*...|EOF
* +--------------------------...+
* uio_loffset->|
* uio_resid....|<---------->|
* diff.........|<-------------->|
*
* So, in this case our offset is not aligned
* and our request takes us outside of the
* MAXBSIZE window. We will break this up into
* two segmap_getmapflt calls.
*/
size_t nbytes;
offset_t mapon;
size_t n;
uint_t flags;
mapon = uiop->uio_loffset & MAXBOFFSET;
diff = filesize - uiop->uio_loffset;
nbytes = (size_t)MIN(MAXBSIZE - mapon, uiop->uio_resid);
n = MIN(diff, nbytes);
if (n <= 0) {
/* EOF or request satisfied. */
return (0);
}
base = segmap_getmapflt(segkmap, vp,
(u_offset_t)uiop->uio_loffset, n, 1, S_READ);
error = uiomove(base + mapon, n, UIO_READ, uiop);
if (error == 0) {
/*
* if read a whole block, or read to eof,
* won't need this buffer again soon.
*/
if (n + mapon == MAXBSIZE ||
uiop->uio_loffset == filesize)
flags = SM_DONTNEED;
else
flags = 0;
error = segmap_release(segkmap, base, flags);
} else
(void) segmap_release(segkmap, base, 0);
} while (error == 0 && uiop->uio_resid > 0);
return (error);
}
/*ARGSUSED2*/
static int
hsfs_getattr(
struct vnode *vp,
struct vattr *vap,
int flags,
struct cred *cred)
{
struct hsnode *hp;
struct vfs *vfsp;
struct hsfs *fsp;
hp = VTOH(vp);
fsp = VFS_TO_HSFS(vp->v_vfsp);
vfsp = vp->v_vfsp;
if ((hp->hs_dirent.ext_size == 0) && (vp->v_type == VDIR)) {
hs_filldirent(vp, &hp->hs_dirent);
}
vap->va_type = IFTOVT(hp->hs_dirent.mode);
vap->va_mode = hp->hs_dirent.mode;
vap->va_uid = hp->hs_dirent.uid;
vap->va_gid = hp->hs_dirent.gid;
vap->va_fsid = vfsp->vfs_dev;
vap->va_nodeid = (ino64_t)hp->hs_nodeid;
vap->va_nlink = hp->hs_dirent.nlink;
vap->va_size = (offset_t)hp->hs_dirent.ext_size;
vap->va_atime.tv_sec = hp->hs_dirent.adate.tv_sec;
vap->va_atime.tv_nsec = hp->hs_dirent.adate.tv_usec*1000;
vap->va_mtime.tv_sec = hp->hs_dirent.mdate.tv_sec;
vap->va_mtime.tv_nsec = hp->hs_dirent.mdate.tv_usec*1000;
vap->va_ctime.tv_sec = hp->hs_dirent.cdate.tv_sec;
vap->va_ctime.tv_nsec = hp->hs_dirent.cdate.tv_usec*1000;
if (vp->v_type == VCHR || vp->v_type == VBLK)
vap->va_rdev = hp->hs_dirent.r_dev;
else
vap->va_rdev = 0;
vap->va_blksize = vfsp->vfs_bsize;
/* no. of blocks = no. of data blocks + no. of xar blocks */
vap->va_nblocks = (fsblkcnt64_t)howmany(vap->va_size + (u_longlong_t)
(hp->hs_dirent.xar_len << fsp->hsfs_vol.lbn_shift), DEV_BSIZE);
vap->va_seq = hp->hs_seq;
return (0);
}
/*ARGSUSED*/
static int
hsfs_readlink(struct vnode *vp, struct uio *uiop, struct cred *cred)
{
struct hsnode *hp;
if (vp->v_type != VLNK)
return (EINVAL);
hp = VTOH(vp);
if (hp->hs_dirent.sym_link == (char *)NULL)
return (ENOENT);
return (uiomove(hp->hs_dirent.sym_link,
(size_t)MIN(hp->hs_dirent.ext_size,
uiop->uio_resid), UIO_READ, uiop));
}
/*ARGSUSED*/
static void
hsfs_inactive(struct vnode *vp, struct cred *cred)
{
struct hsnode *hp;
struct hsfs *fsp;
int nopage;
hp = VTOH(vp);
fsp = VFS_TO_HSFS(vp->v_vfsp);
/*
* Note: acquiring and holding v_lock for quite a while
* here serializes on the vnode; this is unfortunate, but
* likely not to overly impact performance, as the underlying
* device (CDROM drive) is quite slow.
*/
rw_enter(&fsp->hsfs_hash_lock, RW_WRITER);
mutex_enter(&hp->hs_contents_lock);
mutex_enter(&vp->v_lock);
if (vp->v_count < 1) {
panic("hsfs_inactive: v_count < 1");
/*NOTREACHED*/
}
if (vp->v_count > 1 || (hp->hs_flags & HREF) == 0) {
vp->v_count--; /* release hold from vn_rele */
mutex_exit(&vp->v_lock);
mutex_exit(&hp->hs_contents_lock);
rw_exit(&fsp->hsfs_hash_lock);
return;
}
vp->v_count--; /* release hold from vn_rele */
if (vp->v_count == 0) {
/*
* Free the hsnode.
* If there are no pages associated with the
* hsnode, give it back to the kmem_cache,
* else put at the end of this file system's
* internal free list.
*/
nopage = !vn_has_cached_data(vp);
hp->hs_flags = 0;
/*
* exit these locks now, since hs_freenode may
* kmem_free the hsnode and embedded vnode
*/
mutex_exit(&vp->v_lock);
mutex_exit(&hp->hs_contents_lock);
hs_freenode(vp, fsp, nopage);
} else {
mutex_exit(&vp->v_lock);
mutex_exit(&hp->hs_contents_lock);
}
rw_exit(&fsp->hsfs_hash_lock);
}
/*ARGSUSED*/
static int
hsfs_lookup(
struct vnode *dvp,
char *nm,
struct vnode **vpp,
struct pathname *pnp,
int flags,
struct vnode *rdir,
struct cred *cred)
{
int error;
int namelen = (int)strlen(nm);
if (*nm == '\0') {
VN_HOLD(dvp);
*vpp = dvp;
return (0);
}
/*
* If we're looking for ourself, life is simple.
*/
if (namelen == 1 && *nm == '.') {
if (error = hs_access(dvp, (mode_t)VEXEC, cred))
return (error);
VN_HOLD(dvp);
*vpp = dvp;
return (0);
}
return (hs_dirlook(dvp, nm, namelen, vpp, cred));
}
/*ARGSUSED*/
static int
hsfs_readdir(
struct vnode *vp,
struct uio *uiop,
struct cred *cred,
int *eofp)
{
struct hsnode *dhp;
struct hsfs *fsp;
struct hs_direntry hd;
struct dirent64 *nd;
int error;
uint_t offset; /* real offset in directory */
uint_t dirsiz; /* real size of directory */
uchar_t *blkp;
int hdlen; /* length of hs directory entry */
long ndlen; /* length of dirent entry */
int bytes_wanted;
size_t bufsize; /* size of dirent buffer */
char *outbuf; /* ptr to dirent buffer */
char *dname;
int dnamelen;
size_t dname_size;
struct fbuf *fbp;
uint_t last_offset; /* last index into current dir block */
ulong_t dir_lbn; /* lbn of directory */
ino64_t dirino; /* temporary storage before storing in dirent */
off_t diroff;
dhp = VTOH(vp);
fsp = VFS_TO_HSFS(vp->v_vfsp);
if (dhp->hs_dirent.ext_size == 0)
hs_filldirent(vp, &dhp->hs_dirent);
dirsiz = dhp->hs_dirent.ext_size;
dir_lbn = dhp->hs_dirent.ext_lbn;
if (uiop->uio_loffset >= dirsiz) { /* at or beyond EOF */
if (eofp)
*eofp = 1;
return (0);
}
ASSERT(uiop->uio_loffset <= HS_MAXFILEOFF);
offset = uiop->uio_loffset;
dname_size = fsp->hsfs_namemax + 1; /* 1 for the ending NUL */
dname = kmem_alloc(dname_size, KM_SLEEP);
bufsize = uiop->uio_resid + sizeof (struct dirent64);
outbuf = kmem_alloc(bufsize, KM_SLEEP);
nd = (struct dirent64 *)outbuf;
while (offset < dirsiz) {
bytes_wanted = MIN(MAXBSIZE, dirsiz - (offset & MAXBMASK));
error = fbread(vp, (offset_t)(offset & MAXBMASK),
(unsigned int)bytes_wanted, S_READ, &fbp);
if (error)
goto done;
blkp = (uchar_t *)fbp->fb_addr;
last_offset = (offset & MAXBMASK) + fbp->fb_count;
#define rel_offset(offset) ((offset) & MAXBOFFSET) /* index into blkp */
while (offset < last_offset) {
/*
* Very similar validation code is found in
* process_dirblock(), hsfs_node.c.
* For an explanation, see there.
* It may make sense for the future to
* "consolidate" the code in hs_parsedir(),
* process_dirblock() and hsfs_readdir() into
* a single utility function.
*/
hdlen = (int)((uchar_t)
HDE_DIR_LEN(&blkp[rel_offset(offset)]));
if (hdlen < HDE_ROOT_DIR_REC_SIZE ||
offset + hdlen > last_offset) {
/*
* advance to next sector boundary
*/
offset = roundup(offset + 1, HS_SECTOR_SIZE);
if (hdlen)
hs_log_bogus_disk_warning(fsp,
HSFS_ERR_TRAILING_JUNK, 0);
continue;
}
bzero(&hd, sizeof (hd));
/*
* Just ignore invalid directory entries.
* XXX - maybe hs_parsedir() will detect EXISTENCE bit
*/
if (!hs_parsedir(fsp, &blkp[rel_offset(offset)],
&hd, dname, &dnamelen,
last_offset - rel_offset(offset))) {
/*
* Determine if there is enough room
*/
ndlen = (long)DIRENT64_RECLEN((dnamelen));
if ((ndlen + ((char *)nd - outbuf)) >
uiop->uio_resid) {
fbrelse(fbp, S_READ);
goto done; /* output buffer full */
}
diroff = offset + hdlen;
/*
* Generate nodeid.
* If a directory, nodeid points to the
* canonical dirent describing the directory:
* the dirent of the "." entry for the
* directory, which is pointed to by all
* dirents for that directory.
* Otherwise, nodeid points to dirent of file.
*/
if (hd.type == VDIR) {
dirino = (ino64_t)
MAKE_NODEID(hd.ext_lbn, 0,
vp->v_vfsp);
} else {
struct hs_volume *hvp;
offset_t lbn, off;
/*
* Normalize lbn and off
*/
hvp = &fsp->hsfs_vol;
lbn = dir_lbn +
(offset >> hvp->lbn_shift);
off = offset & hvp->lbn_maxoffset;
dirino = (ino64_t)MAKE_NODEID(lbn,
off, vp->v_vfsp);
}
/* strncpy(9f) will zero uninitialized bytes */
ASSERT(strlen(dname) + 1 <=
DIRENT64_NAMELEN(ndlen));
(void) strncpy(nd->d_name, dname,
DIRENT64_NAMELEN(ndlen));
nd->d_reclen = (ushort_t)ndlen;
nd->d_off = (offset_t)diroff;
nd->d_ino = dirino;
nd = (struct dirent64 *)((char *)nd + ndlen);
/*
* free up space allocated for symlink
*/
if (hd.sym_link != (char *)NULL) {
kmem_free(hd.sym_link,
(size_t)(hd.ext_size+1));
hd.sym_link = (char *)NULL;
}
}
offset += hdlen;
}
fbrelse(fbp, S_READ);
}
/*
* Got here for one of the following reasons:
* 1) outbuf is full (error == 0)
* 2) end of directory reached (error == 0)
* 3) error reading directory sector (error != 0)
* 4) directory entry crosses sector boundary (error == 0)
*
* If any directory entries have been copied, don't report
* case 4. Instead, return the valid directory entries.
*
* If no entries have been copied, report the error.
* If case 4, this will be indistiguishable from EOF.
*/
done:
ndlen = ((char *)nd - outbuf);
if (ndlen != 0) {
error = uiomove(outbuf, (size_t)ndlen, UIO_READ, uiop);
uiop->uio_loffset = offset;
}
kmem_free(dname, dname_size);
kmem_free(outbuf, bufsize);
if (eofp && error == 0)
*eofp = (uiop->uio_loffset >= dirsiz);
return (error);
}
static int
hsfs_fid(struct vnode *vp, struct fid *fidp)
{
struct hsnode *hp;
struct hsfid *fid;
if (fidp->fid_len < (sizeof (*fid) - sizeof (fid->hf_len))) {
fidp->fid_len = sizeof (*fid) - sizeof (fid->hf_len);
return (ENOSPC);
}
fid = (struct hsfid *)fidp;
fid->hf_len = sizeof (*fid) - sizeof (fid->hf_len);
hp = VTOH(vp);
mutex_enter(&hp->hs_contents_lock);
fid->hf_dir_lbn = hp->hs_dir_lbn;
fid->hf_dir_off = (ushort_t)hp->hs_dir_off;
mutex_exit(&hp->hs_contents_lock);
return (0);
}
/*ARGSUSED*/
static int
hsfs_open(struct vnode **vpp, int flag, struct cred *cred)
{
return (0);
}
/*ARGSUSED*/
static int
hsfs_close(
struct vnode *vp,
int flag,
int count,
offset_t offset,
struct cred *cred)
{
(void) cleanlocks(vp, ttoproc(curthread)->p_pid, 0);
cleanshares(vp, ttoproc(curthread)->p_pid);
return (0);
}
/*ARGSUSED2*/
static int
hsfs_access(struct vnode *vp, int mode, int flags, cred_t *cred)
{
return (hs_access(vp, (mode_t)mode, cred));
}
/*
* the seek time of a CD-ROM is very slow, and data transfer
* rate is even worse (max. 150K per sec). The design
* decision is to reduce access to cd-rom as much as possible,
* and to transfer a sizable block (read-ahead) of data at a time.
* UFS style of read ahead one block at a time is not appropriate,
* and is not supported
*/
/*
* KLUSTSIZE should be a multiple of PAGESIZE and <= MAXPHYS.
*/
#define KLUSTSIZE (56 * 1024)
/* we don't support read ahead */
int hsfs_lostpage; /* no. of times we lost original page */
/*
* Used to prevent biodone() from releasing buf resources that
* we didn't allocate in quite the usual way.
*/
/*ARGSUSED*/
int
hsfs_iodone(struct buf *bp)
{
sema_v(&bp->b_io);
return (0);
}
/*
* Each file may have a different interleaving on disk. This makes
* things somewhat interesting. The gist is that there are some
* number of contiguous data sectors, followed by some other number
* of contiguous skip sectors. The sum of those two sets of sectors
* defines the interleave size. Unfortunately, it means that we generally
* can't simply read N sectors starting at a given offset to satisfy
* any given request.
*
* What we do is get the relevant memory pages via pvn_read_kluster(),
* then stride through the interleaves, setting up a buf for each
* sector that needs to be brought in. Instead of kmem_alloc'ing
* space for the sectors, though, we just point at the appropriate
* spot in the relevant page for each of them. This saves us a bunch
* of copying.
*/
/*ARGSUSED*/
static int
hsfs_getapage(
struct vnode *vp,
u_offset_t off,
size_t len,
uint_t *protp,
struct page *pl[],
size_t plsz,
struct seg *seg,
caddr_t addr,
enum seg_rw rw,
struct cred *cred)
{
struct hsnode *hp;
struct hsfs *fsp;
int err;
struct buf *bufs;
caddr_t *vas;
caddr_t va;
struct page *pp, *searchp, *lastp;
page_t *pagefound;
offset_t bof;
struct vnode *devvp;
ulong_t byte_offset;
size_t io_len_tmp;
uint_t io_off, io_len;
uint_t xlen;
uint_t filsiz;
uint_t secsize;
uint_t bufcnt;
uint_t bufsused;
uint_t count;
uint_t io_end;
uint_t which_chunk_lbn;
uint_t offset_lbn;
uint_t offset_extra;
offset_t offset_bytes;
uint_t remaining_bytes;
uint_t extension;
int remainder; /* must be signed */
int chunk_lbn_count;
int chunk_data_bytes;
int xarsiz;
diskaddr_t driver_block;
u_offset_t io_off_tmp;
/*
* We don't support asynchronous operation at the moment, so
* just pretend we did it. If the pages are ever actually
* needed, they'll get brought in then.
*/
if (pl == NULL)
return (0);
hp = VTOH(vp);
fsp = VFS_TO_HSFS(vp->v_vfsp);
devvp = fsp->hsfs_devvp;
secsize = fsp->hsfs_vol.lbn_size; /* bytes per logical block */
/* file data size */
filsiz = hp->hs_dirent.ext_size;
/* disk addr for start of file */
bof = LBN_TO_BYTE((offset_t)hp->hs_dirent.ext_lbn, vp->v_vfsp);
/* xarsiz byte must be skipped for data */
xarsiz = hp->hs_dirent.xar_len << fsp->hsfs_vol.lbn_shift;
/* how many logical blocks in an interleave (data+skip) */
chunk_lbn_count = hp->hs_dirent.intlf_sz + hp->hs_dirent.intlf_sk;
if (chunk_lbn_count == 0) {
chunk_lbn_count = 1;
}
/*
* Convert interleaving size into bytes. The zero case
* (no interleaving) optimization is handled as a side-
* effect of the read-ahead logic.
*/
if (hp->hs_dirent.intlf_sz == 0) {
chunk_data_bytes = LBN_TO_BYTE(1, vp->v_vfsp);
} else {
chunk_data_bytes = LBN_TO_BYTE(hp->hs_dirent.intlf_sz,
vp->v_vfsp);
}
reread:
err = 0;
pagefound = 0;
/*
* Do some read-ahead. This mostly saves us a bit of
* system cpu time more than anything else when doing
* sequential reads. At some point, could do the
* read-ahead asynchronously which might gain us something
* on wall time, but it seems unlikely....
*
* We do the easy case here, which is to read through
* the end of the chunk, minus whatever's at the end that
* won't exactly fill a page.
*/
which_chunk_lbn = (off + len) / chunk_data_bytes;
extension = ((which_chunk_lbn + 1) * chunk_data_bytes) - off;
extension -= (extension % PAGESIZE);
if (extension != 0 && extension < filsiz - off) {
len = extension;
} else {
len = PAGESIZE;
}
/*
* Some cd writers don't write sectors that aren't used. Also,
* there's no point in reading sectors we'll never look at. So,
* if we're asked to go beyond the end of a file, truncate to the
* length of that file.
*
* Additionally, this behaviour is required by section 6.4.5 of
* ISO 9660:1988(E).
*/
if (len > (filsiz - off)) {
len = filsiz - off;
}
/* A little paranoia. */
ASSERT(len > 0);
/*
* After all that, make sure we're asking for things in units
* that bdev_strategy() will understand (see bug 4202551).
*/
len = roundup(len, DEV_BSIZE);
pp = NULL;
again:
/* search for page in buffer */
if ((pagefound = page_exists(vp, off)) == 0) {
/*
* Need to really do disk IO to get the page.
*/
pp = pvn_read_kluster(vp, off, seg, addr, &io_off_tmp,
&io_len_tmp, off, len, 0);
if (pp == NULL)
goto again;
io_off = (uint_t)io_off_tmp;
io_len = (uint_t)io_len_tmp;
/* check for truncation */
/*
* xxx Clean up and return EIO instead?
* xxx Ought to go to u_offset_t for everything, but we
* xxx call lots of things that want uint_t arguments.
*/
ASSERT(io_off == io_off_tmp);
/*
* get enough buffers for worst-case scenario
* (i.e., no coalescing possible).
*/
bufcnt = (len + secsize - 1) / secsize;
bufs = kmem_zalloc(bufcnt * sizeof (struct buf), KM_SLEEP);
vas = kmem_alloc(bufcnt * sizeof (caddr_t), KM_SLEEP);
for (count = 0; count < bufcnt; count++) {
bufs[count].b_edev = devvp->v_rdev;
bufs[count].b_dev = cmpdev(devvp->v_rdev);
bufs[count].b_flags = B_NOCACHE|B_BUSY|B_READ;
bufs[count].b_iodone = hsfs_iodone;
bufs[count].b_vp = vp;
bufs[count].b_file = vp;
sema_init(&bufs[count].b_io, 0, NULL,
SEMA_DEFAULT, NULL);
sema_init(&bufs[count].b_sem, 0, NULL,
SEMA_DEFAULT, NULL);
}
/*
* If our filesize is not an integer multiple of PAGESIZE,
* we zero that part of the last page that's between EOF and
* the PAGESIZE boundary.
*/
xlen = io_len & PAGEOFFSET;
if (xlen != 0)
pagezero(pp->p_prev, xlen, PAGESIZE - xlen);
va = NULL;
lastp = NULL;
searchp = pp;
io_end = io_off + io_len;
for (count = 0, byte_offset = io_off;
byte_offset < io_end;
count++) {
ASSERT(count < bufcnt);
/* Compute disk address for interleaving. */
/* considered without skips */
which_chunk_lbn = byte_offset / chunk_data_bytes;
/* factor in skips */
offset_lbn = which_chunk_lbn * chunk_lbn_count;
/* convert to physical byte offset for lbn */
offset_bytes = LBN_TO_BYTE(offset_lbn, vp->v_vfsp);
/* don't forget offset into lbn */
offset_extra = byte_offset % chunk_data_bytes;
/* get virtual block number for driver */
driver_block = lbtodb(bof + xarsiz
+ offset_bytes + offset_extra);
if (lastp != searchp) {
/* this branch taken first time through loop */
va = vas[count]
= ppmapin(searchp, PROT_WRITE,
(caddr_t)-1);
/* ppmapin() guarantees not to return NULL */
} else {
vas[count] = NULL;
}
bufs[count].b_un.b_addr = va + byte_offset % PAGESIZE;
bufs[count].b_offset =
(offset_t)(byte_offset - io_off + off);
/*
* We specifically use the b_lblkno member here
* as even in the 32 bit world driver_block can
* get very large in line with the ISO9660 spec.
*/
bufs[count].b_lblkno = driver_block;
remaining_bytes = ((which_chunk_lbn + 1)
* chunk_data_bytes)
- byte_offset;
/*
* remaining_bytes can't be zero, as we derived
* which_chunk_lbn directly from byte_offset.
*/
if ((remaining_bytes + byte_offset) < (off + len)) {
/* coalesce-read the rest of the chunk */
bufs[count].b_bcount = remaining_bytes;
} else {
/* get the final bits */
bufs[count].b_bcount = off + len - byte_offset;
}
/*
* It would be nice to do multiple pages'
* worth at once here when the opportunity
* arises, as that has been shown to improve
* our wall time. However, to do that
* requires that we use the pageio subsystem,
* which doesn't mix well with what we're
* already using here. We can't use pageio
* all the time, because that subsystem
* assumes that a page is stored in N
* contiguous blocks on the device.
* Interleaving violates that assumption.
*/
remainder = PAGESIZE - (byte_offset % PAGESIZE);
if (bufs[count].b_bcount > remainder) {
bufs[count].b_bcount = remainder;
}
bufs[count].b_bufsize = bufs[count].b_bcount;
if (((offset_t)byte_offset + bufs[count].b_bcount) >
HS_MAXFILEOFF) {
break;
}
byte_offset += bufs[count].b_bcount;
(void) bdev_strategy(&bufs[count]);
lwp_stat_update(LWP_STAT_INBLK, 1);
lastp = searchp;
if ((remainder - bufs[count].b_bcount) < 1) {
searchp = searchp->p_next;
}
}
bufsused = count;
/* Now wait for everything to come in */
for (count = 0; count < bufsused; count++) {
if (err == 0) {
err = biowait(&bufs[count]);
} else
(void) biowait(&bufs[count]);
}
/* Don't leak resources */
for (count = 0; count < bufcnt; count++) {
sema_destroy(&bufs[count].b_io);
sema_destroy(&bufs[count].b_sem);
if (count < bufsused && vas[count] != NULL) {
ppmapout(vas[count]);
}
}
kmem_free(vas, bufcnt * sizeof (caddr_t));
kmem_free(bufs, bufcnt * sizeof (struct buf));
}
if (err) {
pvn_read_done(pp, B_ERROR);
return (err);
}
/*
* Lock the requested page, and the one after it if possible.
* Don't bother if our caller hasn't given us a place to stash
* the page pointers, since otherwise we'd lock pages that would
* never get unlocked.
*/
if (pagefound) {
int index;
ulong_t soff;
/*
* Make sure it's in memory before we say it's here.
*/
if ((pp = page_lookup(vp, off, SE_SHARED)) == NULL) {
hsfs_lostpage++;
goto reread;
}
pl[0] = pp;
index = 1;
/*
* Try to lock the next page, if it exists, without
* blocking.
*/
plsz -= PAGESIZE;
/* LINTED (plsz is unsigned) */
for (soff = off + PAGESIZE; plsz > 0;
soff += PAGESIZE, plsz -= PAGESIZE) {
pp = page_lookup_nowait(vp, (u_offset_t)soff,
SE_SHARED);
if (pp == NULL)
break;
pl[index++] = pp;
}
pl[index] = NULL;
return (0);
}
if (pp != NULL) {
pvn_plist_init(pp, pl, plsz, off, io_len, rw);
}
return (err);
}
static int
hsfs_getpage(
struct vnode *vp,
offset_t off,
size_t len,
uint_t *protp,
struct page *pl[],
size_t plsz,
struct seg *seg,
caddr_t addr,
enum seg_rw rw,
struct cred *cred)
{
int err;
uint_t filsiz;
struct hsnode *hp = VTOH(vp);
/* does not support write */
if (rw == S_WRITE) {
panic("write attempt on READ ONLY HSFS");
/*NOTREACHED*/
}
if (vp->v_flag & VNOMAP) {
return (ENOSYS);
}
ASSERT(off <= HS_MAXFILEOFF);
/*
* Determine file data size for EOF check.
*/
filsiz = hp->hs_dirent.ext_size;
if ((off + len) > (offset_t)(filsiz + PAGEOFFSET) && seg != segkmap)
return (EFAULT); /* beyond EOF */
if (protp != NULL)
*protp = PROT_ALL;
if (len <= PAGESIZE)
err = hsfs_getapage(vp, (u_offset_t)off, len, protp, pl, plsz,
seg, addr, rw, cred);
else
err = pvn_getpages(hsfs_getapage, vp, off, len, protp,
pl, plsz, seg, addr, rw, cred);
return (err);
}
/*
* This function should never be called. We need to have it to pass
* it as an argument to other functions.
*/
/*ARGSUSED*/
int
hsfs_putapage(
vnode_t *vp,
page_t *pp,
u_offset_t *offp,
size_t *lenp,
int flags,
cred_t *cr)
{
/* should never happen - just destroy it */
cmn_err(CE_NOTE, "hsfs_putapage: dirty HSFS page");
pvn_write_done(pp, B_ERROR | B_WRITE | B_INVAL | B_FORCE | flags);
return (0);
}
/*
* The only flags we support are B_INVAL, B_FREE and B_DONTNEED.
* B_INVAL is set by:
*
* 1) the MC_SYNC command of memcntl(2) to support the MS_INVALIDATE flag.
* 2) the MC_ADVISE command of memcntl(2) with the MADV_DONTNEED advice
* which translates to an MC_SYNC with the MS_INVALIDATE flag.
*
* The B_FREE (as well as the B_DONTNEED) flag is set when the
* MADV_SEQUENTIAL advice has been used. VOP_PUTPAGE is invoked
* from SEGVN to release pages behind a pagefault.
*/
/*ARGSUSED*/
static int
hsfs_putpage(
struct vnode *vp,
offset_t off,
size_t len,
int flags,
struct cred *cr)
{
int error = 0;
if (vp->v_count == 0) {
panic("hsfs_putpage: bad v_count");
/*NOTREACHED*/
}
if (vp->v_flag & VNOMAP)
return (ENOSYS);
ASSERT(off <= HS_MAXFILEOFF);
if (!vn_has_cached_data(vp)) /* no pages mapped */
return (0);
if (len == 0) /* from 'off' to EOF */
error = pvn_vplist_dirty(vp, off,
hsfs_putapage, flags, cr);
else {
offset_t end_off = off + len;
offset_t file_size = VTOH(vp)->hs_dirent.ext_size;
offset_t io_off;
file_size = (file_size + PAGESIZE - 1) & PAGEMASK;
if (end_off > file_size)
end_off = file_size;
for (io_off = off; io_off < end_off; io_off += PAGESIZE) {
page_t *pp;
/*
* We insist on getting the page only if we are
* about to invalidate, free or write it and
* the B_ASYNC flag is not set.
*/
if ((flags & B_INVAL) || ((flags & B_ASYNC) == 0)) {
pp = page_lookup(vp, io_off,
(flags & (B_INVAL | B_FREE)) ?
SE_EXCL : SE_SHARED);
} else {
pp = page_lookup_nowait(vp, io_off,
(flags & B_FREE) ? SE_EXCL : SE_SHARED);
}
if (pp == NULL)
continue;
/*
* Normally pvn_getdirty() should return 0, which
* impies that it has done the job for us.
* The shouldn't-happen scenario is when it returns 1.
* This means that the page has been modified and
* needs to be put back.
* Since we can't write on a CD, we fake a failed
* I/O and force pvn_write_done() to destroy the page.
*/
if (pvn_getdirty(pp, flags) == 1) {
cmn_err(CE_NOTE,
"hsfs_putpage: dirty HSFS page");
pvn_write_done(pp, flags |
B_ERROR | B_WRITE | B_INVAL | B_FORCE);
}
}
}
return (error);
}
/*ARGSUSED*/
static int
hsfs_map(
struct vnode *vp,
offset_t off,
struct as *as,
caddr_t *addrp,
size_t len,
uchar_t prot,
uchar_t maxprot,
uint_t flags,
struct cred *cred)
{
struct segvn_crargs vn_a;
int error;
/* VFS_RECORD(vp->v_vfsp, VS_MAP, VS_CALL); */
if (vp->v_flag & VNOMAP)
return (ENOSYS);
if (off > HS_MAXFILEOFF || off < 0 ||
(off + len) < 0 || (off + len) > HS_MAXFILEOFF)
return (ENXIO);
if (vp->v_type != VREG) {
return (ENODEV);
}
/*
* If file is being locked, disallow mapping.
*/
if (vn_has_mandatory_locks(vp, VTOH(vp)->hs_dirent.mode))
return (EAGAIN);
as_rangelock(as);
if ((flags & MAP_FIXED) == 0) {
map_addr(addrp, len, off, 1, flags);
if (*addrp == NULL) {
as_rangeunlock(as);
return (ENOMEM);
}
} else {
/*
* User specified address - blow away any previous mappings
*/
(void) as_unmap(as, *addrp, len);
}
vn_a.vp = vp;
vn_a.offset = off;
vn_a.type = flags & MAP_TYPE;
vn_a.prot = prot;
vn_a.maxprot = maxprot;
vn_a.flags = flags & ~MAP_TYPE;
vn_a.cred = cred;
vn_a.amp = NULL;
vn_a.szc = 0;
vn_a.lgrp_mem_policy_flags = 0;
error = as_map(as, *addrp, len, segvn_create, &vn_a);
as_rangeunlock(as);
return (error);
}
/* ARGSUSED */
static int
hsfs_addmap(
struct vnode *vp,
offset_t off,
struct as *as,
caddr_t addr,
size_t len,
uchar_t prot,
uchar_t maxprot,
uint_t flags,
struct cred *cr)
{
struct hsnode *hp;
if (vp->v_flag & VNOMAP)
return (ENOSYS);
hp = VTOH(vp);
mutex_enter(&hp->hs_contents_lock);
hp->hs_mapcnt += btopr(len);
mutex_exit(&hp->hs_contents_lock);
return (0);
}
/*ARGSUSED*/
static int
hsfs_delmap(
struct vnode *vp,
offset_t off,
struct as *as,
caddr_t addr,
size_t len,
uint_t prot,
uint_t maxprot,
uint_t flags,
struct cred *cr)
{
struct hsnode *hp;
if (vp->v_flag & VNOMAP)
return (ENOSYS);
hp = VTOH(vp);
mutex_enter(&hp->hs_contents_lock);
hp->hs_mapcnt -= btopr(len); /* Count released mappings */
ASSERT(hp->hs_mapcnt >= 0);
mutex_exit(&hp->hs_contents_lock);
return (0);
}
/* ARGSUSED */
static int
hsfs_seek(struct vnode *vp, offset_t ooff, offset_t *noffp)
{
return ((*noffp < 0 || *noffp > MAXOFFSET_T) ? EINVAL : 0);
}
/* ARGSUSED */
static int
hsfs_frlock(
struct vnode *vp,
int cmd,
struct flock64 *bfp,
int flag,
offset_t offset,
struct flk_callback *flk_cbp,
cred_t *cr)
{
struct hsnode *hp = VTOH(vp);
/*
* If the file is being mapped, disallow fs_frlock.
* We are not holding the hs_contents_lock while checking
* hs_mapcnt because the current locking strategy drops all
* locks before calling fs_frlock.
* So, hs_mapcnt could change before we enter fs_frlock making
* it meaningless to have held hs_contents_lock in the first place.
*/
if (hp->hs_mapcnt > 0 && MANDLOCK(vp, hp->hs_dirent.mode))
return (EAGAIN);
return (fs_frlock(vp, cmd, bfp, flag, offset, flk_cbp, cr));
}
/* ARGSUSED */
static int
hsfs_pathconf(struct vnode *vp, int cmd, ulong_t *valp, struct cred *cr)
{
struct hsfs *fsp;
int error = 0;
switch (cmd) {
case _PC_NAME_MAX:
fsp = VFS_TO_HSFS(vp->v_vfsp);
*valp = fsp->hsfs_namemax;
break;
case _PC_FILESIZEBITS:
*valp = 33; /* Without multi extent support: 4 GB - 2k */
break;
default:
error = fs_pathconf(vp, cmd, valp, cr);
}
return (error);
}
const fs_operation_def_t hsfs_vnodeops_template[] = {
VOPNAME_OPEN, { .vop_open = hsfs_open },
VOPNAME_CLOSE, { .vop_close = hsfs_close },
VOPNAME_READ, { .vop_read = hsfs_read },
VOPNAME_GETATTR, { .vop_getattr = hsfs_getattr },
VOPNAME_ACCESS, { .vop_access = hsfs_access },
VOPNAME_LOOKUP, { .vop_lookup = hsfs_lookup },
VOPNAME_READDIR, { .vop_readdir = hsfs_readdir },
VOPNAME_READLINK, { .vop_readlink = hsfs_readlink },
VOPNAME_FSYNC, { .vop_fsync = hsfs_fsync },
VOPNAME_INACTIVE, { .vop_inactive = hsfs_inactive },
VOPNAME_FID, { .vop_fid = hsfs_fid },
VOPNAME_SEEK, { .vop_seek = hsfs_seek },
VOPNAME_FRLOCK, { .vop_frlock = hsfs_frlock },
VOPNAME_GETPAGE, { .vop_getpage = hsfs_getpage },
VOPNAME_PUTPAGE, { .vop_putpage = hsfs_putpage },
VOPNAME_MAP, { .vop_map = hsfs_map },
VOPNAME_ADDMAP, { .vop_addmap = hsfs_addmap },
VOPNAME_DELMAP, { .vop_delmap = hsfs_delmap },
VOPNAME_PATHCONF, { .vop_pathconf = hsfs_pathconf },
NULL, NULL
};
struct vnodeops *hsfs_vnodeops;
|