aboutsummaryrefslogtreecommitdiff
path: root/libjava/name-finder.cc
blob: 2d383aaa2508f5c1e5c928910e21fedd0ad5c290 (plain)
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
// name-finder.cc - Convert addresses to names

/* Copyright (C) 2000, 2002  Free Software Foundation, Inc

   This file is part of libgcj.

This software is copyrighted work licensed under the terms of the
Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
details.  */

/**
 * @author Andrew Haley <aph@cygnus.com>
 * @date Jan 6  2000
 */

/* _Jv_name_finder is a class wrapper around a mechanism that can
   convert address of methods to their names and the names of files in
   which they appear.

   Right now, the only implementation of this involves running a copy
   of addr2line, but at some point it is worth building this
   functionality into libgcj, if only for embedded systems.  */


#ifndef _GNU_SOURCE
#define _GNU_SOURCE 1
#endif

#include <config.h>

#include <string.h>

#include <gcj/cni.h>
#include <jvm.h>
#include <java/lang/Object.h>
#include <java-threads.h>
#include <java/lang/Throwable.h>
#include <java/io/PrintStream.h>
#include <java/io/PrintWriter.h>

#include <sys/types.h>

#include <stdlib.h>
#include <stdio.h>

#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif

#ifdef HAVE_DLFCN_H
#include <dlfcn.h>
#endif

#include <name-finder.h>

/* Create a new name finder which will perform address lookups on an
   executable. */

_Jv_name_finder::_Jv_name_finder (char *executable)
{
#if defined (HAVE_PIPE) && defined (HAVE_FORK) && defined (HAVE_EXECVP)
  demangling_error = lookup_error = 0;

  // Initialize file descriptors so that shutdown works properly.
  f_pipe[0] = -1;
  f_pipe[1] = -1;
  b_pipe[0] = -1;
  b_pipe[1] = -1;
  b_pipe_fd = NULL;

  f2_pipe[0] = -1;
  f2_pipe[1] = -1;
  b2_pipe[0] = -1;
  b2_pipe[1] = -1;
  b2_pipe_fd = NULL;

  // addr2line helper process.

  char *argv[5];
  {
    int arg = 0;
#ifdef __ia64__
    argv[arg++] = "addr2name.awk";
#else
    argv[arg++] = "addr2line";
    argv[arg++] = "-f";
    argv[arg++] = "-e";
#endif
    argv[arg++] = executable;
    argv[arg] = NULL;
  }

  lookup_error |= pipe (f_pipe) < 0;
  lookup_error |= pipe (b_pipe) < 0;

  if (lookup_error)
    return;

  pid = fork ();
  if (pid == 0)
    {
      close (f_pipe[1]);
      close (b_pipe[0]);
      dup2 (f_pipe[0], fileno (stdin));
      dup2 (b_pipe[1], fileno (stdout));
      execvp (argv[0], argv);
      _exit (127);
    }

  // Close child end of pipes.  Set local descriptors to -1 so we
  // don't try to close the fd again.
  close (f_pipe [0]);
  f_pipe[0] = -1;
  close (b_pipe [1]);
  b_pipe[1] = -1;

  if (pid < 0)
    {
      lookup_error |= 1; 
      return;
    }

  b_pipe_fd = fdopen (b_pipe[0], "r");
  lookup_error |= !b_pipe_fd;

  if (! lookup_error)
    {
      // Don't try to close the fd twice.
      b_pipe[0] = -1;
    }

  // c++filt helper process.
  
  char *argv2[4];
  argv2[0] = "c++filt";
  argv2[1] = "-s";
  argv2[2] = "java";
  argv2[3] = NULL;

  demangling_error |= pipe (f2_pipe) < 0;
  demangling_error |= pipe (b2_pipe) < 0;

  if (demangling_error)
    return;

  pid2 = fork ();
  if (pid2 == 0)
    {
      close (f2_pipe[1]);
      close (b2_pipe[0]);
      dup2 (f2_pipe[0], fileno (stdin));
      dup2 (b2_pipe[1], fileno (stdout));
      execvp (argv2[0], argv2);
      _exit (127);
    }

  // Close child end of pipes.  Set local descriptors to -1 so we
  // don't try to close the fd again.
  close (f2_pipe [0]);
  f2_pipe[0] = -1;
  close (b2_pipe [1]);
  b2_pipe[1] = -1;

  if (pid2 < 0)
    {
      demangling_error |= 1; 
      return;
    }

  b2_pipe_fd = fdopen (b2_pipe[0], "r");
  demangling_error |= !b2_pipe_fd;

  if (! demangling_error)
    {
      // Don't try to close the fd twice.
      b2_pipe[0] = -1;
    }
#endif
}

/* Convert a pointer to hex. */

