]> CyberLeo.Net >> Repos - FreeBSD/releng/9.0.git/blob - sys/boot/common/ufsread.c
Copy stable/9 to releng/9.0 as part of the FreeBSD 9.0-RELEASE release
[FreeBSD/releng/9.0.git] / sys / boot / common / ufsread.c
1 /*-
2  * Copyright (c) 2002 McAfee, Inc.
3  * All rights reserved.
4  *
5  * This software was developed for the FreeBSD Project by Marshall
6  * Kirk McKusick and McAfee Research,, the Security Research Division of
7  * McAfee, Inc. under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as
8  * part of the DARPA CHATS research program
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  */
31 /*-
32  * Copyright (c) 1998 Robert Nordier
33  * All rights reserved.
34  *
35  * Redistribution and use in source and binary forms are freely
36  * permitted provided that the above copyright notice and this
37  * paragraph and the following disclaimer are duplicated in all
38  * such forms.
39  *
40  * This software is provided "AS IS" and without any express or
41  * implied warranties, including, without limitation, the implied
42  * warranties of merchantability and fitness for a particular
43  * purpose.
44  */
45
46 #include <sys/cdefs.h>
47 __FBSDID("$FreeBSD$");
48
49 #include <ufs/ufs/dinode.h>
50 #include <ufs/ufs/dir.h>
51 #include <ufs/ffs/fs.h>
52
53 #ifdef UFS_SMALL_CGBASE
54 /* XXX: Revert to old (broken for over 1.5Tb filesystems) version of cgbase
55    (see sys/ufs/ffs/fs.h rev 1.39) so that small boot loaders (e.g. boot2) can
56    support both UFS1 and UFS2. */
57 #undef cgbase
58 #define cgbase(fs, c)   ((ufs2_daddr_t)((fs)->fs_fpg * (c)))
59 #endif
60
61 /*
62  * We use 4k `virtual' blocks for filesystem data, whatever the actual
63  * filesystem block size. FFS blocks are always a multiple of 4k.
64  */
65 #define VBLKSHIFT       12
66 #define VBLKSIZE        (1 << VBLKSHIFT)
67 #define VBLKMASK        (VBLKSIZE - 1)
68 #define DBPERVBLK       (VBLKSIZE / DEV_BSIZE)
69 #define INDIRPERVBLK(fs) (NINDIR(fs) / ((fs)->fs_bsize >> VBLKSHIFT))
70 #define IPERVBLK(fs)    (INOPB(fs) / ((fs)->fs_bsize >> VBLKSHIFT))
71 #define INO_TO_VBA(fs, ipervblk, x) \
72     (fsbtodb(fs, cgimin(fs, ino_to_cg(fs, x))) + \
73     (((x) % (fs)->fs_ipg) / (ipervblk) * DBPERVBLK))
74 #define INO_TO_VBO(ipervblk, x) ((x) % ipervblk)
75 #define FS_TO_VBA(fs, fsb, off) (fsbtodb(fs, fsb) + \
76     ((off) / VBLKSIZE) * DBPERVBLK)
77 #define FS_TO_VBO(fs, fsb, off) ((off) & VBLKMASK)
78
79 /* Buffers that must not span a 64k boundary. */
80 struct dmadat {
81         char blkbuf[VBLKSIZE];  /* filesystem blocks */
82         char indbuf[VBLKSIZE];  /* indir blocks */
83         char sbbuf[SBLOCKSIZE]; /* superblock */
84         char secbuf[DEV_BSIZE]; /* for MBR/disklabel */
85 };
86 static struct dmadat *dmadat;
87
88 static ino_t lookup(const char *);
89 static ssize_t fsread(ino_t, void *, size_t);
90
91 static uint8_t ls, dsk_meta;
92 static uint32_t fs_off;
93
94 static __inline uint8_t
95 fsfind(const char *name, ino_t * ino)
96 {
97         char buf[DEV_BSIZE];
98         struct direct *d;
99         char *s;
100         ssize_t n;
101
102         fs_off = 0;
103         while ((n = fsread(*ino, buf, DEV_BSIZE)) > 0)
104                 for (s = buf; s < buf + DEV_BSIZE;) {
105                         d = (void *)s;
106                         if (ls)
107                                 printf("%s ", d->d_name);
108                         else if (!strcmp(name, d->d_name)) {
109                                 *ino = d->d_ino;
110                                 return d->d_type;
111                         }
112                         s += d->d_reclen;
113                 }
114         if (n != -1 && ls)
115                 printf("\n");
116         return 0;
117 }
118
119 static ino_t
120 lookup(const char *path)
121 {
122         char name[MAXNAMLEN + 1];
123         const char *s;
124         ino_t ino;
125         ssize_t n;
126         uint8_t dt;
127
128         ino = ROOTINO;
129         dt = DT_DIR;
130         for (;;) {
131                 if (*path == '/')
132                         path++;
133                 if (!*path)
134                         break;
135                 for (s = path; *s && *s != '/'; s++);
136                 if ((n = s - path) > MAXNAMLEN)
137                         return 0;
138                 ls = *path == '?' && n == 1 && !*s;
139                 memcpy(name, path, n);
140                 name[n] = 0;
141                 if (dt != DT_DIR) {
142                         printf("%s: not a directory.\n", name);
143                         return (0);
144                 }
145                 if ((dt = fsfind(name, &ino)) <= 0)
146                         break;
147                 path = s;
148         }
149         return dt == DT_REG ? ino : 0;
150 }
151
152 /*
153  * Possible superblock locations ordered from most to least likely.
154  */
155 static int sblock_try[] = SBLOCKSEARCH;
156
157 #if defined(UFS2_ONLY)
158 #define DIP(field) dp2.field
159 #elif defined(UFS1_ONLY)
160 #define DIP(field) dp1.field
161 #else
162 #define DIP(field) fs.fs_magic == FS_UFS1_MAGIC ? dp1.field : dp2.field
163 #endif
164
165 static ssize_t
166 fsread(ino_t inode, void *buf, size_t nbyte)
167 {
168 #ifndef UFS2_ONLY
169         static struct ufs1_dinode dp1;
170 #endif
171 #ifndef UFS1_ONLY
172         static struct ufs2_dinode dp2;
173 #endif
174         static ino_t inomap;
175         char *blkbuf;
176         void *indbuf;
177         struct fs fs;
178         char *s;
179         size_t n, nb, size, off, vboff;
180         ufs_lbn_t lbn;
181         ufs2_daddr_t addr, vbaddr;
182         static ufs2_daddr_t blkmap, indmap;
183         u_int u;
184
185         blkbuf = dmadat->blkbuf;
186         indbuf = dmadat->indbuf;
187         if (!dsk_meta) {
188                 inomap = 0;
189                 for (n = 0; sblock_try[n] != -1; n++) {
190                         if (dskread(dmadat->sbbuf, sblock_try[n] / DEV_BSIZE,
191                             SBLOCKSIZE / DEV_BSIZE))
192                                 return -1;
193                         memcpy(&fs, dmadat->sbbuf, sizeof(struct fs));
194                         if ((
195 #if defined(UFS1_ONLY)
196                             fs.fs_magic == FS_UFS1_MAGIC
197 #elif defined(UFS2_ONLY)
198                             (fs.fs_magic == FS_UFS2_MAGIC &&
199                             fs.fs_sblockloc == sblock_try[n])
200 #else
201                             fs.fs_magic == FS_UFS1_MAGIC ||
202                             (fs.fs_magic == FS_UFS2_MAGIC &&
203                             fs.fs_sblockloc == sblock_try[n])
204 #endif
205                             ) &&
206                             fs.fs_bsize <= MAXBSIZE &&
207                             fs.fs_bsize >= sizeof(struct fs))
208                                 break;
209                 }
210                 if (sblock_try[n] == -1) {
211                         printf("Not ufs\n");
212                         return -1;
213                 }
214                 dsk_meta++;
215         } else
216                 memcpy(&fs, dmadat->sbbuf, sizeof(struct fs));
217         if (!inode)
218                 return 0;
219         if (inomap != inode) {
220                 n = IPERVBLK(&fs);
221                 if (dskread(blkbuf, INO_TO_VBA(&fs, n, inode), DBPERVBLK))
222                         return -1;
223                 n = INO_TO_VBO(n, inode);
224 #if defined(UFS1_ONLY)
225                 memcpy(&dp1, (struct ufs1_dinode *)blkbuf + n,
226                     sizeof(struct ufs1_dinode));
227 #elif defined(UFS2_ONLY)
228                 memcpy(&dp2, (struct ufs2_dinode *)blkbuf + n,
229                     sizeof(struct ufs2_dinode));
230 #else
231                 if (fs.fs_magic == FS_UFS1_MAGIC)
232                         memcpy(&dp1, (struct ufs1_dinode *)blkbuf + n,
233                             sizeof(struct ufs1_dinode));
234                 else
235                         memcpy(&dp2, (struct ufs2_dinode *)blkbuf + n,
236                             sizeof(struct ufs2_dinode));
237 #endif
238                 inomap = inode;
239                 fs_off = 0;
240                 blkmap = indmap = 0;
241         }
242         s = buf;
243         size = DIP(di_size);
244         n = size - fs_off;
245         if (nbyte > n)
246                 nbyte = n;
247         nb = nbyte;
248         while (nb) {
249                 lbn = lblkno(&fs, fs_off);
250                 off = blkoff(&fs, fs_off);
251                 if (lbn < NDADDR) {
252                         addr = DIP(di_db[lbn]);
253                 } else if (lbn < NDADDR + NINDIR(&fs)) {
254                         n = INDIRPERVBLK(&fs);
255                         addr = DIP(di_ib[0]);
256                         u = (u_int)(lbn - NDADDR) / n * DBPERVBLK;
257                         vbaddr = fsbtodb(&fs, addr) + u;
258                         if (indmap != vbaddr) {
259                                 if (dskread(indbuf, vbaddr, DBPERVBLK))
260                                         return -1;
261                                 indmap = vbaddr;
262                         }
263                         n = (lbn - NDADDR) & (n - 1);
264 #if defined(UFS1_ONLY)
265                         memcpy(&addr, (ufs1_daddr_t *)indbuf + n,
266                             sizeof(ufs1_daddr_t));
267 #elif defined(UFS2_ONLY)
268                         memcpy(&addr, (ufs2_daddr_t *)indbuf + n,
269                             sizeof(ufs2_daddr_t));
270 #else
271                         if (fs.fs_magic == FS_UFS1_MAGIC)
272                                 memcpy(&addr, (ufs1_daddr_t *)indbuf + n,
273                                     sizeof(ufs1_daddr_t));
274                         else
275                                 memcpy(&addr, (ufs2_daddr_t *)indbuf + n,
276                                     sizeof(ufs2_daddr_t));
277 #endif
278                 } else {
279                         return -1;
280                 }
281                 vbaddr = fsbtodb(&fs, addr) + (off >> VBLKSHIFT) * DBPERVBLK;
282                 vboff = off & VBLKMASK;
283                 n = sblksize(&fs, size, lbn) - (off & ~VBLKMASK);
284                 if (n > VBLKSIZE)
285                         n = VBLKSIZE;
286                 if (blkmap != vbaddr) {
287                         if (dskread(blkbuf, vbaddr, n >> DEV_BSHIFT))
288                                 return -1;
289                         blkmap = vbaddr;
290                 }
291                 n -= vboff;
292                 if (n > nb)
293                         n = nb;
294                 memcpy(s, blkbuf + vboff, n);
295                 s += n;
296                 fs_off += n;
297                 nb -= n;
298         }
299         return nbyte;
300 }