blob: bcc40368cea9cc52d1b0c1bc3d5a3635ee975d8f [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"
mostang.com!davidm824d6612003-02-08 10:10:59 +000030#include "os-linux.h"
31
hp.com!davidmc4f59742004-01-03 10:50:24 +000032PROTECTED int
mostang.com!davidm824d6612003-02-08 10:10:59 +000033tdep_get_elf_image (struct elf_image *ei, pid_t pid, unw_word_t ip,
Arun Sharma1787a2f2010-05-15 12:14:09 -070034 unsigned long *segbase, unsigned long *mapoff,
35 char *path, size_t pathlen)
mostang.com!davidm824d6612003-02-08 10:10:59 +000036{
37 struct map_iterator mi;
Paul Pluzhnikovb56375e2009-10-07 12:51:03 -070038 int found = 0, rc;
mostang.com!davidm824d6612003-02-08 10:10:59 +000039 unsigned long hi;
40
Paul Pluzhnikovb56375e2009-10-07 12:51:03 -070041 if (maps_init (&mi, pid) < 0)
42 return -1;
43
44 while (maps_next (&mi, segbase, &hi, mapoff))
mostang.com!davidm824d6612003-02-08 10:10:59 +000045 if (ip >= *segbase && ip < hi)
46 {
47 found = 1;
48 break;
49 }
mostang.com!davidm824d6612003-02-08 10:10:59 +000050
51 if (!found)
Paul Pluzhnikovb56375e2009-10-07 12:51:03 -070052 {
53 maps_close (&mi);
54 return -1;
55 }
Arun Sharma1787a2f2010-05-15 12:14:09 -070056 if (path)
57 {
58 strncpy(path, mi.path, pathlen);
59 }
Paul Pluzhnikovb56375e2009-10-07 12:51:03 -070060 rc = elf_map_image (ei, mi.path);
61 maps_close (&mi);
62 return rc;
mostang.com!davidm824d6612003-02-08 10:10:59 +000063}