summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* s3-ntlm_auth: Convert ntlm_auth to use gensec_ntlmssp server-sideAndrew Bartlett2012-02-243-99/+340
| | | | | | | This uses the common gensec_ntlmssp server code for ntlm_auth, removing the last non-gensec use of the NTLMSSP server. Andrew Bartlett
* s3-auth: Provide helper routine to check password and return session_infoAndrew Bartlett2012-02-242-0/+31
|
* auth: Rename some elements of auth4_contextAndrew Bartlett2012-02-244-23/+23
| | | | | | These operate on NTLM authentication, so make that clear. Andrew Bartlett
* s3-auth: Add a way to get an auth4_context from the auth stackAndrew Bartlett2012-02-245-12/+114
| | | | | | | | This will allow us to use the same layer that auth_ntlmssp does in the non-SPNEGO session setup, which will in turn make the authentication code more consistent in the AD server case. Andrew Bartlett
* waf: Make sure libraries are installed with the execute flag set.Andreas Schneider2012-02-231-1/+2
| | | | | | | | | | There are two reasons for that. The first is that libraries are executables and can have main functions (see libc). The second reason is that rpm script to extract debuginfo are looking for executables and then check if it is the right file to extract the info. Autobuild-User: Andreas Schneider <asn@cryptomilk.org> Autobuild-Date: Thu Feb 23 20:57:11 CET 2012 on sn-devel-104
* s4-heimdal: Remove the execute flag of cfx.c.Andreas Schneider2012-02-231-0/+0
| | | | | The scripts which are extracting debuginfo are looking for files with the executable bit and find cfx.c which isn't a executable.
* s3:smbd/utmp.c - fix the build on FreeBSD 9 without utmp.hMatthias Dieter Wallnöfer2012-02-231-0/+2
| | | | | | | | | https://bugzilla.samba.org/show_bug.cgi?id=8709 Reviewed-by: Jelmer Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Thu Feb 23 19:17:25 CET 2012 on sn-devel-104
* dcerpc_server: Add 'modulesdir' variable to pkg-config file.Jelmer Vernooij2012-02-231-0/+1
| | | | | Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Thu Feb 23 16:26:25 CET 2012 on sn-devel-104
* s3: smb_request->vwv can be constVolker Lendecke2012-02-232-2/+2
| | | | | Autobuild-User: Volker Lendecke <vl@samba.org> Autobuild-Date: Thu Feb 23 12:37:23 CET 2012 on sn-devel-104
* selftest: Do not skip environments that fail to start upAndrew Bartlett2012-02-232-3/+7
| | | | | | | | | This is a regression in 70f4a96c68e91e407651e2487cc3c66a80262fa2. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Thu Feb 23 10:55:20 CET 2012 on sn-devel-104
* s4-provision: Fix typo in 9b9fdeefb47f2657c9bb4c2f48318550da510209Andrew Bartlett2012-02-231-3/+3
| | | | | | This was not found to to a bug in the selftest system. Andrew Bartlett
* s3-libads: Remove unused ads_set_machine_password()Andrew Bartlett2012-02-232-33/+0
| | | | | | Found by callcatcher. Andrew Bartlett
* s3-libads: Remove unused ads_pull_sids_from_extendeddn()Andrew Bartlett2012-02-232-62/+0
| | | | | | Found by callcatcher. Andrew Bartlett
* s3-utils: Remove unused connect_to_ipc_krb5()Andrew Bartlett2012-02-232-57/+0
| | | | | | Found by callcatcher. Andrew Bartlett
* wintest: Change to a new Win2008R2 VMAndrew Bartlett2012-02-231-6/+6
|
* s3-libsmb: Remove unused spnego functionsAndrew Bartlett2012-02-232-120/+0
|
* s3-rpc_server Remove unused function auth_generic_server_start()Andrew Bartlett2012-02-232-63/+0
|
* s4:smbcli:smb2: add a random GUID to the transport connection in ↵Michael Adam2012-02-231-1/+5
| | | | | | | | | | | | | | | | | | | | smb2_transport_init() This GUID is used in the smb2 negprot when max protocol is bigger than 0x0202. According to section 2.2.3 of the MS-SMB2 document, the Client GUID filed in the SMB2 negotiate request must be filled with a (non-zero) GUID if there are other dialects than 0x0202 in the dialects field. http://msdn.microsoft.com/en-us/library/cc246543%28v=prot.13%29.aspx Apart from corresponding to the docs, this change makes some of our durable-open tests (e.g reopen2 and open-oplock) _not_ hang when running against windows 8 preview (which might be still buggy). Pair-Programmed-With: Gregor Beck <gbeck@sernet.de> Autobuild-User: Michael Adam <obnox@samba.org> Autobuild-Date: Thu Feb 23 03:23:57 CET 2012 on sn-devel-104
* s3:wscript_build - fix TDB dependency for source3/lib/util.cMatthias Dieter Wallnöfer2012-02-231-3/+1
| | | | | | | | | https://bugzilla.samba.org/show_bug.cgi?id=8708 Signed-off-by: Andrew Tridgell <tridge@samba.org> Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Thu Feb 23 01:43:04 CET 2012 on sn-devel-104
* examples/testsmbc.c - substitute deprecated function "bzero" with "memset"Matthias Dieter Wallnöfer2012-02-221-1/+1
| | | | | | | | | Here we do not make any use of libreplace and hence it would be overkill to include the right headers for Solaris. This fixes bug: https://bugzilla.samba.org/show_bug.cgi?id=8767 Signed-off-by: Andrew Tridgell <tridge@samba.org>
* examples/testsmbc.c - quiet implicit cast warnings on OpenSolarisMatthias Dieter Wallnöfer2012-02-221-2/+2
| | | | | | https://bugzilla.samba.org/show_bug.cgi?id=8767 Signed-off-by: Andrew Tridgell <tridge@samba.org>
* examples/testsmbc.c - remove unused function "print_list_fn"Matthias Dieter Wallnöfer2012-02-221-16/+0
| | | | | | It does not get referenced from anywhere. Signed-off-by: Andrew Tridgell <tridge@samba.org>
* examples/testsmbc.c - remove unused variablesMatthias Dieter Wallnöfer2012-02-221-2/+2
| | | | Signed-off-by: Andrew Tridgell <tridge@samba.org>
* s3-vfstest: Return an error code if cmd failedVolker Lendecke2012-02-221-4/+5
| | | | | Autobuild-User: Volker Lendecke <vl@samba.org> Autobuild-Date: Wed Feb 22 23:56:18 CET 2012 on sn-devel-104
* Honor SeTakeOwnershiPrivilege when client asks for SEC_STD_WRITE_OWNER but ↵Richard Sharpe2012-02-221-0/+5
| | | | | | | has no permission for that, but token has SeTakeOwnershipPrivilege Autobuild-User: Richard Sharpe <sharpe@samba.org> Autobuild-Date: Wed Feb 22 19:19:32 CET 2012 on sn-devel-104
* s3-vfstest: Fake smb_requestsVolker Lendecke2012-02-222-0/+28
| | | | | Autobuild-User: Volker Lendecke <vl@samba.org> Autobuild-Date: Wed Feb 22 17:32:28 CET 2012 on sn-devel-104
* s3-vfstest: Initialize some moreVolker Lendecke2012-02-221-0/+4
|
* s3: Add an error msg when a share mode entry is discardedVolker Lendecke2012-02-221-0/+2
|
* s4:torture:smb2: add a durable-open.open-oplock testMichael Adam2012-02-211-0/+85
| | | | | | | | | | | this is a variant of the open-lease test that does the initial durable open with a batch oplock instead of a RH lease. This is e.g. useful do analyse a (mis?) behaviour with current windows 8 preview versions, compared to w2k8r2 Autobuild-User: Michael Adam <obnox@samba.org> Autobuild-Date: Tue Feb 21 19:51:21 CET 2012 on sn-devel-104
* s4:torture:smb2: extend and prettify comment for durable-open.open-lease testMichael Adam2012-02-211-8/+8
|
* s4:torture:smb2:durable-open: rename the open test to open-leaseMichael Adam2012-02-211-5/+7
|
* s4:torture:smb2: move some initialization and call to smb2_create together ↵Michael Adam2012-02-211-2/+2
| | | | in durable-open.open test
* s4:torture:smb2: fix a typo in the durable-open.open test file nameMichael Adam2012-02-211-1/+1
|
* s3: Fix smbd -iVolker Lendecke2012-02-211-0/+1
| | | | | | | We end up in a nested event loop without this. Autobuild-User: Volker Lendecke <vl@samba.org> Autobuild-Date: Tue Feb 21 17:24:28 CET 2012 on sn-devel-104
* s3: Fix typosVolker Lendecke2012-02-211-2/+2
|
* upgradedns: Upgrade DNS provision from BIND9_FLATFILE to AD based DNSAmitay Isaacs2012-02-213-2/+411
| | | | | | | | | This script can be used to convert provision from BIND9_FLATFILE to BIND9_DLZ or SAMBA_INTERNAL dns backends. In addition, the script migrates the DNS data in zone file (if available). Autobuild-User: Amitay Isaacs <amitay@samba.org> Autobuild-Date: Tue Feb 21 14:50:10 CET 2012 on sn-devel-104
* s4-provision: dns: Add txt DNS recordAmitay Isaacs2012-02-211-0/+9
|
* s4-provision: dns: Do not re-calculate ntdsguid, use from namesAmitay Isaacs2012-02-211-15/+1
|
* s4-provision: dns: Refactor population of dns data codeAmitay Isaacs2012-02-211-56/+98
| | | | | | | | | | | Code is split in 4 functions - create_dns_legacy - fill_dns_data_legacy - create_dns_partitions - fill_dns_data_partitions This is useful to upgrade dns provision from file based DNS backend to AD based DNS backend.
* dlz_bind9: Fix the log message levelAmitay Isaacs2012-02-211-5/+5
|
* samba-tool: dns: Update the copyrightAmitay Isaacs2012-02-211-1/+1
| | | | | Autobuild-User: Amitay Isaacs <amitay@samba.org> Autobuild-Date: Tue Feb 21 09:55:07 CET 2012 on sn-devel-104
* samba-tool: dns: Fix the output display of DNS recordsAmitay Isaacs2012-02-211-2/+3
|
* samba-tool: dns: Add extra references for string objects as workaroundAmitay Isaacs2012-02-211-8/+17
| | | | | | | This is a workaround for bug in pidl generated python bindings, where C object hold a pointer to python string without increasing reference count in python. So when the python string goes out of scope, the C pointer loses the value.
* samba-tool: dns: Add support to add/update/delete MX and SRV recordsAmitay Isaacs2012-02-211-44/+47
|
* samba-tool: dns: Convert dns data into a dns record for comparisonAmitay Isaacs2012-02-211-5/+33
| | | | | and compare two dns records directly. Refactor dns name comparision as dns_name_equal().
* samba-tool: dns: Convert dns data in a string to DNS recordAmitay Isaacs2012-02-211-0/+48
|
* samba-tool: dns: Add MXRecord type to add/update mx recordsAmitay Isaacs2012-02-211-0/+14
|
* dlz_bind9: Do not remove LDB record in subrdataset and delrdatasetAmitay Isaacs2012-02-211-13/+8
| | | | | | | | | | | This fixes the problem of large number of deleted records in DNS partitions due to frequent dynamic dns updates from windows clients. The typical pattern for dynamic update get converted into subrdataset() followed by addrdataset(). If there are no dnsRecord attributes left as a result of sub/delrdataset(), leave the LDB entry for dns name as is. The subsequent addrdataset() would add the dnsRecord attribute without re-creating the same entry.
* lib/tdb2: 2.0.0 ABIAmitay Isaacs2012-02-211-0/+40
| | | | | | | | Signed-off-by: Amitay Isaacs <amitay@gmail.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Autobuild-User: Rusty Russell <rusty@rustcorp.com.au> Autobuild-Date: Tue Feb 21 07:43:55 CET 2012 on sn-devel-104
* lib/tdb2: Convert tdb2 to a standalone libraryAmitay Isaacs2012-02-214-0/+99
| | | | | | | | Adds a Makefile, configure script, and tdb2.pc.in. Signed-off-by: Amitay Isaacs <amitay@gmail.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>