common.h
5.34 KB
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
/*
clsync - file tree sync utility based on inotify
Copyright (C) 2013 Dmitry Yu Okunev <dyokunev@ut.mephi.ru> 0x8E30679C
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, either version 3 of the License, or
(at your option) any later version.
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 __CLSYNC_COMMON_H
#define __CLSYNC_COMMON_H
#ifndef __linux__
# ifdef HAVE_CAPABILITIES
# undef HAVE_CAPABILITIES
# warning Capabilities support can be built only on Linux
# endif
#endif
#define _GNU_SOURCE
//#define _XOPEN_SOURCE 700
#define _LARGEFILE64_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <strings.h>
#include <unistd.h>
#include <getopt.h>
#include <limits.h>
#include <stdarg.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <errno.h>
#include <ctype.h>
#include <signal.h>
#ifdef KQUEUE_SUPPORT
# include <sys/event.h>
#endif
#ifdef INOTIFY_SUPPORT
# include <sys/inotify.h>
#endif
#ifdef FANOTIFY_SUPPORT
# include <sys/fanotify.h>
#endif
#include <sys/wait.h>
#include <fts.h>
#include <sys/time.h>
#include <dirent.h>
#include <sys/utsname.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <libgen.h>
#include <pthread.h>
#include "configuration.h"
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "clsync.h"
#include "port-hacks.h"
#include "posix-hacks.h"
#include "ctx.h"
#include "program.h"
#include <sys/param.h>
#ifndef IN_CREATE_SELF
# define IN_CREATE_SELF IN_CREATE
#endif
#ifdef _DEBUG
# define DEBUGV(...) __VA_ARGS__
#else
# define DEBUGV(...)
#endif
#ifdef PARANOID
# define PARANOIDV(...) __VA_ARGS__
#else
# define PARANOIDV(...)
#endif
#ifdef _GNU_SOURCE
# ifndef likely
# define likely(x) __builtin_expect(!!(x), 1)
# endif
# ifndef unlikely
# define unlikely(x) __builtin_expect(!!(x), 0)
# endif
#else
# ifndef likely
# define likely(x) (x)
# endif
# ifndef unlikely
# define unlikely(x) (x)
# endif
#endif
#ifndef offsetof
# define offsetof(a, b) __builtin_offsetof(a, b)
#endif
// clang defines "__GNUC__", but not compatible with gnuc. Fixing.
#ifdef __clang__
# ifdef __GNUC__
# undef __GNUC__
# endif
#endif
#define TOSTR(a) # a
#define XTOSTR(a) TOSTR(a)
#define COLLECTDELAY_INSTANT ((unsigned int)~0)
#define MSG_SECURITY_PROBLEM(a) "Security problem: "a". Don't use this application until the bug will be fixed. Report about the problem to: "AUTHOR
#define require_strlen_le(str, limit) \
if (strlen(str) >= limit)\
critical("length of "TOSTR(str)" (\"%s\") >= "TOSTR(limit));\
#define SAFE(code, onfail) ({\
long _SAFE_rc;\
if ((_SAFE_rc = code)) {\
error("Got error while "TOSTR(code));\
onfail;\
} \
_SAFE_rc;\
})
enum paramsource_enum {
PS_UNKNOWN = 0,
PS_ARGUMENT,
PS_CONFIG,
PS_CONTROL,
PS_DEFAULTS,
};
typedef enum paramsource_enum paramsource_t;
enum notifyengine_enum {
NE_UNDEFINED = 0,
NE_FANOTIFY,
NE_INOTIFY,
NE_KQUEUE,
NE_BSM,
NE_BSM_PREFETCH,
NE_DTRACEPIPE,
NE_GIO,
};
typedef enum notifyengine_enum notifyengine_t;
enum threadingmode {
PM_OFF = 0,
PM_SAFE,
PM_FULL
};
typedef enum threadingmode threadingmode_t;
enum splittingmode_enum {
SM_OFF = 0,
SM_THREAD,
SM_PROCESS,
};
typedef enum splittingmode_enum splittingmode_t;
/*
struct excludeinfo {
unsigned int seqid_min;
unsigned int seqid_max;
eventobjtype_t objtype_old;
eventobjtype_t objtype_new;
uint32_t flags;
};
typedef struct eventinfo eventinfo_t;
*/
struct eventinfo {
uint32_t evmask;
unsigned int seqid_min;
unsigned int seqid_max;
eventobjtype_t objtype_old;
eventobjtype_t objtype_new;
int wd;
size_t fsize;
uint32_t flags;
};
typedef struct eventinfo eventinfo_t;
enum pthread_mutex_id {
PTHREAD_MUTEX_STATE,
PTHREAD_MUTEX_SELECT,
PTHREAD_MUTEX_THREADSINFO,
PTHREAD_MUTEX_MAX
};
struct dosync_arg {
int evcount;
char excf_path[PATH_MAX+1];
char outf_path[PATH_MAX+1];
FILE *outf;
ctx_t *ctx_p;
struct indexes *indexes_p;
void *data;
int linescount;
api_eventinfo_t *api_ei;
int api_ei_count;
char buf[BUFSIZ+1];
// for be read by sync_parameter_get():
const char *include_list[MAXARGUMENTS+2];
size_t include_list_count;
const char *list_type_str;
const char *evmask_str;
};
struct doubleentry {
size_t size0;
size_t size1;
size_t alloc0;
size_t alloc1;
void *dat0;
void *dat1;
};
struct pushdoubleentry_arg {
int allocated;
int total;
size_t size;
struct doubleentry *entry;
};
struct myentry {
size_t size;
size_t alloc;
void *dat;
};
struct pushentry_arg {
int allocated;
int total;
size_t size;
struct myentry *entry;
};
enum initsync {
INITSYNC_UNKNOWN = 0,
INITSYNC_FULL,
INITSYNC_SUBDIR
};
typedef enum initsync initsync_t;
struct sighandler_arg {
ctx_t *ctx_p;
// indexes_t *indexes_p;
pthread_t pthread_parent;
int *exitcode_p;
sigset_t *sigset_p;
};
typedef struct sighandler_arg sighandler_arg_t;
#endif