#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: mount_udf.c,v 1.15 2019/10/16 21:52:22 maya Exp $");
#endif
#include <sys/param.h>
#include <sys/mount.h>
#include <sys/stat.h>
#include <assert.h>
#include <err.h>
#include <errno.h>
#include <grp.h>
#include <pwd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <util.h>
#include <fs/udf/udf_mount.h>
#include <mntopts.h>
#include "mountprog.h"
#include "mount_udf.h"
static const struct mntopt mopts[] = {
MOPT_STDOPTS,
MOPT_ASYNC,
MOPT_NOATIME,
MOPT_RELATIME,
MOPT_UPDATE,
MOPT_GETARGS,
MOPT_NULL,
};
static void usage(void) __dead;
static void
usage(void)
{
(void)fprintf(stderr, "Usage: %s [-g gid] [-o options] [-s session] "
"[-t gmtoff] [-u uid] special node\n", getprogname());
exit(EXIT_FAILURE);
}
#ifndef MOUNT_NOMAIN
int
main(int argc, char **argv)
{
setprogname(argv[0]);
return mount_udf(argc, argv);
}
#endif
void
mount_udf_parseargs(int argc, char **argv,
struct udf_args *args, int *mntflags,
char *canon_dev, char *canon_dir)
{
struct tm *tm;
time_t now;
uid_t anon_uid, nobody_uid;
gid_t anon_gid, nobody_gid;
int ch, set_gmtoff;
uint32_t sector_size;
mntoptparse_t mp;
(void)memset(args, 0, sizeof(*args));
set_gmtoff = *mntflags = 0;
sector_size = 0;
nobody_uid = anon_uid = a_uid("nobody");
nobody_gid = anon_gid = a_gid("nobody");
assert(nobody_uid != 0);
assert(nobody_gid != 0);
while ((ch = getopt(argc, argv, "cg:o:s:t:u:")) != -1) {
switch (ch) {
case 'c' :
args->udfmflags |= UDFMNT_CLOSESESSION;
break;
case 'g' :
anon_gid = a_gid(optarg);
break;
case 'u' :
anon_uid = a_uid(optarg);
break;
case 'o' :
mp = getmntopts(optarg, mopts, mntflags, 0);
if (mp == NULL)
err(EXIT_FAILURE, "getmntopts");
freemntopts(mp);
break;
case 's' :
args->sessionnr = a_num(optarg, "session number");
break;
case 't' :
args->gmtoff = a_num(optarg, "gmtoff");
set_gmtoff = 1;
break;
default :
usage();
}
}
if (optind + 2 != argc)
usage();
if (!set_gmtoff) {
(void)time(&now);
tm = localtime(&now);
args->gmtoff = tm->tm_gmtoff;
}
pathadj(argv[optind], canon_dev);
pathadj(argv[optind+1], canon_dir);
args->version = UDFMNT_VERSION;
args->fspec = canon_dev;
args->anon_uid = anon_uid;
args->anon_gid = anon_gid;
args->nobody_uid = nobody_uid;
args->nobody_gid = nobody_gid;
args->sector_size = sector_size;
}
int
mount_udf(int argc, char *argv[])
{
struct udf_args args;
char canon_dev[MAXPATHLEN], canon_dir[MAXPATHLEN];
int mntflags;
mount_udf_parseargs(argc, argv, &args, &mntflags, canon_dev, canon_dir);
if (mount(MOUNT_UDF, canon_dir, mntflags, &args, sizeof args) == -1)
err(EXIT_FAILURE, "Cannot mount %s on %s", canon_dev,canon_dir);
if (mntflags & MNT_GETARGS) {
char buf[1024];
(void)snprintb(buf, sizeof(buf), UDFMNT_BITS,
(uint64_t)args.udfmflags);
(void)printf("gmtoffset=%d, sessionnr=%d, flags=%s\n",
args.gmtoff, args.sessionnr, buf);
}
return EXIT_SUCCESS;
}