Ulrich Drepper | b08d5a8 | 2005-07-26 05:00:05 +0000 | [diff] [blame] | 1 | /* Iterate through modules. |
Roland McGrath | b4d6f0f | 2008-08-25 22:55:17 +0000 | [diff] [blame^] | 2 | Copyright (C) 2005, 2008 Red Hat, Inc. |
Ulrich Drepper | 361df7d | 2006-04-04 21:38:57 +0000 | [diff] [blame] | 3 | This file is part of Red Hat elfutils. |
Ulrich Drepper | b08d5a8 | 2005-07-26 05:00:05 +0000 | [diff] [blame] | 4 | |
Ulrich Drepper | 361df7d | 2006-04-04 21:38:57 +0000 | [diff] [blame] | 5 | Red Hat elfutils is free software; you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License as published by the |
| 7 | Free Software Foundation; version 2 of the License. |
Ulrich Drepper | b08d5a8 | 2005-07-26 05:00:05 +0000 | [diff] [blame] | 8 | |
Ulrich Drepper | 361df7d | 2006-04-04 21:38:57 +0000 | [diff] [blame] | 9 | Red Hat elfutils is distributed in the hope that it will be useful, but |
| 10 | WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 | General Public License for more details. |
| 13 | |
| 14 | You should have received a copy of the GNU General Public License along |
| 15 | with Red Hat elfutils; if not, write to the Free Software Foundation, |
Ulrich Drepper | 1e9ef50 | 2006-04-04 22:29:06 +0000 | [diff] [blame] | 16 | Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA. |
Ulrich Drepper | 361df7d | 2006-04-04 21:38:57 +0000 | [diff] [blame] | 17 | |
| 18 | In addition, as a special exception, Red Hat, Inc. gives You the |
| 19 | additional right to link the code of Red Hat elfutils with code licensed |
| 20 | under any Open Source Initiative certified open source license |
| 21 | (http://www.opensource.org/licenses/index.php) which requires the |
| 22 | distribution of source code with any binary distribution and to |
| 23 | distribute linked combinations of the two. Non-GPL Code permitted under |
| 24 | this exception must only link to the code of Red Hat elfutils through |
| 25 | those well defined interfaces identified in the file named EXCEPTION |
| 26 | found in the source code files (the "Approved Interfaces"). The files |
| 27 | of Non-GPL Code may instantiate templates or use macros or inline |
| 28 | functions from the Approved Interfaces without causing the resulting |
| 29 | work to be covered by the GNU General Public License. Only Red Hat, |
| 30 | Inc. may make changes or additions to the list of Approved Interfaces. |
| 31 | Red Hat's grant of this exception is conditioned upon your not adding |
| 32 | any new exceptions. If you wish to add a new Approved Interface or |
| 33 | exception, please contact Red Hat. You must obey the GNU General Public |
| 34 | License in all respects for all of the Red Hat elfutils code and other |
| 35 | code used in conjunction with Red Hat elfutils except the Non-GPL Code |
| 36 | covered by this exception. If you modify this file, you may extend this |
| 37 | exception to your version of the file, but you are not obligated to do |
| 38 | so. If you do not wish to provide this exception without modification, |
| 39 | you must delete this exception statement from your version and license |
| 40 | this file solely under the GPL without exception. |
| 41 | |
| 42 | Red Hat elfutils is an included package of the Open Invention Network. |
| 43 | An included package of the Open Invention Network is a package for which |
| 44 | Open Invention Network licensees cross-license their patents. No patent |
| 45 | license is granted, either expressly or impliedly, by designation as an |
| 46 | included package. Should you wish to participate in the Open Invention |
| 47 | Network licensing program, please visit www.openinventionnetwork.com |
| 48 | <http://www.openinventionnetwork.com>. */ |
Ulrich Drepper | b08d5a8 | 2005-07-26 05:00:05 +0000 | [diff] [blame] | 49 | |
| 50 | #include "libdwflP.h" |
| 51 | |
| 52 | ptrdiff_t |
| 53 | dwfl_getmodules (Dwfl *dwfl, |
| 54 | int (*callback) (Dwfl_Module *, void **, |
| 55 | const char *, Dwarf_Addr, void *), |
| 56 | void *arg, |
| 57 | ptrdiff_t offset) |
| 58 | { |
| 59 | if (dwfl == NULL) |
| 60 | return -1; |
| 61 | |
Roland McGrath | b4d6f0f | 2008-08-25 22:55:17 +0000 | [diff] [blame^] | 62 | Dwfl_Module *m = dwfl->modulelist; |
Ulrich Drepper | b08d5a8 | 2005-07-26 05:00:05 +0000 | [diff] [blame] | 63 | |
Roland McGrath | b4d6f0f | 2008-08-25 22:55:17 +0000 | [diff] [blame^] | 64 | if (unlikely (dwfl->lookup_module == NULL)) |
Ulrich Drepper | b08d5a8 | 2005-07-26 05:00:05 +0000 | [diff] [blame] | 65 | { |
Roland McGrath | b4d6f0f | 2008-08-25 22:55:17 +0000 | [diff] [blame^] | 66 | for (ptrdiff_t pos = 0; pos < offset; ++pos) |
| 67 | if (m == NULL) |
| 68 | return -1; |
| 69 | else |
| 70 | m = m->next; |
| 71 | while (m != NULL) |
| 72 | { |
| 73 | ++offset; |
| 74 | if ((*callback) (MODCB_ARGS (m), arg) != DWARF_CB_OK) |
| 75 | return offset; |
| 76 | m = m->next; |
| 77 | } |
| 78 | } |
| 79 | else |
| 80 | { |
| 81 | if (offset > 0) |
| 82 | { |
| 83 | if ((size_t) offset - 1 == dwfl->lookup_elts) |
| 84 | return 0; |
| 85 | |
| 86 | if (unlikely ((size_t) offset - 1 > dwfl->lookup_elts)) |
| 87 | return -1; |
| 88 | |
| 89 | m = dwfl->lookup_module[offset - 1]; |
| 90 | if (unlikely (m == NULL)) |
| 91 | return -1; |
| 92 | } |
| 93 | |
| 94 | while (m != NULL) |
| 95 | { |
| 96 | int ok = (*callback) (MODCB_ARGS (m), arg); |
| 97 | m = m->next; |
| 98 | if (ok != DWARF_CB_OK) |
| 99 | return (m == NULL |
| 100 | ? (ptrdiff_t) dwfl->lookup_elts + 1 |
| 101 | : m->segment + 1); |
| 102 | } |
Ulrich Drepper | b08d5a8 | 2005-07-26 05:00:05 +0000 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | return 0; |
| 106 | } |
Roland McGrath | b4d6f0f | 2008-08-25 22:55:17 +0000 | [diff] [blame^] | 107 | INTDEF (dwfl_getmodules) |