mostang.com!davidm | 824d661 | 2003-02-08 10:10:59 +0000 | [diff] [blame^] | 1 | /* libunwind - a platform-independent unwind library |
| 2 | Copyright (C) 2003 Hewlett-Packard Co |
| 3 | Contributed by David Mosberger-Tang <davidm@hpl.hp.com> |
| 4 | |
| 5 | This file is part of libunwind. |
| 6 | |
| 7 | Permission is hereby granted, free of charge, to any person obtaining |
| 8 | a copy of this software and associated documentation files (the |
| 9 | "Software"), to deal in the Software without restriction, including |
| 10 | without limitation the rights to use, copy, modify, merge, publish, |
| 11 | distribute, sublicense, and/or sell copies of the Software, and to |
| 12 | permit persons to whom the Software is furnished to do so, subject to |
| 13 | the following conditions: |
| 14 | |
| 15 | The above copyright notice and this permission notice shall be |
| 16 | included in all copies or substantial portions of the Software. |
| 17 | |
| 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 19 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 20 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 21 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 22 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 23 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 24 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ |
| 25 | |
| 26 | #ifndef os_linux_h |
| 27 | #define os_linux_h |
| 28 | |
| 29 | struct map_iterator |
| 30 | { |
| 31 | FILE *fp; |
| 32 | }; |
| 33 | |
| 34 | static inline void |
| 35 | maps_init (struct map_iterator *mi, pid_t pid) |
| 36 | { |
| 37 | char path[PATH_MAX]; |
| 38 | |
| 39 | snprintf (path, sizeof (path), "/proc/%d/maps", pid); |
| 40 | mi->fp = fopen (path, "r"); |
| 41 | } |
| 42 | |
| 43 | static inline int |
| 44 | maps_next (struct map_iterator *mi, |
| 45 | unsigned long *low, unsigned long *high, unsigned long *offset, |
| 46 | char *path) |
| 47 | { |
| 48 | char line[256+PATH_MAX]; |
| 49 | |
| 50 | if (!mi->fp) |
| 51 | return 0; |
| 52 | |
| 53 | while (fgets (line, sizeof (line), mi->fp)) |
| 54 | { |
| 55 | if (sscanf (line, "%lx-%lx %*4c %lx %*x:%*x %*d %s\n", |
| 56 | low, high, offset, path) == 4) |
| 57 | return 1; |
| 58 | } |
| 59 | return 0; |
| 60 | } |
| 61 | |
| 62 | static inline void |
| 63 | maps_close (struct map_iterator *mi) |
| 64 | { |
| 65 | fclose (mi->fp); |
| 66 | mi->fp = NULL; |
| 67 | } |
| 68 | |
| 69 | #endif /* os_linux_h */ |