merge with 0.30.213
[util-vserver.git] / lib / syscall_getiattr-fscompat.hc
1 // $Id: syscall_getiattr-fscompat.hc 2151 2005-07-15 18:06:27Z ensc $    --*- 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 #include <fcntl.h>
28 static inline ALWAYSINLINE int
29 vc_get_iattr_fscompat(char const *filename,
30                       xid_t    * /*@null@*/ xid,
31                       uint32_t * /*@null@*/ flags,
32                       uint32_t * mask)
33 {
34   struct stat           st;
35   int                   stat_rc;
36   int                   fd;
37   int                   old_mask = *mask;
38
39   *mask = 0;
40
41   if (lstat(filename, &st)==-1) return -1;
42   if (!S_ISREG(st.st_mode) && !S_ISDIR(st.st_mode)) return 0;
43
44   fd = open(filename, O_RDONLY|O_NONBLOCK);
45   if (fd==-1) return -1;
46
47   stat_rc = fstat(fd, &st);
48   if (stat_rc==-1) goto err;
49
50   if ( old_mask&VC_IATTR_XID ) {
51     *xid = vc_X_get_filecontext(fd);
52     if (*xid!=VC_NOCTX) *mask |= VC_IATTR_XID;
53   }
54
55   if ( old_mask&VC_IATTR_IUNLINK ) {
56     long                tmp;
57     int         rc = vc_X_get_ext2flags(fd, &tmp);
58
59     if (rc!=-1) {
60       *mask |= VC_IATTR_IUNLINK;
61       if (tmp & (VC_IMMUTABLE_FILE_FL|VC_IMMUTABLE_LINK_FL))
62         *flags |= VC_IATTR_IUNLINK;
63     }
64   }
65
66   if ( (old_mask&VC_IATTR_BARRIER) && S_ISDIR(st.st_mode)) {
67     long                ext2_flags;
68     
69     *mask  |= VC_IATTR_BARRIER;
70     if ((st.st_mode&0777)==0 &&
71         vc_X_get_ext2flags(fd, &ext2_flags)!=-1 &&
72         (ext2_flags & VC_IMMUTABLE_LINK_FL))
73       *flags |= VC_IATTR_BARRIER;
74   }
75
76   if ( (old_mask&(VC_IATTR_WATCH|VC_IATTR_HIDE)) ){
77     long                tmp;
78     int         rc = vc_X_get_xflg(fd, &tmp);
79     if (rc!=-1) {
80       *mask |= (VC_IATTR_WATCH|VC_IATTR_HIDE);
81       if (tmp&1) *flags |= VC_IATTR_HIDE;
82       if (tmp&2) *flags |= VC_IATTR_WATCH;
83     }
84   }
85
86   close(fd);
87   return 0;
88   err:
89   {
90     int old_errno = errno;
91     close(fd);
92     errno = old_errno;
93     return -1;
94   } 
95 }