blob: 714e3e622ebc58e592e61f52aeaf4adfe0c9b441 (
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
135
136
137
138
139
140
141
142
143
144
|
#
# Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
# Copyright 2011 Nexenta Systems, Inc. All rights reserved.
#
#
# MAPFILE HEADER START
#
# WARNING: STOP NOW. DO NOT MODIFY THIS FILE.
# Object versioning must comply with the rules detailed in
#
# usr/src/lib/README.mapfiles
#
# You should not be making modifications here until you've read the most current
# copy of that file. If you need help, contact a gatekeeper for guidance.
#
# MAPFILE HEADER END
#
#
# Linker mapfile that allows the dynamic library to reference some symbols
# defined by the application.
#
$mapfile_version 2
SYMBOL_VERSION ILLUMOS_0.2 {
global:
resident {
FLAGS = NODIRECT;
ASSERT = {
TYPE = OBJECT;
SIZE = 4;
};
};
} ILLUMOS_0.1;
SYMBOL_VERSION ILLUMOS_0.1 {
global:
allow_severity {
FLAGS = NODIRECT;
ASSERT = {
TYPE = OBJECT;
SIZE = 4;
};
};
clean_exit;
deny_severity {
FLAGS = NODIRECT;
ASSERT = {
TYPE = OBJECT;
SIZE = 4;
};
};
dot_quad_addr;
dry_run {
ASSERT = {
TYPE = OBJECT;
SIZE = 4;
};
};
eval_client;
eval_hostaddr;
eval_hostinfo;
eval_hostname;
eval_server;
eval_user;
fromhost;
hosts_access;
hosts_access_verbose { ASSERT = { TYPE = OBJECT; SIZE = 4; }; };
hosts_allow_table {
ASSERT = {
TYPE = OBJECT;
SIZE = addrsize;
};
};
hosts_ctl;
hosts_deny_table {
ASSERT = {
TYPE = OBJECT;
SIZE = addrsize;
};
};
numeric_addr;
paranoid { ASSERT = { TYPE = OBJECT; SIZE = 9; }; };
percent_m;
percent_x;
process_options;
refuse;
request_init;
request_set;
rfc931;
rfc931_timeout {
ASSERT = {
TYPE = OBJECT;
SIZE = 4;
};
};
shell_cmd;
skip_ipv6_addrs;
sock_host;
sock_hostaddr;
sock_hostname;
sockgen_simplify;
split_at;
tcpd_buf {
ASSERT = {
TYPE = OBJECT;
$if _x86 && _ELF64
SIZE = addrsize[8];
$elif _x86 && _ELF32
SIZE = addrsize[10];
$elif _sparc
SIZE = addrsize[12];
$else
$error Unknown architecture
$endif
};
};
tcpd_context {
ASSERT = {
TYPE = OBJECT;
SIZE = addrsize[2];
};
};
tcpd_gethostbyname;
tcpd_warn;
tli_host;
unknown {
ASSERT = {
TYPE = OBJECT;
SIZE = 8;
};
};
xgets;
local:
*;
};
|