source: MondoRescue/branches/3.2/mindi-busybox/e2fsprogs/chattr.c@ 3232

Last change on this file since 3232 was 3232, checked in by Bruno Cornec, 10 years ago
  • Update mindi-busybox to 1.21.1
File size: 5.1 KB
RevLine 
[1765]1/* vi: set sw=4 ts=4: */
[821]2/*
3 * chattr.c - Change file attributes on an ext2 file system
4 *
5 * Copyright (C) 1993, 1994 Remy Card <card@masi.ibp.fr>
6 * Laboratoire MASI, Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 *
9 * This file can be redistributed under the terms of the GNU General
10 * Public License
11 */
12
13/*
14 * History:
15 * 93/10/30 - Creation
16 * 93/11/13 - Replace stat() calls by lstat() to avoid loops
17 * 94/02/27 - Integrated in Ted's distribution
18 * 98/12/29 - Ignore symlinks when working recursively (G M Sipe)
19 * 98/12/29 - Display version info only when -V specified (G M Sipe)
20 */
21
[3232]22//usage:#define chattr_trivial_usage
23//usage: "[-R] [-+=AacDdijsStTu] [-v VERSION] [FILE]..."
24//usage:#define chattr_full_usage "\n\n"
25//usage: "Change file attributes on an ext2 fs\n"
26//usage: "\nModifiers:"
27//usage: "\n - Remove attributes"
28//usage: "\n + Add attributes"
29//usage: "\n = Set attributes"
30//usage: "\nAttributes:"
31//usage: "\n A Don't track atime"
32//usage: "\n a Append mode only"
33//usage: "\n c Enable compress"
34//usage: "\n D Write dir contents synchronously"
35//usage: "\n d Don't backup with dump"
36//usage: "\n i Cannot be modified (immutable)"
37//usage: "\n j Write all data to journal first"
38//usage: "\n s Zero disk storage when deleted"
39//usage: "\n S Write file contents synchronously"
40//usage: "\n t Disable tail-merging of partial blocks with other files"
41//usage: "\n u Allow file to be undeleted"
42//usage: "\n -R Recurse"
43//usage: "\n -v Set the file's version/generation number"
44
[1765]45#include "libbb.h"
46#include "e2fs_lib.h"
[821]47
48#define OPT_ADD 1
49#define OPT_REM 2
50#define OPT_SET 4
51#define OPT_SET_VER 8
52
[1765]53struct globals {
54 unsigned long version;
55 unsigned long af;
56 unsigned long rf;
57 smallint flags;
58 smallint recursive;
[821]59};
60
61static unsigned long get_flag(char c)
62{
[2725]63 const char *fp = strchr(e2attr_flags_sname_chattr, c);
64 if (fp)
65 return e2attr_flags_value_chattr[fp - e2attr_flags_sname_chattr];
[821]66 bb_show_usage();
67}
68
[1765]69static int decode_arg(const char *arg, struct globals *gp)
[821]70{
71 unsigned long *fl;
72 char opt = *arg++;
73
[1765]74 fl = &gp->af;
[821]75 if (opt == '-') {
[1765]76 gp->flags |= OPT_REM;
77 fl = &gp->rf;
[821]78 } else if (opt == '+') {
[1765]79 gp->flags |= OPT_ADD;
[821]80 } else if (opt == '=') {
[1765]81 gp->flags |= OPT_SET;
[821]82 } else
[1765]83 return 0;
[821]84
[1765]85 while (*arg)
86 *fl |= get_flag(*arg++);
[821]87
88 return 1;
89}
90
[1765]91static void change_attributes(const char *name, struct globals *gp);
[821]92
[2725]93static int FAST_FUNC chattr_dir_proc(const char *dir_name, struct dirent *de, void *gp)
[821]94{
[1765]95 char *path = concat_subpath_file(dir_name, de->d_name);
96 /* path is NULL if de->d_name is "." or "..", else... */
97 if (path) {
98 change_attributes(path, gp);
99 free(path);
100 }
101 return 0;
102}
103
104static void change_attributes(const char *name, struct globals *gp)
105{
[821]106 unsigned long fsflags;
[1765]107 struct stat st;
[821]108
[1765]109 if (lstat(name, &st) != 0) {
110 bb_perror_msg("stat %s", name);
[821]111 return;
112 }
[1765]113 if (S_ISLNK(st.st_mode) && gp->recursive)
[821]114 return;
115
116 /* Don't try to open device files, fifos etc. We probably
117 * ought to display an error if the file was explicitly given
118 * on the command line (whether or not recursive was
119 * requested). */
120 if (!S_ISREG(st.st_mode) && !S_ISLNK(st.st_mode) && !S_ISDIR(st.st_mode))
121 return;
122
[1765]123 if (gp->flags & OPT_SET_VER)
124 if (fsetversion(name, gp->version) != 0)
125 bb_perror_msg("setting version on %s", name);
[821]126
[1765]127 if (gp->flags & OPT_SET) {
128 fsflags = gp->af;
[821]129 } else {
[1765]130 if (fgetflags(name, &fsflags) != 0) {
131 bb_perror_msg("reading flags on %s", name);
[821]132 goto skip_setflags;
133 }
[1765]134 /*if (gp->flags & OPT_REM) - not needed, rf is zero otherwise */
135 fsflags &= ~gp->rf;
136 /*if (gp->flags & OPT_ADD) - not needed, af is zero otherwise */
137 fsflags |= gp->af;
138 /* What is this? And why it's not done for SET case? */
[821]139 if (!S_ISDIR(st.st_mode))
140 fsflags &= ~EXT2_DIRSYNC_FL;
141 }
[1765]142 if (fsetflags(name, fsflags) != 0)
143 bb_perror_msg("setting flags on %s", name);
[821]144
[1765]145 skip_setflags:
146 if (gp->recursive && S_ISDIR(st.st_mode))
147 iterate_on_dir(name, chattr_dir_proc, gp);
[821]148}
149
[2725]150int chattr_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
151int chattr_main(int argc UNUSED_PARAM, char **argv)
[821]152{
[1765]153 struct globals g;
[821]154 char *arg;
155
[1765]156 memset(&g, 0, sizeof(g));
157
[821]158 /* parse the args */
[1765]159 while ((arg = *++argv)) {
[821]160 /* take care of -R and -v <version> */
[1765]161 if (arg[0] == '-'
162 && (arg[1] == 'R' || arg[1] == 'v')
163 && !arg[2]
164 ) {
165 if (arg[1] == 'R') {
166 g.recursive = 1;
[821]167 continue;
168 }
[1765]169 /* arg[1] == 'v' */
170 if (!*++argv)
171 bb_show_usage();
172 g.version = xatoul(*argv);
173 g.flags |= OPT_SET_VER;
174 continue;
[821]175 }
176
[1765]177 if (!decode_arg(arg, &g))
[821]178 break;
179 }
180
181 /* run sanity checks on all the arguments given us */
[1765]182 if (!*argv)
[821]183 bb_show_usage();
[1765]184 if ((g.flags & OPT_SET) && (g.flags & (OPT_ADD|OPT_REM)))
[821]185 bb_error_msg_and_die("= is incompatible with - and +");
[1765]186 if (g.rf & g.af)
187 bb_error_msg_and_die("can't set and unset a flag");
188 if (!g.flags)
189 bb_error_msg_and_die("must use '-v', =, - or +");
[821]190
191 /* now run chattr on all the files passed to us */
[1765]192 do change_attributes(*argv, &g); while (*++argv);
[821]193
194 return EXIT_SUCCESS;
195}
Note: See TracBrowser for help on using the repository browser.