summaryrefslogtreecommitdiffstats
path: root/arequal/arequal-checksum.c
blob: 8df7b024df1e882bc3ab5dd72b5e13bfb29ed79c (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
/*
  Copyright (c) 2006-2011 Gluster, Inc. <http://www.zresearch.com/>
  This file is part of GlusterFS.

  GlusterFS 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.

  GlusterFS 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/>.
*/


#define _XOPEN_SOURCE 600

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <ftw.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <dirent.h>
#include <stdlib.h>
#include <libgen.h>
#include <stdint.h>
#include <alloca.h>
#include <dirent.h>


int debug = 0;

#define DBG(fmt ...) do {			\
		if (debug) {			\
			fprintf (stderr, "D "); \
			fprintf (stderr, fmt);	\
		}				\
	} while (0)


static inline int roof(int a, int b)
{
	return ((((a)+(b)-1)/((b)?(b):1))*(b));
}


/* All this runs in single thread, hence using 'global' variables */

unsigned long long     avg_uid_file    = 0;
unsigned long long     avg_uid_dir     = 0;
unsigned long long     avg_uid_symlink = 0;
unsigned long long     avg_uid_other   = 0;

unsigned long long     avg_gid_file    = 0;
unsigned long long     avg_gid_dir     = 0;
unsigned long long     avg_gid_symlink = 0;
unsigned long long     avg_gid_other   = 0;

unsigned long long     avg_mode_file    = 0;
unsigned long long     avg_mode_dir     = 0;
unsigned long long     avg_mode_symlink = 0;
unsigned long long     avg_mode_other   = 0;

unsigned long long global_ctime_checksum = 0;


unsigned long long      count_dir        = 0;
unsigned long long      count_file       = 0;
unsigned long long      count_symlink    = 0;
unsigned long long      count_other      = 0;


unsigned long long      checksum_file1   = 0;
unsigned long long      checksum_file2   = 0;
unsigned long long      checksum_dir     = 0;
unsigned long long      checksum_symlink = 0;
unsigned long long      checksum_other   = 0;


unsigned long long
checksum_path (const char *path)
{
	unsigned long long   csum = 0;
	unsigned long long  *nums = 0;
	int                  len = 0;
	int                  cnt = 0;

	len = roof (strlen (path), sizeof (csum));
	cnt = len / sizeof (csum);

	nums = alloca (len);
	memset (nums, 0, len);
	strcpy ((char *)nums, path);

	while (cnt) {
		csum ^= *nums;
		nums++;
		cnt--;
	}

	return csum;
}


int
checksum_md5 (const char *path, const struct stat *sb)
{
        uint64_t    this_data_checksum = 0;
	FILE       *filep              = NULL;
	char        *cmd               = NULL;
	char        strvalue[17]       = {0,};
	int         ret                = -1;
	int         len                = 0;
	const char  *pos               = NULL;
	char        *cpos              = NULL;
	
	/* Have to escape single-quotes in filename.
	 * First, calculate the size of the buffer I'll need.
	 */
	for (pos = path; *pos; pos++) {
		if ( *pos == '\'' )
			len += 4;
		else
			len += 1;
	}
	
	cmd = malloc(sizeof(char) * (len + 20));
	cmd[0] = '\0';
	
	/* Now, build the command with single quotes escaped. */
	
	cpos = cmd;
	strcpy(cpos, "md5sum '");
	cpos += 8;
	
	/* Add the file path, with every single quotes replaced with this sequence:
	 * '\''
	 */
	 
	for (pos = path; *pos; pos++) {
		if ( *pos == '\'' ) {
			strcpy(cpos, "'\\''");
			cpos += 4;
		} else {
			*cpos = *pos;
			cpos++;
		}
	}
	
	/* Add on the trailing single-quote and null-terminate. */
	strcpy(cpos, "'");
	
        filep = popen (cmd, "r");
        if (!filep) {
		perror (path);
		goto out;
        }

        if (fread (strvalue, sizeof (char), 16, filep) != 16) {
		fprintf (stderr, "%s: short read\n", path);
		goto out;
	}

        this_data_checksum = strtoull (strvalue, NULL, 16);
        if (-1 == this_data_checksum) {
                fprintf (stderr, "%s: %s\n", strvalue, strerror (errno));
		goto out;
        }
        checksum_file1 ^= this_data_checksum;

        if (fread (strvalue, sizeof (char), 16, filep) != 16) {
		fprintf (stderr, "%s: short read\n", path);
		goto out;
	}

        this_data_checksum = strtoull (strvalue, NULL, 16);
        if (-1 == this_data_checksum) {
                fprintf (stderr, "%s: %s\n", strvalue, strerror (errno));
		goto out;
        }
        checksum_file2 ^= this_data_checksum;

	ret = 0;
out:
	if (filep)
		pclose (filep);
	
	if (cmd)
		free(cmd);

        return ret;
}


int
checksum_filenames (const char *path, const struct stat *sb)
{
	DIR                *dirp = NULL;
	struct dirent      *entry = NULL;
	unsigned long long  csum = 0;

	dirp = opendir (path);
	if (!dirp) {
		perror (path);
		goto out;
	}

	errno = 0;
	while ((entry = readdir (dirp))) {
		csum = checksum_path (entry->d_name);
		checksum_dir ^= csum;
	}

	if (errno) {
		perror (path);
		goto out;
	}

out:
	if (dirp)
		closedir (dirp);

	return 0;
}


