/*
* Copyright (c) 1997-2014 Erez Zadok
* Copyright (c) 1989 Jan-Simon Pendry
* Copyright (c) 1989 Imperial College of Science, Technology & Medicine
* Copyright (c) 1989 The Regents of the University of California.
* All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Jan-Simon Pendry at Imperial College, London.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*
* File: am-utils/fsinfo/fsinfo.c
*
*/
/*
* Determine program name
*/
if (v[0]) {
progname = strrchr(v[0], '/');
if (progname && progname[1])
progname++;
else
progname = v[0];
}
if (!progname)
progname = "fsinfo";
while ((ch = getopt(c, v, "a:b:d:e:f:h:m:D:U:I:qv")) != -1)
switch (ch) {
case 'a':
autodir = optarg;
break;
case 'b':
if (bootparams_pref)
fatal("-b option specified twice");
bootparams_pref = optarg;
break;
case 'd':
if (dumpset_pref)
fatal("-d option specified twice");
dumpset_pref = optarg;
break;
case 'h':
xstrlcpy(hostname, optarg, sizeof(hostname));
break;
case 'e':
if (exportfs_pref)
fatal("-e option specified twice");
exportfs_pref = optarg;
break;
case 'f':
if (fstab_pref)
fatal("-f option specified twice");
fstab_pref = optarg;
break;
case 'm':
if (mount_pref)
fatal("-m option specified twice");
mount_pref = optarg;
break;
case 'q':
verbose = -1;
break;
case 'v':
verbose = 1;
break;
case 'I':
case 'D':
case 'U':
/* sizeof(iptr) is actually that of idvbuf. See declaration above */
xsnprintf(iptr, sizeof(idvbuf), "-%c%s ", ch, optarg);
iptr += strlen(iptr);
break;
default:
usage++;
break;
}
if (c != optind) {
g_argv = v + optind - 1;
#ifdef yywrap
if (yywrap())
#endif /* yywrap */
fatal("Cannot read any input files");
} else {
usage++;
}
if (!u) {
struct passwd *pw = getpwuid(getuid());
if (pw)
u = pw->pw_name;
}
if (!u)
u = getenv("USER");
if (!u)
u = getenv("LOGNAME");
if (!u)
u = "root";
return xstrdup(u);
}
/*
* MAIN
*/
int
main(int argc, char *argv[])
{
/*
* Process arguments
*/
fsi_get_args(argc, argv);
/*
* If no hostname given then use the local name
*/
if (!*hostname && gethostname(hostname, sizeof(hostname)) < 0) {
perror("gethostname");
exit(1);
}
hostname[sizeof(hostname) - 1] = '\0';
/*
* Get the username
*/
username = find_username();
/*
* New hosts and automounts
*/
list_of_hosts = new_que();
list_of_automounts = new_que();