Files
haiku-beta6/src/bin/mount.c
T
Jérôme Duval 15e29cfa03 fix exit codes (1 on error, 0 on success)
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@18705 a95241bf-73f2-0310-859d-f6bbb57e9c96
2006-08-30 09:46:42 +00:00

95 lines
1.9 KiB
C

/*
* Copyright 2001-2005, Axel Dörfler, [email protected]. All rights reserved.
* Distributed under the terms of the MIT License.
*/
/** Mounts a volume with the specified file system */
#include <fs_volume.h>
#include <sys/stat.h>
#include <unistd.h>
#include <stdio.h>
#include <string.h>
static void
usage(const char *programName)
{
printf("usage: %s [-ro] [-t fstype] [-p parameter] device directory\n"
"\t-ro\tmounts the volume read-only\n"
"\t-t\tspecifies the file system to use (defaults to automatic recognition)\n",programName);
exit(1);
}
int
main(int argc, char **argv)
{
const char *programName = argv[0];
const char *device, *mountPoint;
const char *parameter = NULL;
const char *fs = NULL;
struct stat mountStat;
dev_t volume;
uint32 flags = 0;
/* prettify the program name */
if (strrchr(programName, '/'))
programName = strrchr(programName, '/') + 1;
/* get all options */
while (*++argv) {
char *arg = *argv;
argc--;
if (*arg != '-')
break;
if (!strcmp(++arg, "ro") && (flags & B_MOUNT_READ_ONLY) == 0)
flags |= B_MOUNT_READ_ONLY;
else if (!strcmp(arg, "t") && fs == NULL) {
if (argc <= 1)
break;
fs = *++argv;
argc--;
} else if (!strcmp(arg, "p") && parameter == NULL) {
if (argc <= 1)
break;
parameter = *++argv;
argc--;
} else
usage(programName);
}
/* check the arguments */
device = argv[0];
mountPoint = argv[1];
if (device == NULL || mountPoint == NULL)
usage(programName);
if (stat(mountPoint, &mountStat) < 0) {
fprintf(stderr, "%s: The mount point '%s' is not accessible\n", programName, mountPoint);
return 1;
}
if (!S_ISDIR(mountStat.st_mode)) {
fprintf(stderr, "%s: The mount point '%s' is not a directory\n", programName, mountPoint);
return 1;
}
/* do the work */
volume = fs_mount_volume(mountPoint, device, fs, flags, parameter);
if (volume < B_OK) {
fprintf(stderr, "%s: %s\n", programName, strerror(volume));
return 1;
}
return 0;
}