void
_Jv_name_finder::toHex (void *p)
{
  typedef unsigned word_t __attribute ((mode (word)));
  word_t n = (word_t) p;
  int digits = sizeof (void *) * 2;

  strcpy (hex, "0x");
  for (int i = digits - 1; i >= 0; i--)
    {
      int digit = n % 16;
      
      n /= 16;
      hex[i+2] = digit > 9 ? 'a' + digit - 10 : '0' + digit; 
    }
  hex [digits+2] = 0;
}   

/* Creates a StackTraceElement given a string and a filename.
   Splits the given string into the class and method part.
   The string s will be a demangled to a fully qualified java method string.
   The string f will be decomposed into a file name and a possible line number.
   The given strings will be altered.  */

java::lang::StackTraceElement*
_Jv_name_finder::createStackTraceElement(char *s, char *f)
{
  char *c;
  char *class_name = NULL;
  char *method_name = NULL;

#if defined (HAVE_PIPE) && defined (HAVE_FORK) && defined (HAVE_EXECVP)
  if (demangling_error)
    goto fail;

  demangling_error |= write (f2_pipe[1], s, strlen (s)) < 0;
  if (demangling_error)
    goto fail;
  demangling_error |= write (f2_pipe[1], "\n", 1) < 0;
  if (demangling_error)
    goto fail;

  char name[1024];
  demangling_error |= (fgets (name, sizeof name, b2_pipe_fd) == NULL);
  if (demangling_error)
    goto fail;

  c = strchr (name, '\n');
  if (c)
    *c = 0;
  s = name;
#endif

  c = strchr (s, '(');
  if (c)
    {
      while(c-->s)
	if (*c == '.')
	  break;

      if (*c == '.')
	{
	  *c = 0;
	  class_name = s;
	  method_name = c+1;
	}
      else
	{
	  class_name = NULL;
	  method_name = s;
	}
    }
  else
    {
      class_name = NULL;
      method_name = s;
    }

  // Get line number
  int line_number;
  c = strrchr (f, ':');
  if (c)
    {
      if (c[1] != 0)
	line_number = atoi(c+1);
      else
	line_number = -1;
      *c = 0;
    }
  else
    {
      line_number = -1;
      c = strchr (f, '\n');
      if (c)
	*c = 0;
    }

 fail:
  return new java::lang::StackTraceElement(
		  f ? JvNewStringLatin1 (f) : NULL,
		  line_number,
		  class_name ? JvNewStringLatin1 (class_name) : NULL,
		  JvNewStringLatin1 (method_name ? method_name : s),
		  false);
}

/* Given a pointer to a function or method, try to convert it into a
   name and the appropriate line and source file.  The caller passes
   the code pointer in p.

   Returns false if the lookup fails.  Even if this happens, the field
   he will have been correctly filled in with the pointer.  */

java::lang::StackTraceElement*
_Jv_name_finder::lookup (void *p)
{
  extern char **_Jv_argv;
  toHex (p);
      
  char name[1024];
  char file_name[1024];

  file_name[0] = 0;

#if defined (HAVE_DLFCN_H) && defined (HAVE_DLADDR)
  {
    Dl_info dl_info;
    
    if (dladdr (p, &dl_info))
      {
        if (dl_info.dli_fname)
	  strncpy (file_name, dl_info.dli_fname, sizeof file_name);
	if (dl_info.dli_sname)
	  strncpy (name, dl_info.dli_sname, sizeof name);
       
       /* Don't trust dladdr() if the address is from the main program. */
       if (dl_info.dli_fname != NULL
           && dl_info.dli_sname != NULL
	   && (_Jv_argv == NULL || strcmp (file_name, _Jv_argv[0]) != 0))
         return createStackTraceElement (name, file_name);
      }
  }
#endif

  memcpy (name, hex, strlen (hex) + 1);

#if defined (HAVE_PIPE) && defined (HAVE_FORK) && defined (HAVE_EXECVP)
  if (lookup_error)
    goto fail;

  lookup_error |= write (f_pipe[1], hex, strlen (hex)) < 0;
  if (lookup_error)
    goto fail;
  lookup_error |= write (f_pipe[1], "\n", 1) < 0;
  if (lookup_error)
    goto fail;

  lookup_error |= (fgets (name, sizeof name, b_pipe_fd) == NULL);
  if (lookup_error)
    goto fail;
  lookup_error |= (fgets (file_name, sizeof file_name, b_pipe_fd) == NULL);
  if (lookup_error)
    goto fail;

  {
    char *newline = strchr (name, '\n');
    if (newline)
      *newline = 0;
  }
#endif /* defined (HAVE_PIPE) && defined (HAVE_FORK) && defined (HAVE_EXECVP) */

 fail:
  return (createStackTraceElement (name, file_name));
}