]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/kern/kern_ctf.c
Add UPDATING entries and bump version.
[FreeBSD/FreeBSD.git] / sys / kern / kern_ctf.c
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2008 John Birrell <jb@freebsd.org>
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  * $FreeBSD$
29  */
30
31 /*
32  * Note this file is included by both link_elf.c and link_elf_obj.c.
33  *
34  * The CTF header structure definition can't be used here because it's
35  * (annoyingly) covered by the CDDL. We will just use a few bytes from
36  * it as an integer array where we 'know' what they mean.
37  */
38 #define CTF_HDR_SIZE            36
39 #define CTF_HDR_STRTAB_U32      7
40 #define CTF_HDR_STRLEN_U32      8
41
42 #ifdef DDB_CTF
43 static void *
44 z_alloc(void *nil, u_int items, u_int size)
45 {
46         void *ptr;
47
48         ptr = malloc(items * size, M_TEMP, M_NOWAIT);
49         return ptr;
50 }
51
52 static void
53 z_free(void *nil, void *ptr)
54 {
55         free(ptr, M_TEMP);
56 }
57
58 #endif
59
60 static int
61 link_elf_ctf_get(linker_file_t lf, linker_ctf_t *lc)
62 {
63 #ifdef DDB_CTF
64         Elf_Ehdr *hdr = NULL;
65         Elf_Shdr *shdr = NULL;
66         caddr_t ctftab = NULL;
67         caddr_t raw = NULL;
68         caddr_t shstrtab = NULL;
69         elf_file_t ef = (elf_file_t) lf;
70         int flags;
71         int i;
72         int nbytes;
73         size_t sz;
74         struct nameidata nd;
75         struct thread *td = curthread;
76         uint8_t ctf_hdr[CTF_HDR_SIZE];
77 #endif
78         int error = 0;
79
80         if (lf == NULL || lc == NULL)
81                 return (EINVAL);
82
83         /* Set the defaults for no CTF present. That's not a crime! */
84         bzero(lc, sizeof(*lc));
85
86 #ifdef DDB_CTF
87         /*
88          * First check if we've tried to load CTF data previously and the
89          * CTF ELF section wasn't found. We flag that condition by setting
90          * ctfcnt to -1. See below.
91          */
92         if (ef->ctfcnt < 0)
93                 return (EFTYPE);
94
95         /* Now check if we've already loaded the CTF data.. */
96         if (ef->ctfcnt > 0) {
97                 /* We only need to load once. */
98                 lc->ctftab = ef->ctftab;
99                 lc->ctfcnt = ef->ctfcnt;
100                 lc->symtab = ef->ddbsymtab;
101                 lc->strtab = ef->ddbstrtab;
102                 lc->strcnt = ef->ddbstrcnt;
103                 lc->nsym   = ef->ddbsymcnt;
104                 lc->ctfoffp = (uint32_t **) &ef->ctfoff;
105                 lc->typoffp = (uint32_t **) &ef->typoff;
106                 lc->typlenp = &ef->typlen;
107                 return (0);
108         }
109
110         /*
111          * We need to try reading the CTF data. Flag no CTF data present
112          * by default and if we actually succeed in reading it, we'll
113          * update ctfcnt to the number of bytes read.
114          */
115         ef->ctfcnt = -1;
116
117         NDINIT(&nd, LOOKUP, FOLLOW, UIO_SYSSPACE, lf->pathname, td);
118         flags = FREAD;
119         error = vn_open(&nd, &flags, 0, NULL);
120         if (error)
121                 return (error);
122         NDFREE(&nd, NDF_ONLY_PNBUF);
123
124         /* Allocate memory for the FLF header. */
125         hdr = malloc(sizeof(*hdr), M_LINKER, M_WAITOK);
126
127         /* Read the ELF header. */
128         if ((error = vn_rdwr(UIO_READ, nd.ni_vp, hdr, sizeof(*hdr),
129             0, UIO_SYSSPACE, IO_NODELOCKED, td->td_ucred, NOCRED, NULL,
130             td)) != 0)
131                 goto out;
132
133         /* Sanity check. */
134         if (!IS_ELF(*hdr)) {
135                 error = ENOEXEC;
136                 goto out;
137         }
138
139         nbytes = hdr->e_shnum * hdr->e_shentsize;
140         if (nbytes == 0 || hdr->e_shoff == 0 ||
141             hdr->e_shentsize != sizeof(Elf_Shdr)) {
142                 error = ENOEXEC;
143                 goto out;
144         }
145
146         /* Allocate memory for all the section headers */
147         shdr = malloc(nbytes, M_LINKER, M_WAITOK);
148
149         /* Read all the section headers */
150         if ((error = vn_rdwr(UIO_READ, nd.ni_vp, (caddr_t)shdr, nbytes,
151             hdr->e_shoff, UIO_SYSSPACE, IO_NODELOCKED, td->td_ucred, NOCRED,
152             NULL, td)) != 0)
153                 goto out;
154
155         /*
156          * We need to search for the CTF section by name, so if the
157          * section names aren't present, then we can't locate the
158          * .SUNW_ctf section containing the CTF data.
159          */
160         if (hdr->e_shstrndx == 0 || shdr[hdr->e_shstrndx].sh_type != SHT_STRTAB) {
161                 printf("%s(%d): module %s e_shstrndx is %d, sh_type is %d\n",
162                     __func__, __LINE__, lf->pathname, hdr->e_shstrndx,
163                     shdr[hdr->e_shstrndx].sh_type);
164                 error = EFTYPE;
165                 goto out;
166         }
167
168         /* Allocate memory to buffer the section header strings. */
169         shstrtab = malloc(shdr[hdr->e_shstrndx].sh_size, M_LINKER, M_WAITOK);
170
171         /* Read the section header strings. */
172         if ((error = vn_rdwr(UIO_READ, nd.ni_vp, shstrtab,
173             shdr[hdr->e_shstrndx].sh_size, shdr[hdr->e_shstrndx].sh_offset,
174             UIO_SYSSPACE, IO_NODELOCKED, td->td_ucred, NOCRED, NULL, td)) != 0)
175                 goto out;
176
177         /* Search for the section containing the CTF data. */
178         for (i = 0; i < hdr->e_shnum; i++)
179                 if (strcmp(".SUNW_ctf", shstrtab + shdr[i].sh_name) == 0)
180                         break;
181
182         /* Check if the CTF section wasn't found. */
183         if (i >= hdr->e_shnum) {
184                 printf("%s(%d): module %s has no .SUNW_ctf section\n",
185                     __func__, __LINE__, lf->pathname);
186                 error = EFTYPE;
187                 goto out;
188         }
189
190         /* Read the CTF header. */
191         if ((error = vn_rdwr(UIO_READ, nd.ni_vp, ctf_hdr, sizeof(ctf_hdr),
192             shdr[i].sh_offset, UIO_SYSSPACE, IO_NODELOCKED, td->td_ucred,
193             NOCRED, NULL, td)) != 0)
194                 goto out;
195
196         /* Check the CTF magic number. */
197 #ifdef __LITTLE_ENDIAN__
198         if (ctf_hdr[0] != 0xf1 || ctf_hdr[1] != 0xcf) {
199 #else
200         if (ctf_hdr[0] != 0xcf || ctf_hdr[1] != 0xf1) {
201 #endif
202                 printf("%s(%d): module %s has invalid format\n",
203                     __func__, __LINE__, lf->pathname);
204                 error = EFTYPE;
205                 goto out;
206         }
207
208         /* Check if version 2. */
209         if (ctf_hdr[2] != 2) {
210                 printf("%s(%d): module %s CTF format version is %d "
211                     "(2 expected)\n",
212                     __func__, __LINE__, lf->pathname, ctf_hdr[2]);
213                 error = EFTYPE;
214                 goto out;
215         }
216
217         /* Check if the data is compressed. */
218         if ((ctf_hdr[3] & 0x1) != 0) {
219                 uint32_t *u32 = (uint32_t *) ctf_hdr;
220
221                 /*
222                  * The last two fields in the CTF header are the offset
223                  * from the end of the header to the start of the string
224                  * data and the length of that string data. se this
225                  * information to determine the decompressed CTF data
226                  * buffer required.
227                  */
228                 sz = u32[CTF_HDR_STRTAB_U32] + u32[CTF_HDR_STRLEN_U32] +
229                     sizeof(ctf_hdr);
230
231                 /*
232                  * Allocate memory for the compressed CTF data, including
233                  * the header (which isn't compressed).
234                  */
235                 raw = malloc(shdr[i].sh_size, M_LINKER, M_WAITOK);
236         } else {
237                 /*
238                  * The CTF data is not compressed, so the ELF section
239                  * size is the same as the buffer size required.
240                  */
241                 sz = shdr[i].sh_size;
242         }
243
244         /*
245          * Allocate memory to buffer the CTF data in its decompressed
246          * form.
247          */
248         ctftab = malloc(sz, M_LINKER, M_WAITOK);
249
250         /*
251          * Read the CTF data into the raw buffer if compressed, or
252          * directly into the CTF buffer otherwise.
253          */
254         if ((error = vn_rdwr(UIO_READ, nd.ni_vp, raw == NULL ? ctftab : raw,
255             shdr[i].sh_size, shdr[i].sh_offset, UIO_SYSSPACE, IO_NODELOCKED,
256             td->td_ucred, NOCRED, NULL, td)) != 0)
257                 goto out;
258
259         /* Check if decompression is required. */
260         if (raw != NULL) {
261                 z_stream zs;
262                 int ret;
263
264                 /*
265                  * The header isn't compressed, so copy that into the
266                  * CTF buffer first.
267                  */
268                 bcopy(ctf_hdr, ctftab, sizeof(ctf_hdr));
269
270                 /* Initialise the zlib structure. */
271                 bzero(&zs, sizeof(zs));
272                 zs.zalloc = z_alloc;
273                 zs.zfree = z_free;
274
275                 if (inflateInit(&zs) != Z_OK) {
276                         error = EIO;
277                         goto out;
278                 }
279
280                 zs.avail_in = shdr[i].sh_size - sizeof(ctf_hdr);
281                 zs.next_in = ((uint8_t *) raw) + sizeof(ctf_hdr);
282                 zs.avail_out = sz - sizeof(ctf_hdr);
283                 zs.next_out = ((uint8_t *) ctftab) + sizeof(ctf_hdr);
284                 ret = inflate(&zs, Z_FINISH);
285                 inflateEnd(&zs);
286                 if (ret != Z_STREAM_END) {
287                         printf("%s(%d): zlib inflate returned %d\n", __func__, __LINE__, ret);
288                         error = EIO;
289                         goto out;
290                 }
291         }
292
293         /* Got the CTF data! */
294         ef->ctftab = ctftab;
295         ef->ctfcnt = shdr[i].sh_size;
296
297         /* We'll retain the memory allocated for the CTF data. */
298         ctftab = NULL;
299
300         /* Let the caller use the CTF data read. */
301         lc->ctftab = ef->ctftab;
302         lc->ctfcnt = ef->ctfcnt;
303         lc->symtab = ef->ddbsymtab;
304         lc->strtab = ef->ddbstrtab;
305         lc->strcnt = ef->ddbstrcnt;
306         lc->nsym   = ef->ddbsymcnt;
307         lc->ctfoffp = (uint32_t **) &ef->ctfoff;
308         lc->typoffp = (uint32_t **) &ef->typoff;
309         lc->typlenp = &ef->typlen;
310
311 out:
312         VOP_UNLOCK(nd.ni_vp, 0);
313         vn_close(nd.ni_vp, FREAD, td->td_ucred, td);
314
315         if (hdr != NULL)
316                 free(hdr, M_LINKER);
317         if (shdr != NULL)
318                 free(shdr, M_LINKER);
319         if (shstrtab != NULL)
320                 free(shstrtab, M_LINKER);
321         if (ctftab != NULL)
322                 free(ctftab, M_LINKER);
323         if (raw != NULL)
324                 free(raw, M_LINKER);
325 #else
326         error = EOPNOTSUPP;
327 #endif
328
329         return (error);
330 }