]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libufs/type.c
Merge branch 'releng/11.3' into releng-CDN/11.3
[FreeBSD/FreeBSD.git] / lib / libufs / type.c
1 /*
2  * Copyright (c) 2002 Juli Mallett.  All rights reserved.
3  *
4  * This software was written by Juli Mallett <jmallett@FreeBSD.org> for the
5  * FreeBSD project.  Redistribution and use in source and binary forms, with
6  * or without modification, are permitted provided that the following
7  * conditions are met:
8  *
9  * 1. Redistribution of source code must retain the above copyright notice,
10  *    this list of conditions and the following disclaimer.
11  * 2. Redistribution in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18  * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
19  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
21  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
23  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
24  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25  * POSSIBILITY OF SUCH DAMAGE.
26  */
27
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
30
31 #include <sys/param.h>
32 #include <sys/mount.h>
33 #include <sys/disklabel.h>
34 #include <sys/stat.h>
35
36 #include <ufs/ufs/ufsmount.h>
37 #include <ufs/ufs/dinode.h>
38 #include <ufs/ffs/fs.h>
39
40 #include <errno.h>
41 #include <fcntl.h>
42 #include <fstab.h>
43 #include <paths.h>
44 #include <stdio.h>
45 #include <stdlib.h>
46 #include <string.h>
47 #include <unistd.h>
48
49 #include <libufs.h>
50
51 /* Internally, track the 'name' value, it's ours. */
52 #define MINE_NAME       0x01
53 /* Track if its fd points to a writable device. */
54 #define MINE_WRITE      0x02
55
56 int
57 ufs_disk_close(struct uufsd *disk)
58 {
59         ERROR(disk, NULL);
60         close(disk->d_fd);
61         disk->d_fd = -1;
62         if (disk->d_inoblock != NULL) {
63                 free(disk->d_inoblock);
64                 disk->d_inoblock = NULL;
65         }
66         if (disk->d_mine & MINE_NAME) {
67                 free((char *)(uintptr_t)disk->d_name);
68                 disk->d_name = NULL;
69         }
70         if (disk->d_sbcsum != NULL) {
71                 free(disk->d_sbcsum);
72                 disk->d_sbcsum = NULL;
73         }
74         return (0);
75 }
76
77 int
78 ufs_disk_fillout(struct uufsd *disk, const char *name)
79 {
80         if (ufs_disk_fillout_blank(disk, name) == -1) {
81                 return (-1);
82         }
83         if (sbread(disk) == -1) {
84                 ERROR(disk, "could not read superblock to fill out disk");
85                 return (-1);
86         }
87         return (0);
88 }
89
90 int
91 ufs_disk_fillout_blank(struct uufsd *disk, const char *name)
92 {
93         struct stat st;
94         struct fstab *fs;
95         struct statfs sfs;
96         const char *oname;
97         char dev[MAXPATHLEN];
98         int fd, ret;
99
100         ERROR(disk, NULL);
101
102         oname = name;
103 again:  if ((ret = stat(name, &st)) < 0) {
104                 if (*name != '/') {
105                         snprintf(dev, sizeof(dev), "%s%s", _PATH_DEV, name);
106                         name = dev;
107                         goto again;
108                 }
109                 /*
110                  * The given object doesn't exist, but don't panic just yet -
111                  * it may be still mount point listed in /etc/fstab, but without
112                  * existing corresponding directory.
113                  */
114                 name = oname;
115         }
116         if (ret >= 0 && S_ISREG(st.st_mode)) {
117                 /* Possibly a disk image, give it a try.  */
118                 ;
119         } else if (ret >= 0 && S_ISCHR(st.st_mode)) {
120                 /* This is what we need, do nothing. */
121                 ;
122         } else if ((fs = getfsfile(name)) != NULL) {
123                 /*
124                  * The given mount point is listed in /etc/fstab.
125                  * It is possible that someone unmounted file system by hand
126                  * and different file system is mounted on this mount point,
127                  * but we still prefer /etc/fstab entry, because on the other
128                  * hand, there could be /etc/fstab entry for this mount
129                  * point, but file system is not mounted yet (eg. noauto) and
130                  * statfs(2) will point us at different file system.
131                  */
132                 name = fs->fs_spec;
133         } else if (ret >= 0 && S_ISDIR(st.st_mode)) {
134                 /*
135                  * The mount point is not listed in /etc/fstab, so it may be
136                  * file system mounted by hand.
137                  */
138                 if (statfs(name, &sfs) < 0) {
139                         ERROR(disk, "could not find special device");
140                         return (-1);
141                 }
142                 strlcpy(dev, sfs.f_mntfromname, sizeof(dev));
143                 name = dev;
144         } else {
145                 ERROR(disk, "could not find special device");
146                 return (-1);
147         }
148         fd = open(name, O_RDONLY);
149         if (fd == -1) {
150                 ERROR(disk, "could not open special device");
151                 return (-1);
152         }
153
154         disk->d_bsize = 1;
155         disk->d_ccg = 0;
156         disk->d_fd = fd;
157         disk->d_inoblock = NULL;
158         disk->d_inomin = 0;
159         disk->d_inomax = 0;
160         disk->d_lcg = 0;
161         disk->d_mine = 0;
162         disk->d_ufs = 0;
163         disk->d_error = NULL;
164         disk->d_sbcsum = NULL;
165
166         if (oname != name) {
167                 name = strdup(name);
168                 if (name == NULL) {
169                         ERROR(disk, "could not allocate memory for disk name");
170                         return (-1);
171                 }
172                 disk->d_mine |= MINE_NAME;
173         }
174         disk->d_name = name;
175
176         return (0);
177 }
178
179 int
180 ufs_disk_write(struct uufsd *disk)
181 {
182         int fd;
183
184         ERROR(disk, NULL);
185
186         if (disk->d_mine & MINE_WRITE)
187                 return (0);
188
189         fd = open(disk->d_name, O_RDWR);
190         if (fd < 0) {
191                 ERROR(disk, "failed to open disk for writing");
192                 return (-1);
193         }
194
195         close(disk->d_fd);
196         disk->d_fd = fd;
197         disk->d_mine |= MINE_WRITE;
198
199         return (0);
200 }