waf: add -fstack-protector to LDFLAGS if detected.
[sfrench/samba-autobuild/.git] / lib / replace / wscript
1 #!/usr/bin/env python
2
3 APPNAME = 'libreplace'
4 VERSION = '1.2.1'
5
6 blddir = 'bin'
7
8 import sys, os, Utils
9
10 # find the buildtools directory
11 srcdir = '.'
12 while not os.path.exists(srcdir+'/buildtools') and len(srcdir.split('/')) < 5:
13     srcdir = '../' + srcdir
14 sys.path.insert(0, srcdir + '/buildtools/wafsamba')
15
16 import wafsamba, samba_dist
17 import Options, os, preproc
18
19 samba_dist.DIST_DIRS('lib/replace buildtools:buildtools')
20
21 def set_options(opt):
22     opt.BUILTIN_DEFAULT('NONE')
23     opt.PRIVATE_EXTENSION_DEFAULT('')
24     opt.RECURSE('buildtools/wafsamba')
25
26 @wafsamba.runonce
27 def configure(conf):
28     conf.RECURSE('buildtools/wafsamba')
29
30     conf.env.standalone_replace = conf.IN_LAUNCH_DIR()
31
32     conf.DEFINE('HAVE_LIBREPLACE', 1)
33     conf.DEFINE('LIBREPLACE_NETWORK_CHECKS', 1)
34
35     # on Tru64 certain features are only available with _OSF_SOURCE set to 1
36     # and _XOPEN_SOURCE set to 600
37     if conf.env['SYSTEM_UNAME_SYSNAME'] == 'OSF1':
38         conf.DEFINE('_OSF_SOURCE', 1, add_to_cflags=True)
39         conf.DEFINE('_XOPEN_SOURCE', 600, add_to_cflags=True)
40
41     # SCM_RIGHTS is only avail if _XOPEN_SOURCE iŃ• defined on IRIX
42     if conf.env['SYSTEM_UNAME_SYSNAME'] == 'IRIX':
43         conf.DEFINE('_XOPEN_SOURCE', 600, add_to_cflags=True)
44         conf.DEFINE('_BSD_TYPES', 1, add_to_cflags=True)
45
46     # Try to find the right extra flags for C99 initialisers
47     for f in ["", "-AC99", "-qlanglvl=extc99", "-qlanglvl=stdc99", "-c99"]:
48         if conf.CHECK_CFLAGS([f], '''
49 struct foo {int x;char y;};
50 struct foo bar = { .y = 'X', .x = 1 };
51 '''):
52             if f != "":
53                 conf.ADD_CFLAGS(f)
54             break
55
56     if conf.CHECK_CFLAGS(['-fstack-protector']):
57         conf.ADD_CFLAGS('-fstack-protector')
58         conf.ADD_LDFLAGS('-fstack-protector')
59
60     # Try to find the right extra flags for -Werror behaviour
61     for f in ["-Werror",       # GCC
62               "-errwarn=%all", # Sun Studio
63               "-qhalt=w",     # IBM xlc
64               "-w2",           # Tru64
65               ]:
66         if conf.CHECK_CFLAGS([f], '''
67 '''):
68             if not 'WERROR_CFLAGS' in conf.env:
69                 conf.env['WERROR_CFLAGS'] = []
70             conf.env['WERROR_CFLAGS'].extend([f])
71             break
72
73     conf.CHECK_HEADERS('linux/types.h crypt.h locale.h acl/libacl.h compat.h')
74     conf.CHECK_HEADERS('acl/libacl.h attr/xattr.h compat.h ctype.h dustat.h')
75     conf.CHECK_HEADERS('fcntl.h fnmatch.h glob.h history.h krb5.h langinfo.h')
76     conf.CHECK_HEADERS('libaio.h locale.h ndir.h pwd.h')
77     conf.CHECK_HEADERS('shadow.h sys/acl.h')
78     conf.CHECK_HEADERS('sys/attributes.h attr/attributes.h sys/capability.h sys/dir.h sys/epoll.h')
79     conf.CHECK_HEADERS('sys/fcntl.h sys/filio.h sys/filsys.h sys/fs/s5param.h sys/fs/vx/quota.h')
80     conf.CHECK_HEADERS('sys/id.h sys/ioctl.h sys/ipc.h sys/mman.h sys/mode.h sys/ndir.h sys/priv.h')
81     conf.CHECK_HEADERS('sys/resource.h sys/security.h sys/shm.h sys/statfs.h sys/statvfs.h sys/termio.h')
82     conf.CHECK_HEADERS('sys/vfs.h sys/xattr.h termio.h termios.h sys/file.h')
83     conf.CHECK_HEADERS('sys/ucontext.h sys/wait.h sys/stat.h malloc.h grp.h')
84     conf.CHECK_HEADERS('sys/select.h setjmp.h utime.h sys/syslog.h syslog.h')
85     conf.CHECK_HEADERS('stdarg.h vararg.h sys/mount.h mntent.h')
86     conf.CHECK_HEADERS('stropts.h unix.h string.h strings.h sys/param.h limits.h')
87     conf.CHECK_HEADERS('''sys/socket.h netinet/in.h netdb.h arpa/inet.h netinet/in_systm.h
88                           netinet/ip.h netinet/tcp.h netinet/in_ip.h
89                           sys/sockio.h sys/un.h''', together=True)
90     conf.CHECK_HEADERS('sys/uio.h ifaddrs.h direct.h dirent.h')
91     conf.CHECK_HEADERS('windows.h winsock2.h ws2tcpip.h')
92     conf.CHECK_HEADERS('libintl.h errno.h')
93     conf.CHECK_HEADERS('gcrypt.h getopt.h iconv.h')
94     conf.CHECK_HEADERS('sys/inotify.h memory.h nss.h sasl/sasl.h')
95     conf.CHECK_HEADERS('security/pam_appl.h zlib.h asm/unistd.h')
96     conf.CHECK_HEADERS('aio.h sys/unistd.h rpc/rpc.h rpc/nettype.h alloca.h float.h')
97
98     conf.CHECK_HEADERS('rpcsvc/nis.h rpcsvc/ypclnt.h sys/sysctl.h')
99     conf.CHECK_HEADERS('sys/fileio.h sys/filesys.h sys/dustat.h sys/sysmacros.h')
100     conf.CHECK_HEADERS('xfs/libxfs.h netgroup.h')
101
102     conf.CHECK_CODE('', headers='rpc/rpc.h rpcsvc/yp_prot.h', define='HAVE_RPCSVC_YP_PROT_H')
103
104     conf.CHECK_HEADERS('valgrind.h valgrind/valgrind.h valgrind/memcheck.h')
105     conf.CHECK_HEADERS('nss_common.h nsswitch.h ns_api.h')
106     conf.CHECK_HEADERS('sys/extattr.h sys/ea.h sys/proplist.h sys/cdefs.h')
107     conf.CHECK_HEADERS('utmp.h utmpx.h lastlog.h malloc.h')
108     conf.CHECK_HEADERS('syscall.h sys/syscall.h inttypes.h')
109
110     # Check for process set name support
111     conf.CHECK_CODE('''
112                     #include <sys/prctl.h>
113                     int main(void) {
114                         prctl(0);
115                         return 0;
116                     }
117                     ''',
118                     'HAVE_PRCTL',
119                     headers='sys/prctl.h',
120                     msg='Checking for prctl syscall')
121
122     conf.CHECK_CODE('''
123                     #include <unistd.h>
124                     #ifdef HAVE_FCNTL_H
125                     #include <fcntl.h>
126                     #endif
127                     int main(void) { int fd = open("/dev/null", O_DIRECT); }
128                     ''',
129                     define='HAVE_OPEN_O_DIRECT',
130                     addmain=False,
131                     msg='Checking for O_DIRECT flag to open(2)')
132
133     conf.CHECK_TYPES('"long long" intptr_t uintptr_t ptrdiff_t comparison_fn_t')
134     conf.CHECK_TYPE('_Bool', define='HAVE__Bool')
135     conf.CHECK_TYPE('bool', define='HAVE_BOOL')
136
137     conf.CHECK_TYPE('int8_t', 'char')
138     conf.CHECK_TYPE('uint8_t', 'unsigned char')
139     conf.CHECK_TYPE('int16_t', 'short')
140     conf.CHECK_TYPE('uint16_t', 'unsigned short')
141     conf.CHECK_TYPE('int32_t', 'int')
142     conf.CHECK_TYPE('uint32_t', 'unsigned')
143     conf.CHECK_TYPE('int64_t', 'long long')
144     conf.CHECK_TYPE('uint64_t', 'unsigned long long')
145     conf.CHECK_TYPE('size_t', 'unsigned int')
146     conf.CHECK_TYPE('ssize_t', 'int')
147     conf.CHECK_TYPE('ino_t', 'unsigned')
148     conf.CHECK_TYPE('loff_t', 'off_t')
149     conf.CHECK_TYPE('offset_t', 'loff_t')
150     conf.CHECK_TYPE('volatile int', define='HAVE_VOLATILE')
151     conf.CHECK_TYPE('uint_t', 'unsigned int')
152     conf.CHECK_TYPE('blksize_t', 'long', headers='sys/types.h sys/stat.h unistd.h')
153     conf.CHECK_TYPE('blkcnt_t', 'long', headers='sys/types.h sys/stat.h unistd.h')
154
155     conf.CHECK_SIZEOF('bool char int "long long" long short size_t ssize_t')
156     conf.CHECK_SIZEOF('int8_t uint8_t int16_t uint16_t int32_t uint32_t int64_t uint64_t')
157     conf.CHECK_SIZEOF('void*', define='SIZEOF_VOID_P')
158     conf.CHECK_SIZEOF('off_t dev_t ino_t time_t')
159
160     conf.CHECK_TYPES('socklen_t', headers='sys/socket.h')
161     conf.CHECK_TYPE_IN('struct ifaddrs', 'ifaddrs.h')
162     conf.CHECK_TYPE_IN('struct addrinfo', 'netdb.h')
163     conf.CHECK_TYPE_IN('struct sockaddr', 'sys/socket.h')
164     conf.CHECK_CODE('struct sockaddr_in6 x', define='HAVE_STRUCT_SOCKADDR_IN6',
165                     headers='sys/socket.h netdb.h netinet/in.h')
166     conf.CHECK_TYPE_IN('struct sockaddr_storage', 'sys/socket.h')
167     conf.CHECK_TYPE_IN('sa_family_t', 'sys/socket.h')
168
169     conf.CHECK_TYPE_IN('sig_atomic_t', 'signal.h', define='HAVE_SIG_ATOMIC_T_TYPE')
170
171     conf.CHECK_FUNCS_IN('''inet_ntoa inet_aton inet_ntop inet_pton connect gethostbyname
172                            getaddrinfo getnameinfo freeaddrinfo gai_strerror socketpair''',
173                         'socket nsl', checklibc=True,
174                         headers='sys/socket.h netinet/in.h arpa/inet.h netdb.h')
175
176     # Some old Linux systems have broken header files and
177     # miss the IPV6_V6ONLY define in netinet/in.h,
178     # but have it in linux/in6.h.
179     # We can't include both files so we just check if the value
180     # if defined and do the replacement in system/network.h
181     if not conf.CHECK_VARIABLE('IPV6_V6ONLY',
182                                headers='sys/socket.h netdb.h netinet/in.h'):
183         conf.CHECK_CODE('''
184                         #include <linux/in6.h>
185                         #if (IPV6_V6ONLY != 26)
186                         #error no IPV6_V6ONLY support on linux
187                         #endif
188                         int main(void) { return IPV6_V6ONLY; }
189                         ''',
190                         define='HAVE_LINUX_IPV6_V6ONLY_26',
191                         addmain=False,
192                         msg='Checking for IPV6_V6ONLY in linux/in6.h',
193                         local_include=False)
194
195     conf.CHECK_CODE('''
196                        struct sockaddr_storage sa_store;
197                        struct addrinfo *ai = NULL;
198                        struct in6_addr in6addr;
199                        int idx = if_nametoindex("iface1");
200                        int s = socket(AF_INET6, SOCK_STREAM, 0);
201                        int ret = getaddrinfo(NULL, NULL, NULL, &ai);
202                        if (ret != 0) {
203                            const char *es = gai_strerror(ret);
204                        }
205                        freeaddrinfo(ai);
206                        {
207                           int val = 1;
208                           #ifdef HAVE_LINUX_IPV6_V6ONLY_26
209                           #define IPV6_V6ONLY 26
210                           #endif
211                           ret = setsockopt(s, IPPROTO_IPV6, IPV6_V6ONLY,
212                                            (const void *)&val, sizeof(val));
213                        }
214                        ''',
215                     define='HAVE_IPV6',
216                     lib='nsl socket',
217                     headers='sys/socket.h netdb.h netinet/in.h')
218
219     if conf.CONFIG_SET('HAVE_SYS_UCONTEXT_H') and conf.CONFIG_SET('HAVE_SIGNAL_H'):
220         conf.CHECK_CODE('''
221                        ucontext_t uc;
222                        sigaddset(&uc.uc_sigmask, SIGUSR1);
223                        ''',
224                        'HAVE_UCONTEXT_T',
225                        msg="Checking whether we have ucontext_t",
226                        headers='signal.h sys/ucontext.h')
227
228     # these may be builtins, so we need the link=False strategy
229     conf.CHECK_FUNCS('strdup memmem printf memset memcpy memmove strcpy strncpy bzero', link=False)
230
231     conf.CHECK_FUNCS('shl_load shl_unload shl_findsym')
232     conf.CHECK_FUNCS('pipe strftime srandom random srand rand usleep setbuffer')
233     conf.CHECK_FUNCS('lstat getpgrp utime utimes setuid seteuid setreuid setresuid setgid setegid')
234     conf.CHECK_FUNCS('setregid setresgid chroot strerror vsyslog setlinebuf mktime')
235     conf.CHECK_FUNCS('ftruncate chsize rename waitpid wait4')
236     conf.CHECK_FUNCS('initgroups pread pwrite strndup strcasestr')
237     conf.CHECK_FUNCS('strtok_r mkdtemp dup2 dprintf vdprintf isatty chown lchown')
238     conf.CHECK_FUNCS('link readlink symlink realpath snprintf vsnprintf')
239     conf.CHECK_FUNCS('asprintf vasprintf setenv unsetenv strnlen strtoull __strtoull')
240     conf.CHECK_FUNCS('strtouq strtoll __strtoll strtoq memalign posix_memalign')
241     conf.CHECK_FUNCS('prctl')
242
243     # libbsd on some platforms provides strlcpy and strlcat
244     if not conf.CHECK_FUNCS('strlcpy strlcat'):
245         conf.CHECK_FUNCS_IN('strlcpy strlcat', 'bsd', headers='bsd/string.h',
246                 checklibc=True)
247     if not conf.CHECK_FUNCS('getpeereid'):
248         conf.CHECK_FUNCS_IN('getpeereid', 'bsd', headers='sys/types.h bsd/unistd.h')
249     if not conf.CHECK_FUNCS_IN('setproctitle', 'bsd', headers='sys/types.h bsd/unistd.h'):
250         conf.CHECK_FUNCS_IN('setproctitle', 'setproctitle', headers='setproctitle.h')
251
252     conf.CHECK_CODE('''
253                 struct ucred cred;
254                 socklen_t cred_len;
255                 int ret = getsockopt(0, SOL_SOCKET, SO_PEERCRED, &cred, &cred_len);''',
256                 'HAVE_PEERCRED',
257                 msg="Checking whether we can use SO_PEERCRED to get socket credentials",
258                 headers='sys/types.h sys/socket.h')
259
260     #Some OS (ie. freebsd) return EINVAL if the convertion could not be done, it's not what we expect
261     #Let's detect those cases
262     if conf.CONFIG_SET('HAVE_STRTOLL'):
263         conf.CHECK_CODE('''
264                         long long nb = strtoll("Text", NULL, 0);
265                         if (errno == EINVAL) {
266                             return 0;
267                         } else {
268                             return 1;
269                         }
270                         ''',
271                         msg="Checking correct behavior of strtoll",
272                         headers = 'errno.h',
273                         execute = True,
274                         define = 'HAVE_BSD_STRTOLL',
275                         )
276     conf.CHECK_FUNCS('if_nametoindex strerror_r')
277     conf.CHECK_FUNCS('getdirentries getdents syslog')
278     conf.CHECK_FUNCS('gai_strerror get_current_dir_name')
279     conf.CHECK_FUNCS('timegm getifaddrs freeifaddrs mmap setgroups syscall setsid')
280     conf.CHECK_FUNCS('getgrent_r getgrgid_r getgrnam_r getgrouplist getpagesize')
281     conf.CHECK_FUNCS('getpwent_r getpwnam_r getpwuid_r epoll_create')
282
283     conf.SET_TARGET_TYPE('attr', 'EMPTY')
284
285     xattr_headers='sys/attributes.h attr/xattr.h sys/xattr.h'
286
287     conf.CHECK_FUNCS_IN('''
288 fgetxattr flistea flistxattr
289 fremovexattr fsetxattr getxattr
290 listxattr removexattr setxattr
291 ''', 'attr', checklibc=True, headers=xattr_headers)
292
293     # We need to check for linux xattrs first, as we do not wish to link to -lattr
294     # (the XFS compat API) on Linux systems with the native xattr API
295     if not conf.CONFIG_SET('HAVE_GETXATTR'):
296         conf.CHECK_FUNCS_IN('''
297 attr_get attr_getf attr_list attr_listf attropen attr_remove
298 attr_removef attr_set attr_setf extattr_delete_fd extattr_delete_file
299 extattr_get_fd extattr_get_file extattr_list_fd extattr_list_file
300 extattr_set_fd extattr_set_file fgetea
301 fremoveea fsetea getea listea
302 removeea setea
303 ''', 'attr', checklibc=True, headers=xattr_headers)
304
305     if (conf.CONFIG_SET('HAVE_ATTR_LISTF') or
306         conf.CONFIG_SET('HAVE_EXTATTR_LIST_FD') or
307         conf.CONFIG_SET('HAVE_FLISTEA') or
308         conf.CONFIG_SET('HAVE_FLISTXATTR')):
309             conf.DEFINE('HAVE_XATTR_SUPPORT', 1)
310
311     # Darwin has extra options to xattr-family functions
312     conf.CHECK_CODE('getxattr(NULL, NULL, NULL, 0, 0, 0)',
313                     headers=xattr_headers, local_include=False,
314                     define='XATTR_ADDITIONAL_OPTIONS',
315                     msg="Checking whether xattr interface takes additional options")
316
317     conf.CHECK_FUNCS_IN('dlopen dlsym dlerror dlclose', 'dl',
318                         checklibc=True, headers='dlfcn.h dl.h')
319
320     conf.CHECK_C_PROTOTYPE('dlopen', 'void *dlopen(const char* filename, unsigned int flags)',
321                            define='DLOPEN_TAKES_UNSIGNED_FLAGS', headers='dlfcn.h dl.h')
322
323     if conf.CHECK_FUNCS_IN('fdatasync', 'rt', checklibc=True):
324         # some systems are missing the declaration
325         conf.CHECK_DECLS('fdatasync')
326
327     if conf.CHECK_FUNCS_IN('clock_gettime', 'rt', checklibc=True):
328         for c in ['CLOCK_MONOTONIC', 'CLOCK_PROCESS_CPUTIME_ID', 'CLOCK_REALTIME']:
329             conf.CHECK_CODE('''
330                 #if TIME_WITH_SYS_TIME
331                 # include <sys/time.h>
332                 # include <time.h>
333                 #else
334                 # if HAVE_SYS_TIME_H
335                 #  include <sys/time.h>
336                 # else
337                 #  include <time.h>
338                 # endif
339                 #endif
340                 clockid_t clk = %s''' % c,
341                 'HAVE_%s' % c,
342                 msg='Checking whether the clock_gettime clock ID %s is available' % c)
343
344     conf.CHECK_TYPE('struct timespec', headers='sys/time.h time.h')
345
346     # these headers need to be tested as a group on freebsd
347     conf.CHECK_HEADERS(headers='sys/socket.h net/if.h', together=True)
348     conf.CHECK_HEADERS(headers='netinet/in.h arpa/nameser.h resolv.h', together=True)
349     conf.CHECK_FUNCS_IN('res_search', 'resolv', checklibc=True,
350                         headers='netinet/in.h arpa/nameser.h resolv.h')
351
352
353     if not conf.CHECK_FUNCS_IN('gettext', 'intl', checklibc=True, headers='libintl.h'):
354     # Some hosts need lib iconv for linking with lib intl
355     # So we try with flags just in case it helps.
356         oldflags = conf.env['LDFLAGS_INTL']
357         conf.env['LDFLAGS_INTL'] = "-liconv"
358         if not conf.CHECK_LIB('intl'):
359             conf.env['LDFLAGS_INTL'] = oldflags
360         else:
361             conf.CHECK_FUNCS_IN('gettext', 'intl', checklibc=True, headers='libintl.h')
362
363     conf.CHECK_FUNCS_IN('dgettext gettext', 'intl', headers='libintl.h')
364     conf.CHECK_FUNCS_IN('pthread_create', 'pthread', checklibc=True, headers='pthread.h')
365
366     conf.CHECK_FUNCS_IN('crypt', 'crypt', checklibc=True)
367
368     conf.CHECK_VARIABLE('rl_event_hook', define='HAVE_DECL_RL_EVENT_HOOK', always=True,
369                         headers='readline.h readline/readline.h readline/history.h')
370
371     conf.CHECK_DECLS('snprintf vsnprintf asprintf vasprintf')
372
373     conf.CHECK_DECLS('errno', headers='errno.h', reverse=True)
374     conf.CHECK_DECLS('environ getgrent_r getpwent_r', reverse=True, headers='pwd.h grp.h')
375     conf.CHECK_DECLS('pread pwrite setenv setresgid setresuid', reverse=True)
376
377     if conf.CONFIG_SET('HAVE_EPOLL_CREATE') and conf.CONFIG_SET('HAVE_SYS_EPOLL_H'):
378         conf.DEFINE('HAVE_EPOLL', 1)
379
380     conf.CHECK_HEADERS('poll.h')
381     conf.CHECK_FUNCS('poll')
382
383     conf.CHECK_FUNCS('strptime')
384     conf.CHECK_DECLS('strptime', headers='time.h')
385     conf.CHECK_CODE('''#define LIBREPLACE_CONFIGURE_TEST_STRPTIME
386                        #include "test/strptime.c"''',
387                        define='HAVE_WORKING_STRPTIME',
388                        execute=True,
389                        addmain=False,
390                        msg='Checking for working strptime')
391
392     conf.CHECK_CODE('gettimeofday(NULL, NULL)', 'HAVE_GETTIMEOFDAY_TZ', execute=False)
393
394     conf.CHECK_CODE('#include "test/snprintf.c"',
395                     define="HAVE_C99_VSNPRINTF",
396                     execute=True,
397                     addmain=False,
398                     msg="Checking for C99 vsnprintf")
399
400     conf.CHECK_CODE('#include "test/shared_mmap.c"',
401                     addmain=False, add_headers=False, execute=True,
402                     define='HAVE_SHARED_MMAP',
403                     msg="Checking for HAVE_SHARED_MMAP")
404
405     conf.CHECK_CODE('#include "test/shared_mremap.c"',
406                     addmain=False, add_headers=False, execute=True,
407                     define='HAVE_MREMAP',
408                     msg="Checking for HAVE_MREMAP")
409
410     # OpenBSD (and I've heard HPUX) doesn't sync between mmap and write.
411     # FIXME: Anything other than a 0 or 1 exit code should abort configure!
412     conf.CHECK_CODE('#include "test/incoherent_mmap.c"',
413                     addmain=False, add_headers=False, execute=True,
414                     define='HAVE_INCOHERENT_MMAP',
415                     msg="Checking for HAVE_INCOHERENT_MMAP")
416
417     conf.SAMBA_BUILD_ENV()
418
419     conf.CHECK_CODE('''
420                     typedef struct {unsigned x;} FOOBAR;
421                     #define X_FOOBAR(x) ((FOOBAR) { x })
422                     #define FOO_ONE X_FOOBAR(1)
423                     FOOBAR f = FOO_ONE;
424                     static const struct {
425                         FOOBAR y;
426                     } f2[] = {
427                         {FOO_ONE}
428                     };
429                     static const FOOBAR f3[] = {FOO_ONE};
430                     ''',
431                     define='HAVE_IMMEDIATE_STRUCTURES')
432
433     conf.CHECK_CODE('mkdir("foo",0777)', define='HAVE_MKDIR_MODE', headers='sys/stat.h')
434
435     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtim.tv_nsec', define='HAVE_STAT_TV_NSEC',
436                                 headers='sys/stat.h')
437     # we need the st_rdev test under two names
438     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_rdev',
439                                 define='HAVE_STRUCT_STAT_ST_RDEV',
440                                 headers='sys/stat.h')
441     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_rdev', define='HAVE_ST_RDEV',
442                                 headers='sys/stat.h')
443     conf.CHECK_STRUCTURE_MEMBER('struct sockaddr_storage', 'ss_family',
444                                 headers='sys/socket.h netinet/in.h')
445     conf.CHECK_STRUCTURE_MEMBER('struct sockaddr_storage', '__ss_family',
446                                 headers='sys/socket.h netinet/in.h')
447
448
449     if conf.CHECK_STRUCTURE_MEMBER('struct sockaddr', 'sa_len',
450                                    headers='sys/socket.h netinet/in.h',
451                                    define='HAVE_SOCKADDR_SA_LEN'):
452         # the old build system produced both defines
453         conf.DEFINE('HAVE_STRUCT_SOCKADDR_SA_LEN', 1)
454
455     conf.CHECK_STRUCTURE_MEMBER('struct sockaddr_in', 'sin_len',
456                                 headers='sys/socket.h netinet/in.h',
457                                 define='HAVE_SOCK_SIN_LEN')
458
459     conf.CHECK_CODE('struct sockaddr_un sunaddr; sunaddr.sun_family = AF_UNIX;',
460                     define='HAVE_UNIXSOCKET', headers='sys/socket.h sys/un.h')
461
462
463     conf.CHECK_CODE('''
464                     struct stat st;
465                     char tpl[20]="/tmp/test.XXXXXX";
466                     char tpl2[20]="/tmp/test.XXXXXX";
467                     int fd = mkstemp(tpl);
468                     int fd2 = mkstemp(tpl2);
469                     if (fd == -1) {
470                           if (fd2 != -1) {
471                                   unlink(tpl2);
472                           }
473                           exit(1);
474                     }
475                     if (fd2 == -1) exit(1);
476                     unlink(tpl);
477                     unlink(tpl2);
478                     if (fstat(fd, &st) != 0) exit(1);
479                     if ((st.st_mode & 0777) != 0600) exit(1);
480                     if (strcmp(tpl, "/tmp/test.XXXXXX") == 0) {
481                           exit(1);
482                     }
483                     if (strcmp(tpl, tpl2) == 0) {
484                           exit(1);
485                     }
486                     exit(0);
487                     ''',
488                     define='HAVE_SECURE_MKSTEMP',
489                     execute=True,
490                     mandatory=True) # lets see if we get a mandatory failure for this one
491
492     if conf.CHECK_CFLAGS('-fvisibility=hidden'):
493         conf.env.VISIBILITY_CFLAGS = '-fvisibility=hidden'
494         conf.CHECK_CODE('''void vis_foo1(void) {}
495                            __attribute__((visibility("default"))) void vis_foo2(void) {}''',
496                         cflags=conf.env.VISIBILITY_CFLAGS,
497                         define='HAVE_VISIBILITY_ATTR')
498
499     # look for a method of finding the list of network interfaces
500     for method in ['HAVE_IFACE_GETIFADDRS', 'HAVE_IFACE_AIX', 'HAVE_IFACE_IFCONF', 'HAVE_IFACE_IFREQ']:
501         if conf.CHECK_CODE('''
502                            #define %s 1
503                            #define NO_CONFIG_H 1
504                            #define AUTOCONF_TEST 1
505                            #define SOCKET_WRAPPER_NOT_REPLACE
506                            #include "replace.c"
507                            #include "inet_ntop.c"
508                            #include "snprintf.c"
509                            #include "getifaddrs.c"
510                            #define getifaddrs_test main
511                            #include "test/getifaddrs.c"
512                            ''' % method,
513                            method,
514                            lib='nsl socket',
515                            addmain=False,
516                            execute=True):
517             break
518
519     conf.RECURSE('system')
520     conf.SAMBA_CONFIG_H()
521
522
523 REPLACEMENT_FUNCTIONS = {
524     'replace.c': ['ftruncate', 'strlcpy', 'strlcat', 'mktime', 'initgroups',
525                   'memmove', 'strdup', 'setlinebuf', 'vsyslog', 'strnlen',
526                   'strndup', 'waitpid', 'seteuid', 'setegid', 'chroot',
527                   'mkstemp', 'mkdtemp', 'pread', 'pwrite', 'strcasestr',
528                   'strtok_r', 'strtoll', 'strtoull', 'setenv', 'unsetenv',
529                   'utime', 'utimes', 'dup2', 'chown', 'link', 'readlink',
530                   'symlink', 'lchown', 'realpath', 'memmem', 'vdprintf',
531                   'dprintf', 'get_current_dir_name',
532                   'strerror_r', 'clock_gettime'],
533     'timegm.c': ['timegm'],
534     # Note: C99_VSNPRINTF is not a function, but a special condition
535     # for replacement
536     'snprintf.c': ['C99_VSNPRINTF', 'snprintf', 'vsnprintf', 'asprintf', 'vasprintf'],
537     # Note: WORKING_STRPTIME is not a function, but a special condition
538     # for replacement
539     'strptime.c': ['WORKING_STRPTIME', 'strptime'],
540     }
541
542
543 def build(bld):
544     bld.RECURSE('buildtools/wafsamba')
545
546     REPLACE_HOSTCC_SOURCE = ''
547
548     for filename, functions in REPLACEMENT_FUNCTIONS.iteritems():
549         for function in functions:
550             if not bld.CONFIG_SET('HAVE_%s' % function.upper()):
551                 REPLACE_HOSTCC_SOURCE += ' %s' % filename
552                 break
553
554     extra_libs = ''
555     if bld.CONFIG_SET('HAVE_LIBBSD'): extra_libs += ' bsd'
556
557     bld.SAMBA_SUBSYSTEM('LIBREPLACE_HOSTCC',
558         REPLACE_HOSTCC_SOURCE,
559         use_hostcc=True,
560         use_global_deps=False,
561         cflags='-DSOCKET_WRAPPER_DISABLE=1 -DNSS_WRAPPER_DISABLE=1 -DUID_WRAPPER_DISABLE=1 -D_SAMBA_HOSTCC_',
562         group='compiler_libraries',
563         deps = extra_libs
564     )
565
566     REPLACE_SOURCE = REPLACE_HOSTCC_SOURCE
567
568     if not bld.CONFIG_SET('HAVE_CRYPT'):         REPLACE_SOURCE += ' crypt.c'
569     if not bld.CONFIG_SET('HAVE_DLOPEN'):        REPLACE_SOURCE += ' dlfcn.c'
570     if not bld.CONFIG_SET('HAVE_POLL'):          REPLACE_SOURCE += ' poll.c'
571
572     if not bld.CONFIG_SET('HAVE_SOCKETPAIR'):    REPLACE_SOURCE += ' socketpair.c'
573     if not bld.CONFIG_SET('HAVE_CONNECT'):       REPLACE_SOURCE += ' socket.c'
574     if not bld.CONFIG_SET('HAVE_GETIFADDRS'):    REPLACE_SOURCE += ' getifaddrs.c'
575     if not bld.CONFIG_SET('HAVE_GETADDRINFO'):   REPLACE_SOURCE += ' getaddrinfo.c'
576     if not bld.CONFIG_SET('HAVE_INET_NTOA'):     REPLACE_SOURCE += ' inet_ntoa.c'
577     if not bld.CONFIG_SET('HAVE_INET_ATON'):     REPLACE_SOURCE += ' inet_aton.c'
578     if not bld.CONFIG_SET('HAVE_INET_NTOP'):     REPLACE_SOURCE += ' inet_ntop.c'
579     if not bld.CONFIG_SET('HAVE_INET_PTON'):     REPLACE_SOURCE += ' inet_pton.c'
580     if not bld.CONFIG_SET('HAVE_GETXATTR') or bld.CONFIG_SET('XATTR_ADDITIONAL_OPTIONS'):
581                                                  REPLACE_SOURCE += ' xattr.c'
582
583     bld.SAMBA_LIBRARY('replace',
584                       source=REPLACE_SOURCE,
585                       group='base_libraries',
586                       # FIXME: Ideally symbols should be hidden here so they 
587                       # don't appear in the global namespace when Samba 
588                       # libraries are loaded, but this doesn't appear to work 
589                       # at the moment:
590                       # hide_symbols=bld.BUILTIN_LIBRARY('replace'),
591                       private_library=True,
592                       deps='crypt dl nsl socket rt attr' + extra_libs)
593
594     bld.SAMBA_SUBSYSTEM('replace-test',
595                       source='''test/testsuite.c test/strptime.c
596                       test/os2_delete.c test/getifaddrs.c''',
597                       deps='replace')
598
599     if bld.env.standalone_replace:
600         bld.SAMBA_BINARY('replace_testsuite',
601                          source='test/main.c',
602                          deps='replace replace-test',
603                          install=False)
604
605     # build replacements for stdint.h and stdbool.h if needed
606     bld.SAMBA_GENERATOR('replace_stdint_h',
607                         rule='cp ${SRC} ${TGT}',
608                         source='hdr_replace.h',
609                         target='stdint.h',
610                         enabled = not bld.CONFIG_SET('HAVE_STDINT_H'))
611     bld.SAMBA_GENERATOR('replace_stdbool_h',
612                         rule='cp ${SRC} ${TGT}',
613                         source='hdr_replace.h',
614                         target='stdbool.h',
615                         enabled = not bld.CONFIG_SET('HAVE_STDBOOL_H'))
616
617 def dist():
618     '''makes a tarball for distribution'''
619     samba_dist.dist()