blob: f65c98afafdf57c596ae409c05ba8942e787e79d [file] [log] [blame]
mostang.com!davidm824d6612003-02-08 10:10:59 +00001/* libunwind - a platform-independent unwind library
hp.com!davidm07b01ad2005-05-20 09:48:08 +00002 Copyright (C) 2003-2005 Hewlett-Packard Co
mostang.com!davidm824d6612003-02-08 10:10:59 +00003 Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
4
5This file is part of libunwind.
6
7Permission is hereby granted, free of charge, to any person obtaining
8a copy of this software and associated documentation files (the
9"Software"), to deal in the Software without restriction, including
10without limitation the rights to use, copy, modify, merge, publish,
11distribute, sublicense, and/or sell copies of the Software, and to
12permit persons to whom the Software is furnished to do so, subject to
13the following conditions:
14
15The above copyright notice and this permission notice shall be
16included in all copies or substantial portions of the Software.
17
18THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
25
mostang.com!davidm824d6612003-02-08 10:10:59 +000026#include <limits.h>
27#include <stdio.h>
28
hp.com!davidm07b01ad2005-05-20 09:48:08 +000029#include "libunwind_i.h"
Christopher Ferris2553e592015-06-05 17:23:36 -070030#include "libunwind-ptrace.h"
Christopher Ferris7d46a212013-11-14 14:03:33 -080031#include "map_info.h"
mostang.com!davidm824d6612003-02-08 10:10:59 +000032#include "os-linux.h"
33
Christopher Ferris16b95a62014-01-22 16:07:26 -080034/* ANDROID support update. */
Christopher Ferrisf4a8df52014-03-07 19:40:06 -080035HIDDEN struct map_info *
Christopher Ferris2553e592015-06-05 17:23:36 -070036map_create_list (int map_create_type, pid_t pid)
Christopher Ferris7d46a212013-11-14 14:03:33 -080037{
38 struct map_iterator mi;
39 unsigned long start, end, offset, flags;
40 struct map_info *map_list = NULL;
41 struct map_info *cur_map;
Christopher Ferris2553e592015-06-05 17:23:36 -070042 unw_addr_space_t as = NULL;
43 struct unw_addr_space local_as;
44 void* as_arg = NULL;
Christopher Ferris7d46a212013-11-14 14:03:33 -080045
46 if (maps_init (&mi, pid) < 0)
47 return NULL;
48
49 while (maps_next (&mi, &start, &end, &offset, &flags))
50 {
Christopher Ferrisf4a8df52014-03-07 19:40:06 -080051 cur_map = map_alloc_info ();
52 if (cur_map == MAP_FAILED)
Christopher Ferris7d46a212013-11-14 14:03:33 -080053 break;
54 cur_map->next = map_list;
55 cur_map->start = start;
56 cur_map->end = end;
57 cur_map->offset = offset;
Christopher Ferris517b1972014-10-17 10:18:40 -070058 cur_map->load_base = 0;
Christopher Ferris7d46a212013-11-14 14:03:33 -080059 cur_map->flags = flags;
Christopher Ferrisf4a8df52014-03-07 19:40:06 -080060 cur_map->path = strdup (mi.path);
Christopher Ferrisb8627d92014-02-19 16:49:00 -080061 mutex_init (&cur_map->ei_lock);
Christopher Ferriscdf0d032015-05-04 11:01:39 -070062 cur_map->ei.valid = false;
63 cur_map->ei.load_attempted = false;
64 cur_map->ei.mapped = false;
Christopher Ferris7d46a212013-11-14 14:03:33 -080065
Christopher Ferrisfac2c502014-09-10 16:26:12 -070066 /* Indicate mapped memory of devices is special and should not
67 be read or written. Use a special flag instead of zeroing the
68 flags to indicate that the maps do not need to be rebuilt if
69 any values ever wind up in these special maps.
70 /dev/ashmem/... maps are special and don't have any restrictions,
71 so don't mark them as device memory. */
72 if (strncmp ("/dev/", cur_map->path, 5) == 0
73 && strncmp ("ashmem/", cur_map->path + 5, 7) != 0)
74 cur_map->flags |= MAP_FLAGS_DEVICE_MEM;
75
Christopher Ferris2528bee2015-06-23 20:26:41 -070076 /* If this is a readable executable map, and not a stack map or an
77 empty map, find the load_base. */
78 if (cur_map->path[0] != '\0' && strncmp ("[stack:", cur_map->path, 7) != 0
79 && (flags & (PROT_EXEC | PROT_READ)) == (PROT_EXEC | PROT_READ)
Christopher Ferris517b1972014-10-17 10:18:40 -070080 && !(cur_map->flags & MAP_FLAGS_DEVICE_MEM))
81 {
Christopher Ferris901acdd2015-05-21 18:39:05 -070082 struct elf_image ei;
Christopher Ferris2553e592015-06-05 17:23:36 -070083 // Do not map elf for local unwinds, it's faster to read
84 // from memory directly.
85 if (map_create_type == UNW_MAP_CREATE_REMOTE
86 && elf_map_image (&ei, cur_map->path))
Christopher Ferris517b1972014-10-17 10:18:40 -070087 {
88 unw_word_t load_base;
Christopher Ferris901acdd2015-05-21 18:39:05 -070089 if (elf_w (get_load_base) (&ei, offset, &load_base))
Christopher Ferris517b1972014-10-17 10:18:40 -070090 cur_map->load_base = load_base;
Christopher Ferris901acdd2015-05-21 18:39:05 -070091 munmap (ei.u.mapped.image, ei.u.mapped.size);
Christopher Ferris517b1972014-10-17 10:18:40 -070092 }
Christopher Ferris2553e592015-06-05 17:23:36 -070093 else
94 {
95 // Create an address space right here with enough initialized
96 // to read data.
97 if (as == NULL)
98 {
99 if (map_create_type == UNW_MAP_CREATE_LOCAL)
100 {
101 as = &local_as;
102 unw_local_access_addr_space_init (as);
103 }
104 else
105 {
106 // For a remote unwind, create the address space
107 // and arg data the first time we need it.
108 // We'll reuse these values if we need to attempt
109 // to get elf data for another map.
110 as = unw_create_addr_space (&_UPT_accessors, 0);
111 if (as)
112 {
113 as_arg = (void*) _UPT_create (pid);
114 if (!as_arg)
115 {
116 unw_destroy_addr_space (as);
117 as = NULL;
118 }
119 }
120 }
121 }
122 if (as)
123 {
124 ei.mapped = false;
125 ei.u.memory.map = cur_map;
126 ei.u.memory.as = as;
127 ei.u.memory.as_arg = as_arg;
128 ei.valid = elf_w (valid_object_memory) (&ei);
129 unw_word_t load_base;
130 if (ei.valid && elf_w (get_load_base) (&ei, cur_map->offset, &load_base))
131 cur_map->load_base = load_base;
132 }
133 }
Christopher Ferris517b1972014-10-17 10:18:40 -0700134 }
135
Christopher Ferris7d46a212013-11-14 14:03:33 -0800136 map_list = cur_map;
137 }
138
139 maps_close (&mi);
140
Christopher Ferris2553e592015-06-05 17:23:36 -0700141 if (as && map_create_type == UNW_MAP_CREATE_REMOTE)
142 {
143 unw_destroy_addr_space (as);
144 _UPT_destroy (as_arg);
145 }
146
Christopher Ferris7d46a212013-11-14 14:03:33 -0800147 return map_list;
148}
Christopher Ferris16b95a62014-01-22 16:07:26 -0800149/* End of ANDROID update. */