]> arthur.barton.de Git - bup.git/blob - lib/bup/_helpers.c
Always publish utimensat in helpers when available and fix type conversions.
[bup.git] / lib / bup / _helpers.c
1 #define _LARGEFILE64_SOURCE 1
2 #define PY_SSIZE_T_CLEAN 1
3 #undef NDEBUG
4 #include "../../config/config.h"
5
6 // According to Python, its header has to go first:
7 //   http://docs.python.org/2/c-api/intro.html#include-files
8 #include <Python.h>
9
10 #include <assert.h>
11 #include <errno.h>
12 #include <fcntl.h>
13 #include <arpa/inet.h>
14 #include <stdint.h>
15 #include <stdlib.h>
16 #include <stdio.h>
17 #include <sys/mman.h>
18
19 #ifdef HAVE_SYS_TYPES_H
20 #include <sys/types.h>
21 #endif
22 #ifdef HAVE_SYS_STAT_H
23 #include <sys/stat.h>
24 #endif
25 #ifdef HAVE_UNISTD_H
26 #include <unistd.h>
27 #endif
28
29 #ifdef HAVE_LINUX_FS_H
30 #include <linux/fs.h>
31 #endif
32 #ifdef HAVE_SYS_IOCTL_H
33 #include <sys/ioctl.h>
34 #endif
35
36 #include "bupsplit.h"
37
38 #if defined(FS_IOC_GETFLAGS) && defined(FS_IOC_SETFLAGS)
39 #define BUP_HAVE_FILE_ATTRS 1
40 #endif
41
42 #ifndef FS_NOCOW_FL
43 // Of course, this assumes it's a bitfield value.
44 #define FS_NOCOW_FL 0
45 #endif
46
47 static int istty2 = 0;
48
49 // Probably we should use autoconf or something and set HAVE_PY_GETARGCARGV...
50 #if __WIN32__ || __CYGWIN__
51
52 // There's no 'ps' on win32 anyway, and Py_GetArgcArgv() isn't available.
53 static void unpythonize_argv(void) { }
54
55 #else // not __WIN32__
56
57 // For some reason this isn't declared in Python.h
58 extern void Py_GetArgcArgv(int *argc, char ***argv);
59
60 static void unpythonize_argv(void)
61 {
62     int argc, i;
63     char **argv, *arge;
64     
65     Py_GetArgcArgv(&argc, &argv);
66     
67     for (i = 0; i < argc-1; i++)
68     {
69         if (argv[i] + strlen(argv[i]) + 1 != argv[i+1])
70         {
71             // The argv block doesn't work the way we expected; it's unsafe
72             // to mess with it.
73             return;
74         }
75     }
76     
77     arge = argv[argc-1] + strlen(argv[argc-1]) + 1;
78     
79     if (strstr(argv[0], "python") && argv[1] == argv[0] + strlen(argv[0]) + 1)
80     {
81         char *p;
82         size_t len, diff;
83         p = strrchr(argv[1], '/');
84         if (p)
85         {
86             p++;
87             diff = p - argv[0];
88             len = arge - p;
89             memmove(argv[0], p, len);
90             memset(arge - diff, 0, diff);
91             for (i = 0; i < argc; i++)
92                 argv[i] = argv[i+1] ? argv[i+1]-diff : NULL;
93         }
94     }
95 }
96
97 #endif // not __WIN32__ or __CYGWIN__
98
99
100 static PyObject *selftest(PyObject *self, PyObject *args)
101 {
102     if (!PyArg_ParseTuple(args, ""))
103         return NULL;
104     
105     return Py_BuildValue("i", !bupsplit_selftest());
106 }
107
108
109 static PyObject *blobbits(PyObject *self, PyObject *args)
110 {
111     if (!PyArg_ParseTuple(args, ""))
112         return NULL;
113     return Py_BuildValue("i", BUP_BLOBBITS);
114 }
115
116
117 static PyObject *splitbuf(PyObject *self, PyObject *args)
118 {
119     unsigned char *buf = NULL;
120     Py_ssize_t len = 0;
121     int out = 0, bits = -1;
122
123     if (!PyArg_ParseTuple(args, "t#", &buf, &len))
124         return NULL;
125     assert(len <= INT_MAX);
126     out = bupsplit_find_ofs(buf, len, &bits);
127     if (out) assert(bits >= BUP_BLOBBITS);
128     return Py_BuildValue("ii", out, bits);
129 }
130
131
132 static PyObject *bitmatch(PyObject *self, PyObject *args)
133 {
134     unsigned char *buf1 = NULL, *buf2 = NULL;
135     Py_ssize_t len1 = 0, len2 = 0;
136     Py_ssize_t byte;
137     int bit;
138
139     if (!PyArg_ParseTuple(args, "t#t#", &buf1, &len1, &buf2, &len2))
140         return NULL;
141     
142     bit = 0;
143     for (byte = 0; byte < len1 && byte < len2; byte++)
144     {
145         int b1 = buf1[byte], b2 = buf2[byte];
146         if (b1 != b2)
147         {
148             for (bit = 0; bit < 8; bit++)
149                 if ( (b1 & (0x80 >> bit)) != (b2 & (0x80 >> bit)) )
150                     break;
151             break;
152         }
153     }
154     
155     assert(byte <= (INT_MAX >> 3));
156     return Py_BuildValue("i", byte*8 + bit);
157 }
158
159
160 static PyObject *firstword(PyObject *self, PyObject *args)
161 {
162     unsigned char *buf = NULL;
163     Py_ssize_t len = 0;
164     uint32_t v;
165
166     if (!PyArg_ParseTuple(args, "t#", &buf, &len))
167         return NULL;
168     
169     if (len < 4)
170         return NULL;
171     
172     v = ntohl(*(uint32_t *)buf);
173     return PyLong_FromUnsignedLong(v);
174 }
175
176
177 #define BLOOM2_HEADERLEN 16
178
179 static void to_bloom_address_bitmask4(const unsigned char *buf,
180         const int nbits, uint64_t *v, unsigned char *bitmask)
181 {
182     int bit;
183     uint32_t high;
184     uint64_t raw, mask;
185
186     memcpy(&high, buf, 4);
187     mask = (1<<nbits) - 1;
188     raw = (((uint64_t)ntohl(high) << 8) | buf[4]);
189     bit = (raw >> (37-nbits)) & 0x7;
190     *v = (raw >> (40-nbits)) & mask;
191     *bitmask = 1 << bit;
192 }
193
194 static void to_bloom_address_bitmask5(const unsigned char *buf,
195         const int nbits, uint32_t *v, unsigned char *bitmask)
196 {
197     int bit;
198     uint32_t high;
199     uint32_t raw, mask;
200
201     memcpy(&high, buf, 4);
202     mask = (1<<nbits) - 1;
203     raw = ntohl(high);
204     bit = (raw >> (29-nbits)) & 0x7;
205     *v = (raw >> (32-nbits)) & mask;
206     *bitmask = 1 << bit;
207 }
208
209 #define BLOOM_SET_BIT(name, address, otype) \
210 static void name(unsigned char *bloom, const unsigned char *buf, const int nbits)\
211 {\
212     unsigned char bitmask;\
213     otype v;\
214     address(buf, nbits, &v, &bitmask);\
215     bloom[BLOOM2_HEADERLEN+v] |= bitmask;\
216 }
217 BLOOM_SET_BIT(bloom_set_bit4, to_bloom_address_bitmask4, uint64_t)
218 BLOOM_SET_BIT(bloom_set_bit5, to_bloom_address_bitmask5, uint32_t)
219
220
221 #define BLOOM_GET_BIT(name, address, otype) \
222 static int name(const unsigned char *bloom, const unsigned char *buf, const int nbits)\
223 {\
224     unsigned char bitmask;\
225     otype v;\
226     address(buf, nbits, &v, &bitmask);\
227     return bloom[BLOOM2_HEADERLEN+v] & bitmask;\
228 }
229 BLOOM_GET_BIT(bloom_get_bit4, to_bloom_address_bitmask4, uint64_t)
230 BLOOM_GET_BIT(bloom_get_bit5, to_bloom_address_bitmask5, uint32_t)
231
232
233 static PyObject *bloom_add(PyObject *self, PyObject *args)
234 {
235     unsigned char *sha = NULL, *bloom = NULL;
236     unsigned char *end;
237     Py_ssize_t len = 0, blen = 0;
238     int nbits = 0, k = 0;
239
240     if (!PyArg_ParseTuple(args, "w#s#ii", &bloom, &blen, &sha, &len, &nbits, &k))
241         return NULL;
242
243     if (blen < 16+(1<<nbits) || len % 20 != 0)
244         return NULL;
245
246     if (k == 5)
247     {
248         if (nbits > 29)
249             return NULL;
250         for (end = sha + len; sha < end; sha += 20/k)
251             bloom_set_bit5(bloom, sha, nbits);
252     }
253     else if (k == 4)
254     {
255         if (nbits > 37)
256             return NULL;
257         for (end = sha + len; sha < end; sha += 20/k)
258             bloom_set_bit4(bloom, sha, nbits);
259     }
260     else
261         return NULL;
262
263
264     return Py_BuildValue("n", len/20);
265 }
266
267 static PyObject *bloom_contains(PyObject *self, PyObject *args)
268 {
269     unsigned char *sha = NULL, *bloom = NULL;
270     Py_ssize_t len = 0, blen = 0;
271     int nbits = 0, k = 0;
272     unsigned char *end;
273     int steps;
274
275     if (!PyArg_ParseTuple(args, "t#s#ii", &bloom, &blen, &sha, &len, &nbits, &k))
276         return NULL;
277
278     if (len != 20)
279         return NULL;
280
281     if (k == 5)
282     {
283         if (nbits > 29)
284             return NULL;
285         for (steps = 1, end = sha + 20; sha < end; sha += 20/k, steps++)
286             if (!bloom_get_bit5(bloom, sha, nbits))
287                 return Py_BuildValue("Oi", Py_None, steps);
288     }
289     else if (k == 4)
290     {
291         if (nbits > 37)
292             return NULL;
293         for (steps = 1, end = sha + 20; sha < end; sha += 20/k, steps++)
294             if (!bloom_get_bit4(bloom, sha, nbits))
295                 return Py_BuildValue("Oi", Py_None, steps);
296     }
297     else
298         return NULL;
299
300     return Py_BuildValue("ii", 1, k);
301 }
302
303
304 static uint32_t _extract_bits(unsigned char *buf, int nbits)
305 {
306     uint32_t v, mask;
307
308     mask = (1<<nbits) - 1;
309     v = ntohl(*(uint32_t *)buf);
310     v = (v >> (32-nbits)) & mask;
311     return v;
312 }
313
314
315 static PyObject *extract_bits(PyObject *self, PyObject *args)
316 {
317     unsigned char *buf = NULL;
318     Py_ssize_t len = 0;
319     int nbits = 0;
320
321     if (!PyArg_ParseTuple(args, "t#i", &buf, &len, &nbits))
322         return NULL;
323     
324     if (len < 4)
325         return NULL;
326     
327     return PyLong_FromUnsignedLong(_extract_bits(buf, nbits));
328 }
329
330
331 struct sha {
332     unsigned char bytes[20];
333 };
334
335
336 struct idx {
337     unsigned char *map;
338     struct sha *cur;
339     struct sha *end;
340     uint32_t *cur_name;
341     Py_ssize_t bytes;
342     int name_base;
343 };
344
345
346 static int _cmp_sha(const struct sha *sha1, const struct sha *sha2)
347 {
348     int i;
349     for (i = 0; i < sizeof(struct sha); i++)
350         if (sha1->bytes[i] != sha2->bytes[i])
351             return sha1->bytes[i] - sha2->bytes[i];
352     return 0;
353 }
354
355
356 static void _fix_idx_order(struct idx **idxs, int *last_i)
357 {
358     struct idx *idx;
359     int low, mid, high, c = 0;
360
361     idx = idxs[*last_i];
362     if (idxs[*last_i]->cur >= idxs[*last_i]->end)
363     {
364         idxs[*last_i] = NULL;
365         PyMem_Free(idx);
366         --*last_i;
367         return;
368     }
369     if (*last_i == 0)
370         return;
371
372     low = *last_i-1;
373     mid = *last_i;
374     high = 0;
375     while (low >= high)
376     {
377         mid = (low + high) / 2;
378         c = _cmp_sha(idx->cur, idxs[mid]->cur);
379         if (c < 0)
380             high = mid + 1;
381         else if (c > 0)
382             low = mid - 1;
383         else
384             break;
385     }
386     if (c < 0)
387         ++mid;
388     if (mid == *last_i)
389         return;
390     memmove(&idxs[mid+1], &idxs[mid], (*last_i-mid)*sizeof(struct idx *));
391     idxs[mid] = idx;
392 }
393
394
395 static uint32_t _get_idx_i(struct idx *idx)
396 {
397     if (idx->cur_name == NULL)
398         return idx->name_base;
399     return ntohl(*idx->cur_name) + idx->name_base;
400 }
401
402 #define MIDX4_HEADERLEN 12
403
404 static PyObject *merge_into(PyObject *self, PyObject *args)
405 {
406     PyObject *ilist = NULL;
407     unsigned char *fmap = NULL;
408     struct sha *sha_ptr, *sha_start = NULL;
409     uint32_t *table_ptr, *name_ptr, *name_start;
410     struct idx **idxs = NULL;
411     Py_ssize_t flen = 0;
412     int bits = 0, i;
413     unsigned int total;
414     uint32_t count, prefix;
415     int num_i;
416     int last_i;
417
418     if (!PyArg_ParseTuple(args, "w#iIO", &fmap, &flen, &bits, &total, &ilist))
419         return NULL;
420
421     num_i = PyList_Size(ilist);
422     idxs = (struct idx **)PyMem_Malloc(num_i * sizeof(struct idx *));
423
424     for (i = 0; i < num_i; i++)
425     {
426         long len, sha_ofs, name_map_ofs;
427         idxs[i] = (struct idx *)PyMem_Malloc(sizeof(struct idx));
428         PyObject *itup = PyList_GetItem(ilist, i);
429         if (!PyArg_ParseTuple(itup, "t#llli", &idxs[i]->map, &idxs[i]->bytes,
430                     &len, &sha_ofs, &name_map_ofs, &idxs[i]->name_base))
431             return NULL;
432         idxs[i]->cur = (struct sha *)&idxs[i]->map[sha_ofs];
433         idxs[i]->end = &idxs[i]->cur[len];
434         if (name_map_ofs)
435             idxs[i]->cur_name = (uint32_t *)&idxs[i]->map[name_map_ofs];
436         else
437             idxs[i]->cur_name = NULL;
438     }
439     table_ptr = (uint32_t *)&fmap[MIDX4_HEADERLEN];
440     sha_start = sha_ptr = (struct sha *)&table_ptr[1<<bits];
441     name_start = name_ptr = (uint32_t *)&sha_ptr[total];
442
443     last_i = num_i-1;
444     count = 0;
445     prefix = 0;
446     while (last_i >= 0)
447     {
448         struct idx *idx;
449         uint32_t new_prefix;
450         if (count % 102424 == 0 && istty2)
451             fprintf(stderr, "midx: writing %.2f%% (%d/%d)\r",
452                     count*100.0/total, count, total);
453         idx = idxs[last_i];
454         new_prefix = _extract_bits((unsigned char *)idx->cur, bits);
455         while (prefix < new_prefix)
456             table_ptr[prefix++] = htonl(count);
457         memcpy(sha_ptr++, idx->cur, sizeof(struct sha));
458         *name_ptr++ = htonl(_get_idx_i(idx));
459         ++idx->cur;
460         if (idx->cur_name != NULL)
461             ++idx->cur_name;
462         _fix_idx_order(idxs, &last_i);
463         ++count;
464     }
465     while (prefix < (1<<bits))
466         table_ptr[prefix++] = htonl(count);
467     assert(count == total);
468     assert(prefix == (1<<bits));
469     assert(sha_ptr == sha_start+count);
470     assert(name_ptr == name_start+count);
471
472     PyMem_Free(idxs);
473     return PyLong_FromUnsignedLong(count);
474 }
475
476 // This function should technically be macro'd out if it's going to be used
477 // more than ocasionally.  As of this writing, it'll actually never be called
478 // in real world bup scenarios (because our packs are < MAX_INT bytes).
479 static uint64_t htonll(uint64_t value)
480 {
481     static const int endian_test = 42;
482
483     if (*(char *)&endian_test == endian_test) // LSB-MSB
484         return ((uint64_t)htonl(value & 0xFFFFFFFF) << 32) | htonl(value >> 32);
485     return value; // already in network byte order MSB-LSB
486 }
487
488 #define FAN_ENTRIES 256
489
490 static PyObject *write_idx(PyObject *self, PyObject *args)
491 {
492     char *filename = NULL;
493     PyObject *idx = NULL;
494     PyObject *part;
495     unsigned char *fmap = NULL;
496     Py_ssize_t flen = 0;
497     unsigned int total = 0;
498     uint32_t count;
499     int i, j, ofs64_count;
500     uint32_t *fan_ptr, *crc_ptr, *ofs_ptr;
501     uint64_t *ofs64_ptr;
502     struct sha *sha_ptr;
503
504     if (!PyArg_ParseTuple(args, "sw#OI", &filename, &fmap, &flen, &idx, &total))
505         return NULL;
506
507     if (PyList_Size (idx) != FAN_ENTRIES) // Check for list of the right length.
508         return PyErr_Format (PyExc_TypeError, "idx must contain %d entries",
509                              FAN_ENTRIES);
510
511     const char idx_header[] = "\377tOc\0\0\0\002";
512     memcpy (fmap, idx_header, sizeof(idx_header) - 1);
513
514     fan_ptr = (uint32_t *)&fmap[sizeof(idx_header) - 1];
515     sha_ptr = (struct sha *)&fan_ptr[FAN_ENTRIES];
516     crc_ptr = (uint32_t *)&sha_ptr[total];
517     ofs_ptr = (uint32_t *)&crc_ptr[total];
518     ofs64_ptr = (uint64_t *)&ofs_ptr[total];
519
520     count = 0;
521     ofs64_count = 0;
522     for (i = 0; i < FAN_ENTRIES; ++i)
523     {
524         int plen;
525         part = PyList_GET_ITEM(idx, i);
526         PyList_Sort(part);
527         plen = PyList_GET_SIZE(part);
528         count += plen;
529         *fan_ptr++ = htonl(count);
530         for (j = 0; j < plen; ++j)
531         {
532             unsigned char *sha = NULL;
533             Py_ssize_t sha_len = 0;
534             unsigned int crc = 0;
535             unsigned PY_LONG_LONG ofs_py = 0;
536             uint64_t ofs;
537             if (!PyArg_ParseTuple(PyList_GET_ITEM(part, j), "t#IK",
538                                   &sha, &sha_len, &crc, &ofs_py))
539                 return NULL;
540             assert(crc <= UINT32_MAX);
541             assert(ofs_py <= UINT64_MAX);
542             ofs = ofs_py;
543             if (sha_len != sizeof(struct sha))
544                 return NULL;
545             memcpy(sha_ptr++, sha, sizeof(struct sha));
546             *crc_ptr++ = htonl(crc);
547             if (ofs > 0x7fffffff)
548             {
549                 *ofs64_ptr++ = htonll(ofs);
550                 ofs = 0x80000000 | ofs64_count++;
551             }
552             *ofs_ptr++ = htonl((uint32_t)ofs);
553         }
554     }
555
556     int rc = msync(fmap, flen, MS_ASYNC);
557     if (rc != 0)
558         return PyErr_SetFromErrnoWithFilename(PyExc_IOError, filename);
559
560     return PyLong_FromUnsignedLong(count);
561 }
562
563
564 // I would have made this a lower-level function that just fills in a buffer
565 // with random values, and then written those values from python.  But that's
566 // about 20% slower in my tests, and since we typically generate random
567 // numbers for benchmarking other parts of bup, any slowness in generating
568 // random bytes will make our benchmarks inaccurate.  Plus nobody wants
569 // pseudorandom bytes much except for this anyway.
570 static PyObject *write_random(PyObject *self, PyObject *args)
571 {
572     uint32_t buf[1024/4];
573     int fd = -1, seed = 0, verbose = 0;
574     ssize_t ret;
575     long long len = 0, kbytes = 0, written = 0;
576
577     if (!PyArg_ParseTuple(args, "iLii", &fd, &len, &seed, &verbose))
578         return NULL;
579     
580     srandom(seed);
581     
582     for (kbytes = 0; kbytes < len/1024; kbytes++)
583     {
584         unsigned i;
585         for (i = 0; i < sizeof(buf)/sizeof(buf[0]); i++)
586             buf[i] = random();
587         ret = write(fd, buf, sizeof(buf));
588         if (ret < 0)
589             ret = 0;
590         written += ret;
591         if (ret < (int)sizeof(buf))
592             break;
593         if (verbose && kbytes/1024 > 0 && !(kbytes%1024))
594             fprintf(stderr, "Random: %lld Mbytes\r", kbytes/1024);
595     }
596     
597     // handle non-multiples of 1024
598     if (len % 1024)
599     {
600         unsigned i;
601         for (i = 0; i < sizeof(buf)/sizeof(buf[0]); i++)
602             buf[i] = random();
603         ret = write(fd, buf, len % 1024);
604         if (ret < 0)
605             ret = 0;
606         written += ret;
607     }
608     
609     if (kbytes/1024 > 0)
610         fprintf(stderr, "Random: %lld Mbytes, done.\n", kbytes/1024);
611     return Py_BuildValue("L", written);
612 }
613
614
615 static PyObject *random_sha(PyObject *self, PyObject *args)
616 {
617     static int seeded = 0;
618     uint32_t shabuf[20/4];
619     int i;
620     
621     if (!seeded)
622     {
623         assert(sizeof(shabuf) == 20);
624         srandom(time(NULL));
625         seeded = 1;
626     }
627     
628     if (!PyArg_ParseTuple(args, ""))
629         return NULL;
630     
631     memset(shabuf, 0, sizeof(shabuf));
632     for (i=0; i < 20/4; i++)
633         shabuf[i] = random();
634     return Py_BuildValue("s#", shabuf, 20);
635 }
636
637
638 static int _open_noatime(const char *filename, int attrs)
639 {
640     int attrs_noatime, fd;
641     attrs |= O_RDONLY;
642 #ifdef O_NOFOLLOW
643     attrs |= O_NOFOLLOW;
644 #endif
645 #ifdef O_LARGEFILE
646     attrs |= O_LARGEFILE;
647 #endif
648     attrs_noatime = attrs;
649 #ifdef O_NOATIME
650     attrs_noatime |= O_NOATIME;
651 #endif
652     fd = open(filename, attrs_noatime);
653     if (fd < 0 && errno == EPERM)
654     {
655         // older Linux kernels would return EPERM if you used O_NOATIME
656         // and weren't the file's owner.  This pointless restriction was
657         // relaxed eventually, but we have to handle it anyway.
658         // (VERY old kernels didn't recognized O_NOATIME, but they would
659         // just harmlessly ignore it, so this branch won't trigger)
660         fd = open(filename, attrs);
661     }
662     return fd;
663 }
664
665
666 static PyObject *open_noatime(PyObject *self, PyObject *args)
667 {
668     char *filename = NULL;
669     int fd;
670     if (!PyArg_ParseTuple(args, "s", &filename))
671         return NULL;
672     fd = _open_noatime(filename, 0);
673     if (fd < 0)
674         return PyErr_SetFromErrnoWithFilename(PyExc_OSError, filename);
675     return Py_BuildValue("i", fd);
676 }
677
678
679 static PyObject *fadvise_done(PyObject *self, PyObject *args)
680 {
681     int fd = -1;
682     long long ofs = 0;
683     if (!PyArg_ParseTuple(args, "iL", &fd, &ofs))
684         return NULL;
685 #ifdef POSIX_FADV_DONTNEED
686     posix_fadvise(fd, 0, ofs, POSIX_FADV_DONTNEED);
687 #endif    
688     return Py_BuildValue("");
689 }
690
691
692 #ifdef BUP_HAVE_FILE_ATTRS
693 static PyObject *bup_get_linux_file_attr(PyObject *self, PyObject *args)
694 {
695     int rc;
696     unsigned int attr;
697     char *path;
698     int fd;
699
700     if (!PyArg_ParseTuple(args, "s", &path))
701         return NULL;
702
703     fd = _open_noatime(path, O_NONBLOCK);
704     if (fd == -1)
705         return PyErr_SetFromErrnoWithFilename(PyExc_OSError, path);
706
707     attr = 0;
708     rc = ioctl(fd, FS_IOC_GETFLAGS, &attr);
709     if (rc == -1)
710     {
711         close(fd);
712         return PyErr_SetFromErrnoWithFilename(PyExc_OSError, path);
713     }
714
715     close(fd);
716     return Py_BuildValue("I", attr);
717 }
718 #endif /* def BUP_HAVE_FILE_ATTRS */
719
720
721 #ifdef BUP_HAVE_FILE_ATTRS
722 static PyObject *bup_set_linux_file_attr(PyObject *self, PyObject *args)
723 {
724     int rc;
725     unsigned int orig_attr, attr;
726     char *path;
727     int fd;
728
729     if (!PyArg_ParseTuple(args, "sI", &path, &attr))
730         return NULL;
731
732     fd = open(path, O_RDONLY | O_NONBLOCK | O_LARGEFILE | O_NOFOLLOW);
733     if (fd == -1)
734         return PyErr_SetFromErrnoWithFilename(PyExc_OSError, path);
735
736     // Restrict attr to modifiable flags acdeijstuADST -- see
737     // chattr(1) and the e2fsprogs source.  Letter to flag mapping is
738     // in pf.c flags_array[].
739     attr &= FS_APPEND_FL | FS_COMPR_FL | FS_NODUMP_FL | FS_EXTENT_FL
740     | FS_IMMUTABLE_FL | FS_JOURNAL_DATA_FL | FS_SECRM_FL | FS_NOTAIL_FL
741     | FS_UNRM_FL | FS_NOATIME_FL | FS_DIRSYNC_FL | FS_SYNC_FL
742     | FS_TOPDIR_FL | FS_NOCOW_FL;
743
744     // The extents flag can't be removed, so don't (see chattr(1) and chattr.c).
745     rc = ioctl(fd, FS_IOC_GETFLAGS, &orig_attr);
746     if (rc == -1)
747     {
748         close(fd);
749         return PyErr_SetFromErrnoWithFilename(PyExc_OSError, path);
750     }
751     attr |= (orig_attr & FS_EXTENT_FL);
752
753     rc = ioctl(fd, FS_IOC_SETFLAGS, &attr);
754     if (rc == -1)
755     {
756         close(fd);
757         return PyErr_SetFromErrnoWithFilename(PyExc_OSError, path);
758     }
759
760     close(fd);
761     return Py_BuildValue("O", Py_None);
762 }
763 #endif /* def BUP_HAVE_FILE_ATTRS */
764
765
766 #ifndef HAVE_UTIMENSAT
767 #ifndef HAVE_UTIMES
768 #error "cannot find utimensat or utimes()"
769 #endif
770 #ifndef HAVE_LUTIMES
771 #error "cannot find utimensat or lutimes()"
772 #endif
773 #endif
774
775
776 #if defined(HAVE_UTIMENSAT) || defined(HAVE_FUTIMES) || defined(HAVE_LUTIMES)
777
778 static int bup_parse_xutime_args(char **path,
779                                  long *access,
780                                  long *access_ns,
781                                  long *modification,
782                                  long *modification_ns,
783                                  PyObject *self, PyObject *args)
784 {
785     if (!PyArg_ParseTuple(args, "s((ll)(ll))",
786                           path,
787                           access, access_ns,
788                           modification, modification_ns))
789         return 0;
790
791     if (isnan(*access))
792     {
793         PyErr_SetString(PyExc_ValueError, "access time is NaN");
794         return 0;
795     }
796     else if (isinf(*access))
797     {
798         PyErr_SetString(PyExc_ValueError, "access time is infinite");
799         return 0;
800     }
801     else if (isnan(*modification))
802     {
803         PyErr_SetString(PyExc_ValueError, "modification time is NaN");
804         return 0;
805     }
806     else if (isinf(*modification))
807     {
808         PyErr_SetString(PyExc_ValueError, "modification time is infinite");
809         return 0;
810     }
811
812     if (isnan(*access_ns))
813     {
814         PyErr_SetString(PyExc_ValueError, "access time ns is NaN");
815         return 0;
816     }
817     else if (isinf(*access_ns))
818     {
819         PyErr_SetString(PyExc_ValueError, "access time ns is infinite");
820         return 0;
821     }
822     else if (isnan(*modification_ns))
823     {
824         PyErr_SetString(PyExc_ValueError, "modification time ns is NaN");
825         return 0;
826     }
827     else if (isinf(*modification_ns))
828     {
829         PyErr_SetString(PyExc_ValueError, "modification time ns is infinite");
830         return 0;
831     }
832
833     return 1;
834 }
835
836 #endif /* defined(HAVE_UTIMENSAT) || defined(HAVE_FUTIMES)
837           || defined(HAVE_LUTIMES) */
838
839
840 #define INTEGRAL_ASSIGNMENT_FITS(dest, src)                             \
841     ({                                                                  \
842         *(dest) = (src);                                                \
843         *(dest) == (src) && (*(dest) < 1) == ((src) < 1);               \
844     })
845
846
847 #define ASSIGN_PYLONG_TO_INTEGRAL(dest, pylong, overflow) \
848     ({                                                     \
849         int result = 0;                                                 \
850         *(overflow) = 0;                                                \
851         const long long ltmp = PyLong_AsLongLong(pylong);               \
852         if (ltmp == -1 && PyErr_Occurred())                             \
853         {                                                               \
854             if (PyErr_ExceptionMatches(PyExc_OverflowError))            \
855             {                                                           \
856                 const unsigned long ultmp = PyLong_AsUnsignedLongLong(pylong); \
857                 if (ultmp == (unsigned long long) -1 && PyErr_Occurred()) \
858                 {                                                       \
859                     if (PyErr_ExceptionMatches(PyExc_OverflowError))    \
860                     {                                                   \
861                         PyErr_Clear();                                  \
862                         *(overflow) = 1;                                \
863                     }                                                   \
864                 }                                                       \
865                 if (INTEGRAL_ASSIGNMENT_FITS((dest), ultmp))            \
866                     result = 1;                                         \
867                 else                                                    \
868                     *(overflow) = 1;                                    \
869             }                                                           \
870         }                                                               \
871         else                                                            \
872         {                                                               \
873             if (INTEGRAL_ASSIGNMENT_FITS((dest), ltmp))                 \
874                 result = 1;                                             \
875             else                                                        \
876                 *(overflow) = 1;                                        \
877         }                                                               \
878         result;                                                         \
879         })
880
881
882 #ifdef HAVE_UTIMENSAT
883
884 static PyObject *bup_utimensat(PyObject *self, PyObject *args)
885 {
886     int rc;
887     int fd, flag;
888     char *path;
889     PyObject *access_py, *modification_py;
890     struct timespec ts[2];
891
892     if (!PyArg_ParseTuple(args, "is((Ol)(Ol))i",
893                           &fd,
894                           &path,
895                           &access_py, &(ts[0].tv_nsec),
896                           &modification_py, &(ts[1].tv_nsec),
897                           &flag))
898         return NULL;
899
900     int overflow;
901     if (!ASSIGN_PYLONG_TO_INTEGRAL(&(ts[0].tv_sec), access_py, &overflow))
902     {
903         if (overflow)
904             PyErr_SetString(PyExc_ValueError,
905                             "unable to convert access time seconds for utimensat");
906         return NULL;
907     }
908     if (!ASSIGN_PYLONG_TO_INTEGRAL(&(ts[1].tv_sec), modification_py, &overflow))
909     {
910         if (overflow)
911             PyErr_SetString(PyExc_ValueError,
912                             "unable to convert modification time seconds for utimensat");
913         return NULL;
914     }
915     rc = utimensat(fd, path, ts, flag);
916     if (rc != 0)
917         return PyErr_SetFromErrnoWithFilename(PyExc_OSError, path);
918
919     return Py_BuildValue("O", Py_None);
920 }
921
922 #endif /* def HAVE_UTIMENSAT */
923
924
925 #ifdef HAVE_UTIMES
926 #define BUP_HAVE_BUP_UTIME_NS 1
927 static PyObject *bup_utime_ns(PyObject *self, PyObject *args)
928 {
929     int rc;
930     char *path;
931     long access, access_ns, modification, modification_ns;
932     struct timeval tv[2];
933
934     if (!bup_parse_xutime_args(&path, &access, &access_ns,
935                                &modification, &modification_ns,
936                                self, args))
937        return NULL;
938
939     tv[0].tv_sec = access;
940     tv[0].tv_usec = access_ns / 1000;
941     tv[1].tv_sec = modification;
942     tv[1].tv_usec = modification_ns / 1000;
943     rc = utimes(path, tv);
944     if (rc != 0)
945         return PyErr_SetFromErrnoWithFilename(PyExc_OSError, path);
946
947     return Py_BuildValue("O", Py_None);
948 }
949 #endif /* def HAVE_UTIMES */
950
951
952 #ifdef HAVE_LUTIMES
953 #define BUP_HAVE_BUP_LUTIME_NS 1
954 static PyObject *bup_lutime_ns(PyObject *self, PyObject *args)
955 {
956     int rc;
957     char *path;
958     long access, access_ns, modification, modification_ns;
959     struct timeval tv[2];
960
961     if (!bup_parse_xutime_args(&path, &access, &access_ns,
962                                &modification, &modification_ns,
963                                self, args))
964        return NULL;
965
966     tv[0].tv_sec = access;
967     tv[0].tv_usec = access_ns / 1000;
968     tv[1].tv_sec = modification;
969     tv[1].tv_usec = modification_ns / 1000;
970     rc = lutimes(path, tv);
971     if (rc != 0)
972         return PyErr_SetFromErrnoWithFilename(PyExc_OSError, path);
973
974     return Py_BuildValue("O", Py_None);
975 }
976 #endif /* def HAVE_LUTIMES */
977
978
979 #ifdef HAVE_STAT_ST_ATIM
980 # define BUP_STAT_ATIME_NS(st) (st)->st_atim.tv_nsec
981 # define BUP_STAT_MTIME_NS(st) (st)->st_mtim.tv_nsec
982 # define BUP_STAT_CTIME_NS(st) (st)->st_ctim.tv_nsec
983 #elif defined HAVE_STAT_ST_ATIMENSEC
984 # define BUP_STAT_ATIME_NS(st) (st)->st_atimespec.tv_nsec
985 # define BUP_STAT_MTIME_NS(st) (st)->st_mtimespec.tv_nsec
986 # define BUP_STAT_CTIME_NS(st) (st)->st_ctimespec.tv_nsec
987 #else
988 # define BUP_STAT_ATIME_NS(st) 0
989 # define BUP_STAT_MTIME_NS(st) 0
990 # define BUP_STAT_CTIME_NS(st) 0
991 #endif
992
993
994 static void set_invalid_timespec_msg(const char *field,
995                                      const long long sec,
996                                      const long nsec,
997                                      const char *filename,
998                                      int fd)
999 {
1000     if (filename != NULL)
1001         PyErr_Format(PyExc_ValueError,
1002                      "invalid %s timespec (%lld %ld) for file \"%s\"",
1003                      field, sec, nsec, filename);
1004     else
1005         PyErr_Format(PyExc_ValueError,
1006                      "invalid %s timespec (%lld %ld) for file descriptor %d",
1007                      field, sec, nsec, fd);
1008 }
1009
1010
1011 static int normalize_timespec_values(const char *name,
1012                                      long long *sec,
1013                                      long *nsec,
1014                                      const char *filename,
1015                                      int fd)
1016 {
1017     if (*nsec < -999999999 || *nsec > 999999999)
1018     {
1019         set_invalid_timespec_msg(name, *sec, *nsec, filename, fd);
1020         return 0;
1021     }
1022     if (*nsec < 0)
1023     {
1024         if (*sec == LONG_MIN)
1025         {
1026             set_invalid_timespec_msg(name, *sec, *nsec, filename, fd);
1027             return 0;
1028         }
1029         *nsec += 1000000000;
1030         *sec -= 1;
1031     }
1032     return 1;
1033 }
1034
1035
1036 #define INTEGER_TO_PY(x) \
1037     (((x) >= 0) ? PyLong_FromUnsignedLongLong(x) : PyLong_FromLongLong(x))
1038
1039
1040 static PyObject *stat_struct_to_py(const struct stat *st,
1041                                    const char *filename,
1042                                    int fd)
1043 {
1044     long long atime = st->st_atime;
1045     long long mtime = st->st_mtime;
1046     long long ctime = st->st_ctime;
1047     long atime_ns = BUP_STAT_ATIME_NS(st);
1048     long mtime_ns = BUP_STAT_MTIME_NS(st);
1049     long ctime_ns = BUP_STAT_CTIME_NS(st);
1050
1051     if (!normalize_timespec_values("atime", &atime, &atime_ns, filename, fd))
1052         return NULL;
1053     if (!normalize_timespec_values("mtime", &mtime, &mtime_ns, filename, fd))
1054         return NULL;
1055     if (!normalize_timespec_values("ctime", &ctime, &ctime_ns, filename, fd))
1056         return NULL;
1057
1058     // We can check the known (via POSIX) signed and unsigned types at
1059     // compile time, but not (easily) the unspecified types, so handle
1060     // those via INTEGER_TO_PY().
1061     return Py_BuildValue("OKOOOOOL(Ll)(Ll)(Ll)",
1062                          INTEGER_TO_PY(st->st_mode),
1063                          (unsigned PY_LONG_LONG) st->st_ino,
1064                          INTEGER_TO_PY(st->st_dev),
1065                          INTEGER_TO_PY(st->st_nlink),
1066                          INTEGER_TO_PY(st->st_uid),
1067                          INTEGER_TO_PY(st->st_gid),
1068                          INTEGER_TO_PY(st->st_rdev),
1069                          (PY_LONG_LONG) st->st_size,
1070                          (PY_LONG_LONG) atime,
1071                          (long) atime_ns,
1072                          (PY_LONG_LONG) mtime,
1073                          (long) mtime_ns,
1074                          (PY_LONG_LONG) ctime,
1075                          (long) ctime_ns);
1076 }
1077
1078
1079 static PyObject *bup_stat(PyObject *self, PyObject *args)
1080 {
1081     int rc;
1082     char *filename;
1083
1084     if (!PyArg_ParseTuple(args, "s", &filename))
1085         return NULL;
1086
1087     struct stat st;
1088     rc = stat(filename, &st);
1089     if (rc != 0)
1090         return PyErr_SetFromErrnoWithFilename(PyExc_OSError, filename);
1091     return stat_struct_to_py(&st, filename, 0);
1092 }
1093
1094
1095 static PyObject *bup_lstat(PyObject *self, PyObject *args)
1096 {
1097     int rc;
1098     char *filename;
1099
1100     if (!PyArg_ParseTuple(args, "s", &filename))
1101         return NULL;
1102
1103     struct stat st;
1104     rc = lstat(filename, &st);
1105     if (rc != 0)
1106         return PyErr_SetFromErrnoWithFilename(PyExc_OSError, filename);
1107     return stat_struct_to_py(&st, filename, 0);
1108 }
1109
1110
1111 static PyObject *bup_fstat(PyObject *self, PyObject *args)
1112 {
1113     int rc, fd;
1114
1115     if (!PyArg_ParseTuple(args, "i", &fd))
1116         return NULL;
1117
1118     struct stat st;
1119     rc = fstat(fd, &st);
1120     if (rc != 0)
1121         return PyErr_SetFromErrno(PyExc_OSError);
1122     return stat_struct_to_py(&st, NULL, fd);
1123 }
1124
1125
1126 static PyMethodDef helper_methods[] = {
1127     { "selftest", selftest, METH_VARARGS,
1128         "Check that the rolling checksum rolls correctly (for unit tests)." },
1129     { "blobbits", blobbits, METH_VARARGS,
1130         "Return the number of bits in the rolling checksum." },
1131     { "splitbuf", splitbuf, METH_VARARGS,
1132         "Split a list of strings based on a rolling checksum." },
1133     { "bitmatch", bitmatch, METH_VARARGS,
1134         "Count the number of matching prefix bits between two strings." },
1135     { "firstword", firstword, METH_VARARGS,
1136         "Return an int corresponding to the first 32 bits of buf." },
1137     { "bloom_contains", bloom_contains, METH_VARARGS,
1138         "Check if a bloom filter of 2^nbits bytes contains an object" },
1139     { "bloom_add", bloom_add, METH_VARARGS,
1140         "Add an object to a bloom filter of 2^nbits bytes" },
1141     { "extract_bits", extract_bits, METH_VARARGS,
1142         "Take the first 'nbits' bits from 'buf' and return them as an int." },
1143     { "merge_into", merge_into, METH_VARARGS,
1144         "Merges a bunch of idx and midx files into a single midx." },
1145     { "write_idx", write_idx, METH_VARARGS,
1146         "Write a PackIdxV2 file from an idx list of lists of tuples" },
1147     { "write_random", write_random, METH_VARARGS,
1148         "Write random bytes to the given file descriptor" },
1149     { "random_sha", random_sha, METH_VARARGS,
1150         "Return a random 20-byte string" },
1151     { "open_noatime", open_noatime, METH_VARARGS,
1152         "open() the given filename for read with O_NOATIME if possible" },
1153     { "fadvise_done", fadvise_done, METH_VARARGS,
1154         "Inform the kernel that we're finished with earlier parts of a file" },
1155 #ifdef BUP_HAVE_FILE_ATTRS
1156     { "get_linux_file_attr", bup_get_linux_file_attr, METH_VARARGS,
1157       "Return the Linux attributes for the given file." },
1158 #endif
1159 #ifdef BUP_HAVE_FILE_ATTRS
1160     { "set_linux_file_attr", bup_set_linux_file_attr, METH_VARARGS,
1161       "Set the Linux attributes for the given file." },
1162 #endif
1163 #ifdef HAVE_UTIMENSAT
1164     { "bup_utimensat", bup_utimensat, METH_VARARGS,
1165       "Change path timestamps with nanosecond precision (POSIX)." },
1166 #endif
1167 #ifdef BUP_HAVE_BUP_UTIME_NS
1168     { "bup_utime_ns", bup_utime_ns, METH_VARARGS,
1169       "Change path timestamps with up to nanosecond precision." },
1170 #endif
1171 #ifdef BUP_HAVE_BUP_LUTIME_NS
1172     { "bup_lutime_ns", bup_lutime_ns, METH_VARARGS,
1173       "Change path timestamps with up to nanosecond precision;"
1174       " don't follow symlinks." },
1175 #endif
1176     { "stat", bup_stat, METH_VARARGS,
1177       "Extended version of stat." },
1178     { "lstat", bup_lstat, METH_VARARGS,
1179       "Extended version of lstat." },
1180     { "fstat", bup_fstat, METH_VARARGS,
1181       "Extended version of fstat." },
1182     { NULL, NULL, 0, NULL },  // sentinel
1183 };
1184
1185
1186 PyMODINIT_FUNC init_helpers(void)
1187 {
1188     // FIXME: migrate these tests to configure.  Check against the
1189     // type we're going to use when passing to python.  Other stat
1190     // types are tested at runtime.
1191     assert(sizeof(ino_t) <= sizeof(unsigned PY_LONG_LONG));
1192     assert(sizeof(off_t) <= sizeof(PY_LONG_LONG));
1193     assert(sizeof(blksize_t) <= sizeof(PY_LONG_LONG));
1194     assert(sizeof(blkcnt_t) <= sizeof(PY_LONG_LONG));
1195     // Just be sure (relevant when passing timestamps back to Python above).
1196     assert(sizeof(PY_LONG_LONG) <= sizeof(long long));
1197
1198     char *e;
1199     PyObject *m = Py_InitModule("_helpers", helper_methods);
1200     if (m == NULL)
1201         return;
1202
1203 #ifdef HAVE_UTIMENSAT
1204     {
1205         PyObject *value;
1206         value = INTEGER_TO_PY(AT_FDCWD);
1207         PyObject_SetAttrString(m, "AT_FDCWD", value);
1208         Py_DECREF(value);
1209         value = INTEGER_TO_PY(AT_SYMLINK_NOFOLLOW);
1210         PyObject_SetAttrString(m, "AT_SYMLINK_NOFOLLOW", value);
1211         Py_DECREF(value);
1212         value = INTEGER_TO_PY(UTIME_NOW);
1213         PyObject_SetAttrString(m, "UTIME_NOW", value);
1214         Py_DECREF(value);
1215     }
1216 #endif
1217
1218     e = getenv("BUP_FORCE_TTY");
1219     istty2 = isatty(2) || (atoi(e ? e : "0") & 2);
1220     unpythonize_argv();
1221 }