Merge from vendor branch BSDTAR:
[dragonfly.git] / sys / vfs / udf / udf_vfsops.c
1 /*-
2  * Copyright (c) 2001, 2002 Scott Long <scottl@freebsd.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD: src/sys/fs/udf/udf_vfsops.c,v 1.16 2003/11/05 06:56:08 scottl Exp $
27  * $DragonFly: src/sys/vfs/udf/udf_vfsops.c,v 1.12 2005/02/02 21:34:18 joerg Exp $
28  */
29
30 /* udf_vfsops.c */
31 /* Implement the VFS side of things */
32
33 /*
34  * Ok, here's how it goes.  The UDF specs are pretty clear on how each data
35  * structure is made up, but not very clear on how they relate to each other.
36  * Here is the skinny... This demostrates a filesystem with one file in the
37  * root directory.  Subdirectories are treated just as normal files, but they
38  * have File Id Descriptors of their children as their file data.  As for the
39  * Anchor Volume Descriptor Pointer, it can exist in two of the following three
40  * places: sector 256, sector n (the max sector of the disk), or sector
41  * n - 256.  It's a pretty good bet that one will exist at sector 256 though.
42  * One caveat is unclosed CD media.  For that, sector 256 cannot be written,
43  * so the Anchor Volume Descriptor Pointer can exist at sector 512 until the
44  * media is closed.
45  *
46  *  Sector:
47  *     256:
48  *       n: Anchor Volume Descriptor Pointer
49  * n - 256:     |
50  *              |
51  *              |-->Main Volume Descriptor Sequence
52  *                      |       |
53  *                      |       |
54  *                      |       |-->Logical Volume Descriptor
55  *                      |                         |
56  *                      |-->Partition Descriptor  |
57  *                              |                 |
58  *                              |                 |
59  *                              |-->Fileset Descriptor
60  *                                      |
61  *                                      |
62  *                                      |-->Root Dir File Entry
63  *                                              |
64  *                                              |
65  *                                              |-->File data:
66  *                                                  File Id Descriptor
67  *                                                      |
68  *                                                      |
69  *                                                      |-->File Entry
70  *                                                              |
71  *                                                              |
72  *                                                              |-->File data
73  */
74
75 #include <sys/types.h>
76 #include <sys/param.h>
77 #include <sys/systm.h>
78 #include <sys/uio.h>
79 #include <sys/buf.h>
80 #include <sys/conf.h>
81 #include <sys/dirent.h>
82 #include <sys/fcntl.h>
83 #include <sys/module.h>
84 #include <sys/kernel.h>
85 #include <sys/malloc.h>
86 #include <sys/mount.h>
87 #include <sys/nlookup.h>
88 #include <sys/proc.h>
89 #include <sys/queue.h>
90 #include <sys/vnode.h>
91
92 #include <vfs/udf/ecma167-udf.h>
93 #include <vfs/udf/osta.h>
94 #include <vfs/udf/udf.h>
95 #include <vfs/udf/udf_mount.h>
96
97 extern struct vnodeopv_entry_desc udf_vnodeop_entries[];
98
99 MALLOC_DEFINE(M_UDFNODE, "UDF node", "UDF node structure");
100 MALLOC_DEFINE(M_UDFMOUNT, "UDF mount", "UDF mount structure");
101 MALLOC_DEFINE(M_UDFFENTRY, "UDF fentry", "UDF file entry structure");
102
103 static int udf_mount(struct mount *, char *, caddr_t, struct thread *);
104 static int udf_unmount(struct mount *, int, struct thread *);
105 static int udf_root(struct mount *, struct vnode **);
106 static int udf_statfs(struct mount *, struct statfs *, struct thread *);
107 static int udf_fhtovp(struct mount *, struct fid *, struct vnode **);
108 static int udf_vptofh(struct vnode *, struct fid *);
109
110 static int udf_find_partmaps(struct udf_mnt *, struct logvol_desc *);
111
112 static struct vfsops udf_vfsops = {
113         udf_mount,
114         vfs_stdstart,
115         udf_unmount,
116         udf_root,
117         vfs_stdquotactl,
118         udf_statfs,
119         vfs_stdsync,
120         udf_vget,
121         udf_fhtovp,
122         vfs_stdcheckexp,
123         udf_vptofh,
124         vfs_stdinit,
125         vfs_stduninit,
126         vfs_stdextattrctl,
127 };
128 VFS_SET(udf_vfsops, udf, VFCF_READONLY);
129
130 MODULE_VERSION(udf, 1);
131
132 static int udf_mountfs(struct vnode *, struct mount *, struct thread *);
133
134 static int
135 udf_mount(struct mount *mp, char *path, caddr_t data, struct thread *td)
136 {
137         struct vnode *devvp;    /* vnode of the mount device */
138         struct udf_args args;
139         struct udf_mnt *imp = 0;
140         size_t size;
141         int error;
142         struct nlookupdata nd;
143
144         if ((mp->mnt_flag & MNT_RDONLY) == 0)
145                 return (EROFS);
146
147         /*
148          * No root filesystem support.  Probably not a big deal, since the
149          * bootloader doesn't understand UDF.
150          */
151         if (mp->mnt_flag & MNT_ROOTFS)
152                 return (ENOTSUP);
153
154         if ((error = copyin(data, (caddr_t)&args, sizeof(struct udf_args))))
155                 return(error);
156
157         if (mp->mnt_flag & MNT_UPDATE) {
158                 imp = VFSTOUDFFS(mp);
159                 if (args.fspec == NULL)
160                         return(vfs_export(mp, &imp->im_export, &args.export));
161         }
162
163         /* Check that the mount device exists */
164         devvp = NULL;
165         error = nlookup_init(&nd, args.fspec, UIO_USERSPACE, NLC_FOLLOW);
166         if (error == 0)
167                 error = nlookup(&nd);
168         if (error == 0)
169                 error = cache_vref(nd.nl_ncp, nd.nl_cred, &devvp);
170         nlookup_done(&nd);
171         if (error)
172                 return (error);
173
174         if (vn_isdisk(devvp, &error) == 0) {
175                 vrele(devvp);
176                 return(error);
177         }
178
179         /* Check the access rights on the mount device */
180         vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY, td);
181         error = VOP_ACCESS(devvp, VREAD, td->td_proc->p_ucred, td);
182         if (error)
183                 error = suser(td);
184         if (error) {
185                 vput(devvp);
186                 return(error);
187         }
188         VOP_UNLOCK(devvp, 0, td);
189
190         if ((error = udf_mountfs(devvp, mp, td))) {
191                 vrele(devvp);
192                 return(error);
193         }
194
195         imp = VFSTOUDFFS(mp);
196
197         imp->im_flags = args.flags;
198
199         copyinstr(args.fspec, mp->mnt_stat.f_mntfromname, MNAMELEN - 1, &size);
200         bzero(mp->mnt_stat.f_mntfromname + size, MNAMELEN - size);
201         udf_statfs(mp, &mp->mnt_stat, td);
202         return(0);
203 }
204
205 /*
206  * Check the descriptor tag for both the correct id and correct checksum.
207  * Return zero if all is good, EINVAL if not.
208  */
209 int
210 udf_checktag(struct desc_tag *tag, uint16_t id)
211 {
212         uint8_t *itag;
213         uint8_t i, cksum = 0;
214
215         itag = (uint8_t *)tag;
216
217         if (tag->id != id)
218                 return(EINVAL);
219
220         for (i = 0; i < 15; i++)
221                 cksum = cksum + itag[i];
222         cksum = cksum - itag[4];
223
224         if (cksum == tag->cksum)
225                 return(0);
226
227         return(EINVAL);
228 }
229
230 static int
231 udf_mountfs(struct vnode *devvp, struct mount *mp, struct thread *td) 
232 {
233         struct buf *bp = NULL;
234         struct anchor_vdp avdp;
235         struct udf_mnt *udfmp = NULL;
236         struct part_desc *pd;
237         struct logvol_desc *lvd;
238         struct fileset_desc *fsd;
239         struct file_entry *root_fentry;
240         dev_t dev;
241         uint32_t sector, size, mvds_start, mvds_end;
242         uint32_t fsd_offset = 0;
243         uint16_t part_num = 0, fsd_part = 0;
244         int error = EINVAL, needclose = 0;
245         int logvol_found = 0, part_found = 0, fsd_found = 0;
246         int bsize;
247
248         /*
249          * Disallow multiple mounts of the same device. Flush the buffer
250          * cache for the device.
251          */
252         if ((error = vfs_mountedon(devvp)))
253                 return(error);
254         if (count_udev(devvp->v_udev) > 0)
255                 return(EBUSY);
256         if ((error = vinvalbuf(devvp, V_SAVE, td, 0, 0)))
257                 return(error);
258
259         vn_lock(devvp, LK_EXCLUSIVE | LK_RETRY, td);
260         error = VOP_OPEN(devvp, FREAD, FSCRED, NULL, td);
261         VOP_UNLOCK(devvp, 0, td);
262         if (error)
263                 return(error);
264         needclose = 1;
265         dev = devvp->v_rdev;
266
267         udfmp = malloc(sizeof(*udfmp), M_UDFMOUNT, M_WAITOK | M_ZERO);
268
269         mp->mnt_data = (qaddr_t)udfmp;
270         mp->mnt_stat.f_fsid.val[0] = dev2udev(dev);
271         mp->mnt_stat.f_fsid.val[1] = mp->mnt_vfc->vfc_typenum;
272         mp->mnt_maxsymlinklen = 0;
273         mp->mnt_flag |= MNT_LOCAL;
274         udfmp->im_mountp = mp;
275         udfmp->im_dev = dev;
276         udfmp->im_devvp = devvp;
277
278         bsize = 2048;   /* XXX Should probe the media for it's size */
279
280         /* 
281          * Get the Anchor Volume Descriptor Pointer from sector 256.
282          * XXX Should also check sector n - 256, n, and 512.
283          */
284         sector = 256;
285         if ((error = bread(devvp, sector * btodb(bsize), bsize, &bp)) != 0)
286                 goto bail;
287         if ((error = udf_checktag((struct desc_tag *)bp->b_data, TAGID_ANCHOR)))
288                 goto bail;
289
290         bcopy(bp->b_data, &avdp, sizeof(struct anchor_vdp));
291         brelse(bp);
292         bp = NULL;
293
294         /*
295          * Extract the Partition Descriptor and Logical Volume Descriptor
296          * from the Volume Descriptor Sequence.
297          * XXX Should we care about the partition type right now?
298          * XXX What about multiple partitions?
299          */
300         mvds_start = avdp.main_vds_ex.loc;
301         mvds_end = mvds_start + (avdp.main_vds_ex.len - 1) / bsize;
302         for (sector = mvds_start; sector < mvds_end; sector++) {
303                 if ((error = bread(devvp, sector * btodb(bsize), bsize,
304                                    &bp)) != 0) {
305                         printf("Can't read sector %d of VDS\n", sector);
306                         goto bail;
307                 }
308                 lvd = (struct logvol_desc *)bp->b_data;
309                 if (!udf_checktag(&lvd->tag, TAGID_LOGVOL)) {
310                         udfmp->bsize = lvd->lb_size;
311                         udfmp->bmask = udfmp->bsize - 1;
312                         udfmp->bshift = ffs(udfmp->bsize) - 1;
313                         fsd_part = lvd->_lvd_use.fsd_loc.loc.part_num;
314                         fsd_offset = lvd->_lvd_use.fsd_loc.loc.lb_num;
315                         if (udf_find_partmaps(udfmp, lvd))
316                                 break;
317                         logvol_found = 1;
318                 }
319                 pd = (struct part_desc *)bp->b_data;
320                 if (!udf_checktag(&pd->tag, TAGID_PARTITION)) {
321                         part_found = 1;
322                         part_num = pd->part_num;
323                         udfmp->part_len = pd->part_len;
324                         udfmp->part_start = pd->start_loc;
325                 }
326
327                 brelse(bp); 
328                 bp = NULL;
329                 if ((part_found) && (logvol_found))
330                         break;
331         }
332
333         if (!part_found || !logvol_found) {
334                 error = EINVAL;
335                 goto bail;
336         }
337
338         if (fsd_part != part_num) {
339                 printf("FSD does not lie within the partition!\n");
340                 error = EINVAL;
341                 goto bail;
342         }
343
344
345         /*
346          * Grab the Fileset Descriptor
347          * Thanks to Chuck McCrobie <mccrobie@cablespeed.com> for pointing
348          * me in the right direction here.
349          */
350         sector = udfmp->part_start + fsd_offset;
351         if ((error = RDSECTOR(devvp, sector, udfmp->bsize, &bp)) != 0) {
352                 printf("Cannot read sector %d of FSD\n", sector);
353                 goto bail;
354         }
355         fsd = (struct fileset_desc *)bp->b_data;
356         if (!udf_checktag(&fsd->tag, TAGID_FSD)) {
357                 fsd_found = 1;
358                 bcopy(&fsd->rootdir_icb, &udfmp->root_icb,
359                       sizeof(struct long_ad));
360         }
361
362         brelse(bp);
363         bp = NULL;
364
365         if (!fsd_found) {
366                 printf("Couldn't find the fsd\n");
367                 error = EINVAL;
368                 goto bail;
369         } 
370
371         vfs_add_vnodeops(mp, &mp->mnt_vn_norm_ops, udf_vnodeop_entries);
372
373         /*
374          * Find the file entry for the root directory.
375          */
376         sector = udfmp->root_icb.loc.lb_num + udfmp->part_start;
377         size = udfmp->root_icb.len;
378         if ((error = udf_readlblks(udfmp, sector, size, &bp)) != 0) {
379                 printf("Cannot read sector %d\n", sector);
380                 goto bail;
381         }
382
383         root_fentry = (struct file_entry *)bp->b_data;
384         if ((error = udf_checktag(&root_fentry->tag, TAGID_FENTRY))) {
385                 printf("Invalid root file entry!\n");
386                 goto bail;
387         }
388
389         brelse(bp);
390         bp = NULL;
391
392         lwkt_token_init(&udfmp->hash_token);
393         udfmp->hashtbl = phashinit(UDF_HASHTBLSIZE, M_UDFMOUNT, &udfmp->hashsz);
394
395         return(0);
396
397 bail:
398         if (udfmp != NULL)
399                 free(udfmp, M_UDFMOUNT);
400         if (bp != NULL)
401                 brelse(bp);
402         if (needclose)
403                 VOP_CLOSE(devvp, FREAD, td);
404         return(error);
405 }
406
407 static int
408 udf_unmount(struct mount *mp, int mntflags, struct thread *td)
409 {
410         struct udf_mnt *udfmp;
411         int error, flags = 0;
412
413         udfmp = VFSTOUDFFS(mp);
414
415         if (mntflags & MNT_FORCE)
416                 flags |= FORCECLOSE;
417
418         if ((error = vflush(mp, 0, flags)))
419                 return (error);
420
421         udfmp->im_devvp->v_rdev->si_mountpoint = NULL;
422         error = VOP_CLOSE(udfmp->im_devvp, FREAD, td);
423         vrele(udfmp->im_devvp);
424
425         if (udfmp->s_table)
426                 free(udfmp->s_table, M_UDFMOUNT);
427         if (udfmp->hashtbl)
428                 free(udfmp->hashtbl, M_UDFMOUNT);
429         free(udfmp, M_UDFMOUNT);
430
431         mp->mnt_data = (qaddr_t)0;
432         mp->mnt_flag &= ~MNT_LOCAL;
433
434         return (error);
435 }
436
437 static int
438 udf_root(struct mount *mp, struct vnode **vpp)
439 {
440         struct udf_mnt *udfmp;
441         struct vnode *vp;
442         ino_t id;
443         int error;
444
445         udfmp = VFSTOUDFFS(mp);
446
447         id = udf_getid(&udfmp->root_icb);
448
449         error = udf_vget(mp, id, vpp);
450         if (error)
451                 return(error);
452
453         vp = *vpp;
454         vp->v_flag |= VROOT;
455         udfmp->root_vp = vp;
456
457         return(0);
458 }
459
460 static int
461 udf_statfs(struct mount *mp, struct statfs *sbp, struct thread *td)
462 {
463         struct udf_mnt *udfmp;
464
465         udfmp = VFSTOUDFFS(mp);
466
467         sbp->f_bsize = udfmp->bsize;
468         sbp->f_iosize = udfmp->bsize;
469         sbp->f_blocks = udfmp->part_len;
470         sbp->f_bfree = 0;
471         sbp->f_bavail = 0;
472         sbp->f_files = 0;
473         sbp->f_ffree = 0;
474         if (sbp != &mp->mnt_stat) {
475                 sbp->f_type = mp->mnt_vfc->vfc_typenum;
476                 bcopy(mp->mnt_stat.f_mntfromname, sbp->f_mntfromname, MNAMELEN);
477         }
478
479         return(0);
480 }
481
482 int
483 udf_vget(struct mount *mp, ino_t ino, struct vnode **vpp)
484 {
485         struct buf *bp;
486         struct vnode *devvp;
487         struct udf_mnt *udfmp;
488         struct thread *td;
489         struct vnode *vp;
490         struct udf_node *unode;
491         struct file_entry *fe;
492         int error, sector, size;
493
494         td = curthread;
495         udfmp = VFSTOUDFFS(mp);
496
497         /* See if we already have this in the cache */
498         if ((error = udf_hashlookup(udfmp, ino, vpp)) != 0)
499                 return(error);
500         if (*vpp != NULL) {
501                 return(0);
502         }
503
504         /*
505          * Allocate memory and check the tag id's before grabbing a new
506          * vnode, since it's hard to roll back if there is a problem.
507          */
508         unode = malloc(sizeof(*unode), M_UDFNODE, M_WAITOK | M_ZERO);
509
510         /*
511          * Copy in the file entry.  Per the spec, the size can only be 1 block.
512          */
513         sector = ino + udfmp->part_start;
514         devvp = udfmp->im_devvp;
515         if ((error = RDSECTOR(devvp, sector, udfmp->bsize, &bp)) != 0) {
516                 printf("Cannot read sector %d\n", sector);
517                 free(unode, M_UDFNODE);
518                 return(error);
519         }
520
521         fe = (struct file_entry *)bp->b_data;
522         if (udf_checktag(&fe->tag, TAGID_FENTRY)) {
523                 printf("Invalid file entry!\n");
524                 free(unode, M_UDFNODE);
525                 brelse(bp);
526                 return(ENOMEM);
527         }
528         size = UDF_FENTRY_SIZE + fe->l_ea + fe->l_ad;
529         unode->fentry = malloc(size, M_UDFFENTRY, M_WAITOK | M_ZERO);
530
531         bcopy(bp->b_data, unode->fentry, size);
532         
533         brelse(bp);
534         bp = NULL;
535
536         if ((error = udf_allocv(mp, &vp))) {
537                 printf("Error from udf_allocv\n");
538                 free(unode, M_UDFNODE);
539                 return(error);
540         }
541
542         unode->i_vnode = vp;
543         unode->hash_id = ino;
544         unode->i_devvp = udfmp->im_devvp;
545         unode->i_dev = udfmp->im_dev;
546         unode->udfmp = udfmp;
547         vp->v_data = unode;
548         vref(udfmp->im_devvp);
549         udf_hashins(unode);
550
551         switch (unode->fentry->icbtag.file_type) {
552         default:
553                 vp->v_type = VBAD;
554                 break;
555         case 4:
556                 vp->v_type = VDIR;
557                 break;
558         case 5:
559                 vp->v_type = VREG;
560                 break;
561         case 6:
562                 vp->v_type = VBLK;
563                 break;
564         case 7:
565                 vp->v_type = VCHR;
566                 break;
567         case 9:
568                 vp->v_type = VFIFO;
569                 break;
570         case 10:
571                 vp->v_type = VSOCK;
572                 break;
573         case 12:
574                 vp->v_type = VLNK;
575                 break;
576         }
577         /*
578          * Locked and refd vnode returned
579          */
580         *vpp = vp;
581
582         return(0);
583 }
584
585 struct ifid {
586         u_short ifid_len;
587         u_short ifid_pad;
588         int     ifid_ino;
589         long    ifid_start;
590 };
591
592 static int
593 udf_fhtovp(struct mount *mp, struct fid *fhp, struct vnode **vpp)
594 {
595         struct ifid *ifhp;
596         struct vnode *nvp;
597         int error;
598
599         ifhp = (struct ifid *)fhp;
600
601         if ((error = VFS_VGET(mp, ifhp->ifid_ino, &nvp)) != 0) {
602                 *vpp = NULLVP;
603                 return(error);
604         }
605
606         *vpp = nvp;
607         return(0);
608 }
609
610 static int
611 udf_vptofh (struct vnode *vp, struct fid *fhp)
612 {
613         struct udf_node *node;
614         struct ifid *ifhp;
615
616         node = VTON(vp);
617         ifhp = (struct ifid *)fhp;
618         ifhp->ifid_len = sizeof(struct ifid);
619         ifhp->ifid_ino = node->hash_id;
620
621         return(0);
622 }
623
624 static int
625 udf_find_partmaps(struct udf_mnt *udfmp, struct logvol_desc *lvd)
626 {
627         union udf_pmap *pmap;
628         struct part_map_spare *pms;
629         struct regid *pmap_id;
630         struct buf *bp;
631         unsigned char regid_id[UDF_REGID_ID_SIZE + 1];
632         int ptype, psize, error;
633         unsigned int i;
634
635         for (i = 0; i < lvd->n_pm; i++) {
636                 pmap = (union udf_pmap *)&lvd->maps[i * UDF_PMAP_SIZE];
637                 ptype = pmap->data[0];
638                 psize = pmap->data[1];
639                 if (((ptype != 1) && (ptype != 2)) ||
640                     ((psize != UDF_PMAP_SIZE) && (psize != 6))) {
641                         printf("Invalid partition map found\n");
642                         return(1);
643                 }
644
645                 if (ptype == 1) {
646                         /* Type 1 map.  We don't care */
647                         continue;
648                 }
649
650                 /* Type 2 map.  Gotta find out the details */
651                 pmap_id = (struct regid *)&pmap->data[4];
652                 bzero(&regid_id[0], UDF_REGID_ID_SIZE);
653                 bcopy(&pmap_id->id[0], &regid_id[0], UDF_REGID_ID_SIZE);
654
655                 if (bcmp(&regid_id[0], "*UDF Sparable Partition",
656                     UDF_REGID_ID_SIZE)) {
657                         printf("Unsupported partition map: %s\n", &regid_id[0]);
658                         return(1);
659                 }
660
661                 pms = &pmap->pms;
662                 udfmp->s_table = malloc(pms->st_size, M_UDFMOUNT,
663                                         M_WAITOK | M_ZERO);
664                 if (udfmp->s_table == NULL)
665                         return(ENOMEM);
666
667                 /* Calculate the number of sectors per packet. */
668                 /* XXX Logical or physical? */
669                 udfmp->p_sectors = pms->packet_len / udfmp->bsize;
670
671                 /*
672                  * XXX If reading the first Sparing Table fails, should look
673                  * for another table.
674                  */
675                 if ((error = udf_readlblks(udfmp, pms->st_loc[0], pms->st_size,
676                     &bp)) != 0) {
677                         if (bp)
678                                 brelse(bp);
679                         printf("Failed to read Sparing Table at sector %d\n",
680                             pms->st_loc[0]);
681                         return(error);
682                 }
683                 bcopy(bp->b_data, udfmp->s_table, pms->st_size);
684                 brelse(bp);
685
686                 if (udf_checktag(&udfmp->s_table->tag, 0)) {
687                         printf("Invalid sparing table found\n");
688                         return(EINVAL);
689                 }
690
691                 /* See how many valid entries there are here.  The list is
692                  * supposed to be sorted. 0xfffffff0 and higher are not valid
693                  */
694                 for (i = 0; i < udfmp->s_table->rt_l; i++) {
695                         udfmp->s_table_entries = i;
696                         if (udfmp->s_table->entries[i].org >= 0xfffffff0)
697                                 break;
698                 }
699         }
700
701         return(0);
702 }