aboutsummaryrefslogtreecommitdiff
path: root/libjava/gnu/gcj/runtime/NameFinder.java
blob: 19820c1bd6bb28e9284440ae498a42805d0bba9a (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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
/* NameFinder.java -- Translates addresses to StackTraceElements.
   Copyright (C) 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.  */

package gnu.gcj.runtime;

import gnu.gcj.RawData;

import java.lang.StringBuffer;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.IOException;
import java.io.File;

/**
 * Helper class that translates addresses (represented as longs) to a
 * StackTraceElement array.
 *
 * There are a couple of system properties that can be set to manipulate the
 * result (all default to true):
 * <li>
 * <ul><code>gnu.gcj.runtime.NameFinder.demangle</code>
 *     Whether names should be demangled.</ul>
 * <ul><code>gnu.gcj.runtime.NameFinder.sanitize</code></ul>
 *     Whether calls to initialize exceptions and starting the runtime system
 *     should be removed from the stack trace. Only done when names are
 *     demangled.</ul>
 * <ul><code>gnu.gcj.runtime.NameFinder.remove_unknown</code>
 *     Whether calls to unknown functions (class and method names are unknown)
 *     should be removed from the stack trace. Only done when the stack is
 *     sanitized.</ul>
 * <ul><code>gnu.gcj.runtime.NameFinder.remove_interpreter</code>
 *     Whether runtime interpreter calls (methods in the _Jv_InterpMethod class
 *     and functions starting with 'ffi_') should be removed from the stack
 *     trace. Only done when the stack is sanitized.</ul>
 * <ul><code>gnu.gcj.runtime.NameFinder.use_addr2line</code>
 *     Whether an external process (addr2line or addr2name.awk) should be used
 *     as fallback to convert the addresses to function names when the runtime
 *     is unable to do it through <code>dladdr</code>.</ul>
 * </li>
 *
 * <code>close()</code> should be called to get rid of all resources.
 *
 * This class is used from <code>java.lang.VMThrowable</code>.
 *
 * Currently the <code>lookup(long[])</code> method is not thread safe.
 * It can easily be made thread safe by synchronizing access to all external
 * processes when used.
 *   
 * @author Mark Wielaard (mark@klomp.org)
 */
public class NameFinder
{
  // Set these to false when not needed.
  private static final boolean demangle
	  = Boolean.valueOf(System.getProperty
		("gnu.gcj.runtime.NameFinder.demangle", "true")
	    ).booleanValue();
  private static final boolean sanitize
	  = Boolean.valueOf(System.getProperty
		("gnu.gcj.runtime.NameFinder.sanitize", "true")
	    ).booleanValue();
  private static final boolean remove_unknown
	  = Boolean.valueOf(System.getProperty
		("gnu.gcj.runtime.NameFinder.remove_unknown", "true")
	    ).booleanValue();
  private static final boolean remove_interpreter
	  = Boolean.valueOf(System.getProperty
		("gnu.gcj.runtime.NameFinder.remove_interpreter", "true")
	    ).booleanValue();
  private static final boolean use_addr2line
	  = Boolean.valueOf(System.getProperty
		("gnu.gcj.runtime.NameFinder.use_addr2line", "true")
	    ).booleanValue();

  /**
   * The name of the currently running executable.
   */
  private final String executable;

  /**
   * Process used for demangling names.
   */
  private Process cppfilt;

  private BufferedWriter cppfiltOut;
  private BufferedReader cppfiltIn;

  /**
   * Process used for translating addresses to function/file names.
   */
  private Process addr2line;

  private BufferedWriter addr2lineOut;
  private BufferedReader addr2lineIn;

  /**
   * Flag set if using addr2name.awk instead of addr2line from binutils.
   */
  private boolean usingAddr2name = false;

  /**
   * Creates a new NameFinder. Call close to get rid of any resources
   * created while using the <code>lookup</code> methods.
   */
  public NameFinder()
  {
    executable = getExecutable();
    Runtime runtime = Runtime.getRuntime();
    if (demangle)
    {
      try
	{
	  String[] exec = new String[] {"c++filt", "-s", "java"};
	  cppfilt = runtime.exec(exec);
	  cppfiltIn = new BufferedReader
			(new InputStreamReader(cppfilt.getInputStream()));
	  cppfiltOut = new BufferedWriter
			(new OutputStreamWriter(cppfilt.getOutputStream()));
	}
      catch (IOException ioe)
        {
	  if (cppfilt != null)
	    cppfilt.destroy();
	  cppfilt = null;
	}
    }

    if (use_addr2line)
      {
	try
	  {
	    String[] exec = new String[] {"addr2line", "-f", "-e", executable};
	    addr2line = runtime.exec(exec);
	  }
	catch (IOException ioe)
	  {
	    try
	      {
		String[] exec = new String[] {"addr2name.awk", executable};
		addr2line = runtime.exec(exec);
		usingAddr2name = true;
	      }
	    catch (IOException ioe2) { addr2line = null; }
	  }

	if (addr2line != null)
	  {
	    try
	      {
		addr2lineIn = new BufferedReader
			(new InputStreamReader(addr2line.getInputStream()));
		addr2lineOut = new BufferedWriter
			(new OutputStreamWriter(addr2line.getOutputStream()));
	      }
	    catch (IOException ioe)
	      {  
		addr2line.destroy();
		addr2line = null;
	      }
	  }
      }
  }

  /**
   * Returns the name of the currently running process.
   */
  native private static String getExecutable();

  /**
   * Tries to use dladdr to create the nth StackTraceElement from the given
   * addresses. Returns null on failure.
   */
  native private StackTraceElement dladdrLookup(RawData addrs, int n);

  /**
   * Returns the nth element from the stack as a hex encoded String.
   */
  native private String getAddrAsString(RawData addrs, int n);

  /**
   * Returns the label that is exported for the given method name.
   */
  native private String getExternalLabel(String name);

  /**
   * If nth element of stack is an interpreted frame, return the
   * element representing the method being interpreted.
   */
  native private StackTraceElement lookupInterp(RawData addrs, int n);

  /**
   * Creates the nth StackTraceElement from the given native stacktrace.
   */
  private StackTraceElement lookup(RawData addrs, int n)
  {
    StackTraceElement result;

    result = lookupInterp(addrs, n);
    if (result == null)
      result = dladdrLookup(addrs, n);
    if (result == null)
      {
	String name = null;
	String file = null;

	String hex = getAddrAsString(addrs, n);
	
	if (addr2line != null)
	  {
	    try
	      {
		addr2lineOut.write(hex);
		addr2lineOut.newLine();
		addr2lineOut.flush();
		name = addr2lineIn.readLine();
		file = addr2lineIn.readLine();

                // addr2line uses symbolic debugging information instead
                // of the actually exported labels as addr2name.awk does.
                // This name might need some modification, depending on 
                // the system, to make it a label like that returned 
                // by addr2name.awk or dladdr.
                if (! usingAddr2name)
                  if (name != null && ! "??".equals (name))
                    name = getExternalLabel (name);
	      }
	    catch (IOException ioe) { addr2line = null; }
	  }

	if (name == null || "??".equals(name))
	  name = hex;

	result = createStackTraceElement(name, file);
      }

    return result;
  }

  /**
   * Given an Throwable and a native stacktrace returns an array of
   * StackTraceElement containing class, method, file and linenumbers.
   */
  public StackTraceElement[] lookup(Throwable t, RawData addrs, int length)
  {
    StackTraceElement[] elements = new StackTraceElement[length];
    for (int i=0; i < length; i++)
      elements[i] = lookup(addrs, i);

    if (demangle && sanitize)
      return sanitizeStack(elements, t);
    else
      return elements;
  }

  
  /**
   * Removes calls to initialize exceptions and the runtime system from
   * the stack trace including stack frames of which nothing usefull is known.
   * Throw away the top of the stack till we find the constructor(s)
   * of this Throwable or at least the contructors of java.lang.Throwable
   * or the actual fillInStackTrace call.
   * Also throw away from the top everything before and including a runtime
   * _Jv_Throw call.
   */
  private static StackTraceElement[] sanitizeStack(StackTraceElement[] elements,
						   Throwable t)
  {
    StackTraceElement[] stack;

    String className = t.getClass().getName();
    String consName;
    int lastDot = className.lastIndexOf('.');
    if (lastDot == -1)
      consName = className + '(';
    else
      consName = className.substring(lastDot + 1) + '(';

    int unknown = 0;
    int interpreter = 0;
    int last_throw = -1;
    int length = elements.length;
    int end = length-1;
    for (int i = 0; i < length; i++)
      {
	String CName = elements[i].getClassName();
	String MName = elements[i].getMethodName();
	if ((CName == null && MName != null && MName.startsWith("_Jv_Throw"))
	  ||
	   (CName != null
	    && (CName.equals(className)
		|| CName.equals("java.lang.Throwable")
		|| CName.equals("java.lang.VMThrowable"))
	    && MName != null
	    && (MName.startsWith(consName)
		|| MName.startsWith("Throwable(")
		|| MName.startsWith("fillInStackTrace("))))
	  {
	    last_throw = i;
	    // Reset counting of unknown and interpreter frames.
	    unknown = 0;
	    interpreter = 0;
	  }
	else if (remove_unknown && CName == null 
		 && (MName == null || MName.startsWith("0x")))
	  unknown++;
	else if (remove_interpreter
		 && ((CName == null
		      && MName != null && MName.startsWith("ffi_"))
		     || (CName != null && CName.equals("_Jv_InterpMethod"))))
	  interpreter++;
	else if ("main(java.lang.String[])".equals(MName))
	  {
	    end = i;
	    break;
	  }
      }
    int begin = last_throw+1;

    // Now filter out everything at the start and the end that is not part
    // of the "normal" user program including any elements that are interpreter
    // calls or have no usefull information whatsoever.
    // Unless that means we filter out all info.
    int nr_elements = end-begin-unknown-interpreter+1;
    if ((begin > 0 || end < length-1 || unknown > 0 || interpreter > 0)
	&& nr_elements > 0)
      {
	stack = new StackTraceElement[nr_elements];
	int pos =0;
	for (int i=begin; i<=end; i++)
	  {
	    String MName = elements[i].getMethodName();
	    String CName = elements[i].getClassName();
	    if (remove_unknown && CName == null 
		 && (MName == null || MName.startsWith("0x")))
	      ; // Skip unknown frame
	    else if (remove_interpreter
		     && ((CName == null
			 && MName != null && MName.startsWith("ffi_"))
			|| (CName != null && CName.equals("_Jv_InterpMethod"))))
	      ; // Skip interpreter runtime frame
	    else
	      {
		stack[pos] = elements[i];
		pos++;
	      }
	  }
      }
    else
      stack = elements;

    return stack;
  }

  /**
   * Creates a StackTraceElement given a string and a filename.
   * Splits the given string into the class and method part.
   * The string name will be a demangled to a fully qualified java method
   * string. The string file will be decomposed into a file name and possibly
   * a line number. The name should never be null, but the file may be if it
   * is unknown.
   */
  private StackTraceElement createStackTraceElement(String name, String file)
  {
    if (!demangle)
      return new StackTraceElement(file, -1, null, name, false);

    String s = demangleName(name);
    String methodName = s;
    String className = null;
    int bracket = s.indexOf('(');
    if (bracket > 0)
      {
	int dot = s.lastIndexOf('.', bracket);
	if (dot > 0)
	  {
	    className = s.substring(0, dot);
	    methodName = s.substring(dot+1, s.length());
	  }
      }

    String fileName = file;
    int line = -1;
    if (fileName != null)
      {
	int colon = file.lastIndexOf(':');
	if (colon > 0)
	  {
	    fileName = file.substring(0, colon);
	    try
	      {
		line = Integer.parseInt(file.substring(colon+1, file.length()));
	      }
	    catch (NumberFormatException nfe) { /* ignore */ }
	  }

	if (line == 0)
	  line =-1;

	if ("".equals(fileName) || "??".equals(fileName))
	  fileName = null;
	else if (fileName != null)
	  {
	    try
	      {
		fileName = new File(fileName).getCanonicalPath();
	      }
	    catch (IOException ioe) { /* ignore */ }
	  }
      }

    return new StackTraceElement(fileName, line, className, methodName, false);
  }

  /**
   * Demangles the given String if possible. Returns the demangled String or
   * the original string if demangling is impossible.
   */
  private String demangleName(String s)
  {
    if (cppfilt != null)
    {
      try
	{
	  cppfiltOut.write(s);
	  cppfiltOut.newLine();
	  cppfiltOut.flush();
	  return cppfiltIn.readLine();
	}
      catch (IOException ioe) { cppfilt.destroy(); cppfilt = null; }
    }

    return s;
  }

  /**
   * Returns human readable method name and aguments given a method type
   * signature as known to the interpreter and a classname.
   */
  public static String demangleInterpreterMethod(String m, String cn)
  {
    int index = 0;
    int length = m.length();
    StringBuffer sb = new StringBuffer(length);

    // Figure out the real method name
    if (m.startsWith("<init>"))
      {
	String className;
	int i = cn.lastIndexOf('.');
	if (i < 0)
	  className = cn;
	else
	  className = cn.substring(i + 1);
	sb.append(className);
	index += 7;
      }
    else
      {
	int i = m.indexOf('(');
	if (i > 0)
	  {
	    sb.append(m.substring(0,i));
	    index += i + 1;
	  }
      }

    sb.append('(');

    // Demangle the type arguments
    int arrayDepth = 0;
    char c = (index < length) ? m.charAt(index) : ')';
    while (c != ')')
      {
	String type;
	switch(c)
	{
          case 'B':
            type = "byte";
	    break;
          case 'C':
            type = "char";
	    break;
          case 'D':
            type = "double";
	    break;
          case 'F':
            type = "float";
	    break;
          case 'I':
            type = "int";
	    break;
          case 'J':
            type = "long";
	    break;
          case 'S':
            type = "short";
	    break;
          case 'Z':
            type = "boolean";
	    break;
          case 'L':
	    int i = m.indexOf(';', index);
	    if (i > 0)
	      {
		type = m.substring(index+1, i);
		index = i;
	      }
	    else
	      type = "<unknown ref>";
	    break;
          case '[':
	    type = "";
	    arrayDepth++;
	    break;
          default:
	    type = "<unknown " + c + '>';
	}
	sb.append(type);

	// Handle arrays
	if (c != '[' && arrayDepth > 0)
	  while (arrayDepth > 0)
	    {
	      sb.append("[]");
	      arrayDepth--;
	    }

	index++;
	char nc = (index < length) ? m.charAt(index) : ')';
	if (c != '[' && nc  != ')')
	  sb.append(", ");
	c = nc;
      }

    // Stop. We are not interested in the return type.
    sb.append(')');
    return sb.toString();
  }

  /**
   * Releases all resources used by this NameFinder.
   */
  public void close()
  {
    if (cppfilt != null)
      cppfilt.destroy();

    if (addr2line != null)
      addr2line.destroy();
  }

  /**
   * Calls close to get rid of all resources.
   */
  protected void finalize()
  {
    close();
  }
}