/usr/include/glusterfs/iatt.h is in glusterfs-common 3.7.6-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 | /*
Copyright (c) 2008-2012 Red Hat, Inc. <http://www.redhat.com>
This file is part of GlusterFS.
This file is licensed to you under your choice of the GNU Lesser
General Public License, version 3 or any later version (LGPLv3 or
later), or the GNU General Public License, version 2 (GPLv2), in all
cases as published by the Free Software Foundation.
*/
#ifndef _IATT_H
#define _IATT_H
#ifndef _CONFIG_H
#define _CONFIG_H
#include "config.h"
#endif
#include <sys/types.h>
#include <sys/stat.h> /* for iatt <--> stat conversions */
#include <unistd.h>
#include "compat.h"
#include "compat-uuid.h"
typedef enum {
IA_INVAL = 0,
IA_IFREG,
IA_IFDIR,
IA_IFLNK,
IA_IFBLK,
IA_IFCHR,
IA_IFIFO,
IA_IFSOCK
} ia_type_t;
typedef struct {
uint8_t suid:1;
uint8_t sgid:1;
uint8_t sticky:1;
struct {
uint8_t read:1;
uint8_t write:1;
uint8_t exec:1;
} owner, group, other;
} ia_prot_t;
struct iatt {
uint64_t ia_ino; /* inode number */
uuid_t ia_gfid;
uint64_t ia_dev; /* backing device ID */
ia_type_t ia_type; /* type of file */
ia_prot_t ia_prot; /* protection */
uint32_t ia_nlink; /* Link count */
uint32_t ia_uid; /* user ID of owner */
uint32_t ia_gid; /* group ID of owner */
uint64_t ia_rdev; /* device ID (if special file) */
uint64_t ia_size; /* file size in bytes */
uint32_t ia_blksize; /* blocksize for filesystem I/O */
uint64_t ia_blocks; /* number of 512B blocks allocated */
uint32_t ia_atime; /* last access time */
uint32_t ia_atime_nsec;
uint32_t ia_mtime; /* last modification time */
uint32_t ia_mtime_nsec;
uint32_t ia_ctime; /* last status change time */
uint32_t ia_ctime_nsec;
};
#define IA_ISREG(t) (t == IA_IFREG)
#define IA_ISDIR(t) (t == IA_IFDIR)
#define IA_ISLNK(t) (t == IA_IFLNK)
#define IA_ISBLK(t) (t == IA_IFBLK)
#define IA_ISCHR(t) (t == IA_IFCHR)
#define IA_ISFIFO(t) (t == IA_IFIFO)
#define IA_ISSOCK(t) (t == IA_IFSOCK)
#define IA_ISINVAL(t) (t == IA_INVAL)
#define IA_PROT_RUSR(prot) ((prot).owner.read == 1)
#define IA_PROT_WUSR(prot) ((prot).owner.write == 1)
#define IA_PROT_XUSR(prot) ((prot).owner.exec == 1)
#define IA_PROT_RGRP(prot) ((prot).group.read == 1)
#define IA_PROT_WGRP(prot) ((prot).group.write == 1)
#define IA_PROT_XGRP(prot) ((prot).group.exec == 1)
#define IA_PROT_ROTH(prot) ((prot).other.read == 1)
#define IA_PROT_WOTH(prot) ((prot).other.write == 1)
#define IA_PROT_XOTH(prot) ((prot).other.exec == 1)
#define IA_PROT_SUID(prot) ((prot).suid == 1)
#define IA_PROT_SGID(prot) ((prot).sgid == 1)
#define IA_PROT_STCKY(prot) ((prot).sticky == 1)
#define IA_FILE_OR_DIR(t) (IA_ISREG(t) || IA_ISDIR(t))
static inline uint32_t
ia_major (uint64_t ia_dev)
{
return (uint32_t) (ia_dev >> 32);
}
static inline uint32_t
ia_minor (uint64_t ia_dev)
{
return (uint32_t) (ia_dev & 0xffffffff);
}
static inline uint64_t
ia_makedev (uint32_t ia_maj, uint32_t ia_min)
{
return ((((uint64_t) ia_maj) << 32) | ia_min);
}
static inline ia_prot_t
ia_prot_from_st_mode (mode_t mode)
{
ia_prot_t ia_prot = {0, };
if (mode & S_ISUID)
ia_prot.suid = 1;
if (mode & S_ISGID)
ia_prot.sgid = 1;
if (mode & S_ISVTX)
ia_prot.sticky = 1;
if (mode & S_IRUSR)
ia_prot.owner.read = 1;
if (mode & S_IWUSR)
ia_prot.owner.write = 1;
if (mode & S_IXUSR)
ia_prot.owner.exec = 1;
if (mode & S_IRGRP)
ia_prot.group.read = 1;
if (mode & S_IWGRP)
ia_prot.group.write = 1;
if (mode & S_IXGRP)
ia_prot.group.exec = 1;
if (mode & S_IROTH)
ia_prot.other.read = 1;
if (mode & S_IWOTH)
ia_prot.other.write = 1;
if (mode & S_IXOTH)
ia_prot.other.exec = 1;
return ia_prot;
}
static inline ia_type_t
ia_type_from_st_mode (mode_t mode)
{
ia_type_t type = IA_INVAL;
if (S_ISREG (mode))
type = IA_IFREG;
if (S_ISDIR (mode))
type = IA_IFDIR;
if (S_ISLNK (mode))
type = IA_IFLNK;
if (S_ISBLK (mode))
type = IA_IFBLK;
if (S_ISCHR (mode))
type = IA_IFCHR;
if (S_ISFIFO (mode))
type = IA_IFIFO;
if (S_ISSOCK (mode))
type = IA_IFSOCK;
return type;
}
static inline mode_t
st_mode_from_ia (ia_prot_t prot, ia_type_t type)
{
mode_t st_mode = 0;
uint32_t type_bit = 0;
uint32_t prot_bit = 0;
switch (type) {
case IA_IFREG:
type_bit = S_IFREG;
break;
case IA_IFDIR:
type_bit = S_IFDIR;
break;
case IA_IFLNK:
type_bit = S_IFLNK;
break;
case IA_IFBLK:
type_bit = S_IFBLK;
break;
case IA_IFCHR:
type_bit = S_IFCHR;
break;
case IA_IFIFO:
type_bit = S_IFIFO;
break;
case IA_IFSOCK:
type_bit = S_IFSOCK;
break;
case IA_INVAL:
break;
}
if (prot.suid)
prot_bit |= S_ISUID;
if (prot.sgid)
prot_bit |= S_ISGID;
if (prot.sticky)
prot_bit |= S_ISVTX;
if (prot.owner.read)
prot_bit |= S_IRUSR;
if (prot.owner.write)
prot_bit |= S_IWUSR;
if (prot.owner.exec)
prot_bit |= S_IXUSR;
if (prot.group.read)
prot_bit |= S_IRGRP;
if (prot.group.write)
prot_bit |= S_IWGRP;
if (prot.group.exec)
prot_bit |= S_IXGRP;
if (prot.other.read)
prot_bit |= S_IROTH;
if (prot.other.write)
prot_bit |= S_IWOTH;
if (prot.other.exec)
prot_bit |= S_IXOTH;
st_mode = (type_bit | prot_bit);
return st_mode;
}
static inline int
iatt_from_stat (struct iatt *iatt, struct stat *stat)
{
iatt->ia_dev = stat->st_dev;
iatt->ia_ino = stat->st_ino;
iatt->ia_type = ia_type_from_st_mode (stat->st_mode);
iatt->ia_prot = ia_prot_from_st_mode (stat->st_mode);
iatt->ia_nlink = stat->st_nlink;
iatt->ia_uid = stat->st_uid;
iatt->ia_gid = stat->st_gid;
iatt->ia_rdev = ia_makedev (major (stat->st_rdev),
minor (stat->st_rdev));
iatt->ia_size = stat->st_size;
iatt->ia_blksize = stat->st_blksize;
iatt->ia_blocks = stat->st_blocks;
/* There is a possibility that the backend FS (like XFS) can
allocate blocks beyond EOF for better performance reasons, which
results in 'st_blocks' with higher values than what is consumed by
the file descriptor. This would break few logic inside GlusterFS,
like quota behavior etc, thus we need the exact number of blocks
which are consumed by the file to the higher layers inside GlusterFS.
Currently, this logic won't work for sparse files (ie, file with
holes)
*/
{
uint64_t maxblocks;
maxblocks = (iatt->ia_size + 511) / 512;
if (iatt->ia_blocks > maxblocks)
iatt->ia_blocks = maxblocks;
}
iatt->ia_atime = stat->st_atime;
iatt->ia_atime_nsec = ST_ATIM_NSEC (stat);
iatt->ia_mtime = stat->st_mtime;
iatt->ia_mtime_nsec = ST_MTIM_NSEC (stat);
iatt->ia_ctime = stat->st_ctime;
iatt->ia_ctime_nsec = ST_CTIM_NSEC (stat);
return 0;
}
static inline int
iatt_to_stat (struct iatt *iatt, struct stat *stat)
{
stat->st_dev = iatt->ia_dev;
stat->st_ino = iatt->ia_ino;
stat->st_mode = st_mode_from_ia (iatt->ia_prot, iatt->ia_type);
stat->st_nlink = iatt->ia_nlink;
stat->st_uid = iatt->ia_uid;
stat->st_gid = iatt->ia_gid;
stat->st_rdev = makedev (ia_major (iatt->ia_rdev),
ia_minor (iatt->ia_rdev));
stat->st_size = iatt->ia_size;
stat->st_blksize = iatt->ia_blksize;
stat->st_blocks = iatt->ia_blocks;
stat->st_atime = iatt->ia_atime;
ST_ATIM_NSEC_SET (stat, iatt->ia_atime_nsec);
stat->st_mtime = iatt->ia_mtime;
ST_MTIM_NSEC_SET (stat, iatt->ia_mtime_nsec);
stat->st_ctime = iatt->ia_ctime;
ST_CTIM_NSEC_SET (stat, iatt->ia_ctime_nsec);
return 0;
}
#endif /* _IATT_H */
|