2 * UCW Library -- Mapping of File Parts
4 * (c) 2003--2006 Martin Mares <mj@ucw.cz>
5 * (c) 2003--2009 Robert Spalek <robert@ucw.cz>
7 * This software may be freely distributed and used according to the terms
8 * of the GNU Lesser General Public License.
13 #include "ucw/partmap.h"
22 #ifdef CONFIG_UCW_PARTMAP_IS_MMAP
23 #define PARTMAP_WINDOW ~(size_t)0
26 #define PARTMAP_WINDOW 4096
28 #define PARTMAP_WINDOW 16777216
33 partmap_open(char *name, int writeable)
35 struct partmap *p = xmalloc_zero(sizeof(struct partmap));
37 p->fd = ucw_open(name, writeable ? O_RDWR : O_RDONLY);
39 die("open(%s): %m", name);
40 if ((p->file_size = ucw_seek(p->fd, 0, SEEK_END)) < 0)
41 die("lseek(%s): %m", name);
42 p->writeable = writeable;
43 #ifdef CONFIG_UCW_PARTMAP_IS_MMAP
44 partmap_load(p, 0, p->file_size);
50 partmap_size(struct partmap *p)
56 partmap_close(struct partmap *p)
59 munmap(p->start_map, p->end_off - p->start_off);
65 partmap_load(struct partmap *p, ucw_off_t start, uns size)
68 munmap(p->start_map, p->end_off - p->start_off);
69 ucw_off_t end = start + size;
70 ucw_off_t win_start = start/CPU_PAGE_SIZE * CPU_PAGE_SIZE;
71 size_t win_len = PARTMAP_WINDOW;
72 if (win_len > (size_t) (p->file_size - win_start))
73 win_len = ALIGN_TO(p->file_size - win_start, CPU_PAGE_SIZE);
74 if ((ucw_off_t) (win_start+win_len) < end)
75 die("partmap_map: Window is too small for mapping %d bytes", size);
78 p->start_map = ucw_mmap(NULL, win_len, p->writeable ? (PROT_READ | PROT_WRITE) : PROT_READ, MAP_SHARED, p->fd, win_start);
79 if (p->start_map == MAP_FAILED)
80 die("mmap failed at position %lld: %m", (long long)win_start);
84 p->start_off = win_start;
85 p->end_off = win_start+win_len;
86 madvise(p->start_map, win_len, MADV_SEQUENTIAL);
90 int main(int argc, char **argv)
92 struct partmap *p = partmap_open(argv[1], 0);
93 uns l = partmap_size(p);
96 putchar(*(char *)partmap_map(p, i, 1));