1997-04-26 21:21:57 +08:00
|
|
|
/*
|
|
|
|
* chattr.c - Change 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
|
1999-01-05 15:02:39 +08:00
|
|
|
* 98/12/29 - Ignore symlinks when working recursively (G M Sipe)
|
|
|
|
* 98/12/29 - Display version info only when -V specified (G M Sipe)
|
1997-04-26 21:21:57 +08:00
|
|
|
*/
|
|
|
|
|
2001-02-08 11:06:43 +08:00
|
|
|
#define _LARGEFILE64_SOURCE
|
|
|
|
|
1997-04-26 22:00:26 +08:00
|
|
|
#include <sys/types.h>
|
1997-04-26 21:21:57 +08:00
|
|
|
#include <dirent.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
1997-04-30 00:17:09 +08:00
|
|
|
#include <string.h>
|
1997-04-26 22:00:26 +08:00
|
|
|
#ifdef HAVE_ERRNO_H
|
|
|
|
#include <errno.h>
|
|
|
|
#endif
|
1997-04-26 21:21:57 +08:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/stat.h>
|
Many files:
badblocks.c, chattr.c, dumpe2fs.c, e2image.c, findsuper.c, lsattr.c,
mke2fs.c, mklost+found.c, tune2fs.c, util.c: Change location of
ext2_fs.h to be ext2fs/ext2_fs.h
ChangeLog, Makefile.in, resize2fs.h:
resize2fs.h: Change location of ext2_fs.h to be ext2fs/ext2_fs.h
ChangeLog, Makefile.in, debugfs.h:
debugfs.h: Change location of ext2_fs.h to be ext2fs/ext2_fs.h
ChangeLog, Makefile.in, e2fsck.h, scantest.c:
e2fsck.h, scantest.c: Change location of ext2_fs.h to be
ext2fs/ext2_fs.h
ChangeLog, Makefile.in, tst_uuid.c, uuid_time.c:
tst_uuid.c, uuid_time.c: Remove unneeded #include of ext2_fs.h
ChangeLog, Makefile.in, e2p.h:
e2p.h: Change location of ext2_fs.h to be ext2fs/ext2_fs.h
ChangeLog, Makefile.in, test_icount.c, test_rel.c:
test_icount.c, test_rel.c: Change location of ext2_fs.h to be
ext2fs/ext2_fs.h
2001-05-14 19:45:38 +08:00
|
|
|
#include "ext2fs/ext2_fs.h"
|
1997-04-26 21:21:57 +08:00
|
|
|
|
2003-12-07 14:28:50 +08:00
|
|
|
#ifdef __GNUC__
|
|
|
|
#define EXT2FS_ATTR(x) __attribute__(x)
|
|
|
|
#else
|
|
|
|
#define EXT2FS_ATTR(x)
|
|
|
|
#endif
|
|
|
|
|
1999-10-26 22:29:22 +08:00
|
|
|
#ifndef S_ISLNK /* So we can compile even with gcc-warn */
|
|
|
|
# ifdef __S_IFLNK
|
|
|
|
# define S_ISLNK(mode) __S_ISTYPE((mode), __S_IFLNK)
|
|
|
|
# else
|
|
|
|
# define S_ISLNK(mode) 0
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
1997-04-26 21:21:57 +08:00
|
|
|
#include "et/com_err.h"
|
|
|
|
#include "e2p/e2p.h"
|
|
|
|
|
|
|
|
#include "../version.h"
|
Many files:
badblocks.c, chattr.c, dumpe2fs.c, e2label.c, findsuper.c, fsck.c,
get_device_by_label.c, lsattr.c, mke2fs.c, mklost+found.c,
nls-enable.h, partinfo.c, tune2fs.c, uuidgen.c: Add
Internationalization support as suggested by Marco d'Itri
<md@linux.it>.
2000-02-08 08:47:55 +08:00
|
|
|
#include "nls-enable.h"
|
1997-04-26 21:21:57 +08:00
|
|
|
|
2000-02-11 13:00:19 +08:00
|
|
|
static const char * program_name = "chattr";
|
1997-04-26 21:21:57 +08:00
|
|
|
|
2000-12-31 21:48:12 +08:00
|
|
|
static int add;
|
|
|
|
static int rem;
|
|
|
|
static int set;
|
|
|
|
static int set_version;
|
1997-04-26 21:21:57 +08:00
|
|
|
|
2000-02-11 13:00:19 +08:00
|
|
|
static unsigned long version;
|
1997-04-26 21:21:57 +08:00
|
|
|
|
2000-12-31 21:48:12 +08:00
|
|
|
static int recursive;
|
|
|
|
static int verbose;
|
1997-04-26 21:21:57 +08:00
|
|
|
|
2000-02-11 13:00:19 +08:00
|
|
|
static unsigned long af;
|
|
|
|
static unsigned long rf;
|
|
|
|
static unsigned long sf;
|
1997-04-26 21:21:57 +08:00
|
|
|
|
2001-06-08 10:53:20 +08:00
|
|
|
#ifdef _LFS64_LARGEFILE
|
|
|
|
#define LSTAT lstat64
|
|
|
|
#define STRUCT_STAT struct stat64
|
|
|
|
#else
|
|
|
|
#define LSTAT lstat
|
|
|
|
#define STRUCT_STAT struct stat
|
|
|
|
#endif
|
|
|
|
|
ChangeLog, debugfs.8.in, debugfs.c:
Add a -V option which displays the current version.
ChangeLog, unix.c:
unix.c (e2fsck_update_progress): Remove unused variables.
ChangeLog, inode.c:
inode.c (get_next_blockgroup): Fix bug where if get_next_blockgroup()
is called early because of a missing inode table in a block group, the
current_inode counter wasn't incremented correctly.
ChangeLog, tst_uuid.c:
tst_uuid.c (main): Fixed bogus declaration of the main's argv parameter.
ChangeLog, test_icount.c:
test_icount.c (main): Fix main() declaration so that it returns int,
not void.
Many files:
fsck.c (ignore): Remove unused variable cp.
chattr.c (fatal_error):
tune2fs.c (usage):
lsattr.c (usage):
dumpe2fs.c (usage):
badblocks.c (usage): Remove volatile from declaration.
fsck.c: Change use of strdup to be string_copy, since we don't trust
what glibc is doing with strdup. (Whatever it is, it isn't pretty.)
1998-06-27 13:11:14 +08:00
|
|
|
static void fatal_error(const char * fmt_string, int errcode)
|
1997-04-26 21:21:57 +08:00
|
|
|
{
|
|
|
|
fprintf (stderr, fmt_string, program_name);
|
|
|
|
exit (errcode);
|
|
|
|
}
|
|
|
|
|
2002-06-16 06:58:39 +08:00
|
|
|
#define usage() fatal_error(_("usage: %s [-RV] [-+=AacDdijsSu] [-v version] files...\n"), \
|
1997-04-26 21:21:57 +08:00
|
|
|
1)
|
|
|
|
|
2000-12-31 21:48:12 +08:00
|
|
|
struct flags_char {
|
|
|
|
unsigned long flag;
|
|
|
|
char optchar;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct flags_char flags_array[] = {
|
|
|
|
{ EXT2_NOATIME_FL, 'A' },
|
|
|
|
{ EXT2_SYNC_FL, 'S' },
|
2002-06-16 06:58:39 +08:00
|
|
|
{ EXT2_DIRSYNC_FL, 'D' },
|
2000-12-31 21:48:12 +08:00
|
|
|
{ EXT2_APPEND_FL, 'a' },
|
|
|
|
{ EXT2_COMPR_FL, 'c' },
|
|
|
|
{ EXT2_NODUMP_FL, 'd' },
|
|
|
|
{ EXT2_IMMUTABLE_FL, 'i' },
|
|
|
|
{ EXT3_JOURNAL_DATA_FL, 'j' },
|
|
|
|
{ EXT2_SECRM_FL, 's' },
|
|
|
|
{ EXT2_UNRM_FL, 'u' },
|
2001-11-06 08:22:02 +08:00
|
|
|
{ EXT2_NOTAIL_FL, 't' },
|
2002-11-01 14:53:52 +08:00
|
|
|
{ EXT2_TOPDIR_FL, 'T' },
|
2000-12-31 21:48:12 +08:00
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
static unsigned long get_flag(char c)
|
|
|
|
{
|
|
|
|
const struct flags_char *fp;
|
|
|
|
|
|
|
|
for (fp = flags_array; fp->flag != 0; fp++) {
|
|
|
|
if (fp->optchar == c)
|
|
|
|
return fp->flag;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-04-26 21:21:57 +08:00
|
|
|
static int decode_arg (int * i, int argc, char ** argv)
|
|
|
|
{
|
|
|
|
char * p;
|
|
|
|
char * tmp;
|
2000-12-31 21:48:12 +08:00
|
|
|
unsigned long fl;
|
1997-04-26 21:21:57 +08:00
|
|
|
|
|
|
|
switch (argv[*i][0])
|
|
|
|
{
|
|
|
|
case '-':
|
2000-12-31 21:48:12 +08:00
|
|
|
for (p = &argv[*i][1]; *p; p++) {
|
|
|
|
if (*p == 'R') {
|
1997-04-26 21:21:57 +08:00
|
|
|
recursive = 1;
|
2000-12-31 21:48:12 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (*p == 'V') {
|
1997-04-26 21:21:57 +08:00
|
|
|
verbose = 1;
|
2000-12-31 21:48:12 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (*p == 'v') {
|
1997-04-29 22:53:37 +08:00
|
|
|
(*i)++;
|
1997-04-26 21:21:57 +08:00
|
|
|
if (*i >= argc)
|
|
|
|
usage ();
|
|
|
|
version = strtol (argv[*i], &tmp, 0);
|
2000-12-31 21:48:12 +08:00
|
|
|
if (*tmp) {
|
1997-04-26 21:21:57 +08:00
|
|
|
com_err (program_name, 0,
|
2000-12-31 21:48:12 +08:00
|
|
|
_("bad version - %s\n"),
|
|
|
|
argv[*i]);
|
1997-04-26 21:21:57 +08:00
|
|
|
usage ();
|
|
|
|
}
|
|
|
|
set_version = 1;
|
2000-12-31 21:48:12 +08:00
|
|
|
continue;
|
1997-04-26 21:21:57 +08:00
|
|
|
}
|
2000-12-31 21:48:12 +08:00
|
|
|
if ((fl = get_flag(*p)) == 0)
|
|
|
|
usage();
|
|
|
|
rf |= fl;
|
|
|
|
rem = 1;
|
|
|
|
}
|
1997-04-26 21:21:57 +08:00
|
|
|
break;
|
|
|
|
case '+':
|
|
|
|
add = 1;
|
2000-12-31 21:48:12 +08:00
|
|
|
for (p = &argv[*i][1]; *p; p++) {
|
|
|
|
if ((fl = get_flag(*p)) == 0)
|
|
|
|
usage();
|
|
|
|
af |= fl;
|
|
|
|
}
|
1997-04-26 21:21:57 +08:00
|
|
|
break;
|
|
|
|
case '=':
|
|
|
|
set = 1;
|
2000-12-31 21:48:12 +08:00
|
|
|
for (p = &argv[*i][1]; *p; p++) {
|
|
|
|
if ((fl = get_flag(*p)) == 0)
|
|
|
|
usage();
|
|
|
|
sf |= fl;
|
|
|
|
}
|
1997-04-26 21:21:57 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return EOF;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int chattr_dir_proc (const char *, struct dirent *, void *);
|
|
|
|
|
|
|
|
static void change_attributes (const char * name)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
2001-06-08 10:53:20 +08:00
|
|
|
STRUCT_STAT st;
|
1997-04-26 21:21:57 +08:00
|
|
|
|
2001-06-08 10:53:20 +08:00
|
|
|
if (LSTAT (name, &st) == -1) {
|
2000-02-11 13:00:19 +08:00
|
|
|
com_err (program_name, errno, _("while trying to stat %s"),
|
|
|
|
name);
|
1997-04-26 21:21:57 +08:00
|
|
|
return;
|
|
|
|
}
|
1999-01-05 15:02:39 +08:00
|
|
|
if (S_ISLNK(st.st_mode) && recursive)
|
|
|
|
return;
|
2000-02-11 13:00:19 +08:00
|
|
|
|
|
|
|
/* Don't try to open device files, fifos etc. We probably
|
|
|
|
ought to display an error if the file was explicitly given
|
|
|
|
on the command line (whether or not recursive was
|
|
|
|
requested). */
|
|
|
|
if (!S_ISREG(st.st_mode) && !S_ISLNK(st.st_mode) &&
|
|
|
|
!S_ISDIR(st.st_mode))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (set) {
|
|
|
|
if (verbose) {
|
Many files:
badblocks.c, chattr.c, dumpe2fs.c, e2label.c, findsuper.c, fsck.c,
get_device_by_label.c, lsattr.c, mke2fs.c, mklost+found.c,
nls-enable.h, partinfo.c, tune2fs.c, uuidgen.c: Add
Internationalization support as suggested by Marco d'Itri
<md@linux.it>.
2000-02-08 08:47:55 +08:00
|
|
|
printf (_("Flags of %s set as "), name);
|
1997-04-26 21:34:30 +08:00
|
|
|
print_flags (stdout, sf, 0);
|
1997-04-26 21:21:57 +08:00
|
|
|
printf ("\n");
|
|
|
|
}
|
|
|
|
if (fsetflags (name, sf) == -1)
|
|
|
|
perror (name);
|
2000-02-11 13:00:19 +08:00
|
|
|
} else {
|
1997-04-26 21:21:57 +08:00
|
|
|
if (fgetflags (name, &flags) == -1)
|
|
|
|
com_err (program_name, errno,
|
Many files:
badblocks.c, chattr.c, dumpe2fs.c, e2label.c, findsuper.c, fsck.c,
get_device_by_label.c, lsattr.c, mke2fs.c, mklost+found.c,
nls-enable.h, partinfo.c, tune2fs.c, uuidgen.c: Add
Internationalization support as suggested by Marco d'Itri
<md@linux.it>.
2000-02-08 08:47:55 +08:00
|
|
|
_("while reading flags on %s"), name);
|
2000-02-11 13:00:19 +08:00
|
|
|
else {
|
1997-04-26 21:21:57 +08:00
|
|
|
if (rem)
|
|
|
|
flags &= ~rf;
|
|
|
|
if (add)
|
|
|
|
flags |= af;
|
2000-02-11 13:00:19 +08:00
|
|
|
if (verbose) {
|
Many files:
badblocks.c, chattr.c, dumpe2fs.c, e2label.c, findsuper.c, fsck.c,
get_device_by_label.c, lsattr.c, mke2fs.c, mklost+found.c,
nls-enable.h, partinfo.c, tune2fs.c, uuidgen.c: Add
Internationalization support as suggested by Marco d'Itri
<md@linux.it>.
2000-02-08 08:47:55 +08:00
|
|
|
printf (_("Flags of %s set as "), name);
|
1997-04-26 21:34:30 +08:00
|
|
|
print_flags (stdout, flags, 0);
|
1997-04-26 21:21:57 +08:00
|
|
|
printf ("\n");
|
|
|
|
}
|
2002-06-16 06:58:39 +08:00
|
|
|
if (!S_ISDIR(st.st_mode))
|
|
|
|
flags &= ~EXT2_DIRSYNC_FL;
|
1997-04-26 21:21:57 +08:00
|
|
|
if (fsetflags (name, flags) == -1)
|
|
|
|
com_err (program_name, errno,
|
Many files:
badblocks.c, chattr.c, dumpe2fs.c, e2label.c, findsuper.c, fsck.c,
get_device_by_label.c, lsattr.c, mke2fs.c, mklost+found.c,
nls-enable.h, partinfo.c, tune2fs.c, uuidgen.c: Add
Internationalization support as suggested by Marco d'Itri
<md@linux.it>.
2000-02-08 08:47:55 +08:00
|
|
|
_("while setting flags on %s"), name);
|
1997-04-26 21:21:57 +08:00
|
|
|
}
|
|
|
|
}
|
2000-02-11 13:00:19 +08:00
|
|
|
if (set_version) {
|
1997-04-26 21:21:57 +08:00
|
|
|
if (verbose)
|
Many files:
badblocks.c, chattr.c, dumpe2fs.c, e2label.c, findsuper.c, fsck.c,
get_device_by_label.c, lsattr.c, mke2fs.c, mklost+found.c,
nls-enable.h, partinfo.c, tune2fs.c, uuidgen.c: Add
Internationalization support as suggested by Marco d'Itri
<md@linux.it>.
2000-02-08 08:47:55 +08:00
|
|
|
printf (_("Version of %s set as %lu\n"), name, version);
|
1997-04-26 21:21:57 +08:00
|
|
|
if (fsetversion (name, version) == -1)
|
|
|
|
com_err (program_name, errno,
|
Many files:
badblocks.c, chattr.c, dumpe2fs.c, e2label.c, findsuper.c, fsck.c,
get_device_by_label.c, lsattr.c, mke2fs.c, mklost+found.c,
nls-enable.h, partinfo.c, tune2fs.c, uuidgen.c: Add
Internationalization support as suggested by Marco d'Itri
<md@linux.it>.
2000-02-08 08:47:55 +08:00
|
|
|
_("while setting version on %s"), name);
|
1997-04-26 21:21:57 +08:00
|
|
|
}
|
|
|
|
if (S_ISDIR(st.st_mode) && recursive)
|
2000-02-11 13:00:19 +08:00
|
|
|
iterate_on_dir (name, chattr_dir_proc, NULL);
|
1997-04-26 21:21:57 +08:00
|
|
|
}
|
|
|
|
|
2000-02-11 13:00:19 +08:00
|
|
|
static int chattr_dir_proc (const char * dir_name, struct dirent * de,
|
2003-12-07 14:28:50 +08:00
|
|
|
void * private EXT2FS_ATTR((unused)))
|
1997-04-26 21:21:57 +08:00
|
|
|
{
|
2000-02-11 13:00:19 +08:00
|
|
|
if (strcmp (de->d_name, ".") && strcmp (de->d_name, "..")) {
|
1997-04-26 22:00:26 +08:00
|
|
|
char *path;
|
|
|
|
|
|
|
|
path = malloc(strlen (dir_name) + 1 + strlen (de->d_name) + 1);
|
|
|
|
if (!path)
|
Many files:
badblocks.c, chattr.c, dumpe2fs.c, e2label.c, findsuper.c, fsck.c,
get_device_by_label.c, lsattr.c, mke2fs.c, mklost+found.c,
nls-enable.h, partinfo.c, tune2fs.c, uuidgen.c: Add
Internationalization support as suggested by Marco d'Itri
<md@linux.it>.
2000-02-08 08:47:55 +08:00
|
|
|
fatal_error(_("Couldn't allocate path variable "
|
|
|
|
"in chattr_dir_proc"), 1);
|
1997-04-26 21:21:57 +08:00
|
|
|
sprintf (path, "%s/%s", dir_name, de->d_name);
|
|
|
|
change_attributes (path);
|
1997-04-26 22:00:26 +08:00
|
|
|
free(path);
|
1997-04-26 21:21:57 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1997-09-16 10:13:52 +08:00
|
|
|
int main (int argc, char ** argv)
|
1997-04-26 21:21:57 +08:00
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
int end_arg = 0;
|
|
|
|
|
Many files:
badblocks.c, chattr.c, dumpe2fs.c, e2label.c, findsuper.c, fsck.c,
get_device_by_label.c, lsattr.c, mke2fs.c, mklost+found.c,
nls-enable.h, partinfo.c, tune2fs.c, uuidgen.c: Add
Internationalization support as suggested by Marco d'Itri
<md@linux.it>.
2000-02-08 08:47:55 +08:00
|
|
|
#ifdef ENABLE_NLS
|
|
|
|
setlocale(LC_MESSAGES, "");
|
2002-03-05 16:26:52 +08:00
|
|
|
setlocale(LC_CTYPE, "");
|
Many files:
badblocks.c, chattr.c, dumpe2fs.c, e2label.c, findsuper.c, fsck.c,
get_device_by_label.c, lsattr.c, mke2fs.c, mklost+found.c,
nls-enable.h, partinfo.c, tune2fs.c, uuidgen.c: Add
Internationalization support as suggested by Marco d'Itri
<md@linux.it>.
2000-02-08 08:47:55 +08:00
|
|
|
bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
|
|
|
|
textdomain(NLS_CAT_NAME);
|
|
|
|
#endif
|
1997-04-26 21:21:57 +08:00
|
|
|
if (argc && *argv)
|
|
|
|
program_name = *argv;
|
|
|
|
i = 1;
|
2000-02-11 13:00:19 +08:00
|
|
|
while (i < argc && !end_arg) {
|
2004-01-21 02:39:01 +08:00
|
|
|
/* '--' arg should end option processing */
|
|
|
|
if (strcmp(argv[i], "--") == 0) {
|
|
|
|
i++;
|
|
|
|
end_arg = 1;
|
|
|
|
} else if (decode_arg (&i, argc, argv) == EOF)
|
1997-04-26 21:21:57 +08:00
|
|
|
end_arg = 1;
|
|
|
|
else
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
if (i >= argc)
|
|
|
|
usage ();
|
2000-02-11 13:00:19 +08:00
|
|
|
if (set && (add || rem)) {
|
2003-12-07 14:28:50 +08:00
|
|
|
fputs(_("= is incompatible with - and +\n"), stderr);
|
1997-04-26 21:21:57 +08:00
|
|
|
exit (1);
|
|
|
|
}
|
2000-02-11 13:00:19 +08:00
|
|
|
if ((rf & af) != 0) {
|
2003-12-07 14:28:50 +08:00
|
|
|
fputs("Can't both set and unset same flag.\n", stderr);
|
2000-02-11 13:00:19 +08:00
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
if (!(add || rem || set || set_version)) {
|
2003-12-07 14:28:50 +08:00
|
|
|
fputs(_("Must use '-v', =, - or +\n"), stderr);
|
1997-04-26 21:21:57 +08:00
|
|
|
exit (1);
|
|
|
|
}
|
1999-01-05 15:02:39 +08:00
|
|
|
if (verbose)
|
2001-08-28 00:44:23 +08:00
|
|
|
fprintf (stderr, "chattr %s (%s)\n",
|
|
|
|
E2FSPROGS_VERSION, E2FSPROGS_DATE);
|
1997-04-26 21:21:57 +08:00
|
|
|
for (j = i; j < argc; j++)
|
|
|
|
change_attributes (argv[j]);
|
1997-09-16 10:13:52 +08:00
|
|
|
exit(0);
|
1997-04-26 21:21:57 +08:00
|
|
|
}
|