summaryrefslogtreecommitdiff
path: root/src/coredump/_UCD_get_mapinfo_linux.c
blob: 0df2107fb31b265e4e24bea073d5b20c0aab3dc9 (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
/**
 * Extract filemap info from a coredump (Linux and similar)
 */
/*
 This file is part of libunwind.
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of
 this software and associated documentation files (the "Software"), to deal in
 the Software without restriction, including without limitation the rights to
 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
 of the Software, and to permit persons to whom the Software is furnished to do
 so, subject to the following conditions:
 
 The above copyright notice and this permission notice shall be included in all
 copies or substantial portions of the Software.
 
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
*/
#include "_UCD_internal.h"


/**
 * The format of the NT_FILE note is not well documented, but it goes something
 * like this.
 *
 * The note has a header containing the @i count of the number of file maps, plus a
 * value of the size of the offset field in each map. Since we don;t care about
 * the offset field in a core file, there is no further information available on
 * exactly what the means.
 *
 * Following the header are @count mapinfo structures. The mapinfo structure consists of
 * a start address, and end address, and some wacky offset thing.  The start and
 * end address are the virtual addresses of a LOAD segment that was mapped from
 * the named file.
 *
 * Following the array of mapinfo structures is a block of null-terminated C strings
 * containing the mapped file names.  They are ordered correspondingly to each
 * entry in the map structure array.
 */
typedef struct {
  unsigned long count;
  unsigned long pagesz;
} linux_mapinfo_hdr_t;

typedef struct {
  unsigned long start;
  unsigned long end;
  unsigned long offset;
} linux_mapinfo_t;


/**
 * Map a file note to program headers
 *
 * If a NT_FILE note is recognized, parse it and add the resulting backing files
 * to the program header list.
 *
 * Any file names that end in the string "(deleted)" are ignored.
 */
static int
_handle_file_note(uint32_t n_namesz, uint32_t n_descsz, uint32_t n_type, char *name, uint8_t *desc, void *arg)
{
  struct UCD_info *ui = (struct UCD_info *)arg;
#ifdef NT_FILE
  if (n_type == NT_FILE)
  {
    Debug(0, "found a PT_FILE note\n");
    static const char * deleted = "(deleted)";
    size_t deleted_len = strlen(deleted);
    static const size_t mapinfo_offset = sizeof(linux_mapinfo_hdr_t);

    linux_mapinfo_hdr_t *mapinfo = (linux_mapinfo_hdr_t *)desc;
    linux_mapinfo_t *maps = (linux_mapinfo_t *)(desc + mapinfo_offset);
    char *strings = (char *)(desc + mapinfo_offset + sizeof(linux_mapinfo_t)*mapinfo->count);
    for (unsigned long i = 0; i < mapinfo->count; ++i)
    {
      size_t len = strlen(strings);
      for (unsigned p = 0; p < ui->phdrs_count; ++p)
      {
      	if (ui->phdrs[p].p_type == PT_LOAD
      	  && maps[i].start >= ui->phdrs[p].p_vaddr
      	  && maps[i].end <= ui->phdrs[p].p_vaddr + ui->phdrs[p].p_filesz)
	{
	  if (len > deleted_len && memcmp(strings + len - deleted_len, deleted, deleted_len))
	  {
	    _UCD_add_backing_file_at_segment(ui, p, strings);
	  }
	  break;
	}
      }
      strings += (len + 1);
    }
  }
#endif
  return UNW_ESUCCESS;
}


/**
 * Get filemap info from core file (Linux and similar)
 *
 * If there is a mapinfo not in the core file, map its contents to the phdrs.
 *
 * Since there may or may not be any mapinfo notes it's OK for this function to
 * fail.
 */
int
_UCD_get_mapinfo(struct UCD_info *ui, coredump_phdr_t *phdrs, unsigned phdr_size)
{
  int ret = UNW_ESUCCESS; /* it's OK if there are no file mappings */

  for (unsigned i = 0; i < phdr_size; ++i)
  {
    if (phdrs[i].p_type == PT_NOTE)
    {
      uint8_t *segment;
      size_t segment_size;
      ret = _UCD_elf_read_segment(ui, &phdrs[i], &segment, &segment_size);
      if (ret == UNW_ESUCCESS)
      {
      	_UCD_elf_visit_notes(segment, segment_size, _handle_file_note, ui);
      	free(segment);
      }
    }
  }

  return ret;
}