-
Notifications
You must be signed in to change notification settings - Fork 2
/
lib_safe.h
79 lines (74 loc) · 2.81 KB
/
lib_safe.h
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
/*
* Lessfs: A data deduplicating filesystem.
* Copyright (C) 2008 Mark Ruijter <[email protected]>
*
* This program is free software.
* You can redistribute lessfs and/or modify it under the terms of either
* (1) the GNU General Public License; either version 3 of the License,
* or (at your option) any later version as published by
* the Free Software Foundation; or (2) obtain a commercial license
* by contacting the Author.
*
* 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, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#define ERRHANDLE(f...){ LFATAL(f); exitFunc(); }
#define s_malloc(size) x_malloc (size, __FILE__, __LINE__)
#define s_zmalloc(size) x_zmalloc (size, __FILE__, __LINE__)
#define s_free(mem_ref) x_free(mem_ref,__FILE__, __LINE__)
#define s_strdup(size) x_strdup(size, __FILE__, __LINE__)
#define s_dirname(path) x_dirname(path,__FILE__,__LINE__)
#define s_basename(path) x_basename(path,__FILE__,__LINE__)
typedef struct {
unsigned long size;
unsigned char *data;
} compr;
typedef struct {
unsigned long int address;
unsigned int size;
char filename[128];
unsigned int line;
} MEMINFO;
void *x_malloc(size_t, char *, unsigned int);
void *bdb_malloc(size_t);
void bdb_free(void *);
void *bdb_realloc(void *, size_t);
void *x_zmalloc(size_t, char *, unsigned int);
char *x_strdup(const char *, char *, unsigned int);
FILE *s_fopen(char *, char *);
int s_open(const char *, int);
int s_open2(const char *, int, mode_t);
void *s_realloc(void *, size_t);
void *as_sprintf(char *, unsigned int, const char *, ...);
char **s_srtOpenDir(char *);
int dirCnt(char *);
void s_fputs(const char *, FILE *);
int s_chdir(const char *);
int s_link(const char *, const char *);
int s_unlink(const char *);
void exitFunc();
void tstamp();
void estamp();
char *as_strcat(char *, const char *);
char *as_strarrcat(const char **, ssize_t);
int s_read(int, unsigned char *, int);
int s_write(int, const unsigned char *, int);
int s_pwrite(int, const void *, size_t, off_t);
int s_lckpwrite(int, const void *, size_t, off_t);
int s_pread(int fd, void *, size_t, off_t);
int mkpath(const char *, mode_t);
char *x_dirname(char *, char *, unsigned int);
char *x_basename(char *, char *, unsigned int);
char *s_fgets(int, FILE *);
int s_lckpread(int, void *, size_t, off_t);
void leak_report();
void x_free(void *, char *, unsigned int);
#ifdef FILELOG
void wfile_log(char *, char * , unsigned int, const char *, ...);
#endif