]> git.ipfire.org Git - thirdparty/gcc.git/blame - libbacktrace/mmapio.c
[arm] Early split subdi3
[thirdparty/gcc.git] / libbacktrace / mmapio.c
CommitLineData
ecd3459e 1/* mmapio.c -- File views using mmap.
fbd26352 2 Copyright (C) 2012-2019 Free Software Foundation, Inc.
ecd3459e 3 Written by Ian Lance Taylor, Google.
4
5Redistribution and use in source and binary forms, with or without
6modification, are permitted provided that the following conditions are
7met:
8
9 (1) Redistributions of source code must retain the above copyright
75c399ef 10 notice, this list of conditions and the following disclaimer.
ecd3459e 11
12 (2) Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in
14 the documentation and/or other materials provided with the
75c399ef 15 distribution.
16
ecd3459e 17 (3) The name of the author may not be used to
18 endorse or promote products derived from this software without
19 specific prior written permission.
20
21THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
25INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
30IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31POSSIBILITY OF SUCH DAMAGE. */
32
ecd3459e 33#include "config.h"
34
35#include <errno.h>
36#include <sys/types.h>
37#include <sys/mman.h>
38#include <unistd.h>
39
40#include "backtrace.h"
41#include "internal.h"
42
99c67164 43#ifndef MAP_FAILED
44#define MAP_FAILED ((void *)-1)
45#endif
46
ecd3459e 47/* This file implements file views and memory allocation when mmap is
48 available. */
49
50/* Create a view of SIZE bytes from DESCRIPTOR at OFFSET. */
51
52int
53backtrace_get_view (struct backtrace_state *state ATTRIBUTE_UNUSED,
432ce2bc 54 int descriptor, off_t offset, uint64_t size,
ecd3459e 55 backtrace_error_callback error_callback,
56 void *data, struct backtrace_view *view)
57{
58 size_t pagesize;
59 unsigned int inpage;
60 off_t pageoff;
61 void *map;
62
432ce2bc 63 if ((uint64_t) (size_t) size != size)
64 {
65 error_callback (data, "file size too large", 0);
66 return 0;
67 }
68
ecd3459e 69 pagesize = getpagesize ();
70 inpage = offset % pagesize;
71 pageoff = offset - inpage;
72
73 size += inpage;
74 size = (size + (pagesize - 1)) & ~ (pagesize - 1);
75
76 map = mmap (NULL, size, PROT_READ, MAP_PRIVATE, descriptor, pageoff);
77 if (map == MAP_FAILED)
78 {
79 error_callback (data, "mmap", errno);
80 return 0;
81 }
82
83 view->data = (char *) map + inpage;
84 view->base = map;
85 view->len = size;
86
87 return 1;
88}
89
90/* Release a view read by backtrace_get_view. */
91
92void
93backtrace_release_view (struct backtrace_state *state ATTRIBUTE_UNUSED,
94 struct backtrace_view *view,
95 backtrace_error_callback error_callback,
96 void *data)
97{
98 union {
99 const void *cv;
100 void *v;
101 } const_cast;
102
103 const_cast.cv = view->base;
104 if (munmap (const_cast.v, view->len) < 0)
105 error_callback (data, "munmap", errno);
106}