1 /* Support for memory-mapped windows into a BFD.
2 Copyright (C) 1995-2024 Free Software Foundation, Inc.
3 Written by Cygnus Support.
5 This file is part of BFD, the Binary File Descriptor library.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
27 /* Currently, if USE_MMAP is undefined, none of the window stuff is
28 used. Enabled by --with-mmap. */
32 #undef HAVE_MPROTECT /* code's not tested yet */
34 #if HAVE_MMAP || HAVE_MPROTECT || HAVE_MADVISE
42 static int debug_windows
;
44 /* The idea behind the next and refcount fields is that one mapped
45 region can suffice for multiple read-only windows or multiple
46 non-overlapping read-write windows. It's not implemented yet
51 .typedef struct _bfd_window_internal
53 . struct _bfd_window_internal *next;
56 . int refcount : 31; {* should be enough... *}
57 . unsigned mapped : 1; {* 1 = mmap, 0 = malloc *}
63 .struct _bfd_window_internal;
65 .typedef struct _bfd_window
67 . {* What the user asked for. *}
70 . {* The actual window used by BFD. Small user-requested read-only
71 . regions sharing a page may share a single window into the object
72 . file. Read-write versions shouldn't until I've fixed things to
73 . keep track of which portions have been claimed by the
74 . application; don't want to give the same region back when the
75 . application wants two writable copies! *}
76 . struct _bfd_window_internal *i;
87 void bfd_init_window (bfd_window *);
90 Initialise mmap window.
94 bfd_init_window (bfd_window
*windowp
)
106 void bfd_free_window (bfd_window *);
109 Finalise mmap window struct.
113 bfd_free_window (bfd_window
*windowp
)
115 bfd_window_internal
*i
= windowp
->i
;
122 fprintf (stderr
, "freeing window @%p<%p,%lx,%p>\n",
123 windowp
, windowp
->data
, (unsigned long) windowp
->size
, windowp
->i
);
124 if (i
->refcount
!= 0)
130 munmap (i
->data
, i
->size
);
137 mprotect (i
->data
, i
->size
, PROT_READ
| PROT_WRITE
);
144 /* There should be no more references to i at this point. */
153 bool bfd_get_file_window
154 (bfd *, file_ptr, bfd_size_type, bfd_window *, bool {*writable*});
157 mmap from a bfd's iostream.
161 bfd_get_file_window (bfd
*abfd
,
167 static int ok_to_map
= 1;
168 static size_t pagesize
;
169 bfd_window_internal
*i
= windowp
->i
;
170 bfd_size_type size_to_alloc
= size
;
173 fprintf (stderr
, "bfd_get_file_window (%p, %6ld, %6ld, %p<%p,%lx,%p>, %d)",
174 abfd
, (long) offset
, (long) size
,
175 windowp
, windowp
->data
, (unsigned long) windowp
->size
,
176 windowp
->i
, writable
);
178 /* Make sure we know the page size, so we can be friendly to mmap. */
180 pagesize
= getpagesize ();
186 i
= bfd_zmalloc (sizeof (bfd_window_internal
));
193 && (i
->data
== NULL
|| i
->mapped
== 1)
194 && (abfd
->flags
& BFD_IN_MEMORY
) == 0)
196 file_ptr file_offset
, offset2
;
200 /* Find the real file and the real offset into it. */
201 while (abfd
->my_archive
!= NULL
202 && !bfd_is_thin_archive (abfd
->my_archive
))
204 offset
+= abfd
->origin
;
205 abfd
= abfd
->my_archive
;
207 offset
+= abfd
->origin
;
209 /* Seek into the file, to ensure it is open if cacheable. */
210 if (abfd
->iostream
== NULL
211 && (abfd
->iovec
== NULL
212 || abfd
->iovec
->bseek (abfd
, offset
, SEEK_SET
) != 0))
215 fd
= fileno ((FILE *) abfd
->iostream
);
216 /* Compute offsets and size for mmap and for the user's data. */
217 offset2
= offset
% pagesize
;
220 file_offset
= offset
- offset2
;
221 real_size
= offset
+ size
- file_offset
;
222 real_size
= real_size
+ pagesize
- 1;
223 real_size
-= real_size
% pagesize
;
225 /* If we're re-using a memory region, make sure it's big enough. */
226 if (i
->data
!= NULL
&& i
->size
< size
)
228 munmap (i
->data
, i
->size
);
231 i
->data
= mmap (i
->data
, real_size
,
232 writable
? PROT_WRITE
| PROT_READ
: PROT_READ
,
234 ? MAP_FILE
| MAP_PRIVATE
235 : MAP_FILE
| MAP_SHARED
),
237 if (i
->data
== (void *) -1)
239 /* An error happened. Report it, or try using malloc, or
241 bfd_set_error (bfd_error_system_call
);
244 fprintf (stderr
, "\t\tmmap failed!\n");
248 fprintf (stderr
, "\n\tmapped %ld at %p, offset is %ld\n",
249 (long) real_size
, i
->data
, (long) offset2
);
251 windowp
->data
= (bfd_byte
*) i
->data
+ offset2
;
252 windowp
->size
= size
;
258 else if (debug_windows
)
261 fprintf (stderr
, _("not mapping: data=%lx mapped=%d\n"),
262 (unsigned long) i
->data
, (int) i
->mapped
);
264 fprintf (stderr
, _("not mapping: env var not set\n"));
273 size_to_alloc
+= pagesize
- 1;
274 size_to_alloc
-= size_to_alloc
% pagesize
;
278 fprintf (stderr
, "\n\t%s(%6ld)",
279 i
->data
? "realloc" : " malloc", (long) size_to_alloc
);
280 i
->data
= bfd_realloc_or_free (i
->data
, size_to_alloc
);
282 fprintf (stderr
, "\t-> %p\n", i
->data
);
285 if (size_to_alloc
== 0)
293 if (bfd_seek (abfd
, offset
, SEEK_SET
) != 0)
295 i
->size
= bfd_read (i
->data
, size
, abfd
);
303 fprintf (stderr
, "\tmprotect (%p, %ld, PROT_READ)\n", i
->data
,
305 mprotect (i
->data
, i
->size
, PROT_READ
);
308 windowp
->data
= i
->data
;
309 windowp
->size
= i
->size
;
314 /* We have a bfd_window_internal, but an error occurred. Free it. */
319 #endif /* USE_MMAP */