]>
git.saurik.com Git - apt.git/blob - apt-pkg/contrib/mmap.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: mmap.cc,v 1.22 2001/05/27 05:19:30 jgg Exp $
4 /* ######################################################################
6 MMap Class - Provides 'real' mmap or a faked mmap using read().
10 Some broken versions of glibc2 (libc6) have a broken definition
11 of mmap that accepts a char * -- all other systems (and libc5) use
12 void *. We can't safely do anything here that would be portable, so
13 libc6 generates warnings -- which should be errors, g++ isn't properly
16 ##################################################################### */
18 // Include Files /*{{{*/
22 #include <apt-pkg/mmap.h>
23 #include <apt-pkg/error.h>
24 #include <apt-pkg/fileutl.h>
37 // MMap::MMap - Constructor /*{{{*/
38 // ---------------------------------------------------------------------
40 MMap::MMap(FileFd
&F
,unsigned long Flags
) : Flags(Flags
), iSize(0),
41 Base(0), SyncToFd(NULL
)
43 if ((Flags
& NoImmMap
) != NoImmMap
)
47 // MMap::MMap - Constructor /*{{{*/
48 // ---------------------------------------------------------------------
50 MMap::MMap(unsigned long Flags
) : Flags(Flags
), iSize(0),
51 Base(0), SyncToFd(NULL
)
55 // MMap::~MMap - Destructor /*{{{*/
56 // ---------------------------------------------------------------------
63 // MMap::Map - Perform the mapping /*{{{*/
64 // ---------------------------------------------------------------------
66 bool MMap::Map(FileFd
&Fd
)
70 // Set the permissions.
73 if ((Flags
& ReadOnly
) != ReadOnly
)
75 if ((Flags
& Public
) != Public
)
79 return _error
->Error(_("Can't mmap an empty file"));
81 // We can't mmap compressed fd's directly, so we need to read it completely
82 if (Fd
.IsCompressed() == true)
84 if ((Flags
& ReadOnly
) != ReadOnly
)
85 return _error
->Error("Compressed file %s can only be mapped readonly", Fd
.Name().c_str());
87 SyncToFd
= new FileFd();
88 if (Fd
.Seek(0L) == false || Fd
.Read(Base
, iSize
) == false)
89 return _error
->Error("Compressed file %s can't be read into mmap", Fd
.Name().c_str());
94 Base
= (Flags
& Fallback
) ? MAP_FAILED
: mmap(0,iSize
,Prot
,Map
,Fd
.Fd(),0);
95 if (Base
== (void *)-1)
97 if (errno
== ENODEV
|| errno
== EINVAL
|| (Flags
& Fallback
))
99 // The filesystem doesn't support this particular kind of mmap.
100 // So we allocate a buffer and read the whole file into it.
101 if ((Flags
& ReadOnly
) == ReadOnly
)
103 // for readonly, we don't need sync, so make it simple
104 Base
= malloc(iSize
);
105 return Fd
.Read(Base
, iSize
);
107 // FIXME: Writing to compressed fd's ?
108 int const dupped_fd
= dup(Fd
.Fd());
110 return _error
->Errno("mmap", _("Couldn't duplicate file descriptor %i"), Fd
.Fd());
112 Base
= calloc(iSize
, 1);
113 SyncToFd
= new FileFd (dupped_fd
);
114 if (!SyncToFd
->Seek(0L) || !SyncToFd
->Read(Base
, iSize
))
118 return _error
->Errno("mmap",_("Couldn't make mmap of %llu bytes"),
125 // MMap::Close - Close the map /*{{{*/
126 // ---------------------------------------------------------------------
128 bool MMap::Close(bool DoSync
)
130 if ((Flags
& UnMapped
) == UnMapped
|| validData() == false || iSize
== 0)
136 if (SyncToFd
!= NULL
)
144 if (munmap((char *)Base
, iSize
) != 0)
145 _error
->WarningE("mmap", _("Unable to close mmap"));
153 // MMap::Sync - Syncronize the map with the disk /*{{{*/
154 // ---------------------------------------------------------------------
155 /* This is done in syncronous mode - the docs indicate that this will
156 not return till all IO is complete */
159 if ((Flags
& UnMapped
) == UnMapped
)
162 #ifdef _POSIX_SYNCHRONIZED_IO
163 if ((Flags
& ReadOnly
) != ReadOnly
)
165 if (SyncToFd
!= NULL
)
167 if (!SyncToFd
->Seek(0) || !SyncToFd
->Write(Base
, iSize
))
172 if (msync((char *)Base
, iSize
, MS_SYNC
) < 0)
173 return _error
->Errno("msync", _("Unable to synchronize mmap"));
180 // MMap::Sync - Syncronize a section of the file to disk /*{{{*/
181 // ---------------------------------------------------------------------
183 bool MMap::Sync(unsigned long Start
,unsigned long Stop
)
185 if ((Flags
& UnMapped
) == UnMapped
)
188 #ifdef _POSIX_SYNCHRONIZED_IO
189 unsigned long long PSize
= sysconf(_SC_PAGESIZE
);
190 if ((Flags
& ReadOnly
) != ReadOnly
)
194 if (!SyncToFd
->Seek(0) ||
195 !SyncToFd
->Write (((char *)Base
)+Start
, Stop
-Start
))
200 if (msync((char *)Base
+(unsigned long long)(Start
/PSize
)*PSize
,Stop
- Start
,MS_SYNC
) < 0)
201 return _error
->Errno("msync", _("Unable to synchronize mmap"));
209 // DynamicMMap::DynamicMMap - Constructor /*{{{*/
210 // ---------------------------------------------------------------------
212 DynamicMMap::DynamicMMap(FileFd
&F
,unsigned long Flags
,unsigned long const &Workspace
,
213 unsigned long const &Grow
, unsigned long const &Limit
) :
214 MMap(F
,Flags
| NoImmMap
), Fd(&F
), WorkSpace(Workspace
),
215 GrowFactor(Grow
), Limit(Limit
)
217 if (_error
->PendingError() == true)
220 // disable Moveable if we don't grow
222 this->Flags
&= ~Moveable
;
225 // kfreebsd doesn't have mremap, so we use the fallback
226 if ((this->Flags
& Moveable
) == Moveable
)
227 this->Flags
|= Fallback
;
230 unsigned long long EndOfFile
= Fd
->Size();
231 if (EndOfFile
> WorkSpace
)
232 WorkSpace
= EndOfFile
;
233 else if(WorkSpace
> 0)
235 Fd
->Seek(WorkSpace
- 1);
237 Fd
->Write(&C
,sizeof(C
));
244 // DynamicMMap::DynamicMMap - Constructor for a non-file backed map /*{{{*/
245 // ---------------------------------------------------------------------
246 /* We try here to use mmap to reserve some space - this is much more
247 cooler than the fallback solution to simply allocate a char array
248 and could come in handy later than we are able to grow such an mmap */
249 DynamicMMap::DynamicMMap(unsigned long Flags
,unsigned long const &WorkSpace
,
250 unsigned long const &Grow
, unsigned long const &Limit
) :
251 MMap(Flags
| NoImmMap
| UnMapped
), Fd(0), WorkSpace(WorkSpace
),
252 GrowFactor(Grow
), Limit(Limit
)
254 if (_error
->PendingError() == true)
257 // disable Moveable if we don't grow
259 this->Flags
&= ~Moveable
;
262 // kfreebsd doesn't have mremap, so we use the fallback
263 if ((this->Flags
& Moveable
) == Moveable
)
264 this->Flags
|= Fallback
;
267 #ifdef _POSIX_MAPPED_FILES
268 if ((this->Flags
& Fallback
) != Fallback
) {
269 // Set the permissions.
270 int Prot
= PROT_READ
;
272 int Map
= MAP_PRIVATE
| MAP_ANONYMOUS
;
274 int Map
= MAP_PRIVATE
| MAP_ANON
;
276 if ((this->Flags
& ReadOnly
) != ReadOnly
)
278 if ((this->Flags
& Public
) == Public
)
280 Map
= MAP_SHARED
| MAP_ANONYMOUS
;
282 Map
= MAP_SHARED
| MAP_ANON
;
285 // use anonymous mmap() to get the memory
286 Base
= (unsigned char*) mmap(0, WorkSpace
, Prot
, Map
, -1, 0);
288 if(Base
== MAP_FAILED
)
289 _error
->Errno("DynamicMMap",_("Couldn't make mmap of %lu bytes"),WorkSpace
);
295 // fallback to a static allocated space
296 Base
= calloc(WorkSpace
, 1);
300 // DynamicMMap::~DynamicMMap - Destructor /*{{{*/
301 // ---------------------------------------------------------------------
302 /* We truncate the file to the size of the memory data set */
303 DynamicMMap::~DynamicMMap()
307 if (validData() == false)
309 #ifdef _POSIX_MAPPED_FILES
310 munmap(Base
, WorkSpace
);
317 unsigned long long EndOfFile
= iSize
;
320 if(ftruncate(Fd
->Fd(),EndOfFile
) < 0)
321 _error
->Errno("ftruncate", _("Failed to truncate file"));
324 // DynamicMMap::RawAllocate - Allocate a raw chunk of unaligned space /*{{{*/
325 // ---------------------------------------------------------------------
326 /* This allocates a block of memory aligned to the given size */
327 unsigned long DynamicMMap::RawAllocate(unsigned long long Size
,unsigned long Aln
)
329 unsigned long long Result
= iSize
;
331 Result
+= Aln
- (iSize%Aln
);
333 iSize
= Result
+ Size
;
335 // try to grow the buffer
336 while(Result
+ Size
> WorkSpace
)
340 _error
->Fatal(_("Dynamic MMap ran out of room. Please increase the size "
341 "of APT::Cache-Start. Current value: %lu. (man 5 apt.conf)"), WorkSpace
);
348 // DynamicMMap::Allocate - Pooled aligned allocation /*{{{*/
349 // ---------------------------------------------------------------------
350 /* This allocates an Item of size ItemSize so that it is aligned to its
352 unsigned long DynamicMMap::Allocate(unsigned long ItemSize
)
354 // Look for a matching pool entry
357 for (I
= Pools
; I
!= Pools
+ PoolCount
; ++I
)
359 if (I
->ItemSize
== 0)
361 if (I
->ItemSize
== ItemSize
)
364 // No pool is allocated, use an unallocated one
365 if (I
== Pools
+ PoolCount
)
367 // Woops, we ran out, the calling code should allocate more.
370 _error
->Error("Ran out of allocation pools");
375 I
->ItemSize
= ItemSize
;
379 unsigned long Result
= 0;
380 // Out of space, allocate some more
383 const unsigned long size
= 20*1024;
384 I
->Count
= size
/ItemSize
;
385 Pool
* oldPools
= Pools
;
386 Result
= RawAllocate(size
,ItemSize
);
387 if (Pools
!= oldPools
)
388 I
+= Pools
- oldPools
;
390 // Does the allocation failed ?
391 if (Result
== 0 && _error
->PendingError())
399 I
->Start
+= ItemSize
;
400 return Result
/ItemSize
;
403 // DynamicMMap::WriteString - Write a string to the file /*{{{*/
404 // ---------------------------------------------------------------------
405 /* Strings are not aligned to anything */
406 unsigned long DynamicMMap::WriteString(const char *String
,
409 if (Len
== (unsigned long)-1)
410 Len
= strlen(String
);
412 unsigned long const Result
= RawAllocate(Len
+1,0);
414 if (Result
== 0 && _error
->PendingError())
417 memcpy((char *)Base
+ Result
,String
,Len
);
418 ((char *)Base
)[Result
+ Len
] = 0;
422 // DynamicMMap::Grow - Grow the mmap /*{{{*/
423 // ---------------------------------------------------------------------
424 /* This method is a wrapper around different methods to (try to) grow
425 a mmap (or our char[]-fallback). Encounterable environments:
426 1. Moveable + !Fallback + linux -> mremap with MREMAP_MAYMOVE
427 2. Moveable + !Fallback + !linux -> not possible (forbidden by constructor)
428 3. Moveable + Fallback -> realloc
429 4. !Moveable + !Fallback + linux -> mremap alone - which will fail in 99,9%
430 5. !Moveable + !Fallback + !linux -> not possible (forbidden by constructor)
431 6. !Moveable + Fallback -> not possible
432 [ While Moveable and Fallback stands for the equally named flags and
433 "linux" indicates a linux kernel instead of a freebsd kernel. ]
434 So what you can see here is, that a MMAP which want to be growable need
435 to be moveable to have a real chance but that this method will at least try
436 the nearly impossible 4 to grow it before it finally give up: Never say never. */
437 bool DynamicMMap::Grow() {
438 if (Limit
!= 0 && WorkSpace
>= Limit
)
439 return _error
->Error(_("Unable to increase the size of the MMap as the "
440 "limit of %lu bytes is already reached."), Limit
);
442 return _error
->Error(_("Unable to increase size of the MMap as automatic growing is disabled by user."));
444 unsigned long long const newSize
= WorkSpace
+ GrowFactor
;
447 Fd
->Seek(newSize
- 1);
449 Fd
->Write(&C
,sizeof(C
));
452 unsigned long const poolOffset
= Pools
- ((Pool
*) Base
);
454 if ((Flags
& Fallback
) != Fallback
) {
455 #if defined(_POSIX_MAPPED_FILES) && defined(__linux__)
456 #ifdef MREMAP_MAYMOVE
458 if ((Flags
& Moveable
) == Moveable
)
459 Base
= mremap(Base
, WorkSpace
, newSize
, MREMAP_MAYMOVE
);
462 Base
= mremap(Base
, WorkSpace
, newSize
, 0);
464 if(Base
== MAP_FAILED
)
470 if ((Flags
& Moveable
) != Moveable
)
473 Base
= realloc(Base
, newSize
);
477 /* Set new memory to 0 */
478 memset((char*)Base
+ WorkSpace
, 0, newSize
- WorkSpace
);
481 Pools
=(Pool
*) Base
+ poolOffset
;