summaryrefslogtreecommitdiffstats
path: root/libglusterfs/src/glusterfs/iatt.h
blob: 339c84ccc4539050c94e17c160188ad26babf4c3 (plain)
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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
/*
  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

#if defined(GF_LINUX_HOST_OS)
#include <sys/sysmacros.h> /* for makedev(3), major(3), minor(3) */
#endif
#include <sys/types.h>
#include <sys/stat.h> /* for iatt <--> stat conversions */
#include <unistd.h>

#include "glusterfs/compat.h"
#include "glusterfs/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_flags;
    uint64_t ia_ino;     /* inode number */
    uint64_t ia_dev;     /* backing device ID */
    uint64_t ia_rdev;    /* device ID (if special file) */
    uint64_t ia_size;    /* file size in bytes */
    uint32_t ia_nlink;   /* Link count */
    uint32_t ia_uid;     /* user ID of owner */
    uint32_t ia_gid;     /* group ID of owner */
    uint32_t ia_blksize; /* blocksize for filesystem I/O */
    uint64_t ia_blocks;  /* number of 512B blocks allocated */
    int64_t ia_atime;    /* last access time */
    int64_t ia_mtime;    /* last modification time */
    int64_t ia_ctime;    /* last status change time */
    int64_t ia_btime;    /* creation time. Fill using statx */
    uint32_t ia_atime_nsec;
    uint32_t ia_mtime_nsec;
    uint32_t ia_ctime_nsec;
    uint32_t ia_btime_nsec;
    uint64_t ia_attributes;      /* chattr related:compressed, immutable,
                                  * append only, encrypted etc.*/
    uint64_t ia_attributes_mask; /* Mask for the attributes */

    uuid_t ia_gfid;
    ia_type_t ia_type; /* type of file */
    ia_prot_t ia_prot; /* protection */
};

struct old_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;
};

/* 64-bit mask for valid members in struct iatt. */
#define IATT_TYPE 0x0000000000000001U
#define IATT_MODE 0x0000000000000002U
#define IATT_NLINK 0x0000000000000004U
#define IATT_UID 0x0000000000000008U
#define IATT_GID 0x0000000000000010U
#define IATT_ATIME 0x0000000000000020U
#define IATT_MTIME 0x0000000000000040U
#define IATT_CTIME 0x0000000000000080U
#define IATT_INO 0x0000000000000100U
#define IATT_SIZE 0x0000000000000200U
#define IATT_BLOCKS 0x0000000000000400U
#define IATT_BTIME 0x0000000000000800U
#define IATT_GFID 0x0000000000001000U

/* Macros for checking validity of struct iatt members.*/
#define IATT_TYPE_VALID(iaflags) (iaflags & IATT_TYPE)
#define IATT_MODE_VALID(iaflags) (iaflags & IATT_MODE)
#define IATT_NLINK_VALID(iaflags) (iaflags & IATT_NLINK)
#define IATT_UID_VALID(iaflags) (iaflags & IATT_UID)
#define IATT_GID_VALID(iaflags) (iaflags & IATT_GID)
#define IATT_ATIME_VALID(iaflags) (iaflags & IATT_ATIME)
#define IATT_MTIME_VALID(iaflags) (iaflags & IATT_MTIME)
#define IATT_CTIME_VALID(iaflags) (iaflags & IATT_CTIME)
#define IATT_INO_VALID(iaflags) (iaflags & IATT_INO)
#define IATT_SIZE_VALID(iaflags) (iaflags & IATT_SIZE)
#define IATT_BLOCKS_VALID(iaflags) (iaflags & IATT_BLOCKS)
#define IATT_BTIME_VALID(iaflags) (iaflags & IATT_BTIME)
#define IATT_GFID_VALID(iaflags) (iaflags & IATT_GFID)

