summaryrefslogtreecommitdiffstats
path: root/source3/wscript_build
Commit message (Collapse)AuthorAgeFilesLines
* s3-passdb: update abi_match and ignore more statically linked functionsAlexander Bokovoy2012-09-101-7/+21
| | | | | Autobuild-User(master): Alexander Bokovoy <ab@samba.org> Autobuild-Date(master): Mon Sep 10 16:14:50 CEST 2012 on sn-devel-104
* s3:vfs_default: add basic support for durable handle request and reconnectMichael Adam2012-09-081-0/+1
| | | | | | | | | | | | We only grant durable handles for CIFS/SMB2 only access, that means "kernel oplocks", "kernel share modes" and "posix locking" need to be set to "no". For now we also don't grant durable handles if delete on close is active on the handle. Pair-Programmed-With: Stefan Metzmacher <metze@samba.org> Pair-Programmed-With: Volker Lendecke <vl@samba.org>
* s3-smbldap: make smbldap public library and maintain its ABIAlexander Bokovoy2012-09-071-1/+5
| | | | | Autobuild-User(master): Alexander Bokovoy <ab@samba.org> Autobuild-Date(master): Fri Sep 7 14:14:30 CEST 2012 on sn-devel-104
* s3-waf: avoid exporting init symbols from statically linked modulesAlexander Bokovoy2012-09-071-1/+17
| | | | | | | | | | | | | | | WAF builds with and without AD DC affect list of statically linked modules that are added into libpdb. This makes impossible to have ABI for libpdb that does not depend on configured features. By making init functions from statically linked modules to have local scope in shared libraries, we avoid unwarranted ABI changes. Additionally, pdb_samba_dsdb imports IDMAP subsystem of source4/ as it is not a shared library. Making its symbols private as well. Finally, in order to have the filtering of symbols work, libpdb has to be public library.
* waf: add new quota header checks and sysquota_4B source fileBjörn Jacke2012-09-021-1/+1
| | | | | Autobuild-User(master): Björn Jacke <bj@sernet.de> Autobuild-Date(master): Sun Sep 2 23:21:22 CEST 2012 on sn-devel-104
* s3-libsmb: Add a python wrapperVolker Lendecke2012-08-161-0/+6
| | | | | | Please note that this is not finished and only for internal use. Signed-off-by: Stefan Metzmacher <metze@samba.org>
* s3:utils: remove standalone cclean toolGregor Beck2012-08-161-12/+0
| | | | Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* s3:net add command "connections cleanup"Gregor Beck2012-08-161-1/+1
| | | | Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* s3-smbd: Move smb_acl_t declaration to smb_acl.idlAndrew Bartlett2012-08-151-0/+1
| | | | | | | | This will allow us to marshall this into and from an NDR blob on disk, which will allow us to fake up ACL support during make test, and to test the NT ACL emulation using python bindings via the VFS. Andrew Bartlett
* build: rename security → samba-securityBjörn Jacke2012-08-101-2/+2
| | | | | | | | | there is a libsecurity on OSF1 which clasheѕ with our security lib. see bug #9023. Signed-off-by: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Björn Jacke <bj@sernet.de> Autobuild-Date(master): Fri Aug 10 14:22:21 CEST 2012 on sn-devel-104
* s3-torture: Extend pdbtest to also run an authentication unit-testAndrew Bartlett2012-08-081-1/+3
| | | | | | | This tests both the builtin auth_sam against passdb directly and the configured auth module. Andrew Bartlett
* source3/loadparm.c: Move string_set/string_free inside.Rusty Russell2012-08-071-1/+1
| | | | | | | The only user, so make them static inside loadparm.c Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Andrew Bartlett <abartlet@samba.org>
* s3-pysmbd: Add set_nt_acl() function based on parts of vfstestAndrew Bartlett2012-08-021-1/+1
| | | | | | | This will allow us to set the full NT ACL on a file, using the VFS layer, during provision of the AD DC. Andrew Bartlett
* Remove source3/lib/pidfile.cJeremy Allison2012-07-201-6/+0
| | | | | Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Fri Jul 20 03:57:20 CEST 2012 on sn-devel-104
* s3: Add tevent_wait_send/recvVolker Lendecke2012-07-181-0/+1
| | | | | | | To me it seems that we might have this functionality already somewere... I just can't find it. Metze, do you have an idea? Signed-off-by: Jeremy Allison <jra@samba.org>
* s3: Move the aio_pthread read/write functionality to vfs_defaultVolker Lendecke2012-07-181-0/+1
| | | | Signed-off-by: Jeremy Allison <jra@samba.org>
* libasysVolker Lendecke2012-07-181-0/+1
| | | | Signed-off-by: Jeremy Allison <jra@samba.org>
* s3:smbd: add smbXsrv_open* infrastructureStefan Metzmacher2012-06-291-0/+2
| | | | | | Pair-Programmed-With: Michael Adam <obnox@samba.org> metze
* ccan: we're subsystems, not a library.Rusty Russell2012-06-291-3/+2
| | | | | | | | | | | | | | | | | | | | Don't expose a libccan.so; it would produce clashes if someone else does the same thing. Unfortunately, if we just change it from a SAMBA_LIBRARY to a SAMBA_SUBSYSTEM, it doesn't create a static library as we'd like, but links all the object files in. This means we get many duplicates (eg. everyone gets a copy of tally, even though only ntdb wants it). So, the solution is twofold: 1) Make the ccan modules separate. 2) Make the ccan modules SAMBA_SUBSYSTEMs not SAMBA_LIBRARYs so we don't build shared libraries which we can't share. 3) Make the places which uses ccan explicit. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Autobuild-User(master): Rusty Russell <rusty@rustcorp.com.au> Autobuild-Date(master): Fri Jun 29 06:22:44 CEST 2012 on sn-devel-104
* s3:wscript: use LOCKING subsystem for smbtorture3Stefan Metzmacher2012-06-281-1/+2
| | | | metze
* s3: add a tool "cclean" to cleanup orphaned entries from connections.tdbGregor Beck2012-06-271-0/+12
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:smbd: add smbXsrv_tcon infrastructureStefan Metzmacher2012-06-251-0/+1
| | | | | | Pair-Programmed-With: Michael Adam <obnox@samba.org> metze
* s3:smbd: add smbXsrv_session infrastructureStefan Metzmacher2012-06-251-0/+1
| | | | | | Pair-Programmed-With: Michael Adam <obnox@samba.org> metze
* s3:smbd: add smbXsrv_version_* infrastructureStefan Metzmacher2012-06-251-0/+1
| | | | metze
* s3:librpc: add smbXsrv.idlStefan Metzmacher2012-06-251-0/+1
| | | | metze
* s3-rpcclient: add fsrvp commandsDavid Disseldorp2012-06-081-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | fss_create_expose connects to an FSRVP server and negotiates the creation and exposure of a share shadow-copy. shadow-copies of multiple shares can be requested with a single fss_create_expose request. ddiss@plati:~> bin/rpcclient -k -U 'LURCH\administrator%password' \ ncacn_np:lutze[sign] rpcclient $> fss_create_expose backup ro hyper 381884f2-b578-45ea-b8d2-cf82491f4011: shadow-copy set created ... share hyper@{B6137E21-9CBB-4547-A21D-E7AD40D0874B} exposed as a snapshot of \\lutze\hyper fss_delete removes the shadow-copy share: rpcclient $> fss_delete hyper 381884f2-b578-45ea-b8d2-cf82491f4011 \ b6137e21-9cbb-4547-a21d-e7ad40d0874 Shadow-copies can be created read-write or read-only. Experimenting with Windows Server "8" beta, a recovery complete call is required after creating a read-write (ATTR_AUTO_RECOVERY) shadow copy. Otherwise subsequent creation requests fail with FSRVP_E_SHADOW_COPY_SET_IN_PROGRESS.
* build: rename build targets smbclient -> smbclient4 and smbclient3 -> smbclientMichael Adam2012-05-311-1/+1
| | | | | Autobuild-User: Michael Adam <obnox@samba.org> Autobuild-Date: Thu May 31 06:36:55 CEST 2012 on sn-devel-104
* build: rename build targets nmblookup -> nmblookup4 and nmblookup3 -> nmblookupMichael Adam2012-05-311-1/+1
|
* s3:build: fix some spacing in wscript_buildMichael Adam2012-05-311-6/+6
|
* lib/param: Put common FN_ macros into param_functions.cAndrew Bartlett2012-05-301-2/+2
| | | | | | | This will in turn make it possible to put the actual parameter definitions in common. Andrew Bartlett
* build: Provide .pc file for libsmbsharemodesAndrew Bartlett2012-05-301-1/+1
| | | | | | | This is not the exact same file as the autoconf build, because of the differnet processing semantics. Andrew Bartlett
* build: Provide .pc file for libnetapiAndrew Bartlett2012-05-301-1/+1
| | | | | | | This is not the exact same file as the autoconf build, because of the differnet processing semantics. Andrew Bartlett
* s3:libsmb: get rid of clisigning routinesLuk Claes2012-05-281-1/+0
| | | | | Signed-off-by: Luk Claes <luk@debian.org> Signed-off-by: Stefan Metzmacher <metze@samba.org>
* s3: Test whether get_share_mode_lock cleans up stale processesVolker Lendecke2012-05-251-1/+2
| | | | | Signed-off-by: Jeremy Allison <jra@samba.org> Signed-off-by: Stefan Metzmacher <metze@samba.org>
* Introduce system MIT krb5 build with --with-system-mitkrb5 option.Alexander Bokovoy2012-05-231-4/+6
| | | | | | | | | | | | | | | | | System MIT krb5 build also enabled by specifying --without-ad-dc When --with-system-mitkrb5 (or --withou-ad-dc) option is passed to top level configure in WAF build we are trying to detect and use system-wide MIT krb5 libraries. As result, Samba 4 DC functionality will be disabled due to the fact that it is currently impossible to implement embedded KDC server with MIT krb5. Thus, --with-system-mitkrb5/--without-ad-dc build will only produce * Samba 4 client libraries and their Python bindings * Samba 3 server (smbd, nmbd, winbindd from source3/) * Samba 3 client libraries In addition, Samba 4 DC server-specific tests will not be compiled into smbtorture. This in particular affects spoolss_win, spoolss_notify, and remote_pac rpc tests.
* s3-passdb: add unixid_from_uid/unixid_from_gid/unixid_from_both APIAlexander Bokovoy2012-05-231-1/+2
| | | | | | | | | | | | | struct unixid is defined in idmap.idl and therefore to use it one would need generated headers from librpc/gen_ndr. Not all of these files are installed and available as public headers. Also, they pull in some support headers which requires them to be available via specific locations like <librpc/gen_ndr/*> or <libcli/util>. Instead of pulling the headers to get structure and enum definitions, introduce three simple helpers to fill in 'struct unixid' based on the type of id. This is sufficient for PASSDB users and does not require exposing generated headers or code.
* s4-resolve: Remove dependency on librokenSimo Sorce2012-05-231-1/+1
| | | | Use available native samba resolver functions
* Move source3/libads/dns.c to lib/addnsSimo Sorce2012-05-231-2/+3
|
* s3: Revert the serverid changes, they need more workVolker Lendecke2012-05-181-1/+0
| | | | | Autobuild-User: Volker Lendecke <vl@samba.org> Autobuild-Date: Fri May 18 13:12:14 CEST 2012 on sn-devel-104
* Fix the waf build with the new "cleans up stale processes" test.Jeremy Allison2012-05-181-0/+1
| | | | | Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Fri May 18 00:20:36 CEST 2012 on sn-devel-104
* s3:onefs: remove all onefs related code as it not maintained anymoreStefan Metzmacher2012-05-161-2/+1
| | | | | | | | | | See https://lists.samba.org/archive/samba-technical/2012-May/083631.html for the discussion. metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Wed May 16 11:23:05 CEST 2012 on sn-devel-104
* libcli/smb: move smb2cli_ioctl.c from source3 to the toplevelBjörn Baumbach2012-05-151-1/+0
| | | | | | | Signed-off-by: Stefan Metzmacher <metze@samba.org> Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Tue May 15 20:17:01 CEST 2012 on sn-devel-104
* libcli/smb: move smb2cli_query_directory.c from source3 to the toplevelBjörn Baumbach2012-05-151-1/+0
| | | | Signed-off-by: Stefan Metzmacher <metze@samba.org>
* libcli/smb: move smb2cli_query_info.c from source3 to the toplevelBjörn Baumbach2012-05-151-1/+0
| | | | Signed-off-by: Stefan Metzmacher <metze@samba.org>
* libcli/smb: move smb2cli_set_info.c from source3 to the toplevelBjörn Baumbach2012-05-151-1/+0
| | | | Signed-off-by: Stefan Metzmacher <metze@samba.org>
* libcli/smb: move smb2cli_flush.c from source3 to the toplevelBjörn Baumbach2012-05-151-1/+0
| | | | Signed-off-by: Stefan Metzmacher <metze@samba.org>
* libcli/smb: move smb2cli_write.c from source3 to the toplevelBjörn Baumbach2012-05-151-1/+0
| | | | Signed-off-by: Stefan Metzmacher <metze@samba.org>
* libcli/smb: move smb2cli_read.c from source3 to the toplevelBjörn Baumbach2012-05-151-1/+0
| | | | Signed-off-by: Stefan Metzmacher <metze@samba.org>
* libcli/smb: move smb2cli_close.c from source3 to the toplevelStefan Metzmacher2012-05-151-1/+0
| | | | metze
* libcli/smb: move smb2cli_create.c from source3 to the toplevelStefan Metzmacher2012-05-151-1/+0
| | | | metze