From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9709 invoked by alias); 30 Apr 2019 22:57:38 -0000 Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org Received: (qmail 9657 invoked by uid 89); 30 Apr 2019 22:57:38 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-25.3 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,KAM_SHORT,SPF_HELO_PASS,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 spammy= X-HELO: userp2120.oracle.com Received: from userp2120.oracle.com (HELO userp2120.oracle.com) (156.151.31.85) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 30 Apr 2019 22:57:27 +0000 Received: from pps.filterd (userp2120.oracle.com [127.0.0.1]) by userp2120.oracle.com (8.16.0.27/8.16.0.27) with SMTP id x3UMsbIC101479 for ; Tue, 30 Apr 2019 22:57:26 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=oracle.com; h=from : to : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding; s=corp-2018-07-02; bh=NoG9j06zjStyDOjedDdQyyXIn0bO5Wkr99jh9pWlUck=; b=FSVmoC/A+ruijspAcVInO4kknYDSUxAPqVowW1449aKWlKLKg5xoTEFvv450FofsKem0 APJs0euY9ZbrQNfXhLxSR2XKejm3OqEQsT/E4Lmoti7r986w1I8ZXkmLUcGxxwwKUm/P qMH+Bw1YXvW/zKpVUGMQ/OGS8lt0iogt6sGM+IYYES8jZzolwmKXC1Tj+jaSvTd8ykD8 qfaA8oawKGlPkGtig0WJJ+PA3synlC/U5o7EvAAOUDihPETSDHTzsRj1dsCqIyO0/OnI 5I540u6Wpsc7C13i1k81fICOscOKAHLieGpfmq5BcfeLygNZbq8s2m7+YViyq1hZ4nwl Aw== Received: from userp3030.oracle.com (userp3030.oracle.com [156.151.31.80]) by userp2120.oracle.com with ESMTP id 2s6xhyg6y4-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Tue, 30 Apr 2019 22:57:25 +0000 Received: from pps.filterd (userp3030.oracle.com [127.0.0.1]) by userp3030.oracle.com (8.16.0.27/8.16.0.27) with SMTP id x3UMtZZR161526 for ; Tue, 30 Apr 2019 22:57:25 GMT Received: from aserv0121.oracle.com (aserv0121.oracle.com [141.146.126.235]) by userp3030.oracle.com with ESMTP id 2s6xhh0q6f-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Tue, 30 Apr 2019 22:57:25 +0000 Received: from abhmp0020.oracle.com (abhmp0020.oracle.com [141.146.116.26]) by aserv0121.oracle.com (8.14.4/8.13.8) with ESMTP id x3UMvOh4020967 for ; Tue, 30 Apr 2019 22:57:24 GMT Received: from loom.srvr.nix (/81.187.191.129) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Tue, 30 Apr 2019 15:57:23 -0700 From: Nick Alcock To: binutils@sourceware.org Subject: [PATCH 15/19] libctf: mmappable archives Date: Tue, 30 Apr 2019 22:57:00 -0000 Message-Id: <20190430225706.159422-16-nick.alcock@oracle.com> In-Reply-To: <20190430225706.159422-1-nick.alcock@oracle.com> References: <20190430225706.159422-1-nick.alcock@oracle.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-IsSubscribed: yes X-SW-Source: 2019-04/txt/msg00281.txt.bz2 If you need to store a large number of CTF containers somewhere, this provides a dedicated facility for doing so: an mmappable archive format like a very simple tar or ar without all the system-dependent format horrors or need for heavy file copying, with built-in compression of files above a particular size threshold. libctf automatically mmap()s uncompressed elements of these archives, or uncompresses them, as needed. Archive iteration operations are partitioned into raw and non-raw forms. Raw operations pass thhe raw archive contents to the callback: non-raw forms open each member with ctf_bufopen() and pass the resulting ctf_file_t to the iterator instead. This lets you manipulate the raw data in the archive, or the contents interpreted as a CTF file, as needed. It is not yet known whether we will store CTF archives in a linked ELF object in one of these (akin to debugdata) or whether they'll get one section per TU plus one parent container for types shared between them. (In the case of ELF objects with very large numbers of TUs, an archive of all of them would seem preferable.) libctf/ * ctf-archive.c: New. include/ * ctf-api.h (ctf_archive_member_f): New. (ctf_archive_raw_member_f): Likewise. (ctf_arc_write): Likewise. (ctf_arc_open): Likewise. (ctf_arc_close): Likewise. (ctf_arc_open_by_name): Likewise. (ctf_archive_iter): Likewise. (ctf_archive_raw_iter): Likewise. --- include/ctf-api.h | 14 ++ libctf/ctf-archive.c | 491 +++++++++++++++++++++++++++++++++++++++++++ libctf/ctf-impl.h | 44 ++++ 3 files changed, 549 insertions(+) create mode 100644 libctf/ctf-archive.c diff --git a/include/ctf-api.h b/include/ctf-api.h index 3fcb1d2d6c..8687fa9004 100644 --- a/include/ctf-api.h +++ b/include/ctf-api.h @@ -208,6 +208,9 @@ typedef int ctf_member_f (const char *name, ctf_id_t membtype, typedef int ctf_enum_f (const char *name, int val, void *arg); typedef int ctf_variable_f (const char *name, ctf_id_t type, void *arg); typedef int ctf_type_f (ctf_id_t type, void *arg); +typedef int ctf_archive_member_f (ctf_file_t *fp, const char *name, void *arg); +typedef int ctf_archive_raw_member_f (const char *name, const void *content, + size_t len, void *arg); extern ctf_file_t *ctf_simple_open (const char *, size_t, const char *, size_t, size_t, const char *, size_t, int *); extern ctf_file_t *ctf_bufopen (const ctf_sect_t *, const ctf_sect_t *, @@ -218,6 +221,13 @@ extern ctf_file_t *ctf_create (int *); extern void ctf_close (ctf_file_t *); extern ctf_sect_t ctf_getdatasect (const ctf_file_t *); +extern int ctf_arc_write (const char *, ctf_file_t **, size_t, + const char **, size_t); +extern ctf_archive_t *ctf_arc_open (const char *, int *); +extern void ctf_arc_close (ctf_archive_t *); +extern ctf_file_t *ctf_arc_open_by_name (const ctf_archive_t *, + const char *, int *); + extern ctf_file_t *ctf_parent_file (ctf_file_t *); extern const char *ctf_parent_name (ctf_file_t *); extern void ctf_parent_name_set (ctf_file_t *, const char *); @@ -267,6 +277,10 @@ extern int ctf_member_iter (ctf_file_t *, ctf_id_t, ctf_member_f *, void *); extern int ctf_enum_iter (ctf_file_t *, ctf_id_t, ctf_enum_f *, void *); extern int ctf_type_iter (ctf_file_t *, ctf_type_f *, void *); extern int ctf_variable_iter (ctf_file_t *, ctf_variable_f *, void *); +extern int ctf_archive_iter (const ctf_archive_t *, ctf_archive_member_f *, + void *); +extern int ctf_archive_raw_iter (const ctf_archive_t *, + ctf_archive_raw_member_f *, void *); extern ctf_id_t ctf_add_array (ctf_file_t *, uint32_t, const ctf_arinfo_t *); extern ctf_id_t ctf_add_const (ctf_file_t *, uint32_t, ctf_id_t); diff --git a/libctf/ctf-archive.c b/libctf/ctf-archive.c new file mode 100644 index 0000000000..ad06ed61c1 --- /dev/null +++ b/libctf/ctf-archive.c @@ -0,0 +1,491 @@ +/* CTF archive files. + Copyright (C) 2017-2019 Free Software Foundation, Inc. + + This file is part of libctf. + + libctf 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; see the file COPYING. If not see + . */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +static off_t arc_write_one_ctf (ctf_file_t * f, int fd, size_t threshold); +static ctf_file_t *ctf_arc_open_by_offset (const ctf_archive_t * arc, + size_t offset, int *errp); +static int sort_modent_by_name (const void *one, const void *two, void *n); + +/* bsearch() internal state. */ +static __thread char *search_nametbl; + +/* Write out a CTF archive. The entries in CTF_FILES are referenced by name: + the names are passed in the names array, which must have CTF_FILES entries. + + Returns 0 on success, or an errno, or an ECTF_* value. */ +int +ctf_arc_write (const char *file, ctf_file_t ** ctf_files, size_t ctf_file_cnt, + const char **names, size_t threshold) +{ + const char *errmsg; + struct ctf_archive *archdr; + int fd; + size_t i; + char dummy = 0; + size_t headersz; + ssize_t namesz; + size_t ctf_startoffs; /* Start of the section we are working over. */ + char *nametbl = NULL; /* The name table. */ + char *np; + off_t nameoffs; + struct ctf_archive_modent *modent; + + ctf_dprintf ("Writing archive %s with %zi files\n", file, ctf_file_cnt); + + if ((fd = open (file, O_RDWR | O_CREAT | O_TRUNC | O_CLOEXEC, 0666)) < 0) + { + errmsg = "ctf_arc_write(): cannot create %s: %s\n"; + goto err; + } + + /* Figure out the size of the mmap()ed header, including the + ctf_archive_modent array. We assume that all of this needs no + padding: a likely assumption, given that it's all made up of + uint64_t's. */ + headersz = sizeof (struct ctf_archive) + + (ctf_file_cnt * sizeof (uint64_t) * 2); + ctf_dprintf ("headersz is %zi\n", headersz); + + /* From now on we work in two pieces: an mmap()ed region from zero up to + the headersz, and a region updated via write() starting after that, + containing all the tables. */ + ctf_startoffs = headersz; + if (lseek (fd, ctf_startoffs - 1, SEEK_SET) < 0) + { + errmsg = "ctf_arc_write(): cannot extend file while writing %s: %s\n"; + goto err_close; + } + + if (write (fd, &dummy, 1) < 0) + { + errmsg = "ctf_arc_write(): cannot extend file while writing %s: %s\n"; + goto err_close; + } + + if ((archdr = mmap (NULL, headersz, PROT_READ | PROT_WRITE, MAP_SHARED, fd, + 0)) == MAP_FAILED) + { + errmsg = "ctf_arc_write(): Cannot mmap() %s: %s\n"; + goto err_close; + } + + /* Fill in everything we can, which is everything other than the name + table offset. */ + archdr->ctfa_magic = htole64 (CTFA_MAGIC); + archdr->ctfa_nfiles = htole64 (ctf_file_cnt); + archdr->ctfa_ctfs = htole64 (ctf_startoffs); + + /* We could validate that all CTF files have the same data model, but + since any reasonable construction process will be building things of + only one bitness anyway, this is pretty pointless, so just use the + model of the first CTF file for all of them. (It *is* valid to + create an empty archive: the value of ctfa_model is irrelevant in + this case, but we must be sure not to dereference uninitialized + memory.) */ + + if (ctf_file_cnt > 0) + archdr->ctfa_model = htole64 (ctf_getmodel (ctf_files[0])); + + /* Now write out the CTFs: ctf_archive_modent array via the mapping, + ctfs via write(). The names themselves have not been written yet: we + track them in a local strtab until the time is right, and sort the + modents array after construction. + + The name table is not sorted. */ + + for (i = 0, namesz = 0; i < le64toh (archdr->ctfa_nfiles); i++) + namesz += strlen (names[i]) + 1; + + nametbl = malloc (namesz); + if (nametbl == NULL) + { + errmsg = "Error writing named CTF to %s: %s\n"; + goto err_unmap; + } + + for (i = 0, namesz = 0, + modent = (ctf_archive_modent_t *) ((char *) archdr + + sizeof (struct ctf_archive)); + i < le64toh (archdr->ctfa_nfiles); i++) + { + off_t off; + + strcpy (&nametbl[namesz], names[i]); + + off = arc_write_one_ctf (ctf_files[i], fd, threshold); + ctf_dprintf ("Written %s, offset now %zi\n", names[i], off); + if ((off < 0) && (off > -ECTF_BASE)) + { + errmsg = "ctf_arc_write(): Cannot determine file " + "position while writing %s: %s"; + goto err_free; + } + if (off < 0) + { + errmsg = "ctf_arc_write(): Cannot write CTF file to %s: %s\n"; + errno = off * -1; + goto err_free; + } + + modent->name_offset = htole64 (namesz); + modent->ctf_offset = htole64 (off - ctf_startoffs); + namesz += strlen (names[i]) + 1; + modent++; + } + + qsort_r ((ctf_archive_modent_t *) ((char *) archdr + + sizeof (struct ctf_archive)), + le64toh (archdr->ctfa_nfiles), + sizeof (struct ctf_archive_modent), sort_modent_by_name, nametbl); + + /* Now the name table. */ + + if ((nameoffs = lseek (fd, 0, SEEK_CUR)) < 0) + { + errmsg = "ctf_arc_write(): Cannot get current file position " + "in %s: %s\n"; + goto err_free; + } + archdr->ctfa_names = htole64 (nameoffs); + np = nametbl; + while (namesz > 0) + { + ssize_t len; + if ((len = write (fd, np, namesz)) < 0) + { + errmsg = "ctf_arc_write(): Cannot write name table in %s: %s\n"; + goto err_free; + } + namesz -= len; + np += len; + } + free (nametbl); + + if (msync (archdr, headersz, MS_ASYNC) < 0) + { + errmsg = "ctf_arc_write(): Cannot sync after writing to %s: %s\n"; + goto err_unmap; + } + munmap (archdr, headersz); + if (close (fd) < 0) + { + errmsg = "ctf_arc_write(): Cannot close after writing to %s: %s\n"; + goto err_unlink; + } + + return 0; + +err_free: + free (nametbl); +err_unmap: + munmap (archdr, headersz); +err_close: + close (fd); +err_unlink: + unlink (file); +err: + ctf_dprintf (errmsg, file, errno < ECTF_BASE ? strerror (errno) : + ctf_errmsg (errno)); + return errno; +} + +/* Write one CTF file out. Return the file position of the written file (or + rather, of the file-size uint64_t that precedes it): negative return is a + negative errno or ctf_errno value. On error, the file position may no longer + be at the end of the file. */ +static off_t +arc_write_one_ctf (ctf_file_t * f, int fd, size_t threshold) +{ + off_t off, end_off; + uint64_t ctfsz = 0; + char *ctfszp; + size_t ctfsz_len; + int (*writefn) (ctf_file_t * fp, int fd); + + if ((off = lseek (fd, 0, SEEK_CUR)) < 0) + return errno * -1; + + if (f->ctf_size > threshold) + writefn = ctf_compress_write; + else + writefn = ctf_write; + + /* This zero-write turns into the size in a moment. */ + ctfsz_len = sizeof (ctfsz); + ctfszp = (char *) &ctfsz; + while (ctfsz_len > 0) + { + ssize_t writelen = write (fd, ctfszp, ctfsz_len); + if (writelen < 0) + return errno * -1; + ctfsz_len -= writelen; + ctfszp += writelen; + } + + if (writefn (f, fd) != 0) + return f->ctf_errno * -1; + + if ((end_off = lseek (fd, 0, SEEK_CUR)) < 0) + return errno * -1; + ctfsz = htole64 (end_off - off); + + if ((lseek (fd, off, SEEK_SET)) < 0) + return errno * -1; + + /* ... here. */ + ctfsz_len = sizeof (ctfsz); + ctfszp = (char *) &ctfsz; + while (ctfsz_len > 0) + { + ssize_t writelen = write (fd, ctfszp, ctfsz_len); + if (writelen < 0) + return errno * -1; + ctfsz_len -= writelen; + ctfszp += writelen; + } + + end_off = LCTF_ALIGN_OFFS (end_off, 8); + if ((lseek (fd, end_off, SEEK_SET)) < 0) + return errno * -1; + + return off; +} + +/* qsort() function to sort the array of struct ctf_archive_modents into + ascending name order. */ +static int +sort_modent_by_name (const void *one, const void *two, void *n) +{ + const struct ctf_archive_modent *a = one; + const struct ctf_archive_modent *b = two; + char *nametbl = n; + + return strcmp (&nametbl[le64toh (a->name_offset)], + &nametbl[le64toh (b->name_offset)]); +} + +/* bsearch() function to search for a given name in the sorted array of struct + ctf_archive_modents. */ +static int +search_modent_by_name (const void *key, const void *ent) +{ + const char *k = key; + const struct ctf_archive_modent *v = ent; + + return strcmp (k, &search_nametbl[le64toh (v->name_offset)]); +} + +/* Open a CTF archive. Returns the archive, or NULL and an error in *err (if + not NULL). */ +ctf_archive_t * +ctf_arc_open (const char *filename, int *errp) +{ + const char *errmsg; + int fd; + struct stat s; + ctf_archive_t *arc; /* (Actually the whole file.) */ + + if ((fd = open (filename, O_RDONLY)) < 0) + { + errmsg = "ctf_arc_open(): cannot open %s: %s\n"; + goto err; + } + if (fstat (fd, &s) < 0) + { + errmsg = "ctf_arc_open(): cannot stat %s: %s\n"; + goto err_close; + } + + if ((arc = mmap (NULL, s.st_size, PROT_READ | PROT_WRITE, + MAP_PRIVATE, fd, 0)) == MAP_FAILED) + { + errmsg = "ctf_arc_open(): Cannot mmap() %s: %s\n"; + goto err_close; + } + + if (le64toh (arc->ctfa_magic) != CTFA_MAGIC) + { + errmsg = "ctf_arc_open(): Invalid magic number"; + errno = ECTF_FMT; + goto err_unmap; + } + + /* This horrible hack lets us know how much to unmap when the file is + closed. (We no longer need the magic number, and the mapping + is private.) */ + arc->ctfa_magic = s.st_size; + close (fd); + return arc; + +err_unmap: + munmap (NULL, s.st_size); +err_close: + close (fd); +err: + if (errp) + *errp = errno; + ctf_dprintf (errmsg, filename, errno < ECTF_BASE ? strerror (errno) : + ctf_errmsg (errno)); + return NULL; +} + +/* Close an archive. */ +void +ctf_arc_close (ctf_archive_t * arc) +{ + if (arc == NULL) + return; + + /* See the comment in ctf_arc_open(). */ + munmap (arc, arc->ctfa_magic); +} + +/* Return the ctf_file_t with the given name, or NULL if none, setting 'err' if + non-NULL. */ +ctf_file_t * +ctf_arc_open_by_name (const ctf_archive_t * arc, const char *name, int *errp) +{ + struct ctf_archive_modent *modent; + + ctf_dprintf ("ctf_arc_open_by_name(%s): opening\n", name); + + modent = (ctf_archive_modent_t *) ((char *) arc + + sizeof (struct ctf_archive)); + + search_nametbl = (char *) arc + le64toh (arc->ctfa_names); + modent = bsearch (name, modent, le64toh (arc->ctfa_nfiles), + sizeof (struct ctf_archive_modent), + search_modent_by_name); + + /* This is actually a common case and normal operation: no error + debug output. */ + if (modent == NULL) + { + if (errp) + *errp = ECTF_ARNNAME; + return NULL; + } + + return ctf_arc_open_by_offset (arc, le64toh (modent->ctf_offset), errp); +} + +/* Return the ctf_file_t at the given ctfa_ctfs-relative offset, or NULL if + none, setting 'err' if non-NULL. */ +static ctf_file_t * +ctf_arc_open_by_offset (const ctf_archive_t * arc, size_t offset, int *errp) +{ + ctf_sect_t ctfsect; + ctf_file_t *fp; + + ctf_dprintf ("ctf_arc_open_by_offset(%zi): opening\n", offset); + + bzero (&ctfsect, sizeof (ctf_sect_t)); + + offset += le64toh (arc->ctfa_ctfs); + + ctfsect.cts_name = _CTF_SECTION; + ctfsect.cts_type = SHT_PROGBITS; + ctfsect.cts_flags = SHF_ALLOC; + ctfsect.cts_size = le64toh (*((uint64_t *) ((char *) arc + offset))); + ctfsect.cts_entsize = 1; + ctfsect.cts_offset = 0; + ctfsect.cts_data = (void *) ((char *) arc + offset + sizeof (uint64_t)); + fp = ctf_bufopen (&ctfsect, NULL, NULL, errp); + if (fp) + ctf_setmodel (fp, le64toh (arc->ctfa_model)); + return fp; +} + +/* Iterate over all CTF files in an archive. We pass the raw data for all CTF + files in turn to the specified callback function. */ +int +ctf_archive_raw_iter (const ctf_archive_t * arc, + ctf_archive_raw_member_f * func, void *data) +{ + int rc; + size_t i; + struct ctf_archive_modent *modent; + const char *nametbl; + + modent = (ctf_archive_modent_t *) ((char *) arc + + sizeof (struct ctf_archive)); + nametbl = (((const char *) arc) + le64toh (arc->ctfa_names)); + + for (i = 0; i < le64toh (arc->ctfa_nfiles); i++) + { + const char *name; + char *fp; + + name = &nametbl[le64toh (modent[i].name_offset)]; + fp = ((char *) arc + le64toh (arc->ctfa_ctfs) + + le64toh (modent[i].ctf_offset)); + + if ((rc = func (name, (void *) (fp + sizeof (uint64_t)), + le64toh (*((uint64_t *) fp)), data)) != 0) + return rc; + } + return 0; +} + +/* Iterate over all CTF files in an archive. We pass all CTF files in turn to + the specified callback function. */ +int +ctf_archive_iter (const ctf_archive_t * arc, ctf_archive_member_f * func, + void *data) +{ + int rc; + size_t i; + ctf_file_t *f; + struct ctf_archive_modent *modent; + const char *nametbl; + + modent = (ctf_archive_modent_t *) ((char *) arc + + sizeof (struct ctf_archive)); + nametbl = (((const char *) arc) + le64toh (arc->ctfa_names)); + + for (i = 0; i < le64toh (arc->ctfa_nfiles); i++) + { + const char *name; + + name = &nametbl[le64toh (modent[i].name_offset)]; + if ((f = ctf_arc_open_by_name (arc, name, &rc)) == NULL) + return rc; + + if ((rc = func (f, name, data)) != 0) + { + ctf_close (f); + return rc; + } + + ctf_close (f); + } + return 0; +} diff --git a/libctf/ctf-impl.h b/libctf/ctf-impl.h index 9f90ff01dd..c2f833c0d1 100644 --- a/libctf/ctf-impl.h +++ b/libctf/ctf-impl.h @@ -230,6 +230,50 @@ struct ctf_file void *ctf_specific; /* Data for ctf_get/setspecific(). */ }; +/* The ctf_archive is a collection of ctf_file_t's stored together. The format + is suitable for mmap()ing: this control structure merely describes the + mmap()ed archive (and overlaps the first few bytes of it), hence the + greater care taken with integral types. All CTF files in an archive + must have the same data model. (This is not validated.) + + All integers in this structure are stored in little-endian byte order. + + The code relies on the fact that everything in this header is a uint64_t + and thus the header needs no padding (in particular, that no padding is + needed between ctfa_ctfs and the unnamed ctfa_archive_modent array + that follows it). */ + +#define CTFA_MAGIC 0x8b47f2a4d7623eeb /* Random. */ +struct ctf_archive +{ + /* Magic number. (In loaded files, overwritten with the file size + so ctf_arc_close() knows how much to munmap()). */ + uint64_t ctfa_magic; + + /* CTF data model. */ + uint64_t ctfa_model; + + /* Number of CTF files in the archive. */ + uint64_t ctfa_nfiles; + + /* Offset of the name table. */ + uint64_t ctfa_names; + + /* Offset of the CTF table. Each element starts with a size (a uint64_t + in network byte order) then a ctf_file_t of that size. */ + uint64_t ctfa_ctfs; +}; + +/* An array of ctfa_nnamed of this structure lies at + ctf_archive[ctf_archive->ctfa_modents] and gives the ctfa_ctfs or + ctfa_names-relative offsets of each name or ctf_file_t. */ + +typedef struct ctf_archive_modent +{ + uint64_t name_offset; + uint64_t ctf_offset; +} ctf_archive_modent_t; + /* Return x rounded up to an alignment boundary. eg, P2ROUNDUP(0x1234, 0x100) == 0x1300 (0x13*align) eg, P2ROUNDUP(0x5600, 0x100) == 0x5600 (0x56*align) */ -- 2.21.0.237.gd0cfaa883d