#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 uint32_t
st_mode_prot_from_ia(ia_prot_t prot)
{
    uint32_t prot_bit = 0;

    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;

    return prot_bit;
}

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;
    }

    prot_bit = st_mode_prot_from_ia(prot);

    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);

    /* Setting IATT_INO in ia_flags is done in posix_fill_ino_from_gfid. */
    iatt->ia_flags = iatt->ia_flags | IATT_TYPE | IATT_MODE | IATT_NLINK |
                     IATT_UID | IATT_GID | IATT_SIZE | IATT_BLOCKS |
                     IATT_ATIME | IATT_MTIME | IATT_CTIME;

    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;
}

static inline void
oldiatt_from_iatt(struct old_iatt *o_iatt, struct iatt *c_iatt)
{
    o_iatt->ia_dev = c_iatt->ia_dev;
    o_iatt->ia_ino = c_iatt->ia_ino;
    o_iatt->ia_type = c_iatt->ia_type;
    o_iatt->ia_prot = c_iatt->ia_prot;
    o_iatt->ia_nlink = c_iatt->ia_nlink;
    o_iatt->ia_uid = c_iatt->ia_uid;
    o_iatt->ia_gid = c_iatt->ia_gid;
    o_iatt->ia_rdev = c_iatt->ia_rdev;
    o_iatt->ia_size = c_iatt->ia_size;
    o_iatt->ia_blksize = c_iatt->ia_blksize;
    o_iatt->ia_blocks = c_iatt->ia_blocks;
    o_iatt->ia_atime = c_iatt->ia_atime;
    o_iatt->ia_atime_nsec = c_iatt->ia_atime_nsec;
    o_iatt->ia_mtime = c_iatt->ia_mtime;
    o_iatt->ia_mtime_nsec = c_iatt->ia_mtime_nsec;
    o_iatt->ia_ctime = c_iatt->ia_ctime;
    o_iatt->ia_ctime_nsec = c_iatt->ia_ctime_nsec;

    gf_uuid_copy(o_iatt->ia_gfid, c_iatt->ia_gfid);

    return;
}

static inline void
iatt_from_oldiatt(struct iatt *c_iatt, struct old_iatt *o_iatt)
{
    c_iatt->ia_dev = o_iatt->ia_dev;
    c_iatt->ia_ino = o_iatt->ia_ino;
    c_iatt->ia_type = o_iatt->ia_type;
    c_iatt->ia_prot = o_iatt->ia_prot;
    c_iatt->ia_nlink = o_iatt->ia_nlink;
    c_iatt->ia_uid = o_iatt->ia_uid;
    c_iatt->ia_gid = o_iatt->ia_gid;
    c_iatt->ia_rdev = o_iatt->ia_rdev;
    c_iatt->ia_size = o_iatt->ia_size;
    c_iatt->ia_blksize = o_iatt->ia_blksize;
    c_iatt->ia_blocks = o_iatt->ia_blocks;
    c_iatt->ia_atime = o_iatt->ia_atime;
    c_iatt->ia_atime_nsec = o_iatt->ia_atime_nsec;
    c_iatt->ia_mtime = o_iatt->ia_mtime;
    c_iatt->ia_mtime_nsec = o_iatt->ia_mtime_nsec;
    c_iatt->ia_ctime = o_iatt->ia_ctime;
    c_iatt->ia_ctime_nsec = o_iatt->ia_ctime_nsec;

    gf_uuid_copy(c_iatt->ia_gfid, o_iatt->ia_gfid);

    c_iatt->ia_attributes = 0;

    c_iatt->ia_flags = IATT_TYPE | IATT_MODE | IATT_NLINK | IATT_INO |
                       IATT_UID | IATT_GID | IATT_SIZE | IATT_BLOCKS |
                       IATT_ATIME | IATT_MTIME | IATT_CTIME | IATT_GFID;

    return;
}

static inline int
is_same_mode(ia_prot_t prot1, ia_prot_t prot2)
{
    int ret = 0;

    if (st_mode_prot_from_ia(prot1) != st_mode_prot_from_ia(prot2))
        ret = -1;

    return ret;
}

#endif /* _IATT_H */