]> mj.ucw.cz Git - libucw.git/blob - lib/bucket.c
9be78b280931358402904ce18764c173df961c87
[libucw.git] / lib / bucket.c
1 /*
2  *      Sherlock Library -- Object Buckets
3  *
4  *      (c) 2001--2003 Martin Mares <mj@ucw.cz>
5  *
6  *      This software may be freely distributed and used according to the terms
7  *      of the GNU Lesser General Public License.
8  */
9
10 #include "lib/lib.h"
11 #include "lib/bucket.h"
12 #include "lib/fastbuf.h"
13 #include "lib/lfs.h"
14 #include "lib/conf.h"
15
16 #include <string.h>
17 #include <stdlib.h>
18 #include <fcntl.h>
19 #include <unistd.h>
20 #include <sys/file.h>
21
22 static int obuck_fd;
23 static unsigned int obuck_remains, obuck_check_pad;
24 static struct fastbuf *obuck_fb;
25 static struct obuck_header obuck_hdr;
26 static sh_off_t bucket_start, bucket_current;
27
28 /*** Configuration ***/
29
30 byte *obuck_name = "not/configured";
31 static uns obuck_io_buflen = 65536;
32 static int obuck_shake_buflen = 1048576;
33 static uns obuck_slurp_buflen = 65536;
34
35 static struct cfitem obuck_config[] = {
36   { "Buckets",          CT_SECTION,     NULL },
37   { "BucketFile",       CT_STRING,      &obuck_name },
38   { "BufSize",          CT_INT,         &obuck_io_buflen },
39   { "ShakeBufSize",     CT_INT,         &obuck_shake_buflen },
40   { "SlurpBufSize",     CT_INT,         &obuck_slurp_buflen },
41   { NULL,               CT_STOP,        NULL }
42 };
43
44 static void CONSTRUCTOR obuck_init_config(void)
45 {
46   cf_register(obuck_config);
47 }
48
49 /*** Internal operations ***/
50
51 static void
52 obuck_broken(char *msg)
53 {
54   die("Object pool corrupted: %s (pos=%Lx)", msg, (long long) bucket_start);
55 }
56
57 /*
58  *  Unfortunately we cannot use flock() here since it happily permits
59  *  locking a shared fd (e.g., after fork()) multiple times. The fcntl
60  *  locks are very ugly and they don't support 64-bit offsets, but we
61  *  can work around the problem by always locking the first header
62  *  in the file.
63  */
64
65 static inline void
66 obuck_do_lock(int type)
67 {
68   struct flock fl;
69
70   fl.l_type = type;
71   fl.l_whence = SEEK_SET;
72   fl.l_start = 0;
73   fl.l_len = sizeof(struct obuck_header);
74   if (fcntl(obuck_fd, F_SETLKW, &fl) < 0)
75     die("fcntl lock: %m");
76 }
77
78 inline void
79 obuck_lock_read(void)
80 {
81   obuck_do_lock(F_RDLCK);
82 }
83
84 inline void
85 obuck_lock_write(void)
86 {
87   obuck_do_lock(F_WRLCK);
88 }
89
90 inline void
91 obuck_unlock(void)
92 {
93   obuck_do_lock(F_UNLCK);
94 }
95
96 /*** FastIO emulation ***/
97
98 /* We need to use pread/pwrite since we work on fd's shared between processes */
99
100 static int
101 obuck_fb_refill(struct fastbuf *f)
102 {
103   unsigned limit = (obuck_io_buflen < obuck_remains) ? obuck_io_buflen : obuck_remains;
104   unsigned size = (limit == obuck_remains) ? (limit+obuck_check_pad+4) : limit;
105   int l;
106
107   if (!limit)
108     return 0;
109   l = sh_pread(obuck_fd, f->buffer, size, bucket_current);
110   if (l < 0)
111     die("Error reading bucket: %m");
112   if ((unsigned) l != size)
113     obuck_broken("Short read");
114   f->bptr = f->buffer;
115   f->bstop = f->buffer + limit;
116   bucket_current += limit;
117   f->pos = bucket_current - bucket_start - sizeof(obuck_hdr);
118   obuck_remains -= limit;
119   if (!obuck_remains)   /* Should check the trailer */
120     {
121       if (GET_U32(f->buffer + size - 4) != OBUCK_TRAILER)
122         obuck_broken("Missing trailer");
123     }
124   return limit;
125 }
126
127 static void
128 obuck_fb_spout(struct fastbuf *f)
129 {
130   int l = f->bptr - f->buffer;
131   char *c = f->buffer;
132
133   while (l)
134     {
135       int z = sh_pwrite(obuck_fd, c, l, bucket_current);
136       if (z <= 0)
137         die("Error writing bucket: %m");
138       bucket_current += z;
139       l -= z;
140       c += z;
141     }
142   f->bptr = f->buffer;
143   f->pos = bucket_current - bucket_start - sizeof(obuck_hdr);
144 }
145
146 /*** Exported functions ***/
147
148 void
149 obuck_init(int writeable)
150 {
151   struct fastbuf *b;
152   sh_off_t size;
153
154   obuck_fd = sh_open(obuck_name, (writeable ? O_RDWR | O_CREAT : O_RDONLY), 0666);
155   if (obuck_fd < 0)
156     die("Unable to open bucket file %s: %m", obuck_name);
157   obuck_fb = b = xmalloc_zero(sizeof(struct fastbuf) + obuck_io_buflen + OBUCK_ALIGN + 4);
158   b->buffer = (char *)(b+1);
159   b->bptr = b->bstop = b->buffer;
160   b->bufend = b->buffer + obuck_io_buflen;
161   b->name = "bucket";
162   b->refill = obuck_fb_refill;
163   b->spout = obuck_fb_spout;
164   obuck_lock_read();
165   size = sh_seek(obuck_fd, 0, SEEK_END);
166   if (size)
167     {
168       /* If the bucket pool is not empty, check consistency of its end */
169       u32 check;
170       bucket_start = size - 4;  /* for error reporting */
171       if (sh_pread(obuck_fd, &check, 4, size-4) != 4 ||
172           check != OBUCK_TRAILER)
173         obuck_broken("Missing trailer of last object");
174     }
175   obuck_unlock();
176 }
177
178 void
179 obuck_cleanup(void)
180 {
181   bclose(obuck_fb);
182   close(obuck_fd);
183   xfree(obuck_fb);
184 }
185
186 void
187 obuck_sync(void)
188 {
189   bflush(obuck_fb);
190   fsync(obuck_fd);
191 }
192
193 static void
194 obuck_get(oid_t oid)
195 {
196   struct fastbuf *b = obuck_fb;
197
198   bucket_start = obuck_get_pos(oid);
199   bflush(b);
200   if (sh_pread(obuck_fd, &obuck_hdr, sizeof(obuck_hdr), bucket_start) != sizeof(obuck_hdr))
201     obuck_broken("Short header read");
202   bucket_current = bucket_start + sizeof(obuck_hdr);
203   if (obuck_hdr.magic != OBUCK_MAGIC)
204     obuck_broken("Missing magic number");
205   if (obuck_hdr.oid == OBUCK_OID_DELETED)
206     obuck_broken("Access to deleted bucket");
207   if (obuck_hdr.oid != oid)
208     obuck_broken("Invalid backlink");
209 }
210
211 void
212 obuck_find_by_oid(struct obuck_header *hdrp)
213 {
214   oid_t oid = hdrp->oid;
215
216   ASSERT(oid < OBUCK_OID_FIRST_SPECIAL);
217   obuck_lock_read();
218   obuck_get(oid);
219   obuck_unlock();
220   memcpy(hdrp, &obuck_hdr, sizeof(obuck_hdr));
221 }
222
223 int
224 obuck_find_first(struct obuck_header *hdrp, int full)
225 {
226   bucket_start = 0;
227   obuck_hdr.magic = 0;
228   return obuck_find_next(hdrp, full);
229 }
230
231 int
232 obuck_find_next(struct obuck_header *hdrp, int full)
233 {
234   int c;
235   struct fastbuf *b = obuck_fb;
236
237   for(;;)
238     {
239       if (obuck_hdr.magic)
240         bucket_start = (bucket_start + sizeof(obuck_hdr) + obuck_hdr.length +
241                         4 + OBUCK_ALIGN - 1) & ~((sh_off_t)(OBUCK_ALIGN - 1));
242       bflush(b);
243       obuck_lock_read();
244       c = sh_pread(obuck_fd, &obuck_hdr, sizeof(obuck_hdr), bucket_start);
245       obuck_unlock();
246       if (!c)
247         return 0;
248       if (c != sizeof(obuck_hdr))
249         obuck_broken("Short header read");
250       bucket_current = bucket_start + sizeof(obuck_hdr);
251       if (obuck_hdr.magic != OBUCK_MAGIC)
252         obuck_broken("Missing magic number");
253       if (obuck_hdr.oid != OBUCK_OID_DELETED || full)
254         {
255           memcpy(hdrp, &obuck_hdr, sizeof(obuck_hdr));
256           return 1;
257         }
258     }
259 }
260
261 struct fastbuf *
262 obuck_fetch(void)
263 {
264   obuck_fb->pos = 0;
265   obuck_remains = obuck_hdr.length;
266   obuck_check_pad = (OBUCK_ALIGN - sizeof(obuck_hdr) - obuck_hdr.length - 4) & (OBUCK_ALIGN - 1);
267   return obuck_fb;
268 }
269
270 void
271 obuck_fetch_end(struct fastbuf *b UNUSED)
272 {
273 }
274
275 oid_t
276 obuck_predict_last_oid(void)
277 {
278   sh_off_t size = sh_seek(obuck_fd, 0, SEEK_END);
279   return size >> OBUCK_SHIFT;
280 }
281
282 struct fastbuf *
283 obuck_create(void)
284 {
285   obuck_lock_write();
286   bflush(obuck_fb);
287   bucket_start = sh_seek(obuck_fd, 0, SEEK_END);
288   if (bucket_start & (OBUCK_ALIGN - 1))
289     obuck_broken("Misaligned file");
290   obuck_hdr.magic = OBUCK_INCOMPLETE_MAGIC;
291   obuck_hdr.oid = bucket_start >> OBUCK_SHIFT;
292   obuck_hdr.length = obuck_hdr.orig_length = 0;
293   bucket_current = bucket_start;
294   bwrite(obuck_fb, &obuck_hdr, sizeof(obuck_hdr));
295   obuck_fb->pos = -sizeof(obuck_hdr);
296   return obuck_fb;
297 }
298
299 void
300 obuck_create_end(struct fastbuf *b UNUSED, struct obuck_header *hdrp)
301 {
302   int pad;
303   obuck_hdr.magic = OBUCK_MAGIC;
304   obuck_hdr.length = obuck_hdr.orig_length = btell(obuck_fb);
305   pad = (OBUCK_ALIGN - sizeof(obuck_hdr) - obuck_hdr.length - 4) & (OBUCK_ALIGN - 1);
306   while (pad--)
307     bputc(obuck_fb, 0);
308   bputl(obuck_fb, OBUCK_TRAILER);
309   bflush(obuck_fb);
310   ASSERT(!(bucket_current & (OBUCK_ALIGN - 1)));
311   sh_pwrite(obuck_fd, &obuck_hdr, sizeof(obuck_hdr), bucket_start);
312   obuck_unlock();
313   memcpy(hdrp, &obuck_hdr, sizeof(obuck_hdr));
314 }
315
316 void
317 obuck_delete(oid_t oid)
318 {
319   obuck_lock_write();
320   obuck_get(oid);
321   obuck_hdr.oid = OBUCK_OID_DELETED;
322   sh_pwrite(obuck_fd, &obuck_hdr, sizeof(obuck_hdr), bucket_start);
323   obuck_unlock();
324 }
325
326 /*** Fast reading of the whole pool ***/
327
328 static struct fastbuf *obuck_rpf;
329
330 static int
331 obuck_slurp_refill(struct fastbuf *f)
332 {
333   uns l;
334
335   if (!obuck_remains)
336     return 0;
337   l = bdirect_read_prepare(obuck_rpf, &f->buffer);
338   if (!l)
339     obuck_broken("Incomplete object");
340   l = MIN(l, obuck_remains);
341   bdirect_read_commit(obuck_rpf, f->buffer + l);
342   obuck_remains -= l;
343   f->bptr = f->buffer;
344   f->bufend = f->bstop = f->buffer + l;
345   return 1;
346 }
347
348 struct fastbuf *
349 obuck_slurp_pool(struct obuck_header *hdrp)
350 {
351   static struct fastbuf limiter;
352   uns l;
353
354   do
355     {
356       if (!obuck_rpf)
357         {
358           obuck_lock_read();
359           obuck_rpf = bopen(obuck_name, O_RDONLY, obuck_slurp_buflen);
360         }
361       else
362         {
363           bsetpos(obuck_rpf, bucket_current - 4);
364           if (bgetl(obuck_rpf) != OBUCK_TRAILER)
365             obuck_broken("Missing trailer");
366         }
367       bucket_start = btell(obuck_rpf);
368       l = bread(obuck_rpf, hdrp, sizeof(struct obuck_header));
369       if (!l)
370         {
371           bclose(obuck_rpf);
372           obuck_unlock();
373           return NULL;
374         }
375       if (l != sizeof(struct obuck_header))
376         obuck_broken("Short header read");
377       if (hdrp->magic != OBUCK_MAGIC)
378         obuck_broken("Missing magic number");
379       bucket_current = (bucket_start + sizeof(obuck_hdr) + hdrp->length +
380                         4 + OBUCK_ALIGN - 1) & ~((sh_off_t)(OBUCK_ALIGN - 1));
381     }
382   while (hdrp->oid == OBUCK_OID_DELETED);
383   if (obuck_get_pos(hdrp->oid) != bucket_start)
384     obuck_broken("Invalid backlink");
385   obuck_remains = hdrp->length;
386   limiter.bptr = limiter.bstop = limiter.buffer = limiter.bufend = NULL;
387   limiter.name = "Bucket";
388   limiter.pos = 0;
389   limiter.refill = obuck_slurp_refill;
390   return &limiter;
391 }
392
393 /*** Shakedown ***/
394
395 void
396 obuck_shakedown(int (*kibitz)(struct obuck_header *old, oid_t new, byte *buck))
397 {
398   byte *rbuf, *wbuf, *msg;
399   sh_off_t rstart, wstart, w_bucket_start;
400   int roff, woff, rsize, l;
401   struct obuck_header *rhdr, *whdr;
402
403   rbuf = xmalloc(obuck_shake_buflen);
404   wbuf = xmalloc(obuck_shake_buflen);
405   rstart = wstart = 0;
406   roff = woff = rsize = 0;
407
408   /* We need to be the only accessor, all the object ID's are becoming invalid */
409   obuck_lock_write();
410
411   for(;;)
412     {
413       bucket_start = rstart + roff;
414       w_bucket_start = wstart + woff;
415       if (rsize - roff < OBUCK_ALIGN)
416         goto reread;
417       rhdr = (struct obuck_header *)(rbuf + roff);
418       if (rhdr->magic != OBUCK_MAGIC ||
419           rhdr->oid != OBUCK_OID_DELETED && rhdr->oid != (oid_t)(bucket_start >> OBUCK_SHIFT))
420         {
421           msg = "header mismatch";
422           goto broken;
423         }
424       l = (sizeof(struct obuck_header) + rhdr->length + 4 + OBUCK_ALIGN - 1) & ~(OBUCK_ALIGN-1);
425       if (rsize - roff < l)
426         goto reread;
427       if (GET_U32(rbuf + roff + l - 4) != OBUCK_TRAILER)
428         {
429           msg = "missing trailer";
430           goto broken;
431         }
432       if (rhdr->oid != OBUCK_OID_DELETED)
433         {
434           if (kibitz(rhdr, w_bucket_start >> OBUCK_SHIFT, (byte *)(rhdr+1)))
435             {
436               if (bucket_start == w_bucket_start)
437                 {
438                   /* No copying needed now nor ever in the past, hence woff==0 */
439                   wstart += l;
440                 }
441               else
442                 {
443                   if (obuck_shake_buflen - woff < l)
444                     {
445                       if (sh_pwrite(obuck_fd, wbuf, woff, wstart) != woff)
446                         die("obuck_shakedown write failed: %m");
447                       wstart += woff;
448                       woff = 0;
449                     }
450                   whdr = (struct obuck_header *)(wbuf+woff);
451                   memcpy(whdr, rhdr, l);
452                   whdr->oid = w_bucket_start >> OBUCK_SHIFT;
453                   woff += l;
454                 }
455             }
456         }
457       else
458         kibitz(rhdr, OBUCK_OID_DELETED, NULL);
459       roff += l;
460       continue;
461
462     reread:
463       if (roff)
464         {
465           memmove(rbuf, rbuf+roff, rsize-roff);
466           rsize -= roff;
467           rstart += roff;
468           roff = 0;
469         }
470       l = sh_pread(obuck_fd, rbuf+rsize, obuck_shake_buflen-rsize, rstart+rsize);
471       if (l < 0)
472         die("obuck_shakedown read error: %m");
473       if (!l)
474         {
475           if (!rsize)
476             break;
477           msg = "unexpected EOF";
478           goto broken;
479         }
480       rsize += l;
481     }
482   if (woff)
483     {
484       if (sh_pwrite(obuck_fd, wbuf, woff, wstart) != woff)
485         die("obuck_shakedown write failed: %m");
486       wstart += woff;
487     }
488   sh_ftruncate(obuck_fd, wstart);
489
490   obuck_unlock();
491   xfree(rbuf);
492   xfree(wbuf);
493   return;
494
495  broken:
496   log(L_ERROR, "Error during object pool shakedown: %s (pos=%Ld), gathering debris", msg, (long long) bucket_start);
497   if (woff)
498     {
499       sh_pwrite(obuck_fd, wbuf, woff, wstart);
500       wstart += woff;
501     }
502   while (wstart + OBUCK_ALIGN <= bucket_start)
503     {
504       u32 check = OBUCK_TRAILER;
505       obuck_hdr.magic = OBUCK_MAGIC;
506       obuck_hdr.oid = OBUCK_OID_DELETED;
507       if (bucket_start - wstart < 0x40000000)
508         obuck_hdr.length = bucket_start - wstart - sizeof(obuck_hdr) - 4;
509       else
510         obuck_hdr.length = 0x40000000 - sizeof(obuck_hdr) - 4;
511       obuck_hdr.orig_length = obuck_hdr.length;
512       sh_pwrite(obuck_fd, &obuck_hdr, sizeof(obuck_hdr), wstart);
513       wstart += sizeof(obuck_hdr) + obuck_hdr.length + 4;
514       sh_pwrite(obuck_fd, &check, 4, wstart-4);
515     }
516   die("Fatal error during object pool shakedown");
517 }
518
519 /*** Testing ***/
520
521 #ifdef TEST
522
523 #define COUNT 5000
524 #define MAXLEN 10000
525 #define KILLPERC 13
526 #define LEN(i) ((259309*(i))%MAXLEN)
527
528 int main(int argc, char **argv)
529 {
530   int ids[COUNT];
531   unsigned int i, j, cnt;
532   struct obuck_header h;
533   struct fastbuf *b;
534
535   log_init(NULL);
536   if (cf_getopt(argc, argv, CF_SHORT_OPTS, CF_NO_LONG_OPTS, NULL) >= 0 ||
537       optind < argc)
538   {
539     fputs("This program supports only the following command-line arguments:\n" CF_USAGE, stderr);
540     exit(1);
541   }
542
543   unlink(obuck_name);
544   obuck_init(1);
545   for(j=0; j<COUNT; j++)
546     {
547       b = obuck_create();
548       for(i=0; i<LEN(j); i++)
549         bputc(b, (i+j) % 256);
550       obuck_create_end(b, &h);
551       printf("Writing %08x %d -> %d\n", h.oid, h.orig_length, h.length);
552       ids[j] = h.oid;
553     }
554   for(j=0; j<COUNT; j++)
555     if (j % 100 < KILLPERC)
556       {
557         printf("Deleting %08x\n", ids[j]);
558         obuck_delete(ids[j]);
559       }
560   cnt = 0;
561   for(j=0; j<COUNT; j++)
562     if (j % 100 >= KILLPERC)
563       {
564         cnt++;
565         h.oid = ids[j];
566         obuck_find_by_oid(&h);
567         b = obuck_fetch();
568         printf("Reading %08x %d -> %d\n", h.oid, h.orig_length, h.length);
569         if (h.orig_length != LEN(j))
570           die("Invalid length");
571         for(i=0; i<h.orig_length; i++)
572           if ((unsigned) bgetc(b) != (i+j) % 256)
573             die("Contents mismatch");
574         if (bgetc(b) != EOF)
575           die("EOF mismatch");
576         obuck_fetch_end(b);
577       }
578   if (obuck_find_first(&h, 0))
579     do
580       {
581         printf("<<< %08x\t%d\n", h.oid, h.orig_length);
582         cnt--;
583       }
584     while (obuck_find_next(&h, 0));
585   if (cnt)
586     die("Walk mismatch");
587   obuck_cleanup();
588   return 0;
589 }
590
591 #endif