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
|
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Various functions to work with meta entries.
*
* Copyright (C) 2007 David Härdeman <david@hardeman.nu>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; only version 2 of the License is applicable.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef METAENTRY_H
#define METAENTRY_H
#include <stdbool.h>
#include "settings.h"
/* Data structure to hold all metadata for a file/dir */
struct metaentry {
struct metaentry *next; /* For the metahash chains */
struct metaentry *list; /* For creating additional lists of entries */
char *path;
unsigned pathlen;
char *owner;
char *group;
mode_t mode;
time_t mtime;
long mtimensec;
unsigned xattrs;
char **xattr_names;
ssize_t *xattr_lvalues;
char **xattr_values;
};
#define HASH_INDEXES 1024
/* Data structure to hold a number of metadata entries */
struct metahash {
struct metaentry *bucket[HASH_INDEXES];
unsigned count;
};
/* Create a metaentry for the file/dir/etc at path */
struct metaentry *mentry_create(const char *path);
/* Recurses opath and adds metadata entries to the metaentry list */
void mentries_recurse_path(const char *opath, struct metahash **mhash,
msettings *st);
/* Stores a metaentry list to a file */
void mentries_tofile(const struct metahash *mhash, const char *path);
/* Creates a metaentry list from a file */
void mentries_fromfile(struct metahash **mhash, const char *path);
/* Searches haystack for an xattr matching xattr number n in needle */
int mentry_find_xattr(struct metaentry *haystack,
struct metaentry *needle,
unsigned n);
#define DIFF_NONE 0x00
#define DIFF_OWNER 0x01
#define DIFF_GROUP 0x02
#define DIFF_MODE 0x04
#define DIFF_TYPE 0x08
#define DIFF_MTIME 0x10
#define DIFF_XATTR 0x20
#define DIFF_ADDED 0x40
#define DIFF_DELE 0x80
/* Compares two metaentries and returns an int with a bitmask of differences */
int mentry_compare(struct metaentry *left,
struct metaentry *right,
msettings *st);
/* Compares lists of real and stored metadata and calls pfunc for each */
void mentries_compare(struct metahash *mhashreal,
struct metahash *mhashstored,
void (*pfunc)(struct metaentry *real,
struct metaentry *stored,
int cmp),
msettings *st);
void mentries_dump(struct metahash *mhash);
#endif /* METAENTRY_H */
|