releasing version 0.9.6
[ntk/apt.git] / apt-pkg / contrib / mmap.cc
CommitLineData
578bfd0a
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
0db4a45b 3// $Id: mmap.cc,v 1.22 2001/05/27 05:19:30 jgg Exp $
578bfd0a
AL
4/* ######################################################################
5
6 MMap Class - Provides 'real' mmap or a faked mmap using read().
7
8 MMap cover class.
9
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
14 strict.
15
578bfd0a
AL
16 ##################################################################### */
17 /*}}}*/
18// Include Files /*{{{*/
19#define _BSD_SOURCE
ea542140
DK
20#include <config.h>
21
094a497d
AL
22#include <apt-pkg/mmap.h>
23#include <apt-pkg/error.h>
472ff00e 24#include <apt-pkg/fileutl.h>
578bfd0a
AL
25
26#include <sys/mman.h>
27#include <sys/stat.h>
578bfd0a
AL
28#include <unistd.h>
29#include <fcntl.h>
13eb93fc 30#include <stdlib.h>
06afffcc 31#include <errno.h>
4f333a8b 32#include <cstring>
ea542140
DK
33
34#include <apti18n.h>
35 /*}}}*/
578bfd0a
AL
36
37// MMap::MMap - Constructor /*{{{*/
38// ---------------------------------------------------------------------
39/* */
2d11135a 40MMap::MMap(FileFd &F,unsigned long Flags) : Flags(Flags), iSize(0),
06afffcc 41 Base(0), SyncToFd(NULL)
578bfd0a
AL
42{
43 if ((Flags & NoImmMap) != NoImmMap)
2d11135a
AL
44 Map(F);
45}
46 /*}}}*/
47// MMap::MMap - Constructor /*{{{*/
48// ---------------------------------------------------------------------
49/* */
50MMap::MMap(unsigned long Flags) : Flags(Flags), iSize(0),
06afffcc 51 Base(0), SyncToFd(NULL)
2d11135a 52{
578bfd0a
AL
53}
54 /*}}}*/
55// MMap::~MMap - Destructor /*{{{*/
56// ---------------------------------------------------------------------
57/* */
58MMap::~MMap()
59{
2d11135a 60 Close();
578bfd0a
AL
61}
62 /*}}}*/
63// MMap::Map - Perform the mapping /*{{{*/
64// ---------------------------------------------------------------------
65/* */
2d11135a 66bool MMap::Map(FileFd &Fd)
578bfd0a
AL
67{
68 iSize = Fd.Size();
699b209e 69
578bfd0a
AL
70 // Set the permissions.
71 int Prot = PROT_READ;
72 int Map = MAP_SHARED;
73 if ((Flags & ReadOnly) != ReadOnly)
74 Prot |= PROT_WRITE;
75 if ((Flags & Public) != Public)
76 Map = MAP_PRIVATE;
77
b35d2f5f 78 if (iSize == 0)
b2e465d6 79 return _error->Error(_("Can't mmap an empty file"));
032bd56f
DK
80
81 // We can't mmap compressed fd's directly, so we need to read it completely
82 if (Fd.IsCompressed() == true)
83 {
84 if ((Flags & ReadOnly) != ReadOnly)
85 return _error->Error("Compressed file %s can only be mapped readonly", Fd.Name().c_str());
86 Base = new unsigned char[iSize];
6bae2c51 87 SyncToFd = new FileFd();
032bd56f 88 if (Fd.Seek(0L) == false || Fd.Read(Base, iSize) == false)
b711c01e 89 return _error->Error("Compressed file %s can't be read into mmap", Fd.Name().c_str());
032bd56f
DK
90 return true;
91 }
92
578bfd0a
AL
93 // Map it.
94 Base = mmap(0,iSize,Prot,Map,Fd.Fd(),0);
95 if (Base == (void *)-1)
06afffcc
DK
96 {
97 if (errno == ENODEV || errno == EINVAL)
98 {
99 // The filesystem doesn't support this particular kind of mmap.
100 // So we allocate a buffer and read the whole file into it.
699b209e
DK
101 if ((Flags & ReadOnly) == ReadOnly)
102 {
103 // for readonly, we don't need sync, so make it simple
104 Base = new unsigned char[iSize];
105 return Fd.Read(Base, iSize);
106 }
107 // FIXME: Writing to compressed fd's ?
06afffcc
DK
108 int const dupped_fd = dup(Fd.Fd());
109 if (dupped_fd == -1)
110 return _error->Errno("mmap", _("Couldn't duplicate file descriptor %i"), Fd.Fd());
111
112 Base = new unsigned char[iSize];
113 SyncToFd = new FileFd (dupped_fd);
114 if (!SyncToFd->Seek(0L) || !SyncToFd->Read(Base, iSize))
115 return false;
116 }
117 else
650faab0 118 return _error->Errno("mmap",_("Couldn't make mmap of %llu bytes"),
06afffcc
DK
119 iSize);
120 }
578bfd0a
AL
121
122 return true;
123}
124 /*}}}*/
125// MMap::Close - Close the map /*{{{*/
126// ---------------------------------------------------------------------
127/* */
2d11135a 128bool MMap::Close(bool DoSync)
578bfd0a 129{
2a79d5b5 130 if ((Flags & UnMapped) == UnMapped || validData() == false || iSize == 0)
578bfd0a 131 return true;
2d11135a 132
1164783d
AL
133 if (DoSync == true)
134 Sync();
06afffcc
DK
135
136 if (SyncToFd != NULL)
137 {
138 delete[] (char *)Base;
139 delete SyncToFd;
140 SyncToFd = NULL;
141 }
142 else
143 {
144 if (munmap((char *)Base, iSize) != 0)
145 _error->WarningE("mmap", _("Unable to close mmap"));
146 }
147
578bfd0a 148 iSize = 0;
b2e465d6 149 Base = 0;
578bfd0a
AL
150 return true;
151}
152 /*}}}*/
153// MMap::Sync - Syncronize the map with the disk /*{{{*/
154// ---------------------------------------------------------------------
0149949b
AL
155/* This is done in syncronous mode - the docs indicate that this will
156 not return till all IO is complete */
578bfd0a
AL
157bool MMap::Sync()
158{
2d11135a
AL
159 if ((Flags & UnMapped) == UnMapped)
160 return true;
161
de3c15ea 162#ifdef _POSIX_SYNCHRONIZED_IO
1164783d 163 if ((Flags & ReadOnly) != ReadOnly)
06afffcc
DK
164 {
165 if (SyncToFd != NULL)
166 {
167 if (!SyncToFd->Seek(0) || !SyncToFd->Write(Base, iSize))
168 return false;
169 }
170 else
171 {
172 if (msync((char *)Base, iSize, MS_SYNC) < 0)
173 return _error->Errno("msync", _("Unable to synchronize mmap"));
174 }
175 }
de3c15ea 176#endif
578bfd0a
AL
177 return true;
178}
179 /*}}}*/
180// MMap::Sync - Syncronize a section of the file to disk /*{{{*/
181// ---------------------------------------------------------------------
182/* */
183bool MMap::Sync(unsigned long Start,unsigned long Stop)
184{
2d11135a
AL
185 if ((Flags & UnMapped) == UnMapped)
186 return true;
187
35c22def 188#ifdef _POSIX_SYNCHRONIZED_IO
650faab0 189 unsigned long long PSize = sysconf(_SC_PAGESIZE);
1164783d 190 if ((Flags & ReadOnly) != ReadOnly)
06afffcc
DK
191 {
192 if (SyncToFd != 0)
193 {
194 if (!SyncToFd->Seek(0) ||
195 !SyncToFd->Write (((char *)Base)+Start, Stop-Start))
196 return false;
197 }
198 else
199 {
650faab0 200 if (msync((char *)Base+(unsigned long long)(Start/PSize)*PSize,Stop - Start,MS_SYNC) < 0)
06afffcc
DK
201 return _error->Errno("msync", _("Unable to synchronize mmap"));
202 }
203 }
de3c15ea 204#endif
578bfd0a
AL
205 return true;
206}
207 /*}}}*/
208
209// DynamicMMap::DynamicMMap - Constructor /*{{{*/
210// ---------------------------------------------------------------------
211/* */
d6c4a976
DK
212DynamicMMap::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)
578bfd0a 216{
d38b7b3d
AL
217 if (_error->PendingError() == true)
218 return;
219
650faab0 220 unsigned long long EndOfFile = Fd->Size();
b2e465d6
AL
221 if (EndOfFile > WorkSpace)
222 WorkSpace = EndOfFile;
ea92d036 223 else if(WorkSpace > 0)
b2e465d6 224 {
ea92d036 225 Fd->Seek(WorkSpace - 1);
b2e465d6
AL
226 char C = 0;
227 Fd->Write(&C,sizeof(C));
228 }
229
2d11135a 230 Map(F);
578bfd0a
AL
231 iSize = EndOfFile;
232}
233 /*}}}*/
2d11135a
AL
234// DynamicMMap::DynamicMMap - Constructor for a non-file backed map /*{{{*/
235// ---------------------------------------------------------------------
f1c6a8ca
DK
236/* We try here to use mmap to reserve some space - this is much more
237 cooler than the fallback solution to simply allocate a char array
238 and could come in handy later than we are able to grow such an mmap */
d6c4a976
DK
239DynamicMMap::DynamicMMap(unsigned long Flags,unsigned long const &WorkSpace,
240 unsigned long const &Grow, unsigned long const &Limit) :
241 MMap(Flags | NoImmMap | UnMapped), Fd(0), WorkSpace(WorkSpace),
242 GrowFactor(Grow), Limit(Limit)
2d11135a 243{
d6c4a976
DK
244 if (_error->PendingError() == true)
245 return;
246
247 // disable Moveable if we don't grow
248 if (Grow == 0)
a9fe5928 249 this->Flags &= ~Moveable;
d6c4a976
DK
250
251#ifndef __linux__
252 // kfreebsd doesn't have mremap, so we use the fallback
a9fe5928
DK
253 if ((this->Flags & Moveable) == Moveable)
254 this->Flags |= Fallback;
d6c4a976 255#endif
f1c6a8ca
DK
256
257#ifdef _POSIX_MAPPED_FILES
a9fe5928 258 if ((this->Flags & Fallback) != Fallback) {
d6c4a976
DK
259 // Set the permissions.
260 int Prot = PROT_READ;
f895e2ce 261#ifdef MAP_ANONYMOUS
d6c4a976 262 int Map = MAP_PRIVATE | MAP_ANONYMOUS;
f895e2ce
DK
263#else
264 int Map = MAP_PRIVATE | MAP_ANON;
265#endif
a9fe5928 266 if ((this->Flags & ReadOnly) != ReadOnly)
d6c4a976 267 Prot |= PROT_WRITE;
a9fe5928 268 if ((this->Flags & Public) == Public)
f895e2ce 269#ifdef MAP_ANONYMOUS
d6c4a976 270 Map = MAP_SHARED | MAP_ANONYMOUS;
f895e2ce
DK
271#else
272 Map = MAP_SHARED | MAP_ANON;
273#endif
eb162ff7 274
d6c4a976
DK
275 // use anonymous mmap() to get the memory
276 Base = (unsigned char*) mmap(0, WorkSpace, Prot, Map, -1, 0);
eb162ff7 277
d6c4a976
DK
278 if(Base == MAP_FAILED)
279 _error->Errno("DynamicMMap",_("Couldn't make mmap of %lu bytes"),WorkSpace);
280
281 iSize = 0;
282 return;
283 }
d5972534 284#endif
d6c4a976
DK
285 // fallback to a static allocated space
286 Base = new unsigned char[WorkSpace];
287 memset(Base,0,WorkSpace);
288 iSize = 0;
2d11135a
AL
289}
290 /*}}}*/
578bfd0a
AL
291// DynamicMMap::~DynamicMMap - Destructor /*{{{*/
292// ---------------------------------------------------------------------
293/* We truncate the file to the size of the memory data set */
294DynamicMMap::~DynamicMMap()
295{
2d11135a
AL
296 if (Fd == 0)
297 {
2a79d5b5 298 if (validData() == false)
26b37f95 299 return;
f1c6a8ca 300#ifdef _POSIX_MAPPED_FILES
a67de73e 301 munmap(Base, WorkSpace);
f1c6a8ca 302#else
2d11135a 303 delete [] (unsigned char *)Base;
f1c6a8ca 304#endif
2d11135a
AL
305 return;
306 }
307
650faab0 308 unsigned long long EndOfFile = iSize;
1164783d 309 iSize = WorkSpace;
2d11135a 310 Close(false);
3c8cda8b
MV
311 if(ftruncate(Fd->Fd(),EndOfFile) < 0)
312 _error->Errno("ftruncate", _("Failed to truncate file"));
578bfd0a
AL
313}
314 /*}}}*/
315// DynamicMMap::RawAllocate - Allocate a raw chunk of unaligned space /*{{{*/
316// ---------------------------------------------------------------------
f55a958f 317/* This allocates a block of memory aligned to the given size */
650faab0 318unsigned long DynamicMMap::RawAllocate(unsigned long long Size,unsigned long Aln)
578bfd0a 319{
650faab0 320 unsigned long long Result = iSize;
f55a958f
AL
321 if (Aln != 0)
322 Result += Aln - (iSize%Aln);
c5f44afc 323
f55a958f 324 iSize = Result + Size;
c5f44afc 325
f1c6a8ca
DK
326 // try to grow the buffer
327 while(Result + Size > WorkSpace)
578bfd0a 328 {
f1c6a8ca
DK
329 if(!Grow())
330 {
5afa55c6 331 _error->Fatal(_("Dynamic MMap ran out of room. Please increase the size "
f1c6a8ca
DK
332 "of APT::Cache-Limit. Current value: %lu. (man 5 apt.conf)"), WorkSpace);
333 return 0;
334 }
578bfd0a 335 }
578bfd0a
AL
336 return Result;
337}
338 /*}}}*/
339// DynamicMMap::Allocate - Pooled aligned allocation /*{{{*/
340// ---------------------------------------------------------------------
341/* This allocates an Item of size ItemSize so that it is aligned to its
342 size in the file. */
343unsigned long DynamicMMap::Allocate(unsigned long ItemSize)
c5f44afc 344{
578bfd0a
AL
345 // Look for a matching pool entry
346 Pool *I;
347 Pool *Empty = 0;
a9fe5928 348 for (I = Pools; I != Pools + PoolCount; ++I)
578bfd0a
AL
349 {
350 if (I->ItemSize == 0)
351 Empty = I;
352 if (I->ItemSize == ItemSize)
353 break;
354 }
578bfd0a
AL
355 // No pool is allocated, use an unallocated one
356 if (I == Pools + PoolCount)
357 {
358 // Woops, we ran out, the calling code should allocate more.
359 if (Empty == 0)
360 {
361 _error->Error("Ran out of allocation pools");
362 return 0;
363 }
364
365 I = Empty;
366 I->ItemSize = ItemSize;
367 I->Count = 0;
368 }
c5f44afc
DK
369
370 unsigned long Result = 0;
578bfd0a
AL
371 // Out of space, allocate some more
372 if (I->Count == 0)
373 {
c5f44afc
DK
374 const unsigned long size = 20*1024;
375 I->Count = size/ItemSize;
a9fe5928 376 Pool* oldPools = Pools;
c5f44afc 377 Result = RawAllocate(size,ItemSize);
a9fe5928
DK
378 if (Pools != oldPools)
379 I += Pools - oldPools;
380
c5f44afc
DK
381 // Does the allocation failed ?
382 if (Result == 0 && _error->PendingError())
383 return 0;
384 I->Start = Result;
385 }
386 else
387 Result = I->Start;
f55a958f 388
578bfd0a 389 I->Count--;
c5f44afc 390 I->Start += ItemSize;
578bfd0a
AL
391 return Result/ItemSize;
392}
393 /*}}}*/
394// DynamicMMap::WriteString - Write a string to the file /*{{{*/
395// ---------------------------------------------------------------------
396/* Strings are not aligned to anything */
397unsigned long DynamicMMap::WriteString(const char *String,
398 unsigned long Len)
399{
6e52073f 400 if (Len == (unsigned long)-1)
578bfd0a 401 Len = strlen(String);
c5f44afc 402
a9fe5928 403 unsigned long const Result = RawAllocate(Len+1,0);
c5f44afc
DK
404
405 if (Result == 0 && _error->PendingError())
406 return 0;
407
578bfd0a
AL
408 memcpy((char *)Base + Result,String,Len);
409 ((char *)Base)[Result + Len] = 0;
410 return Result;
411}
412 /*}}}*/
f1c6a8ca
DK
413// DynamicMMap::Grow - Grow the mmap /*{{{*/
414// ---------------------------------------------------------------------
d6c4a976
DK
415/* This method is a wrapper around different methods to (try to) grow
416 a mmap (or our char[]-fallback). Encounterable environments:
417 1. Moveable + !Fallback + linux -> mremap with MREMAP_MAYMOVE
418 2. Moveable + !Fallback + !linux -> not possible (forbidden by constructor)
419 3. Moveable + Fallback -> realloc
420 4. !Moveable + !Fallback + linux -> mremap alone - which will fail in 99,9%
421 5. !Moveable + !Fallback + !linux -> not possible (forbidden by constructor)
422 6. !Moveable + Fallback -> not possible
423 [ While Moveable and Fallback stands for the equally named flags and
424 "linux" indicates a linux kernel instead of a freebsd kernel. ]
425 So what you can see here is, that a MMAP which want to be growable need
426 to be moveable to have a real chance but that this method will at least try
427 the nearly impossible 4 to grow it before it finally give up: Never say never. */
428bool DynamicMMap::Grow() {
429 if (Limit != 0 && WorkSpace >= Limit)
e3ac3b46
DK
430 return _error->Error(_("Unable to increase the size of the MMap as the "
431 "limit of %lu bytes is already reached."), Limit);
dcdf1ef1
DK
432 if (GrowFactor <= 0)
433 return _error->Error(_("Unable to increase size of the MMap as automatic growing is disabled by user."));
f1c6a8ca 434
650faab0 435 unsigned long long const newSize = WorkSpace + GrowFactor;
f1c6a8ca 436
d6c4a976
DK
437 if(Fd != 0) {
438 Fd->Seek(newSize - 1);
439 char C = 0;
440 Fd->Write(&C,sizeof(C));
441 }
a9fe5928
DK
442
443 unsigned long const poolOffset = Pools - ((Pool*) Base);
444
d6c4a976
DK
445 if ((Flags & Fallback) != Fallback) {
446#if defined(_POSIX_MAPPED_FILES) && defined(__linux__)
447 #ifdef MREMAP_MAYMOVE
a9fe5928 448
d6c4a976
DK
449 if ((Flags & Moveable) == Moveable)
450 Base = mremap(Base, WorkSpace, newSize, MREMAP_MAYMOVE);
451 else
452 #endif
453 Base = mremap(Base, WorkSpace, newSize, 0);
f1c6a8ca 454
d6c4a976
DK
455 if(Base == MAP_FAILED)
456 return false;
f1c6a8ca 457#else
d6c4a976 458 return false;
f1c6a8ca 459#endif
d6c4a976
DK
460 } else {
461 if ((Flags & Moveable) != Moveable)
462 return false;
463
464 Base = realloc(Base, newSize);
465 if (Base == NULL)
466 return false;
467 }
468
a9fe5928 469 Pools =(Pool*) Base + poolOffset;
d6c4a976
DK
470 WorkSpace = newSize;
471 return true;
f1c6a8ca
DK
472}
473 /*}}}*/