blob: 713e5e850bb6c6a5329407f987d8fafe578e6a1f [file] [log] [blame]
Eric Andersencc8ed391999-10-05 16:24:54 +00001/*
Eric Andersen596e5461999-10-07 08:30:23 +00002 * Mini mount implementation for busybox
3 *
Eric Andersenc4996011999-10-20 22:08:37 +00004 * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
Eric Andersen596e5461999-10-07 08:30:23 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 * 3/21/1999 Charles P. Wright <cpwright@cpwright.com>
21 * searches through fstab when -a is passed
22 * will try mounting stuff with all fses when passed -t auto
23 *
24 * 1999-04-17 Dave Cinege...Rewrote -t auto. Fixed ro mtab.
Eric Andersenc4996011999-10-20 22:08:37 +000025 *
26 * 1999-10-07 Erik Andersen <andersen@lineo.com>, <andersee@debian.org>.
Erik Andersen31638212000-01-15 22:28:50 +000027 * Rewrite of a lot of code. Removed mtab usage (I plan on
Eric Andersenc4996011999-10-20 22:08:37 +000028 * putting it back as a compile-time option some time),
29 * major adjustments to option parsing, and some serious
30 * dieting all around.
Erik Andersenb7cc49d2000-01-13 06:38:14 +000031 *
Erik Andersen31638212000-01-15 22:28:50 +000032 * 1999-11-06 mtab suppport is back - andersee
33 *
Erik Andersenb7cc49d2000-01-13 06:38:14 +000034 * 2000-01-12 Ben Collins <bcollins@debian.org>, Borrowed utils-linux's
35 * mount to add loop support.
36 */
Eric Andersencc8ed391999-10-05 16:24:54 +000037
38#include "internal.h"
39#include <stdlib.h>
40#include <unistd.h>
41#include <errno.h>
42#include <string.h>
43#include <stdio.h>
44#include <mntent.h>
45#include <sys/mount.h>
46#include <ctype.h>
Eric Andersen596e5461999-10-07 08:30:23 +000047#include <fstab.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000048
Erik Andersenb7cc49d2000-01-13 06:38:14 +000049#if defined BB_FEATURE_MOUNT_LOOP
50#include <fcntl.h>
51#include <sys/ioctl.h>
52#include <linux/loop.h>
53
54static int set_loop(const char *device, const char *file, int offset, int *loopro);
55static char *find_unused_loop_device (void);
56
57static int use_loop = 0;
58#endif
59
Eric Andersend0246fb1999-11-04 21:18:07 +000060extern const char mtab_file[]; /* Defined in utility.c */
61
Eric Andersend73dc5b1999-11-10 23:13:02 +000062static const char mount_usage[] = "\tmount [flags]\n"
Eric Andersen596e5461999-10-07 08:30:23 +000063 "\tmount [flags] device directory [-o options,more-options]\n"
64 "\n"
65 "Flags:\n"
66 "\t-a:\tMount all file systems in fstab.\n"
Eric Andersend0246fb1999-11-04 21:18:07 +000067#ifdef BB_MTAB
68 "\t-f:\t\"Fake\" mount. Add entry to mount table but don't mount it.\n"
69 "\t-n:\tDon't write a mount table entry.\n"
70#endif
Eric Andersen596e5461999-10-07 08:30:23 +000071 "\t-o option:\tOne of many filesystem options, listed below.\n"
72 "\t-r:\tMount the filesystem read-only.\n"
73 "\t-t filesystem-type:\tSpecify the filesystem type.\n"
74 "\t-w:\tMount for reading and writing (default).\n"
75 "\n"
76 "Options for use with the \"-o\" flag:\n"
77 "\tasync / sync:\tWrites are asynchronous / synchronous.\n"
78 "\tdev / nodev:\tAllow use of special device files / disallow them.\n"
79 "\texec / noexec:\tAllow use of executable files / disallow them.\n"
Erik Andersenb7cc49d2000-01-13 06:38:14 +000080#if defined BB_FEATURE_MOUNT_LOOP
81 "\tloop: Mounts a file via loop device.\n"
82#endif
Eric Andersen596e5461999-10-07 08:30:23 +000083 "\tsuid / nosuid:\tAllow set-user-id-root programs / disallow them.\n"
84 "\tremount: Re-mount a currently-mounted filesystem, changing its flags.\n"
85 "\tro / rw: Mount for read-only / read-write.\n"
86 "\t"
87 "There are EVEN MORE flags that are specific to each filesystem.\n"
88 "You'll have to see the written documentation for those.\n";
Eric Andersencc8ed391999-10-05 16:24:54 +000089
Eric Andersend0246fb1999-11-04 21:18:07 +000090
Eric Andersencc8ed391999-10-05 16:24:54 +000091struct mount_options {
Eric Andersen596e5461999-10-07 08:30:23 +000092 const char *name;
93 unsigned long and;
94 unsigned long or;
Eric Andersencc8ed391999-10-05 16:24:54 +000095};
96
Eric Andersen596e5461999-10-07 08:30:23 +000097static const struct mount_options mount_options[] = {
98 {"async", ~MS_SYNCHRONOUS, 0},
99 {"defaults", ~0, 0},
100 {"dev", ~MS_NODEV, 0},
101 {"exec", ~MS_NOEXEC, 0},
102 {"nodev", ~0, MS_NODEV},
103 {"noexec", ~0, MS_NOEXEC},
104 {"nosuid", ~0, MS_NOSUID},
105 {"remount", ~0, MS_REMOUNT},
106 {"ro", ~0, MS_RDONLY},
107 {"rw", ~MS_RDONLY, 0},
108 {"suid", ~MS_NOSUID, 0},
109 {"sync", ~0, MS_SYNCHRONOUS},
110 {0, 0, 0}
Eric Andersencc8ed391999-10-05 16:24:54 +0000111};
112
Eric Andersend0246fb1999-11-04 21:18:07 +0000113static int
114do_mount(char* specialfile, char* dir, char* filesystemtype,
Eric Andersena9c95ea1999-11-15 17:33:30 +0000115 long flags, void* string_flags, int useMtab, int fakeIt, char* mtab_opts)
Eric Andersend0246fb1999-11-04 21:18:07 +0000116{
117 int status=0;
118
Erik Andersenb7cc49d2000-01-13 06:38:14 +0000119#if defined BB_MTAB
Eric Andersend0246fb1999-11-04 21:18:07 +0000120 if (fakeIt==FALSE)
Erik Andersenb7cc49d2000-01-13 06:38:14 +0000121#endif
122 {
123#if defined BB_FEATURE_MOUNT_LOOP
124 if (use_loop) {
125 int loro = flags & MS_RDONLY;
126 char *lofile = specialfile;
127 specialfile = find_unused_loop_device();
128 if (specialfile == NULL) {
129 fprintf(stderr, "Could not find a spare loop device\n");
130 exit(1);
131 }
132 if (set_loop (specialfile, lofile, 0, &loro)) {
133 fprintf(stderr, "Could not setup loop device\n");
134 exit(1);
135 }
136 if (!(flags & MS_RDONLY) && loro) { /* loop is ro, but wanted rw */
137 fprintf(stderr, "WARNING: loop device is read-only\n");
138 flags &= ~MS_RDONLY;
139 }
140 }
141#endif
Eric Andersend0246fb1999-11-04 21:18:07 +0000142 status=mount(specialfile, dir, filesystemtype, flags, string_flags);
Erik Andersenb7cc49d2000-01-13 06:38:14 +0000143 }
144#if defined BB_MTAB
145 if (status == 0) {
146 if (useMtab==TRUE)
Eric Andersena9c95ea1999-11-15 17:33:30 +0000147 write_mtab(specialfile, dir, filesystemtype, flags, mtab_opts);
Eric Andersend0246fb1999-11-04 21:18:07 +0000148 return 0;
149 }
Erik Andersenb7cc49d2000-01-13 06:38:14 +0000150 else
Eric Andersend0246fb1999-11-04 21:18:07 +0000151#endif
Erik Andersenb7cc49d2000-01-13 06:38:14 +0000152 return(status);
153}
154
Eric Andersend0246fb1999-11-04 21:18:07 +0000155
Eric Andersencc8ed391999-10-05 16:24:54 +0000156
Erik Andersen0881de72000-01-05 09:34:26 +0000157#if defined BB_MTAB
158#define whine_if_fstab_is_missing() {}
159#else
160extern void whine_if_fstab_is_missing()
161{
162 struct stat statBuf;
163 if (stat("/etc/fstab", &statBuf) < 0)
164 fprintf(stderr, "/etc/fstab file missing -- install one to name /dev/root.\n\n");
165}
166#endif
167
168
Eric Andersen8341a151999-10-08 17:14:14 +0000169/* Seperate standard mount options from the nonstandard string options */
Eric Andersencc8ed391999-10-05 16:24:54 +0000170static void
Eric Andersen8341a151999-10-08 17:14:14 +0000171parse_mount_options ( char *options, unsigned long *flags, char *strflags)
Eric Andersencc8ed391999-10-05 16:24:54 +0000172{
Eric Andersen8341a151999-10-08 17:14:14 +0000173 while (options) {
174 int gotone=FALSE;
Eric Andersen596e5461999-10-07 08:30:23 +0000175 char *comma = strchr (options, ',');
176 const struct mount_options* f = mount_options;
177 if (comma)
178 *comma = '\0';
Eric Andersencc8ed391999-10-05 16:24:54 +0000179
Eric Andersen596e5461999-10-07 08:30:23 +0000180 while (f->name != 0) {
Eric Andersen596e5461999-10-07 08:30:23 +0000181 if (strcasecmp (f->name, options) == 0) {
Eric Andersen3ae0c781999-11-04 01:13:21 +0000182
Eric Andersen596e5461999-10-07 08:30:23 +0000183 *flags &= f->and;
184 *flags |= f->or;
Eric Andersen8341a151999-10-08 17:14:14 +0000185 gotone=TRUE;
186 break;
Eric Andersen596e5461999-10-07 08:30:23 +0000187 }
188 f++;
Eric Andersencc8ed391999-10-05 16:24:54 +0000189 }
Erik Andersenb7cc49d2000-01-13 06:38:14 +0000190#if defined BB_FEATURE_MOUNT_LOOP
191 if (gotone==FALSE && !strcasecmp ("loop", options)) { /* loop device support */
192 use_loop = 1;
193 gotone=TRUE;
194 }
195#endif
Eric Andersen8341a151999-10-08 17:14:14 +0000196 if (*strflags && strflags!= '\0' && gotone==FALSE) {
197 char *temp=strflags;
198 temp += strlen (strflags);
199 *temp++ = ',';
200 *temp++ = '\0';
Eric Andersencc8ed391999-10-05 16:24:54 +0000201 }
Erik Andersenb7cc49d2000-01-13 06:38:14 +0000202 if (gotone==FALSE)
Eric Andersen8341a151999-10-08 17:14:14 +0000203 strcat (strflags, options);
Eric Andersen596e5461999-10-07 08:30:23 +0000204 if (comma) {
205 *comma = ',';
206 options = ++comma;
Eric Andersen8341a151999-10-08 17:14:14 +0000207 } else {
Eric Andersen596e5461999-10-07 08:30:23 +0000208 break;
Eric Andersen8341a151999-10-08 17:14:14 +0000209 }
Eric Andersen596e5461999-10-07 08:30:23 +0000210 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000211}
212
213int
Eric Andersend0246fb1999-11-04 21:18:07 +0000214mount_one(char *blockDevice, char *directory, char *filesystemType,
Eric Andersena9c95ea1999-11-15 17:33:30 +0000215 unsigned long flags, char *string_flags, int useMtab, int fakeIt, char *mtab_opts)
Eric Andersencc8ed391999-10-05 16:24:54 +0000216{
Eric Andersen596e5461999-10-07 08:30:23 +0000217 int status = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000218
Eric Andersen596e5461999-10-07 08:30:23 +0000219 char buf[255];
Eric Andersencc8ed391999-10-05 16:24:54 +0000220
Eric Andersen0ecb54a1999-12-05 23:24:55 +0000221#if defined BB_FEATURE_USE_PROCFS
Eric Andersen596e5461999-10-07 08:30:23 +0000222 if (strcmp(filesystemType, "auto") == 0) {
223 FILE *f = fopen ("/proc/filesystems", "r");
Eric Andersencc8ed391999-10-05 16:24:54 +0000224
Eric Andersen596e5461999-10-07 08:30:23 +0000225 if (f == NULL)
226 return( FALSE);
Eric Andersencc8ed391999-10-05 16:24:54 +0000227
Eric Andersen596e5461999-10-07 08:30:23 +0000228 while (fgets (buf, sizeof (buf), f) != NULL) {
229 filesystemType = buf;
230 if (*filesystemType == '\t') { // Not a nodev filesystem
Eric Andersencc8ed391999-10-05 16:24:54 +0000231
Eric Andersen596e5461999-10-07 08:30:23 +0000232 // Add NULL termination to each line
233 while (*filesystemType && *filesystemType != '\n')
234 filesystemType++;
235 *filesystemType = '\0';
Eric Andersencc8ed391999-10-05 16:24:54 +0000236
Eric Andersen596e5461999-10-07 08:30:23 +0000237 filesystemType = buf;
238 filesystemType++; // hop past tab
239
Eric Andersend0246fb1999-11-04 21:18:07 +0000240 status = do_mount (blockDevice, directory, filesystemType,
Eric Andersena9c95ea1999-11-15 17:33:30 +0000241 flags | MS_MGC_VAL, string_flags, useMtab,
242 fakeIt, mtab_opts);
Eric Andersen596e5461999-10-07 08:30:23 +0000243 if (status == 0)
244 break;
245 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000246 }
Eric Andersen596e5461999-10-07 08:30:23 +0000247 fclose (f);
Eric Andersen0ecb54a1999-12-05 23:24:55 +0000248 } else
249#endif
250 {
Eric Andersend0246fb1999-11-04 21:18:07 +0000251 status = do_mount (blockDevice, directory, filesystemType,
Eric Andersena9c95ea1999-11-15 17:33:30 +0000252 flags | MS_MGC_VAL, string_flags, useMtab,
253 fakeIt, mtab_opts);
Eric Andersen596e5461999-10-07 08:30:23 +0000254 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000255
Eric Andersen596e5461999-10-07 08:30:23 +0000256 if (status) {
257 fprintf (stderr, "Mounting %s on %s failed: %s\n",
258 blockDevice, directory, strerror(errno));
259 return (FALSE);
260 }
261 return (TRUE);
Eric Andersencc8ed391999-10-05 16:24:54 +0000262}
263
Eric Andersen596e5461999-10-07 08:30:23 +0000264extern int mount_main (int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000265{
Eric Andersena9c95ea1999-11-15 17:33:30 +0000266 char string_flags_buf[1024]="";
267 char *string_flags = string_flags_buf;
268 char *extra_opts = string_flags_buf;
Eric Andersen596e5461999-10-07 08:30:23 +0000269 unsigned long flags = 0;
270 char *filesystemType = "auto";
Eric Andersen8341a151999-10-08 17:14:14 +0000271 char *device = NULL;
272 char *directory = NULL;
Eric Andersend0246fb1999-11-04 21:18:07 +0000273 int all = FALSE;
274 int fakeIt = FALSE;
275 int useMtab = TRUE;
Eric Andersen8341a151999-10-08 17:14:14 +0000276 int i;
Eric Andersencc8ed391999-10-05 16:24:54 +0000277
Eric Andersen29d2e361999-11-06 06:07:27 +0000278 /* Only compiled in if BB_MTAB is not defined */
279 whine_if_fstab_is_missing();
Eric Andersencb6e2561999-10-16 15:48:40 +0000280
Eric Andersen596e5461999-10-07 08:30:23 +0000281 if (argc == 1) {
Eric Andersend0246fb1999-11-04 21:18:07 +0000282 FILE *mountTable = setmntent (mtab_file, "r");
283 if (mountTable) {
Eric Andersen596e5461999-10-07 08:30:23 +0000284 struct mntent *m;
285 while ((m = getmntent (mountTable)) != 0) {
Eric Andersencb6e2561999-10-16 15:48:40 +0000286 struct fstab* fstabItem;
Eric Andersen596e5461999-10-07 08:30:23 +0000287 char *blockDevice = m->mnt_fsname;
Eric Andersencb6e2561999-10-16 15:48:40 +0000288 /* Note that if /etc/fstab is missing, libc can't fix up /dev/root for us */
289 if (strcmp (blockDevice, "/dev/root") == 0) {
290 fstabItem = getfsfile ("/");
291 if (fstabItem != NULL)
292 blockDevice = fstabItem->fs_spec;
293 }
Eric Andersen596e5461999-10-07 08:30:23 +0000294 printf ("%s on %s type %s (%s)\n", blockDevice, m->mnt_dir,
295 m->mnt_type, m->mnt_opts);
296 }
297 endmntent (mountTable);
Eric Andersend0246fb1999-11-04 21:18:07 +0000298 } else {
299 perror(mtab_file);
Eric Andersencc8ed391999-10-05 16:24:54 +0000300 }
Eric Andersen3c163821999-10-14 22:16:57 +0000301 exit( TRUE);
Eric Andersen596e5461999-10-07 08:30:23 +0000302 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000303
Eric Andersen596e5461999-10-07 08:30:23 +0000304
305 /* Parse options */
Eric Andersen8341a151999-10-08 17:14:14 +0000306 i = --argc;
307 argv++;
308 while (i > 0 && **argv) {
Eric Andersen596e5461999-10-07 08:30:23 +0000309 if (**argv == '-') {
Eric Andersena9c95ea1999-11-15 17:33:30 +0000310 char *opt = *argv;
311 while (i>0 && *++opt) switch (*opt) {
Eric Andersen596e5461999-10-07 08:30:23 +0000312 case 'o':
Eric Andersen8341a151999-10-08 17:14:14 +0000313 if (--i == 0) {
Eric Andersend73dc5b1999-11-10 23:13:02 +0000314 goto goodbye;
Eric Andersencc8ed391999-10-05 16:24:54 +0000315 }
Eric Andersen8341a151999-10-08 17:14:14 +0000316 parse_mount_options (*(++argv), &flags, string_flags);
Eric Andersen596e5461999-10-07 08:30:23 +0000317 break;
318 case 'r':
319 flags |= MS_RDONLY;
320 break;
321 case 't':
Eric Andersen8341a151999-10-08 17:14:14 +0000322 if (--i == 0) {
Eric Andersend73dc5b1999-11-10 23:13:02 +0000323 goto goodbye;
Eric Andersen596e5461999-10-07 08:30:23 +0000324 }
Eric Andersen8341a151999-10-08 17:14:14 +0000325 filesystemType = *(++argv);
Eric Andersen596e5461999-10-07 08:30:23 +0000326 break;
327 case 'w':
328 flags &= ~MS_RDONLY;
329 break;
330 case 'a':
Eric Andersen3ae0c781999-11-04 01:13:21 +0000331 all = TRUE;
Eric Andersen596e5461999-10-07 08:30:23 +0000332 break;
Eric Andersend0246fb1999-11-04 21:18:07 +0000333#ifdef BB_MTAB
334 case 'f':
335 fakeIt = TRUE;
336 break;
337 case 'n':
338 useMtab = FALSE;
339 break;
340#endif
Eric Andersen596e5461999-10-07 08:30:23 +0000341 case 'v':
342 case 'h':
343 case '-':
Eric Andersend73dc5b1999-11-10 23:13:02 +0000344 goto goodbye;
Eric Andersen8341a151999-10-08 17:14:14 +0000345 }
346 } else {
347 if (device == NULL)
348 device=*argv;
349 else if (directory == NULL)
350 directory=*argv;
351 else {
Eric Andersend73dc5b1999-11-10 23:13:02 +0000352 goto goodbye;
Eric Andersen596e5461999-10-07 08:30:23 +0000353 }
354 }
355 i--;
356 argv++;
357 }
358
Eric Andersen3ae0c781999-11-04 01:13:21 +0000359 if (all == TRUE) {
Eric Andersen596e5461999-10-07 08:30:23 +0000360 struct mntent *m;
361 FILE *f = setmntent ("/etc/fstab", "r");
362
363 if (f == NULL) {
364 perror("/etc/fstab");
Eric Andersen3c163821999-10-14 22:16:57 +0000365 exit( FALSE);
Eric Andersen596e5461999-10-07 08:30:23 +0000366 }
Eric Andersen596e5461999-10-07 08:30:23 +0000367 while ((m = getmntent (f)) != NULL) {
Eric Andersen3ae0c781999-11-04 01:13:21 +0000368 // If the file system isn't noauto, and isn't mounted on /,
369 // and isn't swap or nfs, then mount it
370 if ((!strstr (m->mnt_opts, "noauto")) &&
371 (m->mnt_dir[1] != '\0') &&
372 (!strstr (m->mnt_type, "swap")) &&
373 (!strstr (m->mnt_type, "nfs")))
374 {
Eric Andersend0246fb1999-11-04 21:18:07 +0000375 flags = 0;
Eric Andersen3ae0c781999-11-04 01:13:21 +0000376 *string_flags = '\0';
Eric Andersend0246fb1999-11-04 21:18:07 +0000377 parse_mount_options(m->mnt_opts, &flags, string_flags);
378 mount_one (m->mnt_fsname, m->mnt_dir, m->mnt_type,
Eric Andersena9c95ea1999-11-15 17:33:30 +0000379 flags, string_flags, useMtab, fakeIt, extra_opts);
Eric Andersen596e5461999-10-07 08:30:23 +0000380 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000381 }
Eric Andersen596e5461999-10-07 08:30:23 +0000382 endmntent (f);
383 } else {
Eric Andersen8341a151999-10-08 17:14:14 +0000384 if (device && directory) {
Eric Andersena9c95ea1999-11-15 17:33:30 +0000385#ifdef BB_NFSMOUNT
386 if (strcmp(filesystemType, "nfs") == 0) {
387 if (nfsmount(device, directory, &flags, &extra_opts, &string_flags, 1) != 0)
388 exit(FALSE);
389 }
390#endif
Eric Andersen3c163821999-10-14 22:16:57 +0000391 exit (mount_one (device, directory, filesystemType,
Eric Andersena9c95ea1999-11-15 17:33:30 +0000392 flags, string_flags, useMtab, fakeIt, extra_opts));
Eric Andersencc8ed391999-10-05 16:24:54 +0000393 } else {
Eric Andersend73dc5b1999-11-10 23:13:02 +0000394 goto goodbye;
Eric Andersencc8ed391999-10-05 16:24:54 +0000395 }
Eric Andersen596e5461999-10-07 08:30:23 +0000396 }
Eric Andersen3c163821999-10-14 22:16:57 +0000397 exit( TRUE);
Eric Andersend73dc5b1999-11-10 23:13:02 +0000398
399goodbye:
400 usage( mount_usage);
Eric Andersencc8ed391999-10-05 16:24:54 +0000401}
Erik Andersenb7cc49d2000-01-13 06:38:14 +0000402
403#if defined BB_FEATURE_MOUNT_LOOP
404static int set_loop(const char *device, const char *file, int offset, int *loopro)
405{
406 struct loop_info loopinfo;
407 int fd, ffd, mode;
408
409 mode = *loopro ? O_RDONLY : O_RDWR;
410 if ((ffd = open (file, mode)) < 0 && !*loopro
411 && (errno != EROFS || (ffd = open (file, mode = O_RDONLY)) < 0)) {
412 perror (file);
413 return 1;
414 }
415 if ((fd = open (device, mode)) < 0) {
416 close(ffd);
417 perror (device);
418 return 1;
419 }
420 *loopro = (mode == O_RDONLY);
421
422 memset(&loopinfo, 0, sizeof(loopinfo));
423 strncpy(loopinfo.lo_name, file, LO_NAME_SIZE);
424 loopinfo.lo_name[LO_NAME_SIZE-1] = 0;
425
426 loopinfo.lo_offset = offset;
427
428 loopinfo.lo_encrypt_key_size = 0;
429 if (ioctl(fd, LOOP_SET_FD, ffd) < 0) {
430 perror("ioctl: LOOP_SET_FD");
431 exit(1);
432 }
433 if (ioctl(fd, LOOP_SET_STATUS, &loopinfo) < 0) {
434 (void) ioctl(fd, LOOP_CLR_FD, 0);
435 perror("ioctl: LOOP_SET_STATUS");
436 exit(1);
437 }
438 close(fd);
439 close(ffd);
440 return 0;
441}
442
443static char *find_unused_loop_device (void)
444{
445 char dev[20];
446 int i, fd, somedev = 0, someloop = 0;
447 struct stat statbuf;
448 struct loop_info loopinfo;
449
450 for(i = 0; i < 256; i++) {
451 sprintf(dev, "/dev/loop%d", i);
452 if (stat (dev, &statbuf) == 0 && S_ISBLK(statbuf.st_mode)) {
453 somedev++;
454 fd = open (dev, O_RDONLY);
455 if (fd >= 0) {
456 if(ioctl (fd, LOOP_GET_STATUS, &loopinfo) == 0)
457 someloop++; /* in use */
458 else if (errno == ENXIO) {
459 close (fd);
460 return strdup(dev); /* probably free */
461 }
462 close (fd);
463 }
464 continue;
465 }
466 if (i >= 7)
467 break;
468 }
469 return NULL;
470}
471#endif /* BB_FEATURE_MOUNT_LOOP */