Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge commit '045db1657e870c721be490b411868f4181a12ced' into surf++
[simgrid.git] / src / xbt / mmalloc / mmorecore.c
1 /* Support for an sbrk-like function that uses mmap.
2    Copyright 1992, 2000 Free Software Foundation, Inc.
3
4    Contributed by Fred Fish at Cygnus Support.   fnf@cygnus.com */
5
6 /* Copyright (c) 2010-2012. The SimGrid Team.
7  * All rights reserved.                                                     */
8
9 /* This program is free software; you can redistribute it and/or modify it
10  * under the terms of the license (GNU LGPL) which comes with this package. */
11
12 #ifndef MAP_ANONYMOUS
13 #define MAP_ANONYMOUS MAP_ANON
14 #endif
15
16 #ifdef HAVE_UNISTD_H
17 #include <unistd.h>             /* Prototypes for lseek */
18 #endif
19 #include <stdio.h>
20 #include <fcntl.h>
21 #include <sys/mman.h>
22
23 #include "mmprivate.h"
24
25 /* Cache the pagesize for the current host machine.  Note that if the host
26    does not readily provide a getpagesize() function, we need to emulate it
27    elsewhere, not clutter up this file with lots of kluges to try to figure
28    it out. */
29
30 static size_t pagesize;
31
32 #define PAGE_ALIGN(addr) (void*) (((long)(addr) + pagesize - 1) & \
33                                   ~(pagesize - 1))
34
35 /* Return MAP_PRIVATE if MDP represents /dev/zero.  Otherwise, return
36    MAP_SHARED.  */
37 #define MAP_PRIVATE_OR_SHARED(MDP) (( MDP -> flags & MMALLOC_ANONYMOUS) \
38                                     ? MAP_PRIVATE                       \
39                                     : MAP_SHARED)
40
41 /* Return MAP_ANONYMOUS if MDP uses anonymous mapping. Otherwise, return 0 */
42 #define MAP_IS_ANONYMOUS(MDP) (((MDP) -> flags & MMALLOC_ANONYMOUS) \
43                                ? MAP_ANONYMOUS                      \
44                                : 0)
45
46 /* Return -1 if MDP uses anonymous mapping. Otherwise, return MDP->FD */
47 #define MAP_ANON_OR_FD(MDP) (((MDP) -> flags & MMALLOC_ANONYMOUS) \
48                              ? -1                                 \
49                              : (MDP) -> fd)
50
51 /*  Get core for the memory region specified by MDP, using SIZE as the
52     amount to either add to or subtract from the existing region.  Works
53     like sbrk(), but using mmap().
54
55     It never returns NULL. Instead, it dies verbosely on errors. */
56
57 void *mmorecore(struct mdesc *mdp, ssize_t size)
58 {
59   ssize_t test = 0;
60   void *result; // please keep it uninitialized to track issues
61   off_t foffset;                /* File offset at which new mapping will start */
62   size_t mapbytes;              /* Number of bytes to map */
63   void *moveto;                 /* Address where we wish to move "break value" to */
64   void *mapto;                  /* Address we actually mapped to */
65   char buf = 0;                 /* Single byte to write to extend mapped file */
66
67 //  fprintf(stderr,"increase %p by %u\n",mdp,size);
68   if (pagesize == 0)
69     pagesize = getpagesize();
70
71   if (size == 0) {
72     /* Just return the current "break" value. */
73     result = mdp->breakval;
74
75   } else if (size < 0) {
76     /* We are deallocating memory.  If the amount requested would cause
77        us to try to deallocate back past the base of the mmap'd region
78        then die verbosely.  Otherwise, deallocate the memory and return
79        the old break value. */
80     if (((char *) mdp->breakval) + size >= (char *) mdp->base) {
81       result = (void *) mdp->breakval;
82       mdp->breakval = (char *) mdp->breakval + size;
83       moveto = PAGE_ALIGN(mdp->breakval);
84       munmap(moveto,
85              (size_t) (((char *) mdp->top) - ((char *) moveto)) - 1);
86       mdp->top = moveto;
87     } else {
88       fprintf(stderr,"Internal error: mmap was asked to deallocate more memory than it previously allocated. Bailling out now!\n");
89       abort();
90     }
91   } else {
92     /* We are allocating memory. Make sure we have an open file
93        descriptor if not working with anonymous memory. */
94     if (!(mdp->flags & MMALLOC_ANONYMOUS) && mdp->fd < 0) {
95       fprintf(stderr,"Internal error: mmap file descriptor <0 (%d), without MMALLOC_ANONYMOUS being in the flags.\n",mdp->fd);
96       abort();
97     } else if ((char *) mdp->breakval + size > (char *) mdp->top) {
98       /* The request would move us past the end of the currently
99          mapped memory, so map in enough more memory to satisfy
100          the request.  This means we also have to grow the mapped-to
101          file by an appropriate amount, since mmap cannot be used
102          to extend a file. */
103       moveto = PAGE_ALIGN((char *) mdp->breakval + size);
104       mapbytes = (char *) moveto - (char *) mdp->top;
105       foffset = (char *) mdp->top - (char *) mdp->base;
106
107       if (mdp->fd > 0) {
108         /* FIXME:  Test results of lseek() */
109         lseek(mdp->fd, foffset + mapbytes - 1, SEEK_SET);
110         test = write(mdp->fd, &buf, 1);
111         if (test == -1) {
112           fprintf(stderr,"Internal error: write to mmap'ed fd failed! error: %s", strerror(errno));
113           abort();
114         }
115       }
116
117       /* Let's call mmap. Note that it is possible that mdp->top
118          is 0. In this case mmap will choose the address for us */
119       mapto = mmap(mdp->top, mapbytes, PROT_READ | PROT_WRITE,
120                    MAP_PRIVATE_OR_SHARED(mdp) | MAP_IS_ANONYMOUS(mdp) |
121                    MAP_FIXED, MAP_ANON_OR_FD(mdp), foffset);
122
123       if (mapto == (void *) -1/* That's MAP_FAILED */) {
124         char buff[1024];
125         fprintf(stderr,"Internal error: mmap returned MAP_FAILED! error: %s\n",strerror(errno));
126         sprintf(buff,"cat /proc/%d/maps",getpid());
127         int status = system(buff);
128         if (status == -1 || !(WIFEXITED(status) && WEXITSTATUS(status) == 0))
129           fprintf(stderr, "Something went wrong when trying to %s\n", buff);
130         sleep(1);
131         abort();
132       }
133
134       if (mdp->top == 0)
135         mdp->base = mdp->breakval = mapto;
136
137       mdp->top = PAGE_ALIGN((char *) mdp->breakval + size);
138       result = (void *) mdp->breakval;
139       mdp->breakval = (char *) mdp->breakval + size;
140     } else {
141       result = (void *) mdp->breakval;
142       mdp->breakval = (char *) mdp->breakval + size;
143     }
144   }
145   return (result);
146 }
147
148 void *__mmalloc_remap_core(xbt_mheap_t mdp)
149 {
150   /* FIXME:  Quick hack, needs error checking and other attention. */
151
152   return mmap(mdp->base, (char*) mdp->top - (char*) mdp->base,
153               PROT_READ | PROT_WRITE | PROT_EXEC,
154               MAP_PRIVATE_OR_SHARED(mdp) | MAP_FIXED, mdp->fd, 0);
155 }
156