1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
/* Determine the virtual memory area of a given address. FreeBSD version.
Copyright (C) 2002-2003, 2006, 2008 Bruno Haible <bruno@clisp.org>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
#include "stackvma.h"
#include <stdio.h>
#include "stackvma-simple.c"
#include "stackvma-rofile.c"
#if HAVE_MINCORE
# define sigsegv_get_vma mincore_get_vma
# define STATIC static
# include "stackvma-mincore.c"
# undef sigsegv_get_vma
#endif
int
sigsegv_get_vma (unsigned long address, struct vma_struct *vma)
{
struct rofile rof;
int c;
/* The stack appears as multiple adjacents segments, therefore we
merge adjacent segments. */
unsigned long next_start, next_end, curr_start, curr_end;
#if STACK_DIRECTION < 0
unsigned long prev_end;
#endif
/* Open the current process' maps file. It describes one VMA per line. */
if (rof_open (&rof, "/proc/curproc/map") < 0)
goto failed;
#if STACK_DIRECTION < 0
prev_end = 0;
#endif
for (curr_start = curr_end = 0; ;)
{
if (!(rof_getchar (&rof) == '0'
&& rof_getchar (&rof) == 'x'
&& rof_scanf_lx (&rof, &next_start) >= 0))
break;
while (c = rof_peekchar (&rof), c == ' ' || c == '\t')
rof_getchar (&rof);
if (!(rof_getchar (&rof) == '0'
&& rof_getchar (&rof) == 'x'
&& rof_scanf_lx (&rof, &next_end) >= 0))
break;
while (c = rof_getchar (&rof), c != -1 && c != '\n')
continue;
if (next_start == curr_end)
{
/* Merge adjacent segments. */
curr_end = next_end;
}
else
{
if (curr_start < curr_end
&& address >= curr_start && address <= curr_end-1)
goto found;
#if STACK_DIRECTION < 0
prev_end = curr_end;
#endif
curr_start = next_start; curr_end = next_end;
}
}
if (address >= curr_start && address <= curr_end-1)
found:
{
vma->start = curr_start;
vma->end = curr_end;
#if STACK_DIRECTION < 0
vma->prev_end = prev_end;
#else
if (rof_getchar (&rof) == '0'
&& rof_getchar (&rof) == 'x'
&& rof_scanf_lx (&rof, &vma->next_start) >= 0)
{
while (c = rof_peekchar (&rof), c == ' ' || c == '\t')
rof_getchar (&rof);
if (rof_getchar (&rof) == '0'
&& rof_getchar (&rof) == 'x'
&& rof_scanf_lx (&rof, &next_end) >= 0)
;
else
vma->next_start = 0;
}
else
vma->next_start = 0;
#endif
rof_close (&rof);
vma->is_near_this = simple_is_near_this;
return 0;
}
rof_close (&rof);
failed:
#if HAVE_MINCORE
/* FreeBSD 6.[01] doesn't allow to distinguish unmapped pages from
mapped but swapped-out pages. See whether it's fixed. */
if (!is_mapped (0))
/* OK, mincore() appears to work as expected. */
return mincore_get_vma (address, vma);
#endif
return -1;
}
|