blob: 3185c817caa35d8a52f92bcf89d9078fd6919c46 [file] [log] [blame]
Dan Albert169eb662015-01-21 16:42:02 -08001#!/usr/bin/env python2
2#
3# Copyright (C) 2015 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the 'License');
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an 'AS IS' BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17# pylint: disable=bad-indentation,bad-continuation
Elliott Hughes5a93e882014-05-16 14:44:38 -070018import glob
19import os
20import re
Elliott Hughes5a93e882014-05-16 14:44:38 -070021import sys
22
Dan Albert169eb662015-01-21 16:42:02 -080023import symbols
24
Dan Albert76212ee2014-08-13 13:04:28 -070025only_unwanted = False
26if len(sys.argv) > 1:
27 if sys.argv[1] in ('-u', '--unwanted'):
28 only_unwanted = True
29
Elliott Hughes5a93e882014-05-16 14:44:38 -070030toolchain = os.environ['ANDROID_TOOLCHAIN']
31arch = re.sub(r'.*/linux-x86/([^/]+)/.*', r'\1', toolchain)
Dan Albert76212ee2014-08-13 13:04:28 -070032if arch == 'aarch64':
33 arch = 'arm64'
Elliott Hughes5a93e882014-05-16 14:44:38 -070034
Elliott Hughese8e45342014-06-13 11:50:07 -070035def MangleGlibcNameToBionic(name):
36 if name in glibc_to_bionic_names:
37 return glibc_to_bionic_names[name]
38 return name
39
Dan Albert169eb662015-01-21 16:42:02 -080040def GetNdkIgnored(arch): # pylint: disable=redefined-outer-name
41 ignored_symbols = set()
Dan Albert76212ee2014-08-13 13:04:28 -070042 files = glob.glob('%s/ndk/build/tools/unwanted-symbols/%s/*' %
43 (os.getenv('ANDROID_BUILD_TOP'), arch))
44 for f in files:
Dan Albert169eb662015-01-21 16:42:02 -080045 ignored_symbols |= set(open(f, 'r').read().splitlines())
46 return ignored_symbols
Dan Albert76212ee2014-08-13 13:04:28 -070047
Elliott Hughese8e45342014-06-13 11:50:07 -070048glibc_to_bionic_names = {
49 '__res_init': 'res_init',
50 '__res_mkquery': 'res_mkquery',
51 '__res_query': 'res_query',
52 '__res_search': 'res_search',
Dan Albert2320b022014-08-21 11:36:07 -070053 '__xpg_basename': '__gnu_basename',
Elliott Hughese8e45342014-06-13 11:50:07 -070054}
55
Dan Albert169eb662015-01-21 16:42:02 -080056glibc = symbols.GetFromSystemSo([
57 'libc.so.*',
58 'librt.so.*',
59 'libpthread.so.*',
60 'libresolv.so.*',
61 'libm.so.*',
62 'libutil.so.*',
63])
64
65bionic = symbols.GetFromAndroidSo(['libc.so', 'libm.so'])
66this_dir = os.path.dirname(os.path.realpath(__file__))
67posix = symbols.GetFromTxt(os.path.join(this_dir, 'posix-2013.txt'))
68ndk_ignored = GetNdkIgnored(arch)
Elliott Hughes5a93e882014-05-16 14:44:38 -070069
Elliott Hughes03932212014-12-04 11:24:48 -080070glibc = set(map(MangleGlibcNameToBionic, glibc))
Elliott Hughese8e45342014-06-13 11:50:07 -070071
Elliott Hughes5a93e882014-05-16 14:44:38 -070072# bionic includes various BSD symbols to ease porting other BSD-licensed code.
73bsd_stuff = set([
Elliott Hughesd07c4432016-01-15 19:54:31 -080074 'arc4random',
75 'arc4random_buf',
76 'arc4random_uniform',
Elliott Hughes45bf4c32014-05-22 18:53:21 -070077 'basename_r',
78 'dirname_r',
79 'fgetln',
80 'fpurge',
81 'funopen',
Elliott Hughesf226ee52016-02-03 11:24:28 -080082 'funopen64',
Elliott Hughes45bf4c32014-05-22 18:53:21 -070083 'gamma_r',
84 'gammaf_r',
Elliott Hughes5a93e882014-05-16 14:44:38 -070085 'getprogname',
86 'setprogname',
87 'strlcat',
88 'strlcpy',
Elliott Hughes45bf4c32014-05-22 18:53:21 -070089 'sys_signame',
Elliott Hughes5a93e882014-05-16 14:44:38 -070090 'wcslcat',
91 'wcslcpy'
92])
93# Some symbols are part of the FORTIFY implementation.
94FORTIFY_stuff = set([
95 '__FD_CLR_chk',
96 '__FD_ISSET_chk',
97 '__FD_SET_chk',
Elliott Hughesd07c4432016-01-15 19:54:31 -080098 '__fwrite_chk',
99 '__memchr_chk',
100 '__memrchr_chk',
101 '__pwrite64_chk',
102 '__pwrite_chk',
Elliott Hughes5a93e882014-05-16 14:44:38 -0700103 '__stack_chk_guard',
104 '__stpncpy_chk2',
105 '__strchr_chk',
106 '__strlcat_chk',
107 '__strlcpy_chk',
108 '__strlen_chk',
109 '__strncpy_chk2',
110 '__strrchr_chk',
Elliott Hughes21788262016-05-06 14:43:50 -0700111 '__umask_chk',
Elliott Hughesd07c4432016-01-15 19:54:31 -0800112 '__write_chk',
Elliott Hughes5a93e882014-05-16 14:44:38 -0700113])
Elliott Hughes21788262016-05-06 14:43:50 -0700114# Some symbols are used to implement public functions/macros.
Elliott Hughesb497c432014-05-20 20:37:56 -0700115macro_stuff = set([
116 '__assert2',
117 '__errno',
118 '__fe_dfl_env',
119 '__get_h_errno',
Elliott Hughes21788262016-05-06 14:43:50 -0700120 '__gnu_strerror_r',
Dan Albert76212ee2014-08-13 13:04:28 -0700121 '__fpclassifyd',
122 '__isfinite',
123 '__isfinitef',
124 '__isfinitel',
125 '__isnormal',
126 '__isnormalf',
127 '__isnormall',
128 '__sF',
129 '__pthread_cleanup_pop',
130 '__pthread_cleanup_push',
Elliott Hughesb497c432014-05-20 20:37:56 -0700131])
Elliott Hughes5a93e882014-05-16 14:44:38 -0700132# bionic exposes various Linux features that glibc doesn't.
133linux_stuff = set([
134 'getauxval',
135 'gettid',
Elliott Hughes21788262016-05-06 14:43:50 -0700136 'pthread_gettid_np',
137 'tgkill',
Elliott Hughes5a93e882014-05-16 14:44:38 -0700138])
139# Some standard stuff isn't yet in the versions of glibc we're using.
140std_stuff = set([
Elliott Hughesf6b1d432014-06-06 15:20:50 -0700141 'at_quick_exit',
142 'c16rtomb',
143 'c32rtomb',
144 'mbrtoc16',
145 'mbrtoc32',
Elliott Hughes5a93e882014-05-16 14:44:38 -0700146])
147# These have mangled names in glibc, with a macro taking the "obvious" name.
148weird_stuff = set([
149 'fstat',
150 'fstat64',
151 'fstatat',
152 'fstatat64',
153 'isfinite',
154 'isfinitef',
155 'isfinitel',
156 'isnormal',
157 'isnormalf',
158 'isnormall',
159 'lstat',
160 'lstat64',
161 'mknod',
162 'mknodat',
163 'stat',
164 'stat64',
Dan Albert76212ee2014-08-13 13:04:28 -0700165 'optreset',
166 'sigsetjmp',
167])
168# These exist in glibc, but under slightly different names (generally one extra
169# or one fewer _). TODO: check against glibc names.
170libresolv_stuff = set([
171 '__res_send_setqhook',
172 '__res_send_setrhook',
Elliott Hughes21788262016-05-06 14:43:50 -0700173 '_resolv_delete_cache_for_net',
Dan Albert76212ee2014-08-13 13:04:28 -0700174 '_resolv_flush_cache_for_net',
175 '_resolv_set_nameservers_for_net',
176 'dn_expand',
177 'nsdispatch',
178])
Dan Albert76212ee2014-08-13 13:04:28 -0700179# Implementation details we know we export (and can't get away from).
180known = set([
181 '_ctype_',
182 '__libc_init',
Elliott Hughes5a93e882014-05-16 14:44:38 -0700183])
Elliott Hughes187d37d2016-04-06 13:29:22 -0700184# POSIX has some stuff that's too stupid for words (a64l) or not actually
185# implemented in glibc unless you count always failing with ENOSYS as
186# being implemented (fattach).
187in_posix_and_glibc_but_actually_dead = set([
188 'a64l',
189 'fattach',
190 'fdetach',
191 'getmsg',
192 'getpmsg',
193 'isastream',
194 'l64a',
195 'putmsg',
196 'putpmsg',
197])
198
199posix = posix - in_posix_and_glibc_but_actually_dead
200glibc = glibc - in_posix_and_glibc_but_actually_dead
Elliott Hughes5a93e882014-05-16 14:44:38 -0700201
Dan Albert76212ee2014-08-13 13:04:28 -0700202if not only_unwanted:
Elliott Hughes03932212014-12-04 11:24:48 -0800203 #print 'glibc:'
204 #for symbol in sorted(glibc):
205 # print symbol
206 #print
Elliott Hughes5a93e882014-05-16 14:44:38 -0700207
Elliott Hughes03932212014-12-04 11:24:48 -0800208 #print 'bionic:'
209 #for symbol in sorted(bionic):
210 # print symbol
211 #print
Elliott Hughes5a93e882014-05-16 14:44:38 -0700212
Elliott Hughes03932212014-12-04 11:24:48 -0800213 print 'in glibc (but not posix) but not bionic:'
214 for symbol in sorted((glibc - posix).difference(bionic)):
Elliott Hughes6370aed2014-11-05 16:22:26 -0800215 print symbol
Elliott Hughes6370aed2014-11-05 16:22:26 -0800216 print
Elliott Hughes03932212014-12-04 11:24:48 -0800217
218 print 'in posix (and implemented in glibc) but not bionic:'
219 for symbol in sorted((posix.intersection(glibc)).difference(bionic)):
220 print symbol
221 print
222
Dan Albert76212ee2014-08-13 13:04:28 -0700223 print 'in bionic but not glibc:'
224
225allowed_stuff = (bsd_stuff | FORTIFY_stuff | linux_stuff | macro_stuff |
Dan Albertfd5ee9a2014-08-15 14:20:04 -0700226 std_stuff | weird_stuff | libresolv_stuff | known)
Elliott Hughesb497c432014-05-20 20:37:56 -0700227for symbol in sorted((bionic - allowed_stuff).difference(glibc)):
Dan Albert76212ee2014-08-13 13:04:28 -0700228 if symbol in ndk_ignored:
229 symbol += '*'
Elliott Hughes5a93e882014-05-16 14:44:38 -0700230 print symbol
231
232sys.exit(0)