9daed856f04312a29166bddc3521c0af5eb0ed05
[util-vserver.git] / util-vserver / src / fstool.h
1 // $Id$    --*- c -*--
2
3 // Copyright (C) 2004 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 //  
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; version 2 of the License.
8 //  
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13 //  
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18
19 #ifndef H_UTIL_VSERVER_SRC_FSTOOL_H
20 #define H_UTIL_VSERVER_SRC_FSTOOL_H
21
22 #include <getopt.h>
23 #include <stdbool.h>
24
25 #define CMD_HELP        0x8000
26 #define CMD_VERSION     0x8001
27 #define CMD_IMMUTABLE   0x8002
28 #define CMD_IMMULINK    0x8003
29 #define CMD_LEGACY      0x8004
30
31 struct stat;
32
33 struct Arguments {
34     bool                do_recurse;
35     bool                do_display_dot;
36     bool                do_display_dir;
37     bool                do_mapping;
38     bool                immutable;
39     bool                immulink;
40     char const *        ctx_str;
41     xid_t               ctx;
42     bool                is_legacy;
43     bool                do_set;
44     bool                do_unset;
45     bool                local_fs;
46 };
47
48 extern struct option const              CMDLINE_OPTIONS[];
49 extern char const                       CMDLINE_OPTIONS_SHORT[];
50 extern struct Arguments const *         global_args;
51
52 bool    checkForRace(int fd, char const * name, struct stat const *exp_st);
53 void    fixupParams(struct Arguments *, int argc);
54 bool    handleFile(char const *d_name, char const *full_name, struct stat const *);
55 void    showHelp(int fd, char const *cmd, int res);
56 void    showVersion();
57 xid_t   resolveCtx(char const *str);
58
59 #endif  //  H_UTIL_VSERVER_SRC_FSTOOL_H