当前位置:  技术问答>linux和unix

小妹向大家请教个问题-----chattr

    来源: 互联网  发布时间:2017-04-16

    本文导语:  To Everyone: 请问 linux 中 命令 chattr 调用的是哪个内核函数? 谢谢。。 | /*  * chattr.c - Change file attributes on an ext2 file system  *  * Copyright (C) 1993, 1994  Remy Card   *                 ...

To Everyone:

请问 linux 中 命令 chattr 调用的是哪个内核函数?

谢谢。。

|
/*
 * chattr.c - Change file attributes on an ext2 file system
 *
 * Copyright (C) 1993, 1994  Remy Card 
 *                           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 - Ignore symlinks when working recursively (G M Sipe)
 * 98/12/29 - Display version info only when -V specified (G M Sipe)
 */

#define _LARGEFILE64_SOURCE

#include "config.h"
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#ifdef HAVE_ERRNO_H
#include 
#endif
#include 
#include 
#include "ext2fs/ext2_fs.h"

#ifdef __GNUC__
#define EXT2FS_ATTR(x) __attribute__(x)
#else
#define EXT2FS_ATTR(x)
#endif

#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

#include "et/com_err.h"
#include "e2p/e2p.h"

#include "../version.h"
#include "nls-enable.h"

static const char * program_name = "chattr";

static int add;
static int rem;
static int set;
static int set_version;

static unsigned long version;

static int recursive;
static int verbose;
static int silent;

static unsigned long af;
static unsigned long rf;
static unsigned long sf;

#ifdef _LFS64_LARGEFILE
#define LSTAT lstat64
#define STRUCT_STAT struct stat64
#else
#define LSTAT lstat
#define STRUCT_STAT struct stat
#endif

static void usage(void)
{
fprintf(stderr,
_("Usage: %s [-RVf] [-+=AaCcDdeijsSu] [-v version] files...n"),
program_name);
exit(1);
}

struct flags_char {
unsigned long flag;
char  optchar;
};

static const struct flags_char flags_array[] = {
{ EXT2_NOATIME_FL, 'A' },
{ EXT2_SYNC_FL, 'S' },
{ EXT2_DIRSYNC_FL, 'D' },
{ EXT2_APPEND_FL, 'a' },
{ EXT2_COMPR_FL, 'c' },
{ EXT2_NODUMP_FL, 'd' },
{ EXT4_EXTENTS_FL, 'e'},
{ EXT2_IMMUTABLE_FL, 'i' },
{ EXT3_JOURNAL_DATA_FL, 'j' },
{ EXT2_SECRM_FL, 's' },
{ EXT2_UNRM_FL, 'u' },
{ EXT2_NOTAIL_FL, 't' },
{ EXT2_TOPDIR_FL, 'T' },
{ FS_NOCOW_FL, 'C' },
{ 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;
}


static int decode_arg (int * i, int argc, char ** argv)
{
char * p;
char * tmp;
unsigned long fl;

switch (argv[*i][0])
{
case '-':
for (p = &argv[*i][1]; *p; p++) {
if (*p == 'R') {
recursive = 1;
continue;
}
if (*p == 'V') {
verbose = 1;
continue;
}
if (*p == 'f') {
silent = 1;
continue;
}
if (*p == 'v') {
(*i)++;
if (*i >= argc)
usage ();
version = strtol (argv[*i], &tmp, 0);
if (*tmp) {
com_err (program_name, 0,
 _("bad version - %sn"),
 argv[*i]);
usage ();
}
set_version = 1;
continue;
}
if ((fl = get_flag(*p)) == 0)
usage();
rf |= fl;
rem = 1;
}
break;
case '+':
add = 1;
for (p = &argv[*i][1]; *p; p++) {
if ((fl = get_flag(*p)) == 0)
usage();
af |= fl;
}
break;
case '=':
set = 1;
for (p = &argv[*i][1]; *p; p++) {
if ((fl = get_flag(*p)) == 0)
usage();
sf |= fl;
}
break;
default:
return EOF;
break;
}
return 1;
}

static int chattr_dir_proc(const char *, struct dirent *, void *);

static int change_attributes(const char * name)
{
unsigned long flags;
STRUCT_STAT st;

if (LSTAT (name, &st) == -1) {
if (!silent)
com_err (program_name, errno,
 _("while trying to stat %s"), name);
return -1;
}

if (fgetflags(name, &flags) == -1) {
if (!silent)
com_err(program_name, errno,
_("while reading flags on %s"), name);
return -1;
}
if (set) {
if (verbose) {
printf (_("Flags of %s set as "), name);
print_flags (stdout, sf, 0);
printf ("n");
}
if (fsetflags (name, sf) == -1)
perror (name);
} else {
if (rem)
flags &= ~rf;
if (add)
flags |= af;
if (verbose) {
printf(_("Flags of %s set as "), name);
print_flags(stdout, flags, 0);
printf("n");
}
if (!S_ISDIR(st.st_mode))
flags &= ~EXT2_DIRSYNC_FL;
if (fsetflags(name, flags) == -1) {
if (!silent) {
com_err(program_name, errno,
_("while setting flags on %s"),
name);
}
return -1;
}
}
if (set_version) {
if (verbose)
printf (_("Version of %s set as %lun"), name, version);
if (fsetversion (name, version) == -1) {
if (!silent)
com_err (program_name, errno,
 _("while setting version on %s"),
 name);
return -1;
}
}
if (S_ISDIR(st.st_mode) && recursive)
return iterate_on_dir (name, chattr_dir_proc, NULL);
return 0;
}

static int chattr_dir_proc (const char * dir_name, struct dirent * de,
    void * private EXT2FS_ATTR((unused)))
{
int ret = 0;

if (strcmp (de->d_name, ".") && strcmp (de->d_name, "..")) {
        char *path;

path = malloc(strlen (dir_name) + 1 + strlen (de->d_name) + 1);
if (!path) {
fprintf(stderr, _("Couldn't allocate path variable "
  "in chattr_dir_proc"));
return -1;
}
sprintf(path, "%s/%s", dir_name, de->d_name);
ret = change_attributes(path);
free(path);
}
return ret;
}

int main (int argc, char ** argv)
{
int i, j;
int end_arg = 0;
int err, retval = 0;

#ifdef ENABLE_NLS
setlocale(LC_MESSAGES, "");
setlocale(LC_CTYPE, "");
bindtextdomain(NLS_CAT_NAME, LOCALEDIR);
textdomain(NLS_CAT_NAME);
set_com_err_gettext(gettext);
#endif
if (argc && *argv)
program_name = *argv;
i = 1;
while (i = argc)
usage ();
if (set && (add || rem)) {
fputs(_("= is incompatible with - and +n"), stderr);
exit (1);
}
if ((rf & af) != 0) {
fputs("Can't both set and unset same flag.n", stderr);
exit (1);
}
if (!(add || rem || set || set_version)) {
fputs(_("Must use '-v', =, - or +n"), stderr);
exit (1);
}
if (verbose)
fprintf (stderr, "chattr %s (%s)n",
 E2FSPROGS_VERSION, E2FSPROGS_DATE);
for (j = i; j 

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • java开源软件 iis7站长之家
  • 求救,关于crontab,小妹不胜感激
  • 小妹急需帮助!
  • GG.DD,还有女同胞们帮帮我吧!!!!小妹在此表示感谢了!!!UP也可.....
  • 大家来帮小妹看看……
  • 急!各位大虾谁来帮忙?小妹感激不尽!!
  • 请问我要测试数据库是否连接成功,应该咋办?小妹谢谢各位!
  • 小妹问大家一个问题!求你们了!踊跃点!UP也有分的!!
  • 谁来帮帮小妹,有关developer cafe的问题!!!!!
  • 小妹问个初级问题,别笑呀!~!
  • 大家帮帮小妹吧!!!
  • 帮帮吾小妹!如何用命令显示cpu类型和运行速度?
  • 请给我讲讲clone()方法究竟怎么复制对象,小妹谢谢大虾们了!
  • 小妹请问哪里有UNIX虚拟机下载
  • java基础问题,小妹先谢谢了
  • 关于在Linux下,运行程序的问题?请大家帮助小妹呀,在线等,谢谢!
  • TURBO LINUX 中FTP的问题!请大峡吧帮帮小妹~~~~~
  • linuxES3.0下 WebSphere进程经常自动停止问题? 小妹先谢了
  • 小妹被石绊倒
  • Unix中PThread是干什么用的,创建线程吗---小妹


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,