Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Improve the integration of mmalloc and mc_memory into the mess.
[simgrid.git] / src / xbt / mmalloc / attach.c
1 /* Initialization for access to a mmap'd malloc managed region.
2    Copyright 1992, 2000 Free Software Foundation, Inc.
3
4    Contributed by Fred Fish at Cygnus Support.   fnf@cygnus.com
5
6 This file is part of the GNU C Library.
7
8 The GNU C Library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Library General Public License as
10 published by the Free Software Foundation; either version 2 of the
11 License, or (at your option) any later version.
12
13 The GNU C Library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 Library General Public License for more details.
17
18 You should have received a copy of the GNU Library General Public
19 License along with the GNU C Library; see the file COPYING.LIB.  If
20 not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.  */
22
23 #include <sys/types.h>
24 #include <fcntl.h> /* After sys/types.h, at least for dpx/2.  */
25 #include <sys/stat.h>
26 #include <string.h>
27 #ifdef HAVE_UNISTD_H
28 #include <unistd.h>     /* Prototypes for lseek */
29 #endif
30 #include "mmprivate.h"
31
32 #ifndef SEEK_SET
33 #define SEEK_SET 0
34 #endif
35
36
37 /* Forward declarations/prototypes for local functions */
38
39 static struct mdesc *reuse (int fd);
40
41 /* Initialize access to a mmalloc managed region.
42
43    If FD is a valid file descriptor for an open file then data for the
44    mmalloc managed region is mapped to that file, otherwise an anonymous
45    map is used if supported by the underlying OS. In case of running in
46    an OS without support of anonymous mappings then "/dev/zero" is used 
47    and in both cases the data will not exist in any filesystem object.
48
49    If the open file corresponding to FD is from a previous use of
50    mmalloc and passes some basic sanity checks to ensure that it is
51    compatible with the current mmalloc package, then it's data is
52    mapped in and is immediately accessible at the same addresses in
53    the current process as the process that created the file (ignoring
54    the BASEADDR parameter).
55
56    For non valid FDs or empty files ones the mapping is established 
57    starting at the specified address BASEADDR in the process address 
58    space.
59
60    The provided BASEADDR should be choosed carefully in order to avoid
61    bumping into existing mapped regions or future mapped regions.
62
63    On success, returns a "malloc descriptor" which is used in subsequent
64    calls to other mmalloc package functions.  It is explicitly "void *"
65    ("char *" for systems that don't fully support void) so that users
66    of the package don't have to worry about the actual implementation
67    details.
68
69    On failure returns NULL. */
70
71 void *
72 mmalloc_attach (int fd, void *baseaddr)
73 {
74   struct mdesc mtemp;
75   struct mdesc *mdp;
76   void* mbase;
77   struct stat sbuf;
78
79   /* First check to see if FD is a valid file descriptor, and if so, see
80      if the file has any current contents (size > 0).  If it does, then
81      attempt to reuse the file.  If we can't reuse the file, either
82      because it isn't a valid mmalloc produced file, was produced by an
83      obsolete version, or any other reason, then we fail to attach to
84      this file. */
85
86   if (fd >= 0)
87   {
88     if (fstat (fd, &sbuf) < 0)
89           return (NULL);
90
91     else if (sbuf.st_size > 0)
92           return ((void*) reuse (fd));
93   }
94
95   /* If the user provided NULL BASEADDR then fail */
96   if (baseaddr == NULL)
97     return (NULL);
98
99   /* We start off with the malloc descriptor allocated on the stack, until
100      we build it up enough to call _mmalloc_mmap_morecore() to allocate the
101      first page of the region and copy it there.  Ensure that it is zero'd and
102      then initialize the fields that we know values for. */
103
104   mdp = &mtemp;
105   memset ((char *) mdp, 0, sizeof (mtemp));
106   strncpy (mdp -> magic, MMALLOC_MAGIC, MMALLOC_MAGIC_SIZE);
107   mdp -> headersize = sizeof (mtemp);
108   mdp -> version = MMALLOC_VERSION;
109   mdp -> morecore = __mmalloc_mmap_morecore;
110   mdp -> fd = fd;
111   mdp -> base = mdp -> breakval = mdp -> top = baseaddr;
112
113   /* If we have not been passed a valid open file descriptor for the file
114      to map to, then we go for an anonymous map */
115
116   if(mdp -> fd < 0)
117     mdp -> flags |= MMALLOC_ANONYMOUS;
118
119   /* If we have not been passed a valid open file descriptor for the file
120      to map to, then open /dev/zero and use that to map to. */
121
122 /*  if (mdp -> fd < 0)*/
123 /*  {*/
124 /*    if ((mdp -> fd = open ("/dev/zero", O_RDWR)) < 0)*/
125 /*      {*/
126 /*        return (NULL);*/
127 /*      }*/
128 /*    else*/
129 /*      {*/
130 /*        mdp -> flags |= MMALLOC_DEVZERO;*/
131 /*      }*/
132 /*  }*/
133
134   /* Now try to map in the first page, copy the malloc descriptor structure
135      there, and arrange to return a pointer to this new copy.  If the mapping
136      fails, then close the file descriptor if it was opened by us, and arrange
137      to return a NULL. */
138
139   if ((mbase = mdp -> morecore (mdp, sizeof (mtemp))) != NULL)
140   {
141     memcpy (mbase, mdp, sizeof (mtemp));
142 //    mdp = (struct mdesc *) mbase;
143   }
144   else
145   {
146     abort();
147 //    mdp = NULL;
148   }
149   
150   return ((void*) mbase);
151 }
152
153 /* Given an valid file descriptor on an open file, test to see if that file
154    is a valid mmalloc produced file, and if so, attempt to remap it into the
155    current process at the same address to which it was previously mapped.
156
157    Note that we have to update the file descriptor number in the malloc-
158    descriptor read from the file to match the current valid one, before
159    trying to map the file in, and again after a successful mapping and
160    after we've switched over to using the mapped in malloc descriptor 
161    rather than the temporary one on the stack.
162
163    Once we've switched over to using the mapped in malloc descriptor, we
164    have to update the pointer to the morecore function, since it almost
165    certainly will be at a different address if the process reusing the
166    mapped region is from a different executable.
167
168    Also note that if the heap being remapped previously used the mmcheckf()
169    routines, we need to update the hooks since their target functions
170    will have certainly moved if the executable has changed in any way.
171    We do this by calling mmcheckf() internally.
172
173    Returns a pointer to the malloc descriptor if successful, or NULL if
174    unsuccessful for some reason. */
175
176 static struct mdesc *
177 reuse (int fd)
178 {
179   struct mdesc mtemp;
180   struct mdesc *mdp = NULL;
181
182   if (lseek (fd, 0L, SEEK_SET) != 0)
183     return NULL;
184   if (read (fd, (char *) &mtemp, sizeof (mtemp)) != sizeof (mtemp))
185     return NULL;
186   if (mtemp.headersize != sizeof (mtemp))
187     return NULL;
188   if (strcmp (mtemp.magic, MMALLOC_MAGIC) != 0)
189     return NULL;
190   if (mtemp.version > MMALLOC_VERSION)
191     return NULL;
192
193   mtemp.fd = fd;
194   if (__mmalloc_remap_core (&mtemp) == mtemp.base)
195   {
196     mdp = (struct mdesc *) mtemp.base;
197         mdp -> fd = fd;
198         mdp -> morecore = __mmalloc_mmap_morecore;
199         if (mdp -> mfree_hook != NULL)
200         {
201           mmcheckf ((void*) mdp, (void (*) (void)) NULL, 1);
202         }
203   }
204   return (mdp);
205 }
206