1 .\" Copyright (C) 1996 Free Software Foundation, Inc.
3 .\" %%%LICENSE_START(GPL_NOVERSION_ONELINE)
4 .\" This file is distributed according to the GNU General Public License.
7 .\" 2006-02-09, some reformatting by Luc Van Oostenryck; some
8 .\" reformatting and rewordings by mtk
10 .TH GET_KERNEL_SYMS 2 2021-03-22 "Linux" "Linux Programmer's Manual"
12 get_kernel_syms \- retrieve exported kernel and module symbols
15 .B #include <linux/module.h>
17 .BI "int get_kernel_syms(struct kernel_sym *" table );
21 No declaration of this system call is provided in glibc headers; see NOTES.
24 This system call is present only in kernels before Linux 2.6.
29 .BR get_kernel_syms ()
30 returns the number of symbols available for query.
31 Otherwise, it fills in a table of structures:
42 The symbols are interspersed with magic symbols of the form
44 with the kernel having an empty name.
45 The value associated with a symbol of this form is the address at
46 which the module is loaded.
48 The symbols exported from each module follow their magic module tag
49 and the modules are returned in the reverse of the
50 order in which they were loaded.
52 On success, returns the number of symbols copied to
54 On error, \-1 is returned and
56 is set to indicate the error.
58 There is only one possible error return:
61 .BR get_kernel_syms ()
62 is not supported in this version of the kernel.
64 This system call is present on Linux only up until kernel 2.4;
65 it was removed in Linux 2.6.
66 .\" Removed in Linux 2.5.48
68 .BR get_kernel_syms ()
71 This obsolete system call is not supported by glibc.
72 No declaration is provided in glibc headers, but, through a quirk of history,
73 glibc versions before 2.23 did export an ABI for this system call.
74 Therefore, in order to employ this system call,
75 it was sufficient to manually declare the interface in your code;
76 alternatively, you could invoke the system call using
79 There is no way to indicate the size of the buffer allocated for
81 If symbols have been added to the kernel since the
82 program queried for the symbol table size, memory will be corrupted.
84 The length of exported symbol names is limited to 59 characters.
86 Because of these limitations, this system call is deprecated in
89 (which is itself nowadays deprecated
90 in favor of other interfaces described on its manual page).
92 .BR create_module (2),
93 .BR delete_module (2),