int
process_file (const char *path, const struct stat *sb)
{
	int    ret = 0;

	count_file++;

	avg_uid_file ^= sb->st_uid;
	avg_gid_file ^= sb->st_gid;
	avg_mode_file ^= sb->st_mode;

	ret = checksum_md5 (path, sb);

	return ret;
}


int
process_dir (const char *path, const struct stat *sb)
{
	unsigned long long csum = 0;

	count_dir++;

	avg_uid_dir ^= sb->st_uid;
	avg_gid_dir ^= sb->st_gid;
	avg_mode_dir ^= sb->st_mode;

	csum = checksum_filenames (path, sb);

	checksum_dir ^= csum;

	return 0;
}


int
process_symlink (const char *path, const struct stat *sb)
{
	int                ret = 0;
	char               buf[4096] = {0, };
	unsigned long long csum = 0;

	count_symlink++;

	avg_uid_symlink ^= sb->st_uid;
	avg_gid_symlink ^= sb->st_gid;
	avg_mode_symlink ^= sb->st_mode;

	ret = readlink (path, buf, 4096);
	if (ret < 0) {
		perror (path);
		goto out;
	}

	DBG ("readlink (%s) => %s\n", path, buf);

	csum = checksum_path (buf);

	DBG ("checksum_path (%s) => %llx\n", buf, csum);

	checksum_symlink ^= csum;

	ret = 0;
out:
	return ret;
}


int
process_other (const char *path, const struct stat *sb)
{
	count_other++;

	avg_uid_other ^= sb->st_uid;
	avg_gid_other ^= sb->st_gid;
	avg_mode_other ^= sb->st_mode;

	checksum_other ^= sb->st_rdev;

	return 0;
}


int
process_entry (const char *path, const struct stat *sb,
	       int typeflag, struct FTW *ftwbuf)
{
	int ret = 0;

	DBG ("processing entry %s\n", path);

	switch ((S_IFMT & sb->st_mode)) {
	case S_IFDIR:
		ret = process_dir (path, sb);
		break;
	case S_IFREG:
		ret = process_file (path, sb);
		break;
	case S_IFLNK:
		ret = process_symlink (path, sb);
		break;
	default:
		ret = process_other (path, sb);
		break;
	}

        return ret;
}


int
display_counts (FILE *fp)
{
	fprintf (fp, "\n");
	fprintf (fp, "Entry counts\n");
	fprintf (fp, "Regular files   : %lld\n", count_file);
	fprintf (fp, "Directories     : %lld\n", count_dir);
	fprintf (fp, "Symbolic links  : %lld\n", count_symlink);
	fprintf (fp, "Other           : %lld\n", count_other);
	fprintf (fp, "Total           : %lld\n",
		 (count_file + count_dir + count_symlink + count_other));

	return 0;
}


int
display_checksums (FILE *fp)
{
	fprintf (fp, "\n");
	fprintf (fp, "Checksums\n");
	fprintf (fp, "Regular files   : %llx%llx\n", checksum_file1, checksum_file2);
	fprintf (fp, "Directories     : %llx\n", checksum_dir);
	fprintf (fp, "Symbolic links  : %llx\n", checksum_symlink);
	fprintf (fp, "Other           : %llx\n", checksum_other);
	fprintf (fp, "Total           : %llx\n",
		 (checksum_file1 ^ checksum_file2 ^ checksum_dir ^ checksum_symlink ^ checksum_other));

	return 0;
}


int
display_metadata (FILE *fp)
{
	fprintf (fp, "\n");
	fprintf (fp, "Metadata checksums\n");
	fprintf (fp, "Regular files   : %llx\n",
		 (avg_uid_file + 13) * (avg_gid_file + 11) * (avg_mode_file + 7));
	fprintf (fp, "Directories     : %llx\n",
		 (avg_uid_dir + 13) * (avg_gid_dir + 11) * (avg_mode_dir + 7));
	fprintf (fp, "Symbolic links  : %llx\n",
		 (avg_uid_symlink + 13) * (avg_gid_symlink + 11) * (avg_mode_symlink + 7));
	fprintf (fp, "Other           : %llx\n",
		 (avg_uid_other + 13) * (avg_gid_other + 11) * (avg_mode_other + 7));

	return 0;
}

int
display_stats (FILE *fp)
{
	display_counts (fp);

	display_metadata (fp);

	display_checksums (fp);

	return 0;
}


int
main(int argc, char *argv[])
{
	int  ret = 0;

	if (argc != 2)  {
		fprintf (stderr, "Usage: %s <directory>\n",
                         argv[0]);
		return -1;
	}

	ret = nftw (argv[1], process_entry, 30, FTW_PHYS|FTW_MOUNT);
	if (ret != 0) {
		fprintf (stderr, "ftw (%s) returned %d (%s), terminating\n",
			 argv[1], ret, strerror (errno));
		return 1;
	}

	display_stats (stdout);

	return 0;
}