]> git.proxmox.com Git - libgit2.git/commitdiff
Wrap malloc and friends and report out of memory as GIT_ENOMEM
authorShawn O. Pearce <spearce@spearce.org>
Wed, 31 Dec 2008 07:21:36 +0000 (23:21 -0800)
committerShawn O. Pearce <spearce@spearce.org>
Wed, 31 Dec 2008 07:28:30 +0000 (23:28 -0800)
We now forbid direct use of malloc, strdup or calloc within the
library and instead use wrapper functions git__malloc, etc. to
invoke the underlying library malloc and set git_errno to a no
memory error code if the allocation fails.

In the future once we have pack objects in memory we are likely
to enhance these routines with garbage collection logic to purge
cached pack data when allocations fail.  Because the size of the
function will grow somewhat large, we don't want to mark them for
inline as gcc tends to aggressively inline, creating larger than
expected executables.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
12 files changed:
src/commit.c
src/common.h
src/errors.c
src/fileops.c
src/git/common.h
src/hash.c
src/odb.c
src/oid.c
src/revwalk.c
src/thread-utils.c
src/util.c [new file with mode: 0644]
src/util.h

index ce02d0ef9ea8dc621df41d3f244858bd60f41d48..710a14e927dc232d94caf0fe87a42f0ffffe4b79 100644 (file)
@@ -23,6 +23,7 @@
  * Boston, MA 02110-1301, USA.
  */
 
+#include "common.h"
 #include "commit.h"
 
 const git_oid *git_commit_id(git_commit *c)
index 3d1f0e5811ec9f56650e70f8b27acaba9f34e602..3ba86b2be1383df8e6ac574538dba7d1d5d0120f 100644 (file)
@@ -2,7 +2,6 @@
 #define INCLUDE_common_h__
 
 #include "cc-compat.h"
-#include "util.h"
 #include "errors.h"
 
 #ifdef GIT_HAS_PTHREAD
@@ -19,6 +18,7 @@
 # define PRIuPTR "lu"
 #endif
 
+#include "util.h"
 #include "git/common.h"
 
 #define GIT_PATH_MAX 4096
index 75636f4771c5ccf864814b83431ab7cebb091506..deb106bfd2d36ecf9f0079224c12022201a39ad1 100644 (file)
@@ -19,7 +19,9 @@ int *git__errno_storage(void)
 {
        int *e = pthread_getspecific(errno_key);
        if (!e) {
+#undef calloc
                e = calloc(1, sizeof(*e));
+#define calloc(a,b) GIT__FORBID_MALLOC
                pthread_setspecific(errno_key, e);
        }
        return e;
@@ -33,6 +35,7 @@ static struct {
 } error_codes[] = {
        { GIT_ENOTOID, "Not a git oid" },
        { GIT_ENOTFOUND, "Object does not exist in the scope searched" },
+       { GIT_ENOMEM, "Not enough space" },
 };
 
 const char *git_strerror(int num)
index 1e4ac7e37cb4d50c35b7a52202c646a81e5c3dac..6522d02a70408e526425ca1579215bcb6bc505a7 100644 (file)
@@ -58,17 +58,18 @@ int gitfo_read_file(gitfo_buf *obj, const char *path)
        assert(obj && path && *path);
 
        if ((fd = gitfo_open(path, O_RDONLY)) < 0)
-               return GIT_ERROR;  /* TODO: error handling */
+               return GIT_ERROR;
 
-       if (((len = gitfo_size(fd)) < 0) || ((buff = malloc(len+1)) == NULL)) {
+       if (((len = gitfo_size(fd)) < 0) 
+               || ((buff = git__malloc(len + 1)) == NULL)) {
                gitfo_close(fd);
-               return GIT_ERROR;  /* TODO: error handling */
+               return GIT_ERROR;
        }
 
        if (gitfo_read(fd, buff, len) < 0) {
                gitfo_close(fd);
                free(buff);
-               return GIT_ERROR;  /* TODO: error handling */
+               return GIT_ERROR;
        }
        buff[len] = '\0';
 
@@ -98,13 +99,13 @@ gitfo_cache *gitfo_enable_caching(git_file fd, size_t cache_size)
 {
        gitfo_cache *ioc;
 
-       ioc = malloc(sizeof(*ioc));
+       ioc = git__malloc(sizeof(*ioc));
        if (!ioc)
                return NULL;
 
        ioc->pos = 0;
        ioc->cache_size = cache_size;
-       ioc->cache = malloc(cache_size);
+       ioc->cache = git__malloc(cache_size);
        if (!ioc->cache) {
                free(ioc);
                return NULL;
index 87f7f37296ff41d6f2c8603d68f159cdabd4510d..639753339cadc1e57823094276afd3b57bdd6b62 100644 (file)
@@ -55,6 +55,9 @@
 /** Input does not exist in the scope searched. */
 #define GIT_ENOTFOUND (GIT_ERROR - 2)
 
+/** Not enough space available. */
+#define GIT_ENOMEM (GIT_ERROR - 3)
+
 GIT_BEGIN_DECL
 
 /** A revision traversal pool. */
index 4ff1dd0992dd6baafdb5e166be6f9f23b59bdf87..65912dec2c33ed1cbae320dfe24f868e10f30ee1 100644 (file)
@@ -33,7 +33,7 @@ struct git_hash_ctx {
 
 git_hash_ctx *git_hash_new_ctx(void)
 {
-       git_hash_ctx *ctx = malloc(sizeof(*ctx));
+       git_hash_ctx *ctx = git__malloc(sizeof(*ctx));
 
        if (!ctx)
                return NULL;
index e96aa1e25e4ad7dab5d397227ba8f14d302bb393..e074873b8c02e2a3d3beef03dd3c8ee02cf3ce9e 100644 (file)
--- a/src/odb.c
+++ b/src/odb.c
@@ -279,7 +279,7 @@ static void *inflate_tail(z_stream *s, void *hb, size_t used, obj_hdr *hdr)
         * initial sequence of inflated data from the tail of the
         * head buffer, if any.
         */
-       if ((buf = malloc(hdr->size + 1)) == NULL)
+       if ((buf = git__malloc(hdr->size + 1)) == NULL)
                return NULL;
        tail = s->total_out - used;
        if (used > 0 && tail > 0) {
@@ -352,7 +352,10 @@ static int inflate_packlike_loose_disk_obj(git_obj *out, gitfo_buf *obj)
        /*
         * allocate a buffer and inflate the data into it
         */
-       buf = malloc(hdr.size+1);
+       buf = git__malloc(hdr.size + 1);
+       if (!buf)
+               return GIT_ERROR;
+
        in  = ((unsigned char *)obj->data) + used;
        len = obj->len - used;
        if (inflate_buffer(in, len, buf, hdr.size)) {
@@ -414,7 +417,7 @@ static int open_alternates(git_odb *db)
 {
        unsigned n = 0;
 
-       db->alternates = malloc(sizeof(*db->alternates) * (n + 1));
+       db->alternates = git__malloc(sizeof(*db->alternates) * (n + 1));
        if (!db->alternates)
                return GIT_ERROR;
 
@@ -424,11 +427,11 @@ static int open_alternates(git_odb *db)
 
 int git_odb_open(git_odb **out, const char *objects_dir)
 {
-       git_odb *db = malloc(sizeof(*db));
+       git_odb *db = git__malloc(sizeof(*db));
        if (!db)
                return GIT_ERROR;
 
-       db->objects_dir = strdup(objects_dir);
+       db->objects_dir = git__strdup(objects_dir);
        if (!db->objects_dir) {
                free(db);
                return GIT_ERROR;
index 8601554dda0b46a69fda76189c126fef0aaf1ba2..b8fce12b6878b56b0d7be4ce7123b4feef44c2c3 100644 (file)
--- a/src/oid.c
+++ b/src/oid.c
@@ -87,7 +87,7 @@ void git_oid_pathfmt(char *str, const git_oid *oid)
 
 char *git_oid_allocfmt(const git_oid *oid)
 {
-       char *str = malloc(GIT_OID_HEXSZ + 1);
+       char *str = git__malloc(GIT_OID_HEXSZ + 1);
        if (!str)
                return NULL;
        git_oid_fmt(str, oid);
index 81d3ab652c6af3483f72ed93b089edb999e7d140..11261fbff21758444d426356ff6327ee01e90752 100644 (file)
  * Boston, MA 02110-1301, USA.
  */
 
+#include "common.h"
 #include "revwalk.h"
 
 git_revpool *gitrp_alloc(git_odb *db)
 {
-       git_revpool *walk = malloc(sizeof(*walk));
+       git_revpool *walk = git__malloc(sizeof(*walk));
        if (!walk)
                return NULL;
 
index c945829d434378a0bd235640ce08144ec35a8cb3..5e8220f46ca2e7002bba745d8c0708622c64150f 100644 (file)
@@ -1,3 +1,4 @@
+#include "common.h"
 #include "thread-utils.h"
 
 #ifdef _WIN32
diff --git a/src/util.c b/src/util.c
new file mode 100644 (file)
index 0000000..64b5d4f
--- /dev/null
@@ -0,0 +1,26 @@
+#define GIT__NO_HIDE_MALLOC
+#include "common.h"
+
+void *git__malloc(size_t n)
+{
+       void *r = malloc(n);
+       if (!r)
+               return git_ptr_error(GIT_ENOMEM);
+       return r;
+}
+
+void *git__calloc(size_t a, size_t b)
+{
+       void *r = calloc(a, b);
+       if (!r)
+               return git_ptr_error(GIT_ENOMEM);
+       return r;
+}
+
+char *git__strdup(const char *s)
+{
+       char *r = strdup(s);
+       if (!s)
+               return git_ptr_error(GIT_ENOMEM);
+       return r;
+}
index 45504b7b9013d55e193001c8336f3db0ec2a81ed..f09aecf46ef68bfb4da47e593082805ebc644d5a 100644 (file)
@@ -3,6 +3,17 @@
 
 #define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))
 
+extern void *git__malloc(size_t);
+extern void *git__calloc(size_t, size_t);
+extern char *git__strdup(const char *);
+
+#ifndef GIT__NO_HIDE_MALLOC
+# define GIT__FORBID_MALLOC do_not_use_malloc_directly
+# define malloc(a)          GIT__FORBID_MALLOC
+# define calloc(a,b)        GIT__FORBID_MALLOC
+# define strdup(a)          GIT__FORBID_MALLOC
+#endif
+
 /*
  * Realloc the buffer pointed at by variable 'x' so that it can hold
  * at least 'nr' entries; the number of entries currently allocated