added createskeleton* files
[util-vserver.git] / util-vserver / lib / fscompat_getiattr-fscompat.hc
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 #ifdef HAVE_CONFIG_H
20 #  include <config.h>
21 #endif
22
23 #include "ioctl-getext2flags.hc"
24 #include "ioctl-getfilecontext.hc"
25 #include "ioctl-getxflg.hc"
26
27 static inline ALWAYSINLINE int
28 vc_get_iattr_compat_fscompat(char const *filename,
29                              dev_t dev, ino_t ino,
30                              xid_t    * /*@null@*/ xid,
31                              uint32_t * /*@null@*/ flags,
32                              uint32_t * mask,
33                              mode_t const *mode)
34 {
35   struct stat           st;
36   int                   stat_rc;
37   int                   fd;
38   int                   old_mask = *mask;
39
40   *mask = 0;
41
42   if (mode!=0) st.st_mode = *mode;
43   else if (lstat(filename, &st)==-1) return -1;
44
45   if (!S_ISREG(st.st_mode) && !S_ISDIR(st.st_mode)) return 0;
46
47   fd = open(filename, O_RDONLY);
48   if (fd==-1) return -1;
49
50   stat_rc = fstat(fd, &st);
51   if (stat_rc==-1) goto err;
52
53   if (st.st_dev!=dev || st.st_ino!=ino) {
54     errno = EINVAL;
55     goto err;
56   }
57     
58   if ( old_mask&VC_IATTR_XID ) {
59     *xid = vc_X_get_filecontext(fd);
60     if (*xid!=VC_NOCTX) *mask |= VC_IATTR_XID;
61   }
62
63   if ( old_mask&VC_IATTR_IUNLINK ) {
64     long                tmp;
65     int         rc = vc_X_get_ext2flags(fd, &tmp);
66
67     if (rc!=-1) {
68       *mask |= VC_IATTR_IUNLINK;
69       if (tmp & (VC_IMMUTABLE_FILE_FL|VC_IMMUTABLE_LINK_FL))
70         *flags |= VC_IATTR_IUNLINK;
71     }
72   }
73
74   if ( (old_mask&VC_IATTR_BARRIER) && S_ISDIR(st.st_mode)) {
75     *mask  |= VC_IATTR_BARRIER;
76     if ((st.st_mode&0777) == 0) *flags |= VC_IATTR_BARRIER;
77   }
78
79   if ( (old_mask&(VC_IATTR_WATCH|VC_IATTR_HIDE)) ){
80     long                tmp;
81     int         rc = vc_X_get_xflg(fd, &tmp);
82     if (rc!=-1) {
83       *mask |= (VC_IATTR_WATCH|VC_IATTR_HIDE);
84       if (tmp&1) *flags |= VC_IATTR_HIDE;
85       if (tmp&2) *flags |= VC_IATTR_WATCH;
86     }
87   }
88
89   close(fd);
90   return 0;
91   err:
92   {
93     int old_errno = errno;
94     close(fd);
95     errno = old_errno;
96     return -1;
97   } 
98 }