Print this page
7127 remove -Wno-missing-braces from Makefile.uts
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/uts/common/fs/pcfs/pc_vnops.c
+++ new/usr/src/uts/common/fs/pcfs/pc_vnops.c
1 1 /*
2 2 * CDDL HEADER START
3 3 *
4 4 * The contents of this file are subject to the terms of the
5 5 * Common Development and Distribution License (the "License").
6 6 * You may not use this file except in compliance with the License.
7 7 *
8 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 * or http://www.opensolaris.org/os/licensing.
10 10 * See the License for the specific language governing permissions
11 11 * and limitations under the License.
12 12 *
13 13 * When distributing Covered Code, include this CDDL HEADER in each
14 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 * If applicable, add the following below this CDDL HEADER, with the
16 16 * fields enclosed by brackets "[]" replaced with your own identifying
17 17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 18 *
19 19 * CDDL HEADER END
20 20 */
21 21
22 22 /*
23 23 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24 24 * Use is subject to license terms.
25 25 */
26 26
27 27 /*
28 28 * Copyright (c) 2013, Joyent, Inc. All rights reserved.
29 29 * Copyright 2015 Nexenta Systems, Inc. All rights reserved.
30 30 */
31 31
32 32 #include <sys/param.h>
33 33 #include <sys/t_lock.h>
34 34 #include <sys/systm.h>
35 35 #include <sys/sysmacros.h>
36 36 #include <sys/user.h>
37 37 #include <sys/buf.h>
38 38 #include <sys/stat.h>
39 39 #include <sys/vfs.h>
40 40 #include <sys/vfs_opreg.h>
41 41 #include <sys/dirent.h>
42 42 #include <sys/vnode.h>
43 43 #include <sys/proc.h>
44 44 #include <sys/file.h>
45 45 #include <sys/fcntl.h>
46 46 #include <sys/uio.h>
47 47 #include <sys/fs/pc_label.h>
48 48 #include <sys/fs/pc_fs.h>
49 49 #include <sys/fs/pc_dir.h>
50 50 #include <sys/fs/pc_node.h>
51 51 #include <sys/mman.h>
52 52 #include <sys/pathname.h>
53 53 #include <sys/vmsystm.h>
54 54 #include <sys/cmn_err.h>
55 55 #include <sys/debug.h>
56 56 #include <sys/statvfs.h>
57 57 #include <sys/unistd.h>
58 58 #include <sys/kmem.h>
59 59 #include <sys/conf.h>
60 60 #include <sys/flock.h>
61 61 #include <sys/policy.h>
62 62 #include <sys/sdt.h>
63 63 #include <sys/sunddi.h>
64 64 #include <sys/types.h>
65 65 #include <sys/errno.h>
66 66
67 67 #include <vm/seg.h>
68 68 #include <vm/page.h>
69 69 #include <vm/pvn.h>
70 70 #include <vm/seg_map.h>
71 71 #include <vm/seg_vn.h>
72 72 #include <vm/hat.h>
73 73 #include <vm/as.h>
74 74 #include <vm/seg_kmem.h>
75 75
76 76 #include <fs/fs_subr.h>
77 77
78 78 static int pcfs_open(struct vnode **, int, struct cred *, caller_context_t *ct);
79 79 static int pcfs_close(struct vnode *, int, int, offset_t, struct cred *,
80 80 caller_context_t *ct);
81 81 static int pcfs_read(struct vnode *, struct uio *, int, struct cred *,
82 82 caller_context_t *);
83 83 static int pcfs_write(struct vnode *, struct uio *, int, struct cred *,
84 84 caller_context_t *);
85 85 static int pcfs_getattr(struct vnode *, struct vattr *, int, struct cred *,
86 86 caller_context_t *ct);
87 87 static int pcfs_setattr(struct vnode *, struct vattr *, int, struct cred *,
88 88 caller_context_t *);
89 89 static int pcfs_access(struct vnode *, int, int, struct cred *,
90 90 caller_context_t *ct);
91 91 static int pcfs_lookup(struct vnode *, char *, struct vnode **,
92 92 struct pathname *, int, struct vnode *, struct cred *,
93 93 caller_context_t *, int *, pathname_t *);
94 94 static int pcfs_create(struct vnode *, char *, struct vattr *,
95 95 enum vcexcl, int mode, struct vnode **, struct cred *, int,
96 96 caller_context_t *, vsecattr_t *);
97 97 static int pcfs_remove(struct vnode *, char *, struct cred *,
98 98 caller_context_t *, int);
99 99 static int pcfs_rename(struct vnode *, char *, struct vnode *, char *,
100 100 struct cred *, caller_context_t *, int);
101 101 static int pcfs_mkdir(struct vnode *, char *, struct vattr *, struct vnode **,
102 102 struct cred *, caller_context_t *, int, vsecattr_t *);
103 103 static int pcfs_rmdir(struct vnode *, char *, struct vnode *, struct cred *,
104 104 caller_context_t *, int);
105 105 static int pcfs_readdir(struct vnode *, struct uio *, struct cred *, int *,
106 106 caller_context_t *, int);
107 107 static int pcfs_fsync(struct vnode *, int, struct cred *, caller_context_t *);
108 108 static void pcfs_inactive(struct vnode *, struct cred *, caller_context_t *);
109 109 static int pcfs_fid(struct vnode *vp, struct fid *fidp, caller_context_t *);
110 110 static int pcfs_space(struct vnode *, int, struct flock64 *, int,
111 111 offset_t, cred_t *, caller_context_t *);
112 112 static int pcfs_getpage(struct vnode *, offset_t, size_t, uint_t *, page_t *[],
113 113 size_t, struct seg *, caddr_t, enum seg_rw, struct cred *,
114 114 caller_context_t *);
115 115 static int pcfs_getapage(struct vnode *, u_offset_t, size_t, uint_t *,
116 116 page_t *[], size_t, struct seg *, caddr_t, enum seg_rw, struct cred *);
117 117 static int pcfs_putpage(struct vnode *, offset_t, size_t, int, struct cred *,
118 118 caller_context_t *);
119 119 static int pcfs_map(struct vnode *, offset_t, struct as *, caddr_t *, size_t,
120 120 uchar_t, uchar_t, uint_t, struct cred *, caller_context_t *);
121 121 static int pcfs_addmap(struct vnode *, offset_t, struct as *, caddr_t,
122 122 size_t, uchar_t, uchar_t, uint_t, struct cred *, caller_context_t *);
123 123 static int pcfs_delmap(struct vnode *, offset_t, struct as *, caddr_t,
124 124 size_t, uint_t, uint_t, uint_t, struct cred *, caller_context_t *);
125 125 static int pcfs_seek(struct vnode *, offset_t, offset_t *,
126 126 caller_context_t *);
127 127 static int pcfs_pathconf(struct vnode *, int, ulong_t *, struct cred *,
128 128 caller_context_t *);
129 129
130 130 int pcfs_putapage(struct vnode *, page_t *, u_offset_t *, size_t *, int,
131 131 struct cred *);
132 132 static int rwpcp(struct pcnode *, struct uio *, enum uio_rw, int);
133 133 static int get_long_fn_chunk(struct pcdir_lfn *ep, char *buf);
134 134
135 135 extern krwlock_t pcnodes_lock;
↓ open down ↓ |
135 lines elided |
↑ open up ↑ |
136 136
137 137 #define lround(r) (((r)+sizeof (long long)-1)&(~(sizeof (long long)-1)))
138 138
139 139 /*
140 140 * vnode op vectors for files and directories.
141 141 */
142 142 struct vnodeops *pcfs_fvnodeops;
143 143 struct vnodeops *pcfs_dvnodeops;
144 144
145 145 const fs_operation_def_t pcfs_fvnodeops_template[] = {
146 - VOPNAME_OPEN, { .vop_open = pcfs_open },
147 - VOPNAME_CLOSE, { .vop_close = pcfs_close },
148 - VOPNAME_READ, { .vop_read = pcfs_read },
149 - VOPNAME_WRITE, { .vop_write = pcfs_write },
150 - VOPNAME_GETATTR, { .vop_getattr = pcfs_getattr },
151 - VOPNAME_SETATTR, { .vop_setattr = pcfs_setattr },
152 - VOPNAME_ACCESS, { .vop_access = pcfs_access },
153 - VOPNAME_FSYNC, { .vop_fsync = pcfs_fsync },
154 - VOPNAME_INACTIVE, { .vop_inactive = pcfs_inactive },
155 - VOPNAME_FID, { .vop_fid = pcfs_fid },
156 - VOPNAME_SEEK, { .vop_seek = pcfs_seek },
157 - VOPNAME_SPACE, { .vop_space = pcfs_space },
158 - VOPNAME_GETPAGE, { .vop_getpage = pcfs_getpage },
159 - VOPNAME_PUTPAGE, { .vop_putpage = pcfs_putpage },
160 - VOPNAME_MAP, { .vop_map = pcfs_map },
161 - VOPNAME_ADDMAP, { .vop_addmap = pcfs_addmap },
162 - VOPNAME_DELMAP, { .vop_delmap = pcfs_delmap },
163 - VOPNAME_PATHCONF, { .vop_pathconf = pcfs_pathconf },
164 - VOPNAME_VNEVENT, { .vop_vnevent = fs_vnevent_support },
165 - NULL, NULL
146 + { VOPNAME_OPEN, { .vop_open = pcfs_open } },
147 + { VOPNAME_CLOSE, { .vop_close = pcfs_close } },
148 + { VOPNAME_READ, { .vop_read = pcfs_read } },
149 + { VOPNAME_WRITE, { .vop_write = pcfs_write } },
150 + { VOPNAME_GETATTR, { .vop_getattr = pcfs_getattr } },
151 + { VOPNAME_SETATTR, { .vop_setattr = pcfs_setattr } },
152 + { VOPNAME_ACCESS, { .vop_access = pcfs_access } },
153 + { VOPNAME_FSYNC, { .vop_fsync = pcfs_fsync } },
154 + { VOPNAME_INACTIVE, { .vop_inactive = pcfs_inactive } },
155 + { VOPNAME_FID, { .vop_fid = pcfs_fid } },
156 + { VOPNAME_SEEK, { .vop_seek = pcfs_seek } },
157 + { VOPNAME_SPACE, { .vop_space = pcfs_space } },
158 + { VOPNAME_GETPAGE, { .vop_getpage = pcfs_getpage } },
159 + { VOPNAME_PUTPAGE, { .vop_putpage = pcfs_putpage } },
160 + { VOPNAME_MAP, { .vop_map = pcfs_map } },
161 + { VOPNAME_ADDMAP, { .vop_addmap = pcfs_addmap } },
162 + { VOPNAME_DELMAP, { .vop_delmap = pcfs_delmap } },
163 + { VOPNAME_PATHCONF, { .vop_pathconf = pcfs_pathconf } },
164 + { VOPNAME_VNEVENT, { .vop_vnevent = fs_vnevent_support } },
165 + { NULL, { NULL } }
166 166 };
167 167
168 168 const fs_operation_def_t pcfs_dvnodeops_template[] = {
169 - VOPNAME_OPEN, { .vop_open = pcfs_open },
170 - VOPNAME_CLOSE, { .vop_close = pcfs_close },
171 - VOPNAME_GETATTR, { .vop_getattr = pcfs_getattr },
172 - VOPNAME_SETATTR, { .vop_setattr = pcfs_setattr },
173 - VOPNAME_ACCESS, { .vop_access = pcfs_access },
174 - VOPNAME_LOOKUP, { .vop_lookup = pcfs_lookup },
175 - VOPNAME_CREATE, { .vop_create = pcfs_create },
176 - VOPNAME_REMOVE, { .vop_remove = pcfs_remove },
177 - VOPNAME_RENAME, { .vop_rename = pcfs_rename },
178 - VOPNAME_MKDIR, { .vop_mkdir = pcfs_mkdir },
179 - VOPNAME_RMDIR, { .vop_rmdir = pcfs_rmdir },
180 - VOPNAME_READDIR, { .vop_readdir = pcfs_readdir },
181 - VOPNAME_FSYNC, { .vop_fsync = pcfs_fsync },
182 - VOPNAME_INACTIVE, { .vop_inactive = pcfs_inactive },
183 - VOPNAME_FID, { .vop_fid = pcfs_fid },
184 - VOPNAME_SEEK, { .vop_seek = pcfs_seek },
185 - VOPNAME_PATHCONF, { .vop_pathconf = pcfs_pathconf },
186 - VOPNAME_VNEVENT, { .vop_vnevent = fs_vnevent_support },
187 - NULL, NULL
169 + { VOPNAME_OPEN, { .vop_open = pcfs_open } },
170 + { VOPNAME_CLOSE, { .vop_close = pcfs_close } },
171 + { VOPNAME_GETATTR, { .vop_getattr = pcfs_getattr } },
172 + { VOPNAME_SETATTR, { .vop_setattr = pcfs_setattr } },
173 + { VOPNAME_ACCESS, { .vop_access = pcfs_access } },
174 + { VOPNAME_LOOKUP, { .vop_lookup = pcfs_lookup } },
175 + { VOPNAME_CREATE, { .vop_create = pcfs_create } },
176 + { VOPNAME_REMOVE, { .vop_remove = pcfs_remove } },
177 + { VOPNAME_RENAME, { .vop_rename = pcfs_rename } },
178 + { VOPNAME_MKDIR, { .vop_mkdir = pcfs_mkdir } },
179 + { VOPNAME_RMDIR, { .vop_rmdir = pcfs_rmdir } },
180 + { VOPNAME_READDIR, { .vop_readdir = pcfs_readdir } },
181 + { VOPNAME_FSYNC, { .vop_fsync = pcfs_fsync } },
182 + { VOPNAME_INACTIVE, { .vop_inactive = pcfs_inactive } },
183 + { VOPNAME_FID, { .vop_fid = pcfs_fid } },
184 + { VOPNAME_SEEK, { .vop_seek = pcfs_seek } },
185 + { VOPNAME_PATHCONF, { .vop_pathconf = pcfs_pathconf } },
186 + { VOPNAME_VNEVENT, { .vop_vnevent = fs_vnevent_support } },
187 + { NULL, { NULL } }
188 188 };
189 189
190 190
191 191 /*ARGSUSED*/
192 192 static int
193 193 pcfs_open(
194 194 struct vnode **vpp,
195 195 int flag,
196 196 struct cred *cr,
197 197 caller_context_t *ct)
198 198 {
199 199 return (0);
200 200 }
201 201
202 202 /*
203 203 * files are sync'ed on close to keep floppy up to date
204 204 */
205 205
206 206 /*ARGSUSED*/
207 207 static int
208 208 pcfs_close(
209 209 struct vnode *vp,
210 210 int flag,
211 211 int count,
212 212 offset_t offset,
213 213 struct cred *cr,
214 214 caller_context_t *ct)
215 215 {
216 216 return (0);
217 217 }
218 218
219 219 /*ARGSUSED*/
220 220 static int
221 221 pcfs_read(
222 222 struct vnode *vp,
223 223 struct uio *uiop,
224 224 int ioflag,
225 225 struct cred *cr,
226 226 struct caller_context *ct)
227 227 {
228 228 struct pcfs *fsp;
229 229 struct pcnode *pcp;
230 230 int error;
231 231
232 232 fsp = VFSTOPCFS(vp->v_vfsp);
233 233 if (error = pc_verify(fsp))
234 234 return (error);
235 235 error = pc_lockfs(fsp, 0, 0);
236 236 if (error)
237 237 return (error);
238 238 if ((pcp = VTOPC(vp)) == NULL || pcp->pc_flags & PC_INVAL) {
239 239 pc_unlockfs(fsp);
240 240 return (EIO);
241 241 }
242 242 error = rwpcp(pcp, uiop, UIO_READ, ioflag);
243 243 if ((fsp->pcfs_vfs->vfs_flag & VFS_RDONLY) == 0) {
244 244 pc_mark_acc(fsp, pcp);
245 245 }
246 246 pc_unlockfs(fsp);
247 247 if (error) {
248 248 PC_DPRINTF1(1, "pcfs_read: io error = %d\n", error);
249 249 }
250 250 return (error);
251 251 }
252 252
253 253 /*ARGSUSED*/
254 254 static int
255 255 pcfs_write(
256 256 struct vnode *vp,
257 257 struct uio *uiop,
258 258 int ioflag,
259 259 struct cred *cr,
260 260 struct caller_context *ct)
261 261 {
262 262 struct pcfs *fsp;
263 263 struct pcnode *pcp;
264 264 int error;
265 265
266 266 fsp = VFSTOPCFS(vp->v_vfsp);
267 267 if (error = pc_verify(fsp))
268 268 return (error);
269 269 error = pc_lockfs(fsp, 0, 0);
270 270 if (error)
271 271 return (error);
272 272 if ((pcp = VTOPC(vp)) == NULL || pcp->pc_flags & PC_INVAL) {
273 273 pc_unlockfs(fsp);
274 274 return (EIO);
275 275 }
276 276 if (ioflag & FAPPEND) {
277 277 /*
278 278 * in append mode start at end of file.
279 279 */
280 280 uiop->uio_loffset = pcp->pc_size;
281 281 }
282 282 error = rwpcp(pcp, uiop, UIO_WRITE, ioflag);
283 283 pcp->pc_flags |= PC_MOD;
284 284 pc_mark_mod(fsp, pcp);
285 285 if (ioflag & (FSYNC|FDSYNC))
286 286 (void) pc_nodeupdate(pcp);
287 287
288 288 pc_unlockfs(fsp);
289 289 if (error) {
290 290 PC_DPRINTF1(1, "pcfs_write: io error = %d\n", error);
291 291 }
292 292 return (error);
293 293 }
294 294
295 295 /*
296 296 * read or write a vnode
297 297 */
298 298 static int
299 299 rwpcp(
300 300 struct pcnode *pcp,
301 301 struct uio *uio,
302 302 enum uio_rw rw,
303 303 int ioflag)
304 304 {
305 305 struct vnode *vp = PCTOV(pcp);
306 306 struct pcfs *fsp;
307 307 daddr_t bn; /* phys block number */
308 308 int n;
309 309 offset_t off;
310 310 caddr_t base;
311 311 int mapon, pagecreate;
312 312 int newpage;
313 313 int error = 0;
314 314 rlim64_t limit = uio->uio_llimit;
315 315 int oresid = uio->uio_resid;
316 316
317 317 /*
318 318 * If the filesystem was umounted by force, return immediately.
319 319 */
320 320 if (vp->v_vfsp->vfs_flag & VFS_UNMOUNTED)
321 321 return (EIO);
322 322
323 323 PC_DPRINTF4(5, "rwpcp pcp=%p off=%lld resid=%ld size=%u\n", (void *)pcp,
324 324 uio->uio_loffset, uio->uio_resid, pcp->pc_size);
325 325
326 326 ASSERT(rw == UIO_READ || rw == UIO_WRITE);
327 327 ASSERT(vp->v_type == VREG);
328 328
329 329 if (uio->uio_loffset >= UINT32_MAX && rw == UIO_READ) {
330 330 return (0);
331 331 }
332 332
333 333 if (uio->uio_loffset < 0)
334 334 return (EINVAL);
335 335
336 336 if (limit == RLIM64_INFINITY || limit > MAXOFFSET_T)
337 337 limit = MAXOFFSET_T;
338 338
339 339 if (uio->uio_loffset >= limit && rw == UIO_WRITE) {
340 340 proc_t *p = ttoproc(curthread);
341 341
342 342 mutex_enter(&p->p_lock);
343 343 (void) rctl_action(rctlproc_legacy[RLIMIT_FSIZE], p->p_rctls,
344 344 p, RCA_UNSAFE_SIGINFO);
345 345 mutex_exit(&p->p_lock);
346 346 return (EFBIG);
347 347 }
348 348
349 349 /* the following condition will occur only for write */
350 350
351 351 if (uio->uio_loffset >= UINT32_MAX)
352 352 return (EFBIG);
353 353
354 354 if (uio->uio_resid == 0)
355 355 return (0);
356 356
357 357 if (limit > UINT32_MAX)
358 358 limit = UINT32_MAX;
359 359
360 360 fsp = VFSTOPCFS(vp->v_vfsp);
361 361 if (fsp->pcfs_flags & PCFS_IRRECOV)
362 362 return (EIO);
363 363
364 364 do {
365 365 /*
366 366 * Assignments to "n" in this block may appear
367 367 * to overflow in some cases. However, after careful
368 368 * analysis it was determined that all assignments to
369 369 * "n" serve only to make "n" smaller. Since "n"
370 370 * starts out as no larger than MAXBSIZE, "int" is
371 371 * safe.
372 372 */
373 373 off = uio->uio_loffset & MAXBMASK;
374 374 mapon = (int)(uio->uio_loffset & MAXBOFFSET);
375 375 n = MIN(MAXBSIZE - mapon, uio->uio_resid);
376 376 if (rw == UIO_READ) {
377 377 offset_t diff;
378 378
379 379 diff = pcp->pc_size - uio->uio_loffset;
380 380 if (diff <= 0)
381 381 return (0);
382 382 if (diff < n)
383 383 n = (int)diff;
384 384 }
385 385 /*
386 386 * Compare limit with the actual offset + n, not the
387 387 * rounded down offset "off" or we will overflow
388 388 * the maximum file size after all.
389 389 */
390 390 if (rw == UIO_WRITE && uio->uio_loffset + n >= limit) {
391 391 if (uio->uio_loffset >= limit) {
392 392 error = EFBIG;
393 393 break;
394 394 }
395 395 n = (int)(limit - uio->uio_loffset);
396 396 }
397 397
398 398 /*
399 399 * Touch the page and fault it in if it is not in
400 400 * core before segmap_getmapflt can lock it. This
401 401 * is to avoid the deadlock if the buffer is mapped
402 402 * to the same file through mmap which we want to
403 403 * write to.
404 404 */
405 405 uio_prefaultpages((long)n, uio);
406 406
407 407 base = segmap_getmap(segkmap, vp, (u_offset_t)off);
408 408 pagecreate = 0;
409 409 newpage = 0;
410 410 if (rw == UIO_WRITE) {
411 411 /*
412 412 * If PAGESIZE < MAXBSIZE, perhaps we ought to deal
413 413 * with one page at a time, instead of one MAXBSIZE
414 414 * at a time, so we can fully explore pagecreate
415 415 * optimization??
416 416 */
417 417 if (uio->uio_loffset + n > pcp->pc_size) {
418 418 uint_t ncl, lcn;
419 419
420 420 ncl = (uint_t)howmany((offset_t)pcp->pc_size,
421 421 fsp->pcfs_clsize);
422 422 if (uio->uio_loffset > pcp->pc_size &&
423 423 ncl < (uint_t)howmany(uio->uio_loffset,
424 424 fsp->pcfs_clsize)) {
425 425 /*
426 426 * Allocate and zerofill skipped
427 427 * clusters. This may not be worth the
428 428 * effort since a small lseek beyond
429 429 * eof but still within the cluster
430 430 * will not be zeroed out.
431 431 */
432 432 lcn = pc_lblkno(fsp, uio->uio_loffset);
433 433 error = pc_balloc(pcp, (daddr_t)lcn,
434 434 1, &bn);
435 435 ncl = lcn + 1;
436 436 }
437 437 if (!error &&
438 438 ncl < (uint_t)howmany(uio->uio_loffset + n,
439 439 fsp->pcfs_clsize))
440 440 /*
441 441 * allocate clusters w/o zerofill
442 442 */
443 443 error = pc_balloc(pcp,
444 444 (daddr_t)pc_lblkno(fsp,
445 445 uio->uio_loffset + n - 1),
446 446 0, &bn);
447 447
448 448 pcp->pc_flags |= PC_CHG;
449 449
450 450 if (error) {
451 451 pc_cluster32_t ncl;
452 452 int nerror;
453 453
454 454 /*
455 455 * figure out new file size from
456 456 * cluster chain length. If this
457 457 * is detected to loop, the chain
458 458 * is corrupted and we'd better
459 459 * keep our fingers off that file.
460 460 */
461 461 nerror = pc_fileclsize(fsp,
462 462 pcp->pc_scluster, &ncl);
463 463 if (nerror) {
464 464 PC_DPRINTF1(2,
465 465 "cluster chain "
466 466 "corruption, "
467 467 "scluster=%d\n",
468 468 pcp->pc_scluster);
469 469 pcp->pc_size = 0;
470 470 pcp->pc_flags |= PC_INVAL;
471 471 error = nerror;
472 472 (void) segmap_release(segkmap,
473 473 base, 0);
474 474 break;
475 475 }
476 476 pcp->pc_size = fsp->pcfs_clsize * ncl;
477 477
478 478 if (error == ENOSPC &&
479 479 (pcp->pc_size - uio->uio_loffset)
480 480 > 0) {
481 481 PC_DPRINTF3(2, "rwpcp ENOSPC "
482 482 "off=%lld n=%d size=%d\n",
483 483 uio->uio_loffset,
484 484 n, pcp->pc_size);
485 485 n = (int)(pcp->pc_size -
486 486 uio->uio_loffset);
487 487 } else {
488 488 PC_DPRINTF1(1,
489 489 "rwpcp error1=%d\n", error);
490 490 (void) segmap_release(segkmap,
491 491 base, 0);
492 492 break;
493 493 }
494 494 } else {
495 495 pcp->pc_size =
496 496 (uint_t)(uio->uio_loffset + n);
497 497 }
498 498 if (mapon == 0) {
499 499 newpage = segmap_pagecreate(segkmap,
500 500 base, (size_t)n, 0);
501 501 pagecreate = 1;
502 502 }
503 503 } else if (n == MAXBSIZE) {
504 504 newpage = segmap_pagecreate(segkmap, base,
505 505 (size_t)n, 0);
506 506 pagecreate = 1;
507 507 }
508 508 }
509 509 error = uiomove(base + mapon, (size_t)n, rw, uio);
510 510
511 511 if (pagecreate && uio->uio_loffset <
512 512 roundup(off + mapon + n, PAGESIZE)) {
513 513 offset_t nzero, nmoved;
514 514
515 515 nmoved = uio->uio_loffset - (off + mapon);
516 516 nzero = roundup(mapon + n, PAGESIZE) - nmoved;
517 517 (void) kzero(base + mapon + nmoved, (size_t)nzero);
518 518 }
519 519
520 520 /*
521 521 * Unlock the pages which have been allocated by
522 522 * page_create_va() in segmap_pagecreate().
523 523 */
524 524 if (newpage) {
525 525 segmap_pageunlock(segkmap, base, (size_t)n,
526 526 rw == UIO_WRITE ? S_WRITE : S_READ);
527 527 }
528 528
529 529 if (error) {
530 530 PC_DPRINTF1(1, "rwpcp error2=%d\n", error);
531 531 /*
532 532 * If we failed on a write, we may have already
533 533 * allocated file blocks as well as pages. It's hard
534 534 * to undo the block allocation, but we must be sure
535 535 * to invalidate any pages that may have been
536 536 * allocated.
537 537 */
538 538 if (rw == UIO_WRITE)
539 539 (void) segmap_release(segkmap, base, SM_INVAL);
540 540 else
541 541 (void) segmap_release(segkmap, base, 0);
542 542 } else {
543 543 uint_t flags = 0;
544 544
545 545 if (rw == UIO_READ) {
546 546 if (n + mapon == MAXBSIZE ||
547 547 uio->uio_loffset == pcp->pc_size)
548 548 flags = SM_DONTNEED;
549 549 } else if (ioflag & (FSYNC|FDSYNC)) {
550 550 flags = SM_WRITE;
551 551 } else if (n + mapon == MAXBSIZE) {
552 552 flags = SM_WRITE|SM_ASYNC|SM_DONTNEED;
553 553 }
554 554 error = segmap_release(segkmap, base, flags);
555 555 }
556 556
557 557 } while (error == 0 && uio->uio_resid > 0 && n != 0);
558 558
559 559 if (oresid != uio->uio_resid)
560 560 error = 0;
561 561 return (error);
562 562 }
563 563
564 564 /*ARGSUSED*/
565 565 static int
566 566 pcfs_getattr(
567 567 struct vnode *vp,
568 568 struct vattr *vap,
569 569 int flags,
570 570 struct cred *cr,
571 571 caller_context_t *ct)
572 572 {
573 573 struct pcnode *pcp;
574 574 struct pcfs *fsp;
575 575 int error;
576 576 char attr;
577 577 struct pctime atime;
578 578 int64_t unixtime;
579 579
580 580 PC_DPRINTF1(8, "pcfs_getattr: vp=%p\n", (void *)vp);
581 581
582 582 fsp = VFSTOPCFS(vp->v_vfsp);
583 583 error = pc_lockfs(fsp, 0, 0);
584 584 if (error)
585 585 return (error);
586 586
587 587 /*
588 588 * Note that we don't check for "invalid node" (PC_INVAL) here
589 589 * only in order to make stat() succeed. We allow no I/O on such
590 590 * a node, but do allow to check for its existence.
591 591 */
592 592 if ((pcp = VTOPC(vp)) == NULL) {
593 593 pc_unlockfs(fsp);
594 594 return (EIO);
595 595 }
596 596 /*
597 597 * Copy from pcnode.
598 598 */
599 599 vap->va_type = vp->v_type;
600 600 attr = pcp->pc_entry.pcd_attr;
601 601 if (PCA_IS_HIDDEN(fsp, attr))
602 602 vap->va_mode = 0;
603 603 else if (attr & PCA_LABEL)
604 604 vap->va_mode = 0444;
605 605 else if (attr & PCA_RDONLY)
606 606 vap->va_mode = 0555;
607 607 else if (fsp->pcfs_flags & PCFS_BOOTPART) {
608 608 vap->va_mode = 0755;
609 609 } else {
610 610 vap->va_mode = 0777;
611 611 }
612 612
613 613 if (attr & PCA_DIR)
614 614 vap->va_mode |= S_IFDIR;
615 615 else
616 616 vap->va_mode |= S_IFREG;
617 617 if (fsp->pcfs_flags & PCFS_BOOTPART) {
618 618 vap->va_uid = 0;
619 619 vap->va_gid = 0;
620 620 } else {
621 621 vap->va_uid = crgetuid(cr);
622 622 vap->va_gid = crgetgid(cr);
623 623 }
624 624 vap->va_fsid = vp->v_vfsp->vfs_dev;
625 625 vap->va_nodeid = (ino64_t)pc_makenodeid(pcp->pc_eblkno,
626 626 pcp->pc_eoffset, pcp->pc_entry.pcd_attr,
627 627 pc_getstartcluster(fsp, &pcp->pc_entry), pc_direntpersec(fsp));
628 628 vap->va_nlink = 1;
629 629 vap->va_size = (u_offset_t)pcp->pc_size;
630 630 vap->va_rdev = 0;
631 631 vap->va_nblocks =
632 632 (fsblkcnt64_t)howmany((offset_t)pcp->pc_size, DEV_BSIZE);
633 633 vap->va_blksize = fsp->pcfs_clsize;
634 634
635 635 /*
636 636 * FAT root directories have no timestamps. In order not to return
637 637 * "time zero" (1/1/1970), we record the time of the mount and give
638 638 * that. This breaks less expectations.
639 639 */
640 640 if (vp->v_flag & VROOT) {
641 641 vap->va_mtime = fsp->pcfs_mounttime;
642 642 vap->va_atime = fsp->pcfs_mounttime;
643 643 vap->va_ctime = fsp->pcfs_mounttime;
644 644 pc_unlockfs(fsp);
645 645 return (0);
646 646 }
647 647
648 648 pc_pcttotv(&pcp->pc_entry.pcd_mtime, &unixtime);
649 649 if ((fsp->pcfs_flags & PCFS_NOCLAMPTIME) == 0) {
650 650 if (unixtime > INT32_MAX)
651 651 DTRACE_PROBE1(pcfs__mtimeclamped, int64_t, unixtime);
652 652 unixtime = MIN(unixtime, INT32_MAX);
653 653 } else if (unixtime > INT32_MAX &&
654 654 get_udatamodel() == DATAMODEL_ILP32) {
655 655 pc_unlockfs(fsp);
656 656 DTRACE_PROBE1(pcfs__mtimeoverflowed, int64_t, unixtime);
657 657 return (EOVERFLOW);
658 658 }
659 659
660 660 vap->va_mtime.tv_sec = (time_t)unixtime;
661 661 vap->va_mtime.tv_nsec = 0;
662 662
663 663 /*
664 664 * FAT doesn't know about POSIX ctime.
665 665 * Best approximation is to always set it to mtime.
666 666 */
667 667 vap->va_ctime = vap->va_mtime;
668 668
669 669 /*
670 670 * FAT only stores "last access date". If that's the
671 671 * same as the date of last modification then the time
672 672 * of last access is known. Otherwise, use midnight.
673 673 */
674 674 atime.pct_date = pcp->pc_entry.pcd_ladate;
675 675 if (atime.pct_date == pcp->pc_entry.pcd_mtime.pct_date)
676 676 atime.pct_time = pcp->pc_entry.pcd_mtime.pct_time;
677 677 else
678 678 atime.pct_time = 0;
679 679 pc_pcttotv(&atime, &unixtime);
680 680 if ((fsp->pcfs_flags & PCFS_NOCLAMPTIME) == 0) {
681 681 if (unixtime > INT32_MAX)
682 682 DTRACE_PROBE1(pcfs__atimeclamped, int64_t, unixtime);
683 683 unixtime = MIN(unixtime, INT32_MAX);
684 684 } else if (unixtime > INT32_MAX &&
685 685 get_udatamodel() == DATAMODEL_ILP32) {
686 686 pc_unlockfs(fsp);
687 687 DTRACE_PROBE1(pcfs__atimeoverflowed, int64_t, unixtime);
688 688 return (EOVERFLOW);
689 689 }
690 690
691 691 vap->va_atime.tv_sec = (time_t)unixtime;
692 692 vap->va_atime.tv_nsec = 0;
693 693
694 694 pc_unlockfs(fsp);
695 695 return (0);
696 696 }
697 697
698 698
699 699 /*ARGSUSED*/
700 700 static int
701 701 pcfs_setattr(
702 702 struct vnode *vp,
703 703 struct vattr *vap,
704 704 int flags,
705 705 struct cred *cr,
706 706 caller_context_t *ct)
707 707 {
708 708 struct pcnode *pcp;
709 709 mode_t mask = vap->va_mask;
710 710 int error;
711 711 struct pcfs *fsp;
712 712 timestruc_t now, *timep;
713 713
714 714 PC_DPRINTF2(6, "pcfs_setattr: vp=%p mask=%x\n", (void *)vp, (int)mask);
715 715 /*
716 716 * cannot set these attributes
717 717 */
718 718 if (mask & (AT_NOSET | AT_UID | AT_GID)) {
719 719 return (EINVAL);
720 720 }
721 721 /*
722 722 * pcfs_setattr is now allowed on directories to avoid silly warnings
723 723 * from 'tar' when it tries to set times on a directory, and console
724 724 * printf's on the NFS server when it gets EINVAL back on such a
725 725 * request. One possible problem with that since a directory entry
726 726 * identifies a file, '.' and all the '..' entries in subdirectories
727 727 * may get out of sync when the directory is updated since they're
728 728 * treated like separate files. We could fix that by looking for
729 729 * '.' and giving it the same attributes, and then looking for
730 730 * all the subdirectories and updating '..', but that's pretty
731 731 * expensive for something that doesn't seem likely to matter.
732 732 */
733 733 /* can't do some ops on directories anyway */
734 734 if ((vp->v_type == VDIR) &&
735 735 (mask & AT_SIZE)) {
736 736 return (EINVAL);
737 737 }
738 738
739 739 fsp = VFSTOPCFS(vp->v_vfsp);
740 740 error = pc_lockfs(fsp, 0, 0);
741 741 if (error)
742 742 return (error);
743 743 if ((pcp = VTOPC(vp)) == NULL || pcp->pc_flags & PC_INVAL) {
744 744 pc_unlockfs(fsp);
745 745 return (EIO);
746 746 }
747 747
748 748 if (fsp->pcfs_flags & PCFS_BOOTPART) {
749 749 if (secpolicy_pcfs_modify_bootpartition(cr) != 0) {
750 750 pc_unlockfs(fsp);
751 751 return (EACCES);
752 752 }
753 753 }
754 754
755 755 /*
756 756 * Change file access modes.
757 757 * If nobody has write permission, file is marked readonly.
758 758 * Otherwise file is writable by anyone.
759 759 */
760 760 if ((mask & AT_MODE) && (vap->va_mode != (mode_t)-1)) {
761 761 if ((vap->va_mode & 0222) == 0)
762 762 pcp->pc_entry.pcd_attr |= PCA_RDONLY;
763 763 else
764 764 pcp->pc_entry.pcd_attr &= ~PCA_RDONLY;
765 765 pcp->pc_flags |= PC_CHG;
766 766 }
767 767 /*
768 768 * Truncate file. Must have write permission.
769 769 */
770 770 if ((mask & AT_SIZE) && (vap->va_size != (u_offset_t)-1)) {
771 771 if (pcp->pc_entry.pcd_attr & PCA_RDONLY) {
772 772 error = EACCES;
773 773 goto out;
774 774 }
775 775 if (vap->va_size > UINT32_MAX) {
776 776 error = EFBIG;
777 777 goto out;
778 778 }
779 779 error = pc_truncate(pcp, (uint_t)vap->va_size);
780 780
781 781 if (error)
782 782 goto out;
783 783
784 784 if (vap->va_size == 0)
785 785 vnevent_truncate(vp, ct);
786 786 }
787 787 /*
788 788 * Change file modified times.
789 789 */
790 790 if (mask & (AT_MTIME | AT_CTIME)) {
791 791 /*
792 792 * If SysV-compatible option to set access and
793 793 * modified times if privileged, owner, or write access,
794 794 * use current time rather than va_mtime.
795 795 *
796 796 * XXX - va_mtime.tv_sec == -1 flags this.
797 797 */
798 798 timep = &vap->va_mtime;
799 799 if (vap->va_mtime.tv_sec == -1) {
800 800 gethrestime(&now);
801 801 timep = &now;
802 802 }
803 803 if ((fsp->pcfs_flags & PCFS_NOCLAMPTIME) == 0 &&
804 804 timep->tv_sec > INT32_MAX) {
805 805 error = EOVERFLOW;
806 806 goto out;
807 807 }
808 808 error = pc_tvtopct(timep, &pcp->pc_entry.pcd_mtime);
809 809 if (error)
810 810 goto out;
811 811 pcp->pc_flags |= PC_CHG;
812 812 }
813 813 /*
814 814 * Change file access times.
815 815 */
816 816 if (mask & AT_ATIME) {
817 817 /*
818 818 * If SysV-compatible option to set access and
819 819 * modified times if privileged, owner, or write access,
820 820 * use current time rather than va_mtime.
821 821 *
822 822 * XXX - va_atime.tv_sec == -1 flags this.
823 823 */
824 824 struct pctime atime;
825 825
826 826 timep = &vap->va_atime;
827 827 if (vap->va_atime.tv_sec == -1) {
828 828 gethrestime(&now);
829 829 timep = &now;
830 830 }
831 831 if ((fsp->pcfs_flags & PCFS_NOCLAMPTIME) == 0 &&
832 832 timep->tv_sec > INT32_MAX) {
833 833 error = EOVERFLOW;
834 834 goto out;
835 835 }
836 836 error = pc_tvtopct(timep, &atime);
837 837 if (error)
838 838 goto out;
839 839 pcp->pc_entry.pcd_ladate = atime.pct_date;
840 840 pcp->pc_flags |= PC_CHG;
841 841 }
842 842 out:
843 843 pc_unlockfs(fsp);
844 844 return (error);
845 845 }
846 846
847 847
848 848 /*ARGSUSED*/
849 849 static int
850 850 pcfs_access(
851 851 struct vnode *vp,
852 852 int mode,
853 853 int flags,
854 854 struct cred *cr,
855 855 caller_context_t *ct)
856 856 {
857 857 struct pcnode *pcp;
858 858 struct pcfs *fsp;
859 859
860 860
861 861 fsp = VFSTOPCFS(vp->v_vfsp);
862 862
863 863 if ((pcp = VTOPC(vp)) == NULL || pcp->pc_flags & PC_INVAL)
864 864 return (EIO);
865 865 if ((mode & VWRITE) && (pcp->pc_entry.pcd_attr & PCA_RDONLY))
866 866 return (EACCES);
867 867
868 868 /*
869 869 * If this is a boot partition, privileged users have full access while
870 870 * others have read-only access.
871 871 */
872 872 if (fsp->pcfs_flags & PCFS_BOOTPART) {
873 873 if ((mode & VWRITE) &&
874 874 secpolicy_pcfs_modify_bootpartition(cr) != 0)
875 875 return (EACCES);
876 876 }
877 877 return (0);
878 878 }
879 879
880 880
881 881 /*ARGSUSED*/
882 882 static int
883 883 pcfs_fsync(
884 884 struct vnode *vp,
885 885 int syncflag,
886 886 struct cred *cr,
887 887 caller_context_t *ct)
888 888 {
889 889 struct pcfs *fsp;
890 890 struct pcnode *pcp;
891 891 int error;
892 892
893 893 fsp = VFSTOPCFS(vp->v_vfsp);
894 894 if (error = pc_verify(fsp))
895 895 return (error);
896 896 error = pc_lockfs(fsp, 0, 0);
897 897 if (error)
898 898 return (error);
899 899 if ((pcp = VTOPC(vp)) == NULL || pcp->pc_flags & PC_INVAL) {
900 900 pc_unlockfs(fsp);
901 901 return (EIO);
902 902 }
903 903 rw_enter(&pcnodes_lock, RW_WRITER);
904 904 error = pc_nodesync(pcp);
905 905 rw_exit(&pcnodes_lock);
906 906 pc_unlockfs(fsp);
907 907 return (error);
908 908 }
909 909
910 910
911 911 /*ARGSUSED*/
912 912 static void
913 913 pcfs_inactive(
914 914 struct vnode *vp,
915 915 struct cred *cr,
916 916 caller_context_t *ct)
917 917 {
918 918 struct pcnode *pcp;
919 919 struct pcfs *fsp;
920 920 int error;
921 921
922 922 fsp = VFSTOPCFS(vp->v_vfsp);
923 923 error = pc_lockfs(fsp, 0, 1);
924 924
925 925 /*
926 926 * If the filesystem was umounted by force, all dirty
927 927 * pages associated with this vnode are invalidated
928 928 * and then the vnode will be freed.
929 929 */
930 930 if (vp->v_vfsp->vfs_flag & VFS_UNMOUNTED) {
931 931 pcp = VTOPC(vp);
932 932 if (vn_has_cached_data(vp)) {
933 933 (void) pvn_vplist_dirty(vp, (u_offset_t)0,
934 934 pcfs_putapage, B_INVAL, (struct cred *)NULL);
935 935 }
936 936 remque(pcp);
937 937 if (error == 0)
938 938 pc_unlockfs(fsp);
939 939 vn_free(vp);
940 940 kmem_free(pcp, sizeof (struct pcnode));
941 941 VFS_RELE(PCFSTOVFS(fsp));
942 942 return;
943 943 }
944 944
945 945 mutex_enter(&vp->v_lock);
946 946 ASSERT(vp->v_count >= 1);
947 947 if (vp->v_count > 1) {
948 948 vp->v_count--; /* release our hold from vn_rele */
949 949 mutex_exit(&vp->v_lock);
950 950 pc_unlockfs(fsp);
951 951 return;
952 952 }
953 953 mutex_exit(&vp->v_lock);
954 954
955 955 /*
956 956 * Check again to confirm that no intervening I/O error
957 957 * with a subsequent pc_diskchanged() call has released
958 958 * the pcnode. If it has then release the vnode as above.
959 959 */
960 960 pcp = VTOPC(vp);
961 961 if (pcp == NULL || pcp->pc_flags & PC_INVAL) {
962 962 if (vn_has_cached_data(vp))
963 963 (void) pvn_vplist_dirty(vp, (u_offset_t)0,
964 964 pcfs_putapage, B_INVAL | B_TRUNC,
965 965 (struct cred *)NULL);
966 966 }
967 967
968 968 if (pcp == NULL) {
969 969 vn_free(vp);
970 970 } else {
971 971 pc_rele(pcp);
972 972 }
973 973
974 974 if (!error)
975 975 pc_unlockfs(fsp);
976 976 }
977 977
978 978 /*ARGSUSED*/
979 979 static int
980 980 pcfs_lookup(
981 981 struct vnode *dvp,
982 982 char *nm,
983 983 struct vnode **vpp,
984 984 struct pathname *pnp,
985 985 int flags,
986 986 struct vnode *rdir,
987 987 struct cred *cr,
988 988 caller_context_t *ct,
989 989 int *direntflags,
990 990 pathname_t *realpnp)
991 991 {
992 992 struct pcfs *fsp;
993 993 struct pcnode *pcp;
994 994 int error;
995 995
996 996 /*
997 997 * If the filesystem was umounted by force, return immediately.
998 998 */
999 999 if (dvp->v_vfsp->vfs_flag & VFS_UNMOUNTED)
1000 1000 return (EIO);
1001 1001
1002 1002 /*
1003 1003 * verify that the dvp is still valid on the disk
1004 1004 */
1005 1005 fsp = VFSTOPCFS(dvp->v_vfsp);
1006 1006 if (error = pc_verify(fsp))
1007 1007 return (error);
1008 1008 error = pc_lockfs(fsp, 0, 0);
1009 1009 if (error)
1010 1010 return (error);
1011 1011 if (VTOPC(dvp) == NULL || VTOPC(dvp)->pc_flags & PC_INVAL) {
1012 1012 pc_unlockfs(fsp);
1013 1013 return (EIO);
1014 1014 }
1015 1015 /*
1016 1016 * Null component name is a synonym for directory being searched.
1017 1017 */
1018 1018 if (*nm == '\0') {
1019 1019 VN_HOLD(dvp);
1020 1020 *vpp = dvp;
1021 1021 pc_unlockfs(fsp);
1022 1022 return (0);
1023 1023 }
1024 1024
1025 1025 error = pc_dirlook(VTOPC(dvp), nm, &pcp);
1026 1026 if (!error) {
1027 1027 *vpp = PCTOV(pcp);
1028 1028 pcp->pc_flags |= PC_EXTERNAL;
1029 1029 }
1030 1030 pc_unlockfs(fsp);
1031 1031 return (error);
1032 1032 }
1033 1033
1034 1034
1035 1035 /*ARGSUSED*/
1036 1036 static int
1037 1037 pcfs_create(
1038 1038 struct vnode *dvp,
1039 1039 char *nm,
1040 1040 struct vattr *vap,
1041 1041 enum vcexcl exclusive,
1042 1042 int mode,
1043 1043 struct vnode **vpp,
1044 1044 struct cred *cr,
1045 1045 int flag,
1046 1046 caller_context_t *ct,
1047 1047 vsecattr_t *vsecp)
1048 1048 {
1049 1049 int error;
1050 1050 struct pcnode *pcp;
1051 1051 struct vnode *vp;
1052 1052 struct pcfs *fsp;
1053 1053
1054 1054 /*
1055 1055 * can't create directories. use pcfs_mkdir.
1056 1056 * can't create anything other than files.
1057 1057 */
1058 1058 if (vap->va_type == VDIR)
1059 1059 return (EISDIR);
1060 1060 else if (vap->va_type != VREG)
1061 1061 return (EINVAL);
1062 1062
1063 1063 pcp = NULL;
1064 1064 fsp = VFSTOPCFS(dvp->v_vfsp);
1065 1065 error = pc_lockfs(fsp, 0, 0);
1066 1066 if (error)
1067 1067 return (error);
1068 1068 if (VTOPC(dvp) == NULL || VTOPC(dvp)->pc_flags & PC_INVAL) {
1069 1069 pc_unlockfs(fsp);
1070 1070 return (EIO);
1071 1071 }
1072 1072
1073 1073 if (fsp->pcfs_flags & PCFS_BOOTPART) {
1074 1074 if (secpolicy_pcfs_modify_bootpartition(cr) != 0) {
1075 1075 pc_unlockfs(fsp);
1076 1076 return (EACCES);
1077 1077 }
1078 1078 }
1079 1079
1080 1080 if (*nm == '\0') {
1081 1081 /*
1082 1082 * Null component name refers to the directory itself.
1083 1083 */
1084 1084 VN_HOLD(dvp);
1085 1085 pcp = VTOPC(dvp);
1086 1086 error = EEXIST;
1087 1087 } else {
1088 1088 error = pc_direnter(VTOPC(dvp), nm, vap, &pcp);
1089 1089 }
1090 1090 /*
1091 1091 * if file exists and this is a nonexclusive create,
1092 1092 * check for access permissions
1093 1093 */
1094 1094 if (error == EEXIST) {
1095 1095 vp = PCTOV(pcp);
1096 1096 if (exclusive == NONEXCL) {
1097 1097 if (vp->v_type == VDIR) {
1098 1098 error = EISDIR;
1099 1099 } else if (mode) {
1100 1100 error = pcfs_access(PCTOV(pcp), mode, 0,
1101 1101 cr, ct);
1102 1102 } else {
1103 1103 error = 0;
1104 1104 }
1105 1105 }
1106 1106 if (error) {
1107 1107 VN_RELE(PCTOV(pcp));
1108 1108 } else if ((vp->v_type == VREG) && (vap->va_mask & AT_SIZE) &&
1109 1109 (vap->va_size == 0)) {
1110 1110 error = pc_truncate(pcp, 0L);
1111 1111 if (error) {
1112 1112 VN_RELE(PCTOV(pcp));
1113 1113 } else {
1114 1114 vnevent_create(PCTOV(pcp), ct);
1115 1115 }
1116 1116 }
1117 1117 }
1118 1118 if (error) {
1119 1119 pc_unlockfs(fsp);
1120 1120 return (error);
1121 1121 }
1122 1122 *vpp = PCTOV(pcp);
1123 1123 pcp->pc_flags |= PC_EXTERNAL;
1124 1124 pc_unlockfs(fsp);
1125 1125 return (error);
1126 1126 }
1127 1127
1128 1128 /*ARGSUSED*/
1129 1129 static int
1130 1130 pcfs_remove(
1131 1131 struct vnode *vp,
1132 1132 char *nm,
1133 1133 struct cred *cr,
1134 1134 caller_context_t *ct,
1135 1135 int flags)
1136 1136 {
1137 1137 struct pcfs *fsp;
1138 1138 struct pcnode *pcp;
1139 1139 int error;
1140 1140
1141 1141 fsp = VFSTOPCFS(vp->v_vfsp);
1142 1142 if (error = pc_verify(fsp))
1143 1143 return (error);
1144 1144 error = pc_lockfs(fsp, 0, 0);
1145 1145 if (error)
1146 1146 return (error);
1147 1147 if ((pcp = VTOPC(vp)) == NULL || pcp->pc_flags & PC_INVAL) {
1148 1148 pc_unlockfs(fsp);
1149 1149 return (EIO);
1150 1150 }
1151 1151 if (fsp->pcfs_flags & PCFS_BOOTPART) {
1152 1152 if (secpolicy_pcfs_modify_bootpartition(cr) != 0) {
1153 1153 pc_unlockfs(fsp);
1154 1154 return (EACCES);
1155 1155 }
1156 1156 }
1157 1157 error = pc_dirremove(pcp, nm, (struct vnode *)0, VREG, ct);
1158 1158 pc_unlockfs(fsp);
1159 1159 return (error);
1160 1160 }
1161 1161
1162 1162 /*
1163 1163 * Rename a file or directory
1164 1164 * This rename is restricted to only rename files within a directory.
1165 1165 * XX should make rename more general
1166 1166 */
1167 1167 /*ARGSUSED*/
1168 1168 static int
1169 1169 pcfs_rename(
1170 1170 struct vnode *sdvp, /* old (source) parent vnode */
1171 1171 char *snm, /* old (source) entry name */
1172 1172 struct vnode *tdvp, /* new (target) parent vnode */
1173 1173 char *tnm, /* new (target) entry name */
1174 1174 struct cred *cr,
1175 1175 caller_context_t *ct,
1176 1176 int flags)
1177 1177 {
1178 1178 struct pcfs *fsp;
1179 1179 struct pcnode *dp; /* parent pcnode */
1180 1180 struct pcnode *tdp;
1181 1181 int error;
1182 1182
1183 1183 fsp = VFSTOPCFS(sdvp->v_vfsp);
1184 1184 if (error = pc_verify(fsp))
1185 1185 return (error);
1186 1186
1187 1187 /*
1188 1188 * make sure we can muck with this directory.
1189 1189 */
1190 1190 error = pcfs_access(sdvp, VWRITE, 0, cr, ct);
1191 1191 if (error) {
1192 1192 return (error);
1193 1193 }
1194 1194 error = pc_lockfs(fsp, 0, 0);
1195 1195 if (error)
1196 1196 return (error);
1197 1197 if (((dp = VTOPC(sdvp)) == NULL) || ((tdp = VTOPC(tdvp)) == NULL) ||
1198 1198 (dp->pc_flags & PC_INVAL) || (tdp->pc_flags & PC_INVAL)) {
1199 1199 pc_unlockfs(fsp);
1200 1200 return (EIO);
1201 1201 }
1202 1202 error = pc_rename(dp, tdp, snm, tnm, ct);
1203 1203 pc_unlockfs(fsp);
1204 1204 return (error);
1205 1205 }
1206 1206
1207 1207 /*ARGSUSED*/
1208 1208 static int
1209 1209 pcfs_mkdir(
1210 1210 struct vnode *dvp,
1211 1211 char *nm,
1212 1212 struct vattr *vap,
1213 1213 struct vnode **vpp,
1214 1214 struct cred *cr,
1215 1215 caller_context_t *ct,
1216 1216 int flags,
1217 1217 vsecattr_t *vsecp)
1218 1218 {
1219 1219 struct pcfs *fsp;
1220 1220 struct pcnode *pcp;
1221 1221 int error;
1222 1222
1223 1223 fsp = VFSTOPCFS(dvp->v_vfsp);
1224 1224 if (error = pc_verify(fsp))
1225 1225 return (error);
1226 1226 error = pc_lockfs(fsp, 0, 0);
1227 1227 if (error)
1228 1228 return (error);
1229 1229 if (VTOPC(dvp) == NULL || VTOPC(dvp)->pc_flags & PC_INVAL) {
1230 1230 pc_unlockfs(fsp);
1231 1231 return (EIO);
1232 1232 }
1233 1233
1234 1234 if (fsp->pcfs_flags & PCFS_BOOTPART) {
1235 1235 if (secpolicy_pcfs_modify_bootpartition(cr) != 0) {
1236 1236 pc_unlockfs(fsp);
1237 1237 return (EACCES);
1238 1238 }
1239 1239 }
1240 1240
1241 1241 error = pc_direnter(VTOPC(dvp), nm, vap, &pcp);
1242 1242
1243 1243 if (!error) {
1244 1244 pcp -> pc_flags |= PC_EXTERNAL;
1245 1245 *vpp = PCTOV(pcp);
1246 1246 } else if (error == EEXIST) {
1247 1247 VN_RELE(PCTOV(pcp));
1248 1248 }
1249 1249 pc_unlockfs(fsp);
1250 1250 return (error);
1251 1251 }
1252 1252
1253 1253 /*ARGSUSED*/
1254 1254 static int
1255 1255 pcfs_rmdir(
1256 1256 struct vnode *dvp,
1257 1257 char *nm,
1258 1258 struct vnode *cdir,
1259 1259 struct cred *cr,
1260 1260 caller_context_t *ct,
1261 1261 int flags)
1262 1262 {
1263 1263 struct pcfs *fsp;
1264 1264 struct pcnode *pcp;
1265 1265 int error;
1266 1266
1267 1267 fsp = VFSTOPCFS(dvp -> v_vfsp);
1268 1268 if (error = pc_verify(fsp))
1269 1269 return (error);
1270 1270 if (error = pc_lockfs(fsp, 0, 0))
1271 1271 return (error);
1272 1272
1273 1273 if ((pcp = VTOPC(dvp)) == NULL || pcp->pc_flags & PC_INVAL) {
1274 1274 pc_unlockfs(fsp);
1275 1275 return (EIO);
1276 1276 }
1277 1277
1278 1278 if (fsp->pcfs_flags & PCFS_BOOTPART) {
1279 1279 if (secpolicy_pcfs_modify_bootpartition(cr) != 0) {
1280 1280 pc_unlockfs(fsp);
1281 1281 return (EACCES);
1282 1282 }
1283 1283 }
1284 1284
1285 1285 error = pc_dirremove(pcp, nm, cdir, VDIR, ct);
1286 1286 pc_unlockfs(fsp);
1287 1287 return (error);
1288 1288 }
1289 1289
1290 1290 /*
1291 1291 * read entries in a directory.
1292 1292 * we must convert pc format to unix format
1293 1293 */
1294 1294
1295 1295 /*ARGSUSED*/
1296 1296 static int
1297 1297 pcfs_readdir(
1298 1298 struct vnode *dvp,
1299 1299 struct uio *uiop,
1300 1300 struct cred *cr,
1301 1301 int *eofp,
1302 1302 caller_context_t *ct,
1303 1303 int flags)
1304 1304 {
1305 1305 struct pcnode *pcp;
1306 1306 struct pcfs *fsp;
1307 1307 struct pcdir *ep;
1308 1308 struct buf *bp = NULL;
1309 1309 offset_t offset;
1310 1310 int boff;
1311 1311 struct pc_dirent lbp;
1312 1312 struct pc_dirent *ld = &lbp;
1313 1313 int error;
1314 1314
1315 1315 /*
1316 1316 * If the filesystem was umounted by force, return immediately.
1317 1317 */
1318 1318 if (dvp->v_vfsp->vfs_flag & VFS_UNMOUNTED)
1319 1319 return (EIO);
1320 1320
1321 1321 if ((uiop->uio_iovcnt != 1) ||
1322 1322 (uiop->uio_loffset % sizeof (struct pcdir)) != 0) {
1323 1323 return (EINVAL);
1324 1324 }
1325 1325 fsp = VFSTOPCFS(dvp->v_vfsp);
1326 1326 /*
1327 1327 * verify that the dp is still valid on the disk
1328 1328 */
1329 1329 if (error = pc_verify(fsp)) {
1330 1330 return (error);
1331 1331 }
1332 1332 error = pc_lockfs(fsp, 0, 0);
1333 1333 if (error)
1334 1334 return (error);
1335 1335 if ((pcp = VTOPC(dvp)) == NULL || pcp->pc_flags & PC_INVAL) {
1336 1336 pc_unlockfs(fsp);
1337 1337 return (EIO);
1338 1338 }
1339 1339
1340 1340 bzero(ld, sizeof (*ld));
1341 1341
1342 1342 if (eofp != NULL)
1343 1343 *eofp = 0;
1344 1344 offset = uiop->uio_loffset;
1345 1345
1346 1346 if (dvp->v_flag & VROOT) {
1347 1347 /*
1348 1348 * kludge up entries for "." and ".." in the root.
1349 1349 */
1350 1350 if (offset == 0) {
1351 1351 (void) strcpy(ld->d_name, ".");
1352 1352 ld->d_reclen = DIRENT64_RECLEN(1);
1353 1353 ld->d_off = (off64_t)sizeof (struct pcdir);
1354 1354 ld->d_ino = (ino64_t)UINT_MAX;
1355 1355 if (ld->d_reclen > uiop->uio_resid) {
1356 1356 pc_unlockfs(fsp);
1357 1357 return (ENOSPC);
1358 1358 }
1359 1359 (void) uiomove(ld, ld->d_reclen, UIO_READ, uiop);
1360 1360 uiop->uio_loffset = ld->d_off;
1361 1361 offset = uiop->uio_loffset;
1362 1362 }
1363 1363 if (offset == sizeof (struct pcdir)) {
1364 1364 (void) strcpy(ld->d_name, "..");
1365 1365 ld->d_reclen = DIRENT64_RECLEN(2);
1366 1366 if (ld->d_reclen > uiop->uio_resid) {
1367 1367 pc_unlockfs(fsp);
1368 1368 return (ENOSPC);
1369 1369 }
1370 1370 ld->d_off = (off64_t)(uiop->uio_loffset +
1371 1371 sizeof (struct pcdir));
1372 1372 ld->d_ino = (ino64_t)UINT_MAX;
1373 1373 (void) uiomove(ld, ld->d_reclen, UIO_READ, uiop);
1374 1374 uiop->uio_loffset = ld->d_off;
1375 1375 offset = uiop->uio_loffset;
1376 1376 }
1377 1377 offset -= 2 * sizeof (struct pcdir);
1378 1378 /* offset now has the real offset value into directory file */
1379 1379 }
1380 1380
1381 1381 for (;;) {
1382 1382 boff = pc_blkoff(fsp, offset);
1383 1383 if (boff == 0 || bp == NULL || boff >= bp->b_bcount) {
1384 1384 if (bp != NULL) {
1385 1385 brelse(bp);
1386 1386 bp = NULL;
1387 1387 }
1388 1388 error = pc_blkatoff(pcp, offset, &bp, &ep);
1389 1389 if (error) {
1390 1390 if (error == ENOENT) {
1391 1391 error = 0;
1392 1392 if (eofp)
1393 1393 *eofp = 1;
1394 1394 }
1395 1395 break;
1396 1396 }
1397 1397 }
1398 1398 if (ep->pcd_filename[0] == PCD_UNUSED) {
1399 1399 if (eofp)
1400 1400 *eofp = 1;
1401 1401 break;
1402 1402 }
1403 1403 /*
1404 1404 * Don't display label because it may contain funny characters.
1405 1405 */
1406 1406 if (ep->pcd_filename[0] == PCD_ERASED) {
1407 1407 uiop->uio_loffset += sizeof (struct pcdir);
1408 1408 offset += sizeof (struct pcdir);
1409 1409 ep++;
1410 1410 continue;
1411 1411 }
1412 1412 if (PCDL_IS_LFN(ep)) {
1413 1413 if (pc_read_long_fn(dvp, uiop, ld, &ep, &offset, &bp) !=
1414 1414 0)
1415 1415 break;
1416 1416 continue;
1417 1417 }
1418 1418
1419 1419 if (pc_read_short_fn(dvp, uiop, ld, &ep, &offset, &bp) != 0)
1420 1420 break;
1421 1421 }
1422 1422 if (bp)
1423 1423 brelse(bp);
1424 1424 pc_unlockfs(fsp);
1425 1425 return (error);
1426 1426 }
1427 1427
1428 1428
1429 1429 /*
1430 1430 * Called from pvn_getpages to get a particular page. When we are called
1431 1431 * the pcfs is already locked.
1432 1432 */
1433 1433 /*ARGSUSED*/
1434 1434 static int
1435 1435 pcfs_getapage(
1436 1436 struct vnode *vp,
1437 1437 u_offset_t off,
1438 1438 size_t len,
1439 1439 uint_t *protp,
1440 1440 page_t *pl[], /* NULL if async IO is requested */
1441 1441 size_t plsz,
1442 1442 struct seg *seg,
1443 1443 caddr_t addr,
1444 1444 enum seg_rw rw,
1445 1445 struct cred *cr)
1446 1446 {
1447 1447 struct pcnode *pcp;
1448 1448 struct pcfs *fsp = VFSTOPCFS(vp->v_vfsp);
1449 1449 struct vnode *devvp;
1450 1450 page_t *pp;
1451 1451 page_t *pagefound;
1452 1452 int err;
1453 1453
1454 1454 /*
1455 1455 * If the filesystem was umounted by force, return immediately.
1456 1456 */
1457 1457 if (vp->v_vfsp->vfs_flag & VFS_UNMOUNTED)
1458 1458 return (EIO);
1459 1459
1460 1460 PC_DPRINTF3(5, "pcfs_getapage: vp=%p off=%lld len=%lu\n",
1461 1461 (void *)vp, off, len);
1462 1462
1463 1463 if ((pcp = VTOPC(vp)) == NULL || pcp->pc_flags & PC_INVAL)
1464 1464 return (EIO);
1465 1465 devvp = fsp->pcfs_devvp;
1466 1466
1467 1467 /* pcfs doesn't do readaheads */
1468 1468 if (pl == NULL)
1469 1469 return (0);
1470 1470
1471 1471 pl[0] = NULL;
1472 1472 err = 0;
1473 1473 /*
1474 1474 * If the accessed time on the pcnode has not already been
1475 1475 * set elsewhere (e.g. for read/setattr) we set the time now.
1476 1476 * This gives us approximate modified times for mmap'ed files
1477 1477 * which are accessed via loads in the user address space.
1478 1478 */
1479 1479 if ((pcp->pc_flags & PC_ACC) == 0 &&
1480 1480 ((fsp->pcfs_vfs->vfs_flag & VFS_RDONLY) == 0)) {
1481 1481 pc_mark_acc(fsp, pcp);
1482 1482 }
1483 1483 reread:
1484 1484 if ((pagefound = page_exists(vp, off)) == NULL) {
1485 1485 /*
1486 1486 * Need to really do disk IO to get the page(s).
1487 1487 */
1488 1488 struct buf *bp;
1489 1489 daddr_t lbn, bn;
1490 1490 u_offset_t io_off;
1491 1491 size_t io_len;
1492 1492 u_offset_t lbnoff, xferoffset;
1493 1493 u_offset_t pgoff;
1494 1494 uint_t xfersize;
1495 1495 int err1;
1496 1496
1497 1497 lbn = pc_lblkno(fsp, off);
1498 1498 lbnoff = off & ~(fsp->pcfs_clsize - 1);
1499 1499 xferoffset = off & ~(fsp->pcfs_secsize - 1);
1500 1500
1501 1501 pp = pvn_read_kluster(vp, off, seg, addr, &io_off, &io_len,
1502 1502 off, (size_t)MIN(pc_blksize(fsp, pcp, off), PAGESIZE), 0);
1503 1503 if (pp == NULL)
1504 1504 /*
1505 1505 * XXX - If pcfs is made MT-hot, this should go
1506 1506 * back to reread.
1507 1507 */
1508 1508 panic("pcfs_getapage pvn_read_kluster");
1509 1509
1510 1510 for (pgoff = 0; pgoff < PAGESIZE && xferoffset < pcp->pc_size;
1511 1511 pgoff += xfersize,
1512 1512 lbn += howmany(xfersize, fsp->pcfs_clsize),
1513 1513 lbnoff += xfersize, xferoffset += xfersize) {
1514 1514 /*
1515 1515 * read as many contiguous blocks as possible to
1516 1516 * fill this page
1517 1517 */
1518 1518 xfersize = PAGESIZE - pgoff;
1519 1519 err1 = pc_bmap(pcp, lbn, &bn, &xfersize);
1520 1520 if (err1) {
1521 1521 PC_DPRINTF1(1, "pc_getapage err=%d", err1);
1522 1522 err = err1;
1523 1523 goto out;
1524 1524 }
1525 1525 bp = pageio_setup(pp, xfersize, devvp, B_READ);
1526 1526 bp->b_edev = devvp->v_rdev;
1527 1527 bp->b_dev = cmpdev(devvp->v_rdev);
1528 1528 bp->b_blkno = bn + btodt(xferoffset - lbnoff);
1529 1529 bp->b_un.b_addr = (caddr_t)(uintptr_t)pgoff;
1530 1530 bp->b_file = vp;
1531 1531 bp->b_offset = (offset_t)(off + pgoff);
1532 1532
1533 1533 (void) bdev_strategy(bp);
1534 1534
1535 1535 lwp_stat_update(LWP_STAT_INBLK, 1);
1536 1536
1537 1537 if (err == 0)
1538 1538 err = biowait(bp);
1539 1539 else
1540 1540 (void) biowait(bp);
1541 1541 pageio_done(bp);
1542 1542 if (err)
1543 1543 goto out;
1544 1544 }
1545 1545 if (pgoff < PAGESIZE) {
1546 1546 pagezero(pp->p_prev, pgoff, PAGESIZE - pgoff);
1547 1547 }
1548 1548 pvn_plist_init(pp, pl, plsz, off, io_len, rw);
1549 1549 }
1550 1550 out:
1551 1551 if (err) {
1552 1552 if (pp != NULL)
1553 1553 pvn_read_done(pp, B_ERROR);
1554 1554 return (err);
1555 1555 }
1556 1556
1557 1557 if (pagefound) {
1558 1558 /*
1559 1559 * Page exists in the cache, acquire the "shared"
1560 1560 * lock. If this fails, go back to reread.
1561 1561 */
1562 1562 if ((pp = page_lookup(vp, off, SE_SHARED)) == NULL) {
1563 1563 goto reread;
1564 1564 }
1565 1565 pl[0] = pp;
1566 1566 pl[1] = NULL;
1567 1567 }
1568 1568 return (err);
1569 1569 }
1570 1570
1571 1571 /*
1572 1572 * Return all the pages from [off..off+len] in given file
1573 1573 */
1574 1574 /* ARGSUSED */
1575 1575 static int
1576 1576 pcfs_getpage(
1577 1577 struct vnode *vp,
1578 1578 offset_t off,
1579 1579 size_t len,
1580 1580 uint_t *protp,
1581 1581 page_t *pl[],
1582 1582 size_t plsz,
1583 1583 struct seg *seg,
1584 1584 caddr_t addr,
1585 1585 enum seg_rw rw,
1586 1586 struct cred *cr,
1587 1587 caller_context_t *ct)
1588 1588 {
1589 1589 struct pcfs *fsp = VFSTOPCFS(vp->v_vfsp);
1590 1590 int err;
1591 1591
1592 1592 PC_DPRINTF0(6, "pcfs_getpage\n");
1593 1593 if (err = pc_verify(fsp))
1594 1594 return (err);
1595 1595 if (vp->v_flag & VNOMAP)
1596 1596 return (ENOSYS);
1597 1597 ASSERT(off <= UINT32_MAX);
1598 1598 err = pc_lockfs(fsp, 0, 0);
1599 1599 if (err)
1600 1600 return (err);
1601 1601 if (protp != NULL)
1602 1602 *protp = PROT_ALL;
1603 1603
1604 1604 ASSERT((off & PAGEOFFSET) == 0);
1605 1605 err = pvn_getpages(pcfs_getapage, vp, off, len, protp, pl, plsz,
1606 1606 seg, addr, rw, cr);
1607 1607
1608 1608 pc_unlockfs(fsp);
1609 1609 return (err);
1610 1610 }
1611 1611
1612 1612
1613 1613 /*
1614 1614 * Flags are composed of {B_INVAL, B_FREE, B_DONTNEED, B_FORCE}
1615 1615 * If len == 0, do from off to EOF.
1616 1616 *
1617 1617 * The normal cases should be len == 0 & off == 0 (entire vp list),
1618 1618 * len == MAXBSIZE (from segmap_release actions), and len == PAGESIZE
1619 1619 * (from pageout).
1620 1620 *
1621 1621 */
1622 1622 /*ARGSUSED*/
1623 1623 static int
1624 1624 pcfs_putpage(
1625 1625 struct vnode *vp,
1626 1626 offset_t off,
1627 1627 size_t len,
1628 1628 int flags,
1629 1629 struct cred *cr,
1630 1630 caller_context_t *ct)
1631 1631 {
1632 1632 struct pcnode *pcp;
1633 1633 page_t *pp;
1634 1634 struct pcfs *fsp;
1635 1635 u_offset_t io_off;
1636 1636 size_t io_len;
1637 1637 offset_t eoff;
1638 1638 int err;
1639 1639
1640 1640 /*
1641 1641 * If the filesystem was umounted by force, return immediately.
1642 1642 */
1643 1643 if (vp->v_vfsp->vfs_flag & VFS_UNMOUNTED)
1644 1644 return (EIO);
1645 1645
1646 1646 PC_DPRINTF1(6, "pcfs_putpage vp=0x%p\n", (void *)vp);
1647 1647 if (vp->v_flag & VNOMAP)
1648 1648 return (ENOSYS);
1649 1649
1650 1650 fsp = VFSTOPCFS(vp->v_vfsp);
1651 1651
1652 1652 if (err = pc_verify(fsp))
1653 1653 return (err);
1654 1654 if ((pcp = VTOPC(vp)) == NULL) {
1655 1655 PC_DPRINTF1(3, "pcfs_putpage NULL vp=0x%p\n", (void *)vp);
1656 1656 return (EIO);
1657 1657 }
1658 1658 if (pcp->pc_flags & PC_INVAL)
1659 1659 return (EIO);
1660 1660
1661 1661 if (curproc == proc_pageout) {
1662 1662 /*
1663 1663 * XXX - This is a quick hack to avoid blocking
1664 1664 * pageout. Also to avoid pcfs_getapage deadlocking
1665 1665 * with putpage when memory is running out,
1666 1666 * since we only have one global lock and we don't
1667 1667 * support async putpage.
1668 1668 * It should be fixed someday.
1669 1669 *
1670 1670 * Interestingly, this used to be a test of NOMEMWAIT().
1671 1671 * We only ever got here once pcfs started supporting
1672 1672 * NFS sharing, and then only because the NFS server
1673 1673 * threads seem to do writes in sched's process context.
1674 1674 * Since everyone else seems to just care about pageout,
1675 1675 * the test was changed to look for pageout directly.
1676 1676 */
1677 1677 return (ENOMEM);
1678 1678 }
1679 1679
1680 1680 ASSERT(off <= UINT32_MAX);
1681 1681
1682 1682 flags &= ~B_ASYNC; /* XXX should fix this later */
1683 1683
1684 1684 err = pc_lockfs(fsp, 0, 0);
1685 1685 if (err)
1686 1686 return (err);
1687 1687 if (!vn_has_cached_data(vp) || off >= pcp->pc_size) {
1688 1688 pc_unlockfs(fsp);
1689 1689 return (0);
1690 1690 }
1691 1691
1692 1692 if (len == 0) {
1693 1693 /*
1694 1694 * Search the entire vp list for pages >= off
1695 1695 */
1696 1696 err = pvn_vplist_dirty(vp, off,
1697 1697 pcfs_putapage, flags, cr);
1698 1698 } else {
1699 1699 eoff = off + len;
1700 1700
1701 1701 for (io_off = off; io_off < eoff &&
1702 1702 io_off < pcp->pc_size; io_off += io_len) {
1703 1703 /*
1704 1704 * If we are not invalidating, synchronously
1705 1705 * freeing or writing pages use the routine
1706 1706 * page_lookup_nowait() to prevent reclaiming
1707 1707 * them from the free list.
1708 1708 */
1709 1709 if ((flags & B_INVAL) || ((flags & B_ASYNC) == 0)) {
1710 1710 pp = page_lookup(vp, io_off,
1711 1711 (flags & (B_INVAL | B_FREE)) ?
1712 1712 SE_EXCL : SE_SHARED);
1713 1713 } else {
1714 1714 pp = page_lookup_nowait(vp, io_off,
1715 1715 (flags & B_FREE) ? SE_EXCL : SE_SHARED);
1716 1716 }
1717 1717
1718 1718 if (pp == NULL || pvn_getdirty(pp, flags) == 0)
1719 1719 io_len = PAGESIZE;
1720 1720 else {
1721 1721 err = pcfs_putapage(vp, pp, &io_off, &io_len,
1722 1722 flags, cr);
1723 1723 if (err != 0)
1724 1724 break;
1725 1725 /*
1726 1726 * "io_off" and "io_len" are returned as
1727 1727 * the range of pages we actually wrote.
1728 1728 * This allows us to skip ahead more quickly
1729 1729 * since several pages may've been dealt
1730 1730 * with by this iteration of the loop.
1731 1731 */
1732 1732 }
1733 1733 }
1734 1734 }
1735 1735 if (err == 0 && (flags & B_INVAL) &&
1736 1736 off == 0 && len == 0 && vn_has_cached_data(vp)) {
1737 1737 /*
1738 1738 * If doing "invalidation", make sure that
1739 1739 * all pages on the vnode list are actually
1740 1740 * gone.
1741 1741 */
1742 1742 cmn_err(CE_PANIC,
1743 1743 "pcfs_putpage: B_INVAL, pages not gone");
1744 1744 } else if (err) {
1745 1745 PC_DPRINTF1(1, "pcfs_putpage err=%d\n", err);
1746 1746 }
1747 1747 pc_unlockfs(fsp);
1748 1748 return (err);
1749 1749 }
1750 1750
1751 1751 /*
1752 1752 * Write out a single page, possibly klustering adjacent dirty pages.
1753 1753 */
1754 1754 /*ARGSUSED*/
1755 1755 int
1756 1756 pcfs_putapage(
1757 1757 struct vnode *vp,
1758 1758 page_t *pp,
1759 1759 u_offset_t *offp,
1760 1760 size_t *lenp,
1761 1761 int flags,
1762 1762 struct cred *cr)
1763 1763 {
1764 1764 struct pcnode *pcp;
1765 1765 struct pcfs *fsp;
1766 1766 struct vnode *devvp;
1767 1767 size_t io_len;
1768 1768 daddr_t bn;
1769 1769 u_offset_t lbn, lbnoff, xferoffset;
1770 1770 uint_t pgoff, xfersize;
1771 1771 int err = 0;
1772 1772 u_offset_t io_off;
1773 1773
1774 1774 pcp = VTOPC(vp);
1775 1775 fsp = VFSTOPCFS(vp->v_vfsp);
1776 1776 devvp = fsp->pcfs_devvp;
1777 1777
1778 1778 /*
1779 1779 * If the modified time on the inode has not already been
1780 1780 * set elsewhere (e.g. for write/setattr) and this is not
1781 1781 * a call from msync (B_FORCE) we set the time now.
1782 1782 * This gives us approximate modified times for mmap'ed files
1783 1783 * which are modified via stores in the user address space.
1784 1784 */
1785 1785 if ((pcp->pc_flags & PC_MOD) == 0 || (flags & B_FORCE)) {
1786 1786 pcp->pc_flags |= PC_MOD;
1787 1787 pc_mark_mod(fsp, pcp);
1788 1788 }
1789 1789 pp = pvn_write_kluster(vp, pp, &io_off, &io_len, pp->p_offset,
1790 1790 PAGESIZE, flags);
1791 1791
1792 1792 if (fsp->pcfs_flags & PCFS_IRRECOV) {
1793 1793 goto out;
1794 1794 }
1795 1795
1796 1796 PC_DPRINTF1(7, "pc_putpage writing dirty page off=%llu\n", io_off);
1797 1797
1798 1798 lbn = pc_lblkno(fsp, io_off);
1799 1799 lbnoff = io_off & ~(fsp->pcfs_clsize - 1);
1800 1800 xferoffset = io_off & ~(fsp->pcfs_secsize - 1);
1801 1801
1802 1802 for (pgoff = 0; pgoff < io_len && xferoffset < pcp->pc_size;
1803 1803 pgoff += xfersize,
1804 1804 lbn += howmany(xfersize, fsp->pcfs_clsize),
1805 1805 lbnoff += xfersize, xferoffset += xfersize) {
1806 1806
1807 1807 struct buf *bp;
1808 1808 int err1;
1809 1809
1810 1810 /*
1811 1811 * write as many contiguous blocks as possible from this page
1812 1812 */
1813 1813 xfersize = io_len - pgoff;
1814 1814 err1 = pc_bmap(pcp, (daddr_t)lbn, &bn, &xfersize);
1815 1815 if (err1) {
1816 1816 err = err1;
1817 1817 goto out;
1818 1818 }
1819 1819 bp = pageio_setup(pp, xfersize, devvp, B_WRITE | flags);
1820 1820 bp->b_edev = devvp->v_rdev;
1821 1821 bp->b_dev = cmpdev(devvp->v_rdev);
1822 1822 bp->b_blkno = bn + btodt(xferoffset - lbnoff);
1823 1823 bp->b_un.b_addr = (caddr_t)(uintptr_t)pgoff;
1824 1824 bp->b_file = vp;
1825 1825 bp->b_offset = (offset_t)(io_off + pgoff);
1826 1826
1827 1827 (void) bdev_strategy(bp);
1828 1828
1829 1829 lwp_stat_update(LWP_STAT_OUBLK, 1);
1830 1830
1831 1831 if (err == 0)
1832 1832 err = biowait(bp);
1833 1833 else
1834 1834 (void) biowait(bp);
1835 1835 pageio_done(bp);
1836 1836 }
1837 1837 pvn_write_done(pp, ((err) ? B_ERROR : 0) | B_WRITE | flags);
1838 1838 pp = NULL;
1839 1839
1840 1840 out:
1841 1841 if ((fsp->pcfs_flags & PCFS_IRRECOV) && pp != NULL) {
1842 1842 pvn_write_done(pp, B_WRITE | flags);
1843 1843 } else if (err != 0 && pp != NULL) {
1844 1844 pvn_write_done(pp, B_ERROR | B_WRITE | flags);
1845 1845 }
1846 1846
1847 1847 if (offp)
1848 1848 *offp = io_off;
1849 1849 if (lenp)
1850 1850 *lenp = io_len;
1851 1851 PC_DPRINTF4(4, "pcfs_putapage: vp=%p pp=%p off=%lld len=%lu\n",
1852 1852 (void *)vp, (void *)pp, io_off, io_len);
1853 1853 if (err) {
1854 1854 PC_DPRINTF1(1, "pcfs_putapage err=%d", err);
1855 1855 }
1856 1856 return (err);
1857 1857 }
1858 1858
1859 1859 /*ARGSUSED*/
1860 1860 static int
1861 1861 pcfs_map(
1862 1862 struct vnode *vp,
1863 1863 offset_t off,
1864 1864 struct as *as,
1865 1865 caddr_t *addrp,
1866 1866 size_t len,
1867 1867 uchar_t prot,
1868 1868 uchar_t maxprot,
1869 1869 uint_t flags,
1870 1870 struct cred *cr,
1871 1871 caller_context_t *ct)
1872 1872 {
1873 1873 struct segvn_crargs vn_a;
1874 1874 int error;
1875 1875
1876 1876 PC_DPRINTF0(6, "pcfs_map\n");
1877 1877 if (vp->v_flag & VNOMAP)
1878 1878 return (ENOSYS);
1879 1879
1880 1880 if (off > UINT32_MAX || off + len > UINT32_MAX)
1881 1881 return (ENXIO);
1882 1882
1883 1883 as_rangelock(as);
1884 1884 error = choose_addr(as, addrp, len, off, ADDR_VACALIGN, flags);
1885 1885 if (error != 0) {
1886 1886 as_rangeunlock(as);
1887 1887 return (error);
1888 1888 }
1889 1889
1890 1890 vn_a.vp = vp;
1891 1891 vn_a.offset = off;
1892 1892 vn_a.type = flags & MAP_TYPE;
1893 1893 vn_a.prot = prot;
1894 1894 vn_a.maxprot = maxprot;
1895 1895 vn_a.flags = flags & ~MAP_TYPE;
1896 1896 vn_a.cred = cr;
1897 1897 vn_a.amp = NULL;
1898 1898 vn_a.szc = 0;
1899 1899 vn_a.lgrp_mem_policy_flags = 0;
1900 1900
1901 1901 error = as_map(as, *addrp, len, segvn_create, &vn_a);
1902 1902 as_rangeunlock(as);
1903 1903 return (error);
1904 1904 }
1905 1905
1906 1906 /* ARGSUSED */
1907 1907 static int
1908 1908 pcfs_seek(
1909 1909 struct vnode *vp,
1910 1910 offset_t ooff,
1911 1911 offset_t *noffp,
1912 1912 caller_context_t *ct)
1913 1913 {
1914 1914 if (*noffp < 0)
1915 1915 return (EINVAL);
1916 1916 else if (*noffp > MAXOFFSET_T)
1917 1917 return (EINVAL);
1918 1918 else
1919 1919 return (0);
1920 1920 }
1921 1921
1922 1922 /* ARGSUSED */
1923 1923 static int
1924 1924 pcfs_addmap(
1925 1925 struct vnode *vp,
1926 1926 offset_t off,
1927 1927 struct as *as,
1928 1928 caddr_t addr,
1929 1929 size_t len,
1930 1930 uchar_t prot,
1931 1931 uchar_t maxprot,
1932 1932 uint_t flags,
1933 1933 struct cred *cr,
1934 1934 caller_context_t *ct)
1935 1935 {
1936 1936 if (vp->v_flag & VNOMAP)
1937 1937 return (ENOSYS);
1938 1938 return (0);
1939 1939 }
1940 1940
1941 1941 /*ARGSUSED*/
1942 1942 static int
1943 1943 pcfs_delmap(
1944 1944 struct vnode *vp,
1945 1945 offset_t off,
1946 1946 struct as *as,
1947 1947 caddr_t addr,
1948 1948 size_t len,
1949 1949 uint_t prot,
1950 1950 uint_t maxprot,
1951 1951 uint_t flags,
1952 1952 struct cred *cr,
1953 1953 caller_context_t *ct)
1954 1954 {
1955 1955 if (vp->v_flag & VNOMAP)
1956 1956 return (ENOSYS);
1957 1957 return (0);
1958 1958 }
1959 1959
1960 1960 /*
1961 1961 * POSIX pathconf() support.
1962 1962 */
1963 1963 /* ARGSUSED */
1964 1964 static int
1965 1965 pcfs_pathconf(
1966 1966 struct vnode *vp,
1967 1967 int cmd,
1968 1968 ulong_t *valp,
1969 1969 struct cred *cr,
1970 1970 caller_context_t *ct)
1971 1971 {
1972 1972 struct pcfs *fsp = VFSTOPCFS(vp->v_vfsp);
1973 1973
1974 1974 switch (cmd) {
1975 1975 case _PC_LINK_MAX:
1976 1976 *valp = 1;
1977 1977 return (0);
1978 1978
1979 1979 case _PC_CASE_BEHAVIOR:
1980 1980 return (EINVAL);
1981 1981
1982 1982 case _PC_FILESIZEBITS:
1983 1983 /*
1984 1984 * Both FAT16 and FAT32 support 4GB - 1 byte for file size.
1985 1985 * FAT12 can only go up to the maximum filesystem capacity
1986 1986 * which is ~509MB.
1987 1987 */
1988 1988 *valp = IS_FAT12(fsp) ? 30 : 33;
1989 1989 return (0);
1990 1990
1991 1991 case _PC_TIMESTAMP_RESOLUTION:
1992 1992 /*
1993 1993 * PCFS keeps track of modification times, it its own
1994 1994 * internal format, to a resolution of 2 seconds.
1995 1995 * Since 2000 million is representable in an int32_t
1996 1996 * without overflow (or becoming negative), we allow
1997 1997 * this value to be returned.
1998 1998 */
1999 1999 *valp = 2000000000L;
2000 2000 return (0);
2001 2001
2002 2002 default:
2003 2003 return (fs_pathconf(vp, cmd, valp, cr, ct));
2004 2004 }
2005 2005
2006 2006 }
2007 2007
2008 2008 /* ARGSUSED */
2009 2009 static int
2010 2010 pcfs_space(
2011 2011 struct vnode *vp,
2012 2012 int cmd,
2013 2013 struct flock64 *bfp,
2014 2014 int flag,
2015 2015 offset_t offset,
2016 2016 cred_t *cr,
2017 2017 caller_context_t *ct)
2018 2018 {
2019 2019 struct vattr vattr;
2020 2020 int error;
2021 2021
2022 2022 if (cmd != F_FREESP)
2023 2023 return (EINVAL);
2024 2024
2025 2025 if ((error = convoff(vp, bfp, 0, offset)) == 0) {
2026 2026 if ((bfp->l_start > UINT32_MAX) || (bfp->l_len > UINT32_MAX))
2027 2027 return (EFBIG);
2028 2028 /*
2029 2029 * we only support the special case of l_len == 0,
2030 2030 * meaning free to end of file at this moment.
2031 2031 */
2032 2032 if (bfp->l_len != 0)
2033 2033 return (EINVAL);
2034 2034 vattr.va_mask = AT_SIZE;
2035 2035 vattr.va_size = bfp->l_start;
2036 2036 error = VOP_SETATTR(vp, (vattr_t *)&vattr, 0, cr, ct);
2037 2037 }
2038 2038 return (error);
2039 2039 }
2040 2040
2041 2041 /*
2042 2042 * Break up 'len' chars from 'buf' into a long file name chunk.
2043 2043 * Pad with '0xff' to make Norton Disk Doctor and Microsoft ScanDisk happy.
2044 2044 */
2045 2045 void
2046 2046 set_long_fn_chunk(struct pcdir_lfn *ep, char *buf, int len)
2047 2047 {
2048 2048 int i;
2049 2049
2050 2050 ASSERT(buf != NULL);
2051 2051
2052 2052 for (i = 0; i < PCLF_FIRSTNAMESIZE; i += 2) {
2053 2053 if (len > 0) {
2054 2054 ep->pcdl_firstfilename[i] = *buf++;
2055 2055 ep->pcdl_firstfilename[i + 1] = *buf++;
2056 2056 len -= 2;
2057 2057 } else {
2058 2058 ep->pcdl_firstfilename[i] = (uchar_t)0xff;
2059 2059 ep->pcdl_firstfilename[i + 1] = (uchar_t)0xff;
2060 2060 }
2061 2061 }
2062 2062
2063 2063 for (i = 0; i < PCLF_SECONDNAMESIZE; i += 2) {
2064 2064 if (len > 0) {
2065 2065 ep->pcdl_secondfilename[i] = *buf++;
2066 2066 ep->pcdl_secondfilename[i + 1] = *buf++;
2067 2067 len -= 2;
2068 2068 } else {
2069 2069 ep->pcdl_secondfilename[i] = (uchar_t)0xff;
2070 2070 ep->pcdl_secondfilename[i + 1] = (uchar_t)0xff;
2071 2071 }
2072 2072 }
2073 2073 for (i = 0; i < PCLF_THIRDNAMESIZE; i += 2) {
2074 2074 if (len > 0) {
2075 2075 ep->pcdl_thirdfilename[i] = *buf++;
2076 2076 ep->pcdl_thirdfilename[i + 1] = *buf++;
2077 2077 len -= 2;
2078 2078 } else {
2079 2079 ep->pcdl_thirdfilename[i] = (uchar_t)0xff;
2080 2080 ep->pcdl_thirdfilename[i + 1] = (uchar_t)0xff;
2081 2081 }
2082 2082 }
2083 2083 }
2084 2084
2085 2085 /*
2086 2086 * Extract the characters from the long filename chunk into 'buf'.
2087 2087 * Return the number of characters extracted.
2088 2088 */
2089 2089 static int
2090 2090 get_long_fn_chunk(struct pcdir_lfn *ep, char *buf)
2091 2091 {
2092 2092 char *tmp = buf;
2093 2093 int i;
2094 2094
2095 2095 /* Copy all the names, no filtering now */
2096 2096
2097 2097 for (i = 0; i < PCLF_FIRSTNAMESIZE; i += 2, tmp += 2) {
2098 2098 *tmp = ep->pcdl_firstfilename[i];
2099 2099 *(tmp + 1) = ep->pcdl_firstfilename[i + 1];
2100 2100
2101 2101 if ((*tmp == '\0') && (*(tmp+1) == '\0'))
2102 2102 return (tmp - buf);
2103 2103 }
2104 2104 for (i = 0; i < PCLF_SECONDNAMESIZE; i += 2, tmp += 2) {
2105 2105 *tmp = ep->pcdl_secondfilename[i];
2106 2106 *(tmp + 1) = ep->pcdl_secondfilename[i + 1];
2107 2107
2108 2108 if ((*tmp == '\0') && (*(tmp+1) == '\0'))
2109 2109 return (tmp - buf);
2110 2110 }
2111 2111 for (i = 0; i < PCLF_THIRDNAMESIZE; i += 2, tmp += 2) {
2112 2112 *tmp = ep->pcdl_thirdfilename[i];
2113 2113 *(tmp + 1) = ep->pcdl_thirdfilename[i + 1];
2114 2114
2115 2115 if ((*tmp == '\0') && (*(tmp+1) == '\0'))
2116 2116 return (tmp - buf);
2117 2117 }
2118 2118 return (tmp - buf);
2119 2119 }
2120 2120
2121 2121
2122 2122 /*
2123 2123 * Checksum the passed in short filename.
2124 2124 * This is used to validate each component of the long name to make
2125 2125 * sure the long name is valid (it hasn't been "detached" from the
2126 2126 * short filename). This algorithm was found in FreeBSD.
2127 2127 * (sys/fs/msdosfs/msdosfs_conv.c:winChksum(), Wolfgang Solfrank)
2128 2128 */
2129 2129
2130 2130 uchar_t
2131 2131 pc_checksum_long_fn(char *name, char *ext)
2132 2132 {
2133 2133 uchar_t c;
2134 2134 char b[11];
2135 2135
2136 2136 bcopy(name, b, 8);
2137 2137 bcopy(ext, b+8, 3);
2138 2138
2139 2139 c = b[0];
2140 2140 c = ((c << 7) | (c >> 1)) + b[1];
2141 2141 c = ((c << 7) | (c >> 1)) + b[2];
2142 2142 c = ((c << 7) | (c >> 1)) + b[3];
2143 2143 c = ((c << 7) | (c >> 1)) + b[4];
2144 2144 c = ((c << 7) | (c >> 1)) + b[5];
2145 2145 c = ((c << 7) | (c >> 1)) + b[6];
2146 2146 c = ((c << 7) | (c >> 1)) + b[7];
2147 2147 c = ((c << 7) | (c >> 1)) + b[8];
2148 2148 c = ((c << 7) | (c >> 1)) + b[9];
2149 2149 c = ((c << 7) | (c >> 1)) + b[10];
2150 2150
2151 2151 return (c);
2152 2152 }
2153 2153
2154 2154 /*
2155 2155 * Read a chunk of long filename entries into 'namep'.
2156 2156 * Return with offset pointing to short entry (on success), or next
2157 2157 * entry to read (if this wasn't a valid lfn really).
2158 2158 * Uses the passed-in buffer if it can, otherwise kmem_allocs() room for
2159 2159 * a long filename.
2160 2160 *
2161 2161 * Can also be called with a NULL namep, in which case it just returns
2162 2162 * whether this was really a valid long filename and consumes it
2163 2163 * (used by pc_dirempty()).
2164 2164 */
2165 2165 int
2166 2166 pc_extract_long_fn(struct pcnode *pcp, char *namep,
2167 2167 struct pcdir **epp, offset_t *offset, struct buf **bp)
2168 2168 {
2169 2169 struct pcdir *ep = *epp;
2170 2170 struct pcdir_lfn *lep = (struct pcdir_lfn *)ep;
2171 2171 struct vnode *dvp = PCTOV(pcp);
2172 2172 struct pcfs *fsp = VFSTOPCFS(dvp->v_vfsp);
2173 2173 char *lfn;
2174 2174 char *lfn_base;
2175 2175 int boff;
2176 2176 int i, cs;
2177 2177 char *buf;
2178 2178 uchar_t cksum;
2179 2179 int detached = 0;
2180 2180 int error = 0;
2181 2181 int foldcase;
2182 2182 int count = 0;
2183 2183 size_t u16l = 0, u8l = 0;
2184 2184 char *outbuf;
2185 2185 size_t ret, inlen, outlen;
2186 2186
2187 2187 foldcase = (fsp->pcfs_flags & PCFS_FOLDCASE);
2188 2188 lfn_base = kmem_alloc(PCMAXNAM_UTF16, KM_SLEEP);
2189 2189 lfn = lfn_base + PCMAXNAM_UTF16 - sizeof (uint16_t);
2190 2190 *lfn = '\0';
2191 2191 *(lfn + 1) = '\0';
2192 2192 cksum = lep->pcdl_checksum;
2193 2193
2194 2194 buf = kmem_alloc(PCMAXNAM_UTF16, KM_SLEEP);
2195 2195 for (i = (lep->pcdl_ordinal & ~0xc0); i > 0; i--) {
2196 2196 /* read next block if necessary */
2197 2197 boff = pc_blkoff(fsp, *offset);
2198 2198 if (boff == 0 || *bp == NULL || boff >= (*bp)->b_bcount) {
2199 2199 if (*bp != NULL) {
2200 2200 brelse(*bp);
2201 2201 *bp = NULL;
2202 2202 }
2203 2203 error = pc_blkatoff(pcp, *offset, bp, &ep);
2204 2204 if (error) {
2205 2205 kmem_free(lfn_base, PCMAXNAM_UTF16);
2206 2206 kmem_free(buf, PCMAXNAM_UTF16);
2207 2207 return (error);
2208 2208 }
2209 2209 lep = (struct pcdir_lfn *)ep;
2210 2210 }
2211 2211 /* can this happen? Bad fs? */
2212 2212 if (!PCDL_IS_LFN((struct pcdir *)lep)) {
2213 2213 detached = 1;
2214 2214 break;
2215 2215 }
2216 2216 if (cksum != lep->pcdl_checksum)
2217 2217 detached = 1;
2218 2218 /* process current entry */
2219 2219 cs = get_long_fn_chunk(lep, buf);
2220 2220 count += cs;
2221 2221 for (; cs > 0; cs--) {
2222 2222 /* see if we underflow */
2223 2223 if (lfn >= lfn_base)
2224 2224 *--lfn = buf[cs - 1];
2225 2225 else
2226 2226 detached = 1;
2227 2227 }
2228 2228 lep++;
2229 2229 *offset += sizeof (struct pcdir);
2230 2230 }
2231 2231 kmem_free(buf, PCMAXNAM_UTF16);
2232 2232 /* read next block if necessary */
2233 2233 boff = pc_blkoff(fsp, *offset);
2234 2234 ep = (struct pcdir *)lep;
2235 2235 if (boff == 0 || *bp == NULL || boff >= (*bp)->b_bcount) {
2236 2236 if (*bp != NULL) {
2237 2237 brelse(*bp);
2238 2238 *bp = NULL;
2239 2239 }
2240 2240 error = pc_blkatoff(pcp, *offset, bp, &ep);
2241 2241 if (error) {
2242 2242 kmem_free(lfn_base, PCMAXNAM_UTF16);
2243 2243 return (error);
2244 2244 }
2245 2245 }
2246 2246 /* should be on the short one */
2247 2247 if (PCDL_IS_LFN(ep) || ((ep->pcd_filename[0] == PCD_UNUSED) ||
2248 2248 (ep->pcd_filename[0] == PCD_ERASED))) {
2249 2249 detached = 1;
2250 2250 }
2251 2251 if (detached ||
2252 2252 (cksum != pc_checksum_long_fn(ep->pcd_filename, ep->pcd_ext)) ||
2253 2253 !pc_valid_long_fn(lfn, 0)) {
2254 2254 /*
2255 2255 * process current entry again. This may end up another lfn
2256 2256 * or a short name.
2257 2257 */
2258 2258 *epp = ep;
2259 2259 kmem_free(lfn_base, PCMAXNAM_UTF16);
2260 2260 return (EINVAL);
2261 2261 }
2262 2262 if (PCA_IS_HIDDEN(fsp, ep->pcd_attr)) {
2263 2263 /*
2264 2264 * Don't display label because it may contain
2265 2265 * funny characters.
2266 2266 */
2267 2267 *offset += sizeof (struct pcdir);
2268 2268 ep++;
2269 2269 *epp = ep;
2270 2270 kmem_free(lfn_base, PCMAXNAM_UTF16);
2271 2271 return (EINVAL);
2272 2272 }
2273 2273 if (namep) {
2274 2274 u16l = count / 2;
2275 2275 u8l = PCMAXNAMLEN;
2276 2276 error = uconv_u16tou8((const uint16_t *)lfn, &u16l,
2277 2277 (uchar_t *)namep, &u8l, UCONV_IN_LITTLE_ENDIAN);
2278 2278 /*
2279 2279 * uconv_u16tou8() will catch conversion errors including
2280 2280 * the case where there is not enough room to write the
2281 2281 * converted result and the u8l will never go over the given
2282 2282 * PCMAXNAMLEN.
2283 2283 */
2284 2284 if (error != 0) {
2285 2285 kmem_free(lfn_base, PCMAXNAM_UTF16);
2286 2286 return (EINVAL);
2287 2287 }
2288 2288 namep[u8l] = '\0';
2289 2289 if (foldcase) {
2290 2290 inlen = strlen(namep);
2291 2291 outlen = PCMAXNAMLEN;
2292 2292 outbuf = kmem_alloc(PCMAXNAMLEN + 1, KM_SLEEP);
2293 2293 ret = u8_textprep_str(namep, &inlen, outbuf,
2294 2294 &outlen, U8_TEXTPREP_TOLOWER, U8_UNICODE_LATEST,
2295 2295 &error);
2296 2296 if (ret == -1) {
2297 2297 kmem_free(outbuf, PCMAXNAMLEN + 1);
2298 2298 kmem_free(lfn_base, PCMAXNAM_UTF16);
2299 2299 return (EINVAL);
2300 2300 }
2301 2301 outbuf[PCMAXNAMLEN - outlen] = '\0';
2302 2302 (void) strncpy(namep, outbuf, PCMAXNAMLEN + 1);
2303 2303 kmem_free(outbuf, PCMAXNAMLEN + 1);
2304 2304 }
2305 2305 }
2306 2306 kmem_free(lfn_base, PCMAXNAM_UTF16);
2307 2307 *epp = ep;
2308 2308 return (0);
2309 2309 }
2310 2310 /*
2311 2311 * Read a long filename into the pc_dirent structure and copy it out.
2312 2312 */
2313 2313 int
2314 2314 pc_read_long_fn(struct vnode *dvp, struct uio *uiop, struct pc_dirent *ld,
2315 2315 struct pcdir **epp, offset_t *offset, struct buf **bp)
2316 2316 {
2317 2317 struct pcdir *ep;
2318 2318 struct pcnode *pcp = VTOPC(dvp);
2319 2319 struct pcfs *fsp = VFSTOPCFS(dvp->v_vfsp);
2320 2320 offset_t uiooffset = uiop->uio_loffset;
2321 2321 int error = 0;
2322 2322 offset_t oldoffset;
2323 2323
2324 2324 oldoffset = *offset;
2325 2325 error = pc_extract_long_fn(pcp, ld->d_name, epp, offset, bp);
2326 2326 if (error) {
2327 2327 if (error == EINVAL) {
2328 2328 uiop->uio_loffset += *offset - oldoffset;
2329 2329 return (0);
2330 2330 } else
2331 2331 return (error);
2332 2332 }
2333 2333
2334 2334 ep = *epp;
2335 2335 uiop->uio_loffset += *offset - oldoffset;
2336 2336 ld->d_reclen = DIRENT64_RECLEN(strlen(ld->d_name));
2337 2337 if (ld->d_reclen > uiop->uio_resid) {
2338 2338 uiop->uio_loffset = uiooffset;
2339 2339 return (ENOSPC);
2340 2340 }
2341 2341 ld->d_off = uiop->uio_loffset + sizeof (struct pcdir);
2342 2342 ld->d_ino = pc_makenodeid(pc_daddrdb(fsp, (*bp)->b_blkno),
2343 2343 pc_blkoff(fsp, *offset), ep->pcd_attr,
2344 2344 pc_getstartcluster(fsp, ep), pc_direntpersec(fsp));
2345 2345 (void) uiomove((caddr_t)ld, ld->d_reclen, UIO_READ, uiop);
2346 2346 uiop->uio_loffset = ld->d_off;
2347 2347 *offset += sizeof (struct pcdir);
2348 2348 ep++;
2349 2349 *epp = ep;
2350 2350 return (0);
2351 2351 }
2352 2352
2353 2353 /*
2354 2354 * Read a short filename into the pc_dirent structure and copy it out.
2355 2355 */
2356 2356 int
2357 2357 pc_read_short_fn(struct vnode *dvp, struct uio *uiop, struct pc_dirent *ld,
2358 2358 struct pcdir **epp, offset_t *offset, struct buf **bp)
2359 2359 {
2360 2360 struct pcfs *fsp = VFSTOPCFS(dvp->v_vfsp);
2361 2361 int boff = pc_blkoff(fsp, *offset);
2362 2362 struct pcdir *ep = *epp;
2363 2363 offset_t oldoffset = uiop->uio_loffset;
2364 2364 int error;
2365 2365 int foldcase;
2366 2366
2367 2367 if (PCA_IS_HIDDEN(fsp, ep->pcd_attr)) {
2368 2368 uiop->uio_loffset += sizeof (struct pcdir);
2369 2369 *offset += sizeof (struct pcdir);
2370 2370 ep++;
2371 2371 *epp = ep;
2372 2372 return (0);
2373 2373 }
2374 2374 ld->d_ino = (ino64_t)pc_makenodeid(pc_daddrdb(fsp, (*bp)->b_blkno),
2375 2375 boff, ep->pcd_attr, pc_getstartcluster(fsp, ep),
2376 2376 pc_direntpersec(fsp));
2377 2377 foldcase = (fsp->pcfs_flags & PCFS_FOLDCASE);
2378 2378 error = pc_fname_ext_to_name(&ld->d_name[0], &ep->pcd_filename[0],
2379 2379 &ep->pcd_ext[0], foldcase);
2380 2380 if (error == 0) {
2381 2381 ld->d_reclen = DIRENT64_RECLEN(strlen(ld->d_name));
2382 2382 if (ld->d_reclen > uiop->uio_resid) {
2383 2383 uiop->uio_loffset = oldoffset;
2384 2384 return (ENOSPC);
2385 2385 }
2386 2386 ld->d_off = (off64_t)(uiop->uio_loffset +
2387 2387 sizeof (struct pcdir));
2388 2388 (void) uiomove((caddr_t)ld,
2389 2389 ld->d_reclen, UIO_READ, uiop);
2390 2390 uiop->uio_loffset = ld->d_off;
2391 2391 } else {
2392 2392 uiop->uio_loffset += sizeof (struct pcdir);
2393 2393 }
2394 2394 *offset += sizeof (struct pcdir);
2395 2395 ep++;
2396 2396 *epp = ep;
2397 2397 return (0);
2398 2398 }
2399 2399
2400 2400 /* ARGSUSED */
2401 2401 static int
2402 2402 pcfs_fid(struct vnode *vp, struct fid *fidp, caller_context_t *ct)
2403 2403 {
2404 2404 struct pc_fid *pcfid;
2405 2405 struct pcnode *pcp;
2406 2406 struct pcfs *fsp;
2407 2407 int error;
2408 2408
2409 2409 fsp = VFSTOPCFS(vp->v_vfsp);
2410 2410 if (fsp == NULL)
2411 2411 return (EIO);
2412 2412 error = pc_lockfs(fsp, 0, 0);
2413 2413 if (error)
2414 2414 return (error);
2415 2415 if ((pcp = VTOPC(vp)) == NULL || pcp->pc_flags & PC_INVAL) {
2416 2416 pc_unlockfs(fsp);
2417 2417 return (EIO);
2418 2418 }
2419 2419 if (fidp->fid_len < (sizeof (struct pc_fid) - sizeof (ushort_t))) {
2420 2420 fidp->fid_len = sizeof (struct pc_fid) - sizeof (ushort_t);
2421 2421 pc_unlockfs(fsp);
2422 2422 return (ENOSPC);
2423 2423 }
2424 2424
2425 2425 pcfid = (struct pc_fid *)fidp;
2426 2426 bzero(pcfid, sizeof (struct pc_fid));
2427 2427 pcfid->pcfid_len = sizeof (struct pc_fid) - sizeof (ushort_t);
2428 2428 if (vp->v_flag & VROOT) {
2429 2429 pcfid->pcfid_block = 0;
2430 2430 pcfid->pcfid_offset = 0;
2431 2431 pcfid->pcfid_ctime = 0;
2432 2432 } else {
2433 2433 pcfid->pcfid_block = pcp->pc_eblkno;
2434 2434 pcfid->pcfid_offset = pcp->pc_eoffset;
2435 2435 pcfid->pcfid_ctime = pcp->pc_entry.pcd_crtime.pct_time;
2436 2436 }
2437 2437 pc_unlockfs(fsp);
2438 2438 return (0);
2439 2439 }
↓ open down ↓ |
2242 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX