]> git.ipfire.org Git - thirdparty/glibc.git/blame - csu/abi-note.c
INSTALL, install.texi: minor updates, regenerate
[thirdparty/glibc.git] / csu / abi-note.c
CommitLineData
779ae82e 1/* Special .init and .fini section support.
dff8da6b 2 Copyright (C) 1997-2024 Free Software Foundation, Inc.
779ae82e
UD
3 This file is part of the GNU C Library.
4
e2cb5c1d
AJ
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
779ae82e 7 License as published by the Free Software Foundation; either
e2cb5c1d 8 version 2.1 of the License, or (at your option) any later version.
779ae82e 9
e2cb5c1d 10 In addition to the permissions in the GNU Lesser General Public
779ae82e
UD
11 License, the Free Software Foundation gives you unlimited
12 permission to link the compiled version of this file with other
13 programs, and to distribute those programs without any restriction
e2cb5c1d 14 coming from the use of this file. (The Lesser General Public
779ae82e
UD
15 License restrictions do apply in other respects; for example, they
16 cover modification of the file, and distribution when not linked
17 into another program.)
18
e2cb5c1d
AJ
19 The GNU C Library is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 Lesser General Public License for more details.
779ae82e 23
e2cb5c1d 24 You should have received a copy of the GNU Lesser General Public
59ba27a6 25 License along with the GNU C Library; if not, see
5a82c748 26 <https://www.gnu.org/licenses/>. */
779ae82e 27
e7c5513d
UD
28/* Define an ELF note identifying the operating-system ABI that the
29 executable was created for. The ELF note information identifies a
30 particular OS or coordinated development effort within which the
31 ELF header's e_machine value plus (for dynamically linked programs)
32 the PT_INTERP dynamic linker name and DT_NEEDED shared library
33 names fully identify the runtime environment required by an
34 executable.
779ae82e 35
e7c5513d
UD
36 The general format of ELF notes is as follows.
37 Offsets and lengths are bytes or (parenthetical references) to the
38 values in other fields.
779ae82e 39
f6aa506f 40offset length contents
e7c5513d
UD
410 4 length of name
424 4 length of data
438 4 note type
4412 (0) vendor name
45 - null-terminated ASCII string, padded to 4-byte alignment
f6aa506f 4612+(0) (4) note data,
779ae82e 47
e7c5513d
UD
48 The GNU project and cooperating development efforts (including the
49 Linux community) use note type 1 and a vendor name string of "GNU"
50 for a note descriptor that indicates ABI requirements. The note data
51 is four 32-bit words. The first of these is an operating system
de71a46a 52 number (0=Linux, 1=Hurd, 2=Solaris, ...) and the remaining three
e7c5513d
UD
53 identify the earliest release of that OS that supports this ABI.
54 See abi-tags (top level) for details. */
779ae82e 55
dbfefbdc
SN
56#include <link.h>
57#include <stdint.h>
a986484f 58#include <config.h>
779ae82e 59#include <abi-tag.h> /* OS-specific ABI tag value */
f6aa506f 60
e7c5513d
UD
61/* The linker (GNU ld 2.8 and later) recognizes an allocated section whose
62 name begins with `.note' and creates a PT_NOTE program header entry
63 pointing at it. */
779ae82e 64
dbfefbdc
SN
65__attribute__ ((used, aligned (4), section (".note.ABI-tag")))
66static const struct
67{
68 ElfW(Nhdr) nhdr;
69 char name[4];
70 int32_t desc[4];
71} __abi_tag = {
72 { .n_namesz = sizeof __abi_tag.name,
73 .n_descsz = sizeof __abi_tag.desc,
74 .n_type = 1 },
75 "GNU",
76 { __ABI_TAG_OS, __ABI_TAG_VERSION }
77};