e2fsprogs/misc/lsattr.c

173 lines
3.5 KiB
C
Raw Normal View History

1997-04-26 17:21:57 +04:00
/*
* lsattr.c - List file attributes on an ext2 file system
*
* Copyright (C) 1993, 1994 Remy Card <card@masi.ibp.fr>
* Laboratoire MASI, Institut Blaise Pascal
* Universite Pierre et Marie Curie (Paris VI)
*
* This file can be redistributed under the terms of the GNU General
* Public License
*/
/*
* History:
* 93/10/30 - Creation
* 93/11/13 - Replace stat() calls by lstat() to avoid loops
* 94/02/27 - Integrated in Ted's distribution
* 98/12/29 - Display version info only when -V specified (G M Sipe)
1997-04-26 17:21:57 +04:00
*/
1997-04-26 18:00:26 +04:00
#include <sys/types.h>
1997-04-26 17:21:57 +04:00
#include <dirent.h>
1997-04-26 18:00:26 +04:00
#ifdef HAVE_ERRNO_H
1997-04-26 17:21:57 +04:00
#include <errno.h>
1997-04-26 18:00:26 +04:00
#endif
1997-04-26 17:21:57 +04:00
#include <fcntl.h>
1997-04-26 18:00:26 +04:00
#ifdef HAVE_GETOPT_H
1997-04-26 17:21:57 +04:00
#include <getopt.h>
1997-04-26 18:00:26 +04:00
#else
extern int optind;
extern char *optarg;
#endif
1997-04-26 17:21:57 +04:00
#include <stdio.h>
#include <unistd.h>
1997-04-26 18:00:26 +04:00
#include <stdlib.h>
1997-04-29 20:17:09 +04:00
#include <string.h>
1997-04-26 17:21:57 +04:00
#include <sys/param.h>
#include <sys/stat.h>
#include <linux/ext2_fs.h>
#include "et/com_err.h"
#include "e2p/e2p.h"
#include "../version.h"
#include "nls-enable.h"
1997-04-26 17:21:57 +04:00
const char * program_name = "lsattr";
int all = 0;
int d_opt = 0;
1997-04-26 17:34:30 +04:00
int l_opt = 0;
1997-04-26 17:21:57 +04:00
int recursive = 0;
int verbose = 0;
1997-04-26 17:21:57 +04:00
int v_opt = 0;
static void usage(void)
1997-04-26 17:21:57 +04:00
{
fprintf(stderr, _("Usage: %s [-RVadlv] [files...]\n"), program_name);
exit(1);
1997-04-26 17:21:57 +04:00
}
static void list_attributes (const char * name)
{
unsigned long flags;
unsigned long version;
if (fgetflags (name, &flags) == -1)
com_err (program_name, errno, _("While reading flags on %s"),
1997-04-26 17:21:57 +04:00
name);
else if (fgetversion (name, &version) == -1)
com_err (program_name, errno, _("While reading version on %s"),
1997-04-26 17:21:57 +04:00
name);
else
{
if (v_opt)
printf ("%5lu ", version);
1997-04-26 17:34:30 +04:00
print_flags (stdout, flags, l_opt);
1997-04-26 17:21:57 +04:00
printf (" %s\n", name);
}
}
static int lsattr_dir_proc (const char *, struct dirent *, void *);
static void lsattr_args (const char * name)
{
struct stat st;
if (lstat (name, &st) == -1)
com_err (program_name, errno, _("while stating %s"), name);
1997-04-26 17:21:57 +04:00
else
{
if (S_ISDIR(st.st_mode) && !d_opt)
iterate_on_dir (name, lsattr_dir_proc, (void *) NULL);
else
list_attributes (name);
}
}
static int lsattr_dir_proc (const char * dir_name, struct dirent * de, void * private)
{
struct stat st;
1997-04-26 18:00:26 +04:00
char *path;
path = malloc(strlen (dir_name) + 1 + strlen (de->d_name) + 1);
1997-04-26 17:21:57 +04:00
sprintf (path, "%s/%s", dir_name, de->d_name);
if (lstat (path, &st) == -1)
perror (path);
1997-04-26 18:00:26 +04:00
else {
if (de->d_name[0] != '.' || all) {
1997-04-26 17:21:57 +04:00
list_attributes (path);
if (S_ISDIR(st.st_mode) && recursive &&
1997-04-26 18:00:26 +04:00
strcmp(de->d_name, ".") &&
strcmp(de->d_name, "..")) {
1997-04-26 17:21:57 +04:00
printf ("\n%s:\n", path);
1997-04-26 18:00:26 +04:00
iterate_on_dir (path, lsattr_dir_proc,
(void *) NULL);
1997-04-26 17:21:57 +04:00
printf ("\n");
}
}
}
1997-04-26 18:00:26 +04:00
free(path);
1997-04-26 17:21:57 +04:00
return 0;
}
int main (int argc, char ** argv)
1997-04-26 17:21:57 +04:00
{
int c;
1997-04-26 17:21:57 +04:00
int i;
#ifdef ENABLE_NLS
setlocale(LC_MESSAGES, "");
bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
textdomain(NLS_CAT_NAME);
#endif
1997-04-26 17:21:57 +04:00
if (argc && *argv)
program_name = *argv;
while ((c = getopt (argc, argv, "RVadlv")) != EOF)
1997-04-26 17:21:57 +04:00
switch (c)
{
case 'R':
recursive = 1;
break;
case 'V':
verbose = 1;
break;
1997-04-26 17:21:57 +04:00
case 'a':
all = 1;
break;
case 'd':
d_opt = 1;
break;
1997-04-26 17:34:30 +04:00
case 'l':
l_opt = 1;
break;
1997-04-26 17:21:57 +04:00
case 'v':
v_opt = 1;
break;
default:
usage();
1997-04-26 17:21:57 +04:00
}
if (verbose)
fprintf (stderr, _("lsattr %s, %s for EXT2 FS %s, %s\n"),
E2FSPROGS_VERSION, E2FSPROGS_DATE,
EXT2FS_VERSION, EXT2FS_DATE);
1997-04-26 17:21:57 +04:00
if (optind > argc - 1)
lsattr_args (".");
else
for (i = optind; i < argc; i++)
lsattr_args (argv[i]);
exit(0);
1997-04-26 17:21:57 +04:00
}