]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/smartall.c
Update version + date
[bacula/bacula] / bacula / src / lib / smartall.c
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2000-2011 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from
7    many others, a complete list can be found in the file AUTHORS.
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version three of the GNU Affero General Public
10    License as published by the Free Software Foundation and included
11    in the file LICENSE.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU Affero General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23    Bacula® is a registered trademark of Kern Sibbald.
24    The licensor of Bacula is the Free Software Foundation Europe
25    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
26    Switzerland, email:ftf@fsfeurope.org.
27 */
28 /*
29
30                          S M A R T A L L O C
31                         Smart Memory Allocator
32
33         Evolved   over   several  years,  starting  with  the  initial
34         SMARTALLOC code for AutoSketch in 1986, guided  by  the  Blind
35         Watchbreaker,  John  Walker.  Isolated in this general-purpose
36         form in  September  of  1989.   Updated  with  be  more  POSIX
37         compliant  and  to  include Web-friendly HTML documentation in
38         October  of  1998  by  the  same  culprit.    For   additional
39         information and the current version visit the Web page:
40
41                   http://www.fourmilab.ch/smartall/
42
43 */
44
45 #define _LOCKMGR_COMPLIANT
46
47 #include "bacula.h"
48 /* Use the real routines here */
49 #undef realloc
50 #undef calloc
51 #undef malloc
52 #undef free
53
54 /* We normally turn off debugging here.
55  *  If you want it, simply #ifdef all the
56  *  following off.
57  */
58 #ifdef no_debug_xxxxx
59 #undef Dmsg1
60 #undef Dmsg2
61 #undef Dmsg3
62 #undef Dmsg4
63 #define Dmsg1(l,f,a1)
64 #define Dmsg2(l,f,a1,a2)
65 #define Dmsg3(l,f,a1,a2,a3)
66 #define Dmsg4(l,f,a1,a2,a3,a4)
67 #endif
68
69
70 uint64_t sm_max_bytes = 0;
71 uint64_t sm_bytes = 0;
72 uint32_t sm_max_buffers = 0;
73 uint32_t sm_buffers = 0;
74
75 #ifdef SMARTALLOC
76
77 static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
78
79 extern char my_name[];                /* daemon name */
80
81 #define EOS      '\0'              /* End of string sentinel */
82 #define sm_min(a, b) ((a) < (b) ? (a) : (b))
83
84 /*  Queue data structures  */
85
86 /*  Memory allocation control structures and storage.  */
87
88 struct abufhead {
89    struct b_queue abq;         /* Links on allocated queue */
90    uint32_t ablen;             /* Buffer length in bytes */
91    const char *abfname;        /* File name pointer */
92    uint32_t ablineno;          /* Line number of allocation */
93    bool abin_use;              /* set when malloced and cleared when free */
94 };
95
96 static struct b_queue abqueue = {    /* Allocated buffer queue */
97    &abqueue, &abqueue
98 };
99
100
101 static bool bufimode = false;   /* Buffers not tracked when True */
102
103 #define HEAD_SIZE BALIGN(sizeof(struct abufhead))
104
105
106 /*  SMALLOC  --  Allocate buffer, enqueing on the orphaned buffer
107                  tracking list.  */
108
109 static void *smalloc(const char *fname, int lineno, unsigned int nbytes)
110 {
111    char *buf;
112
113    /* Note:  Unix  MALLOC  actually  permits  a zero length to be
114       passed and allocates a valid block with  zero  user  bytes.
115       Such  a  block  can  later  be expanded with realloc().  We
116       disallow this based on the belief that it's better to  make
117       a  special case and allocate one byte in the rare case this
118       is desired than to miss all the erroneous occurrences where
119       buffer length calculation code results in a zero.  */
120
121    ASSERT(nbytes > 0);
122
123    nbytes += HEAD_SIZE + 1;
124    if ((buf = (char *)malloc(nbytes)) != NULL) {
125       struct abufhead *head = (struct abufhead *)buf;
126       P(mutex);
127       /* Enqueue buffer on allocated list */
128       qinsert(&abqueue, (struct b_queue *) buf);
129       head->ablen = nbytes;
130       head->abfname = bufimode ? NULL : fname;
131       head->ablineno = (uint32_t)lineno;
132       head->abin_use = true;
133       /* Emplace end-clobber detector at end of buffer */
134       buf[nbytes - 1] = (uint8_t)((((intptr_t) buf) & 0xFF) ^ 0xC5);
135       buf += HEAD_SIZE;  /* Increment to user data start */
136       if (++sm_buffers > sm_max_buffers) {
137          sm_max_buffers = sm_buffers;
138       }
139       sm_bytes += nbytes;
140       if (sm_bytes > sm_max_bytes) {
141          sm_max_bytes = sm_bytes;
142       }
143       V(mutex);
144    } else {
145       Emsg0(M_ABORT, 0, _("Out of memory\n"));
146    }
147    Dmsg4(1150, "smalloc %d at %p from %s:%d\n", nbytes, buf, fname, lineno);
148 #if    SMALLOC_SANITY_CHECK > 0
149    if (sm_bytes > SMALLOC_SANITY_CHECK) {
150       Emsg0(M_ABORT, 0, _("Too much memory used."));
151    }
152 #endif
153    return (void *)buf;
154 }
155
156 /*  SM_NEW_OWNER -- Update the File and line number for a buffer
157                     This is to accomodate mem_pool. */
158
159 void sm_new_owner(const char *fname, int lineno, char *buf)
160 {
161    buf -= HEAD_SIZE;  /* Decrement to header */
162    ((struct abufhead *)buf)->abfname = bufimode ? NULL : fname;
163    ((struct abufhead *)buf)->ablineno = (uint32_t) lineno;
164    ((struct abufhead *)buf)->abin_use = true;
165    return;
166 }
167
168 /*  SM_FREE  --  Update free pool availability.  FREE is never called
169                  except  through  this interface or by actuallyfree().
170                  free(x)  is  defined  to  generate  a  call  to  this
171                  routine.  */
172
173 void sm_free(const char *file, int line, void *fp)
174 {
175    char *cp = (char *) fp;
176    struct b_queue *qp;
177    uint32_t lineno = line;
178
179    if (cp == NULL) {
180       Emsg2(M_ABORT, 0, _("Attempt to free NULL called from %s:%d\n"), file, lineno);
181    }
182
183    cp -= HEAD_SIZE;
184    qp = (struct b_queue *)cp;
185    struct abufhead *head = (struct abufhead *)cp;
186
187    P(mutex);
188    Dmsg4(1150, "sm_free %d at %p from %s:%d\n",
189          head->ablen, fp,
190          get_basename(head->abfname), head->ablineno);
191
192    if (!head->abin_use) {
193       V(mutex);
194       Emsg2(M_ABORT, 0, _("double free from %s:%d\n"), file, lineno);
195    }
196    head->abin_use = false;
197
198    /* The following assertions will catch virtually every release
199       of an address which isn't an allocated buffer. */
200    if (qp->qnext->qprev != qp) {
201       V(mutex);
202       Emsg2(M_ABORT, 0, _("qp->qnext->qprev != qp called from %s:%d\n"), file, lineno);
203    }
204    if (qp->qprev->qnext != qp) {
205       V(mutex);
206       Emsg2(M_ABORT, 0, _("qp->qprev->qnext != qp called from %s:%d\n"), file, lineno);
207    }
208
209    /* The following assertion detects storing off the  end  of  the
210       allocated  space in the buffer by comparing the end of buffer
211       checksum with the address of the buffer.  */
212
213    if (((unsigned char *)cp)[head->ablen - 1] != ((((intptr_t) cp) & 0xFF) ^ 0xC5)) {
214       V(mutex);
215       Emsg6(M_ABORT, 0, _("Overrun buffer: len=%d addr=%p allocated: %s:%d called from %s:%d\n"), 
216          head->ablen, fp, get_basename(head->abfname), head->ablineno, file, line);
217    }
218    if (sm_buffers > 0) {
219       sm_buffers--;
220       sm_bytes -= head->ablen;
221    }
222
223    qdchain(qp);
224    V(mutex);
225
226    /* Now we wipe the contents of  the  just-released  buffer  with
227       "designer  garbage"  (Duff  Kurland's  phrase) of alternating
228       bits.  This is intended to ruin the day for any miscreant who
229       attempts to access data through a pointer into storage that's
230       been previously released.
231
232       Modified, kes May, 2007 to not zap the header. This allows us
233       to check the in_use bit and detect doubly freed buffers.
234    */
235
236    memset(cp+HEAD_SIZE, 0xAA, (int)(head->ablen - HEAD_SIZE));
237
238    free(cp);
239 }
240
241 /*  SM_MALLOC  --  Allocate buffer.  NULL is returned if no memory
242                    was available.  */
243
244 void *sm_malloc(const char *fname, int lineno, unsigned int nbytes)
245 {
246    void *buf;
247
248    if ((buf = smalloc(fname, lineno, nbytes)) != NULL) {
249
250       /* To catch sloppy code that assumes  buffers  obtained  from
251          malloc()  are  zeroed,  we  preset  the buffer contents to
252          "designer garbage" consisting of alternating bits.  */
253
254       memset(buf, 0x55, (int) nbytes);
255    } else {
256       Emsg0(M_ABORT, 0, _("Out of memory\n"));
257    }
258    return buf;
259 }
260
261 /*  SM_CALLOC  --  Allocate an array and clear it to zero.  */
262
263 void *sm_calloc(const char *fname, int lineno,
264                 unsigned int nelem, unsigned int elsize)
265 {
266    void *buf;
267
268    if ((buf = smalloc(fname, lineno, nelem * elsize)) != NULL) {
269       memset(buf, 0, (int) (nelem * elsize));
270    } else {
271       Emsg0(M_ABORT, 0, _("Out of memory\n"));
272    }
273    return buf;
274 }
275
276 /*  SM_REALLOC  --  Adjust the size of a  previously  allocated  buffer.
277                     Note  that  the trick of "resurrecting" a previously
278                     freed buffer with realloc() is NOT supported by this
279                     function.   Further, because of the need to maintain
280                     our control storage, SM_REALLOC must always allocate
281                     a  new  block  and  copy  the data in the old block.
282                     This may result in programs which make heavy use  of
283                     realloc() running much slower than normally.  */
284
285 void *sm_realloc(const char *fname, int lineno, void *ptr, unsigned int size)
286 {
287    unsigned osize;
288    void *buf;
289    char *cp = (char *) ptr;
290
291    Dmsg4(1400, "sm_realloc %s:%d %p %d\n", get_basename(fname), (uint32_t)lineno, ptr, size);
292    if (size <= 0) {
293       e_msg(fname, lineno, M_ABORT, 0, _("sm_realloc size: %d\n"), size);
294    }
295
296    /*  If  the  old  block  pointer  is  NULL, treat realloc() as a
297       malloc().  SVID is silent  on  this,  but  many  C  libraries
298       permit this.  */
299    if (ptr == NULL) {
300       return sm_malloc(fname, lineno, size);
301    }
302
303    /* If the old and new sizes are the same, be a nice guy and just
304       return the buffer passed in.  */
305    cp -= HEAD_SIZE;
306    struct abufhead *head = (struct abufhead *)cp;
307    osize = head->ablen - (HEAD_SIZE + 1);
308    if (size == osize) {
309       return ptr;
310    }
311
312    /* Sizes differ.  Allocate a new buffer of the  requested  size.
313       If  we  can't  obtain  such a buffer, act as defined in SVID:
314       return NULL from  realloc()  and  leave  the  buffer  in  PTR
315       intact.  */
316
317 // sm_buffers--;
318 // sm_bytes -= head->ablen;
319
320    if ((buf = smalloc(fname, lineno, size)) != NULL) {
321       memcpy(buf, ptr, (int)sm_min(size, osize));
322       /* If the new buffer is larger than the old, fill the balance
323          of it with "designer garbage". */
324       if (size > osize) {
325          memset(((char *) buf) + osize, 0x55, (int) (size - osize));
326       }
327
328       /* All done.  Free and dechain the original buffer. */
329       sm_free(fname, lineno, ptr);
330    }
331    Dmsg4(4150, _("sm_realloc %d at %p from %s:%d\n"), size, buf, get_basename(fname), (uint32_t)lineno);
332    return buf;
333 }
334
335 /*  ACTUALLYMALLOC  --  Call the system malloc() function to obtain
336                         storage which will eventually be released
337                         by system or library routines not compiled
338                         using SMARTALLOC.  */
339
340 void *actuallymalloc(unsigned int size)
341 {
342    return malloc(size);
343 }
344
345 /*  ACTUALLYCALLOC  --  Call the system calloc() function to obtain
346                         storage which will eventually be released
347                         by system or library routines not compiled
348                         using SMARTALLOC.  */
349
350 void *actuallycalloc(unsigned int nelem, unsigned int elsize)
351 {
352    return calloc(nelem, elsize);
353 }
354
355 /*  ACTUALLYREALLOC  --  Call the system realloc() function to obtain
356                          storage which will eventually be released
357                          by system or library routines not compiled
358                          using SMARTALLOC.  */
359
360 void *actuallyrealloc(void *ptr, unsigned int size)
361 {
362    Dmsg2(1400, "Actuallyrealloc %p %d\n", ptr, size);
363    return realloc(ptr, size);
364 }
365
366 /*  ACTUALLYFREE  --  Interface to system free() function to release
367                       buffers allocated by low-level routines. */
368
369 void actuallyfree(void *cp)
370 {
371    free(cp);
372 }
373
374 /*  SM_DUMP  --  Print orphaned buffers (and dump them if BUFDUMP is
375  *               True).
376  */
377 void sm_dump(bool bufdump, bool in_use) 
378 {
379    struct abufhead *ap;
380
381    P(mutex);
382
383    ap = (struct abufhead *)abqueue.qnext;
384
385    while (ap != (struct abufhead *) &abqueue) {
386
387       if ((ap == NULL) ||
388           (ap->abq.qnext->qprev != (struct b_queue *) ap) ||
389           (ap->abq.qprev->qnext != (struct b_queue *) ap)) {
390          Pmsg1(0, _(
391             "\nOrphaned buffers exist.  Dump terminated following\n"
392             "  discovery of bad links in chain of orphaned buffers.\n"
393             "  Buffer address with bad links: %p\n"), ap);
394          break;
395       }
396
397       if (ap->abfname != NULL) {
398          char errmsg[500];
399          uint32_t memsize = ap->ablen - (HEAD_SIZE + 1);
400          char *cp = ((char *)ap) + HEAD_SIZE;
401
402          Pmsg6(0, "%s buffer: %s %d bytes at %p from %s:%d\n", 
403             in_use?"In use":"Orphaned",
404             my_name, memsize, cp, get_basename(ap->abfname), ap->ablineno);
405          if (bufdump) {
406             char buf[20];
407             unsigned llen = 0;
408
409             errmsg[0] = EOS;
410             while (memsize) {
411                if (llen >= 16) {
412                   bstrncat(errmsg, "\n", sizeof(errmsg));
413                   llen = 0;
414                   Pmsg1(0, "%s", errmsg);
415                   errmsg[0] = EOS;
416                }
417                bsnprintf(buf, sizeof(buf), " %02X",
418                   (*cp++) & 0xFF);
419                bstrncat(errmsg, buf, sizeof(errmsg));
420                llen++;
421                memsize--;
422             }
423             Pmsg1(0, "%s\n", errmsg);
424          }
425       }
426       ap = (struct abufhead *) ap->abq.qnext;
427    }
428    V(mutex);
429 }
430
431 #undef sm_check
432 /*  SM_CHECK --  Check the buffers and dump if any damage exists. */
433 void sm_check(const char *fname, int lineno, bool bufdump)
434 {
435    if (!sm_check_rtn(fname, lineno, bufdump)) {
436       Emsg2(M_ABORT, 0, _("Damaged buffer found. Called from %s:%d\n"),
437             get_basename(fname), (uint32_t)lineno);
438    }
439 }
440
441 #undef sm_check_rtn
442 /*  SM_CHECK_RTN -- Check the buffers and return 1 if OK otherwise 0 */
443 int sm_check_rtn(const char *fname, int lineno, bool bufdump)
444 {
445    struct abufhead *ap;
446    int bad, badbuf = 0;
447
448    P(mutex);
449    ap = (struct abufhead *) abqueue.qnext;
450    while (ap != (struct abufhead *)&abqueue) {
451       bad = 0;
452       if (ap != NULL) {
453          if (ap->abq.qnext->qprev != (struct b_queue *)ap) {
454             bad = 0x1;
455          }
456          if (ap->abq.qprev->qnext != (struct b_queue *)ap) {
457             bad |= 0x2;
458          }
459          if (((unsigned char *) ap)[((struct abufhead *)ap)->ablen - 1] !=
460               ((((intptr_t) ap) & 0xFF) ^ 0xC5)) {
461             bad |= 0x4;
462          }
463       } else {
464          bad = 0x8;
465       }
466       badbuf |= bad;
467       if (bad) {
468          Pmsg2(0, 
469             _("\nDamaged buffers found at %s:%d\n"), get_basename(fname), (uint32_t)lineno);
470
471          if (bad & 0x1) {
472             Pmsg0(0,  _("  discovery of bad prev link.\n"));
473          }
474          if (bad & 0x2) {
475             Pmsg0(0, _("  discovery of bad next link.\n"));
476          }
477          if (bad & 0x4) {
478             Pmsg0(0, _("  discovery of data overrun.\n"));
479          }
480          if (bad & 0x8) {
481             Pmsg0(0, _("  NULL pointer.\n"));
482          }
483
484          if (!ap) {
485             goto get_out;
486          }
487          Pmsg1(0, _("  Buffer address: %p\n"), ap);
488
489          if (ap->abfname != NULL) {
490             uint32_t memsize = ap->ablen - (HEAD_SIZE + 1);
491             char errmsg[80];
492
493             Pmsg4(0, 
494               _("Damaged buffer:  %6u bytes allocated at line %d of %s %s\n"),
495                memsize, ap->ablineno, my_name, get_basename(ap->abfname)
496             );
497             if (bufdump) {
498                unsigned llen = 0;
499                char *cp = ((char *) ap) + HEAD_SIZE;
500
501                errmsg[0] = EOS;
502                while (memsize) {
503                   if (llen >= 16) {
504                      strcat(errmsg, "\n");
505                      llen = 0;
506                      Pmsg1(0, "%s", errmsg);
507                      errmsg[0] = EOS;
508                   }
509                   if (*cp < 0x20) {
510                      sprintf(errmsg + strlen(errmsg), " %02X",
511                         (*cp++) & 0xFF);
512                   } else {
513                      sprintf(errmsg + strlen(errmsg), " %c ",
514                         (*cp++) & 0xFF);
515                   }
516                   llen++;
517                   memsize--;
518                }
519                Pmsg1(0, "%s\n", errmsg);
520             }
521          }
522       }
523       ap = (struct abufhead *)ap->abq.qnext;
524    }
525 get_out:
526    V(mutex);
527    return badbuf ? 0 : 1;
528 }
529
530
531 /*  SM_STATIC  --  Orphaned buffer detection can be disabled  (for  such
532                    items  as buffers allocated during initialisation) by
533                    calling   sm_static(1).    Normal   orphaned   buffer
534                    detection  can be re-enabled with sm_static(0).  Note
535                    that all the other safeguards still apply to  buffers
536                    allocated  when  sm_static(1)  mode is in effect.  */
537
538 void sm_static(bool mode)
539 {
540    bufimode = mode;
541 }
542
543 /*
544  * Here we overload C++'s global new and delete operators
545  *  so that the memory is allocated through smartalloc.
546  */
547
548 #ifdef xxx
549 void * operator new(size_t size)
550 {
551 // Dmsg1(000, "new called %d\n", size);
552    return sm_malloc(__FILE__, __LINE__, size);
553 }
554
555 void operator delete(void *buf)
556 {
557 // Dmsg1(000, "free called %p\n", buf);
558    sm_free(__FILE__, __LINE__, buf);
559 }
560 #endif
561
562 #endif