summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* dfs_server_ad: s/acct/aname as acct() is a functionStefan Metzmacher2012-07-301-3/+3
| | | | | | | metze Autobuild-User(master): Stefan Metzmacher <metze@samba.org> Autobuild-Date(master): Mon Jul 30 03:17:49 CEST 2012 on sn-devel-104
* dfs_server_ad: return STATUS_NOT_FOUND if the client connects to an ip addressStefan Metzmacher2012-07-301-0/+8
| | | | metze
* s4-dsdb: Fill in lastKnownParent when moving to lostAndFoundAndrew Bartlett2012-07-292-0/+46
| | | | | Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Sun Jul 29 16:51:34 CEST 2012 on sn-devel-104
* s4-dsdb: Do not strip base components off DN before searching for NC rootAndrew Bartlett2012-07-291-7/+10
|
* s4-dsdb: Change move to lostAndFound to use container in this partiion and ↵Andrew Bartlett2012-07-291-2/+31
| | | | | | | | | add debugging The logic looking for LostAndFound failed for a user, so add extensive debugging to make this eaiser to trace down in future. Andrew Bartlett
* s4-dsdb: Provide a way to force incoming renames to take priorityAndrew Bartlett2012-07-291-2/+4
| | | | | | | | This should mean that a samba-tool drs replicate --full-sync forces a replication of all objects, regardless of if we think the local name is newer and regards any local name as being in conflict. Andrew Bartlett
* s4-dsdb: Provide a way to handle conflicts due to renameAndrew Bartlett2012-07-291-25/+102
| | | | | | | This allows us to proceed with replication when the source DC is sending us an object which has a matching object in this NC (by name) but not by GUID. Andrew Bartlett
* s4-librpc: Fix private context for dcerpc_connect_timeout_handlerAndrew Bartlett2012-07-291-4/+4
| | | | | | | | | This was incorrect in 02a356ea775a3ba589cb50af3c861ab86aaffa0b. Andrew Bartlett Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Sun Jul 29 14:54:33 CEST 2012 on sn-devel-104
* s4-repl: Use ldb_dn_new() to create the rootDSE DNAndrew Bartlett2012-07-291-1/+5
| | | | | | Based on a patch proposal by Matthieu Patou <mat@matws.net>. Andrew Bartlett
* s4-repl: Use NULL for pointer test when checking for ldb_msg_new() failureAndrew Bartlett2012-07-291-1/+1
|
* s3-libsmbclient: Add missing talloc_stackframe() callsAndrew Bartlett2012-07-291-0/+16
| | | | | | | | | | These caused a panic with the new assertion on the talloc stackframe being in place. Andrew Bartlett Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Sun Jul 29 05:21:24 CEST 2012 on sn-devel-104
* s4-dbcheck: Add lastKnownParent when moving an object to lostAndFoundAndrew Bartlett2012-07-281-7/+28
| | | | | Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Sat Jul 28 05:40:43 CEST 2012 on sn-devel-104
* lib/param: Rename "socket address" to "nbt client socket address" to clarify ↵Andrew Bartlett2012-07-279-17/+24
| | | | | | | | | | | | | role This parameter is only used in our NBT client code and in nmbd as a fallback when we fail to select a better interface from "interfaces" to use directly. Andrew Bartlett Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Fri Jul 27 12:16:25 CEST 2012 on sn-devel-104
* lib/param: Remove use of lp{cfg,}_socket_address outside the NBT client and ↵Andrew Bartlett2012-07-274-32/+10
| | | | | | | | | server In these other cases, control of the sockets to bind to can be obtained using "bind interfaces only = yes" and "interfaces = ". Andrew Bartlett
* lib/param: Mark lpcfg_cachedir and lpcfg_statedir as const char *Andrew Bartlett2012-07-271-2/+2
| | | | | | | | | This matters as we sync up the declarations with the source3/param code. Andrew Bartlett Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Fri Jul 27 05:26:45 CEST 2012 on sn-devel-104
* lib/param: Remove unused "paranoid server security"Andrew Bartlett2012-07-274-12/+0
| | | | | | This became unused when security=server went away. Andrew Bartlett
* docs: Mark "socket address" as deprecatedAndrew Bartlett2012-07-272-1/+2
|
* param: Make socket_address common, Revert ↵Andrew Bartlett2012-07-274-18/+2
| | | | | | | | | | | | | | | | 611ef42053eb99f4c29d4efa86eaea9f1ca06286 This essentially reverts the commit 611ef42053eb99f4c29d4efa86eaea9f1ca06286 Author: Yasuma Takeda <yasuma@osstech.co.jp> Date: Fri Dec 5 13:37:51 2008 -0800 Fix bug #5944 - nmbd does not boot if socket adress = "" is defined in smb.conf Intead, the documentation is fixed so that the correct default is recorded. Removing the special case handling here allows this to be dealt with in the same way as all other parameters. Andrew Bartlett
* lib/param: Merge parameter tables into a common fileAndrew Bartlett2012-07-273-8247/+4126
| | | | | | | | This file is then included into both loadparm systems. Andrew Bartlett Pair-Programmed-With: Andrew Tridgell <tridge@samba.org>
* lib/param: Merge in source3 parameters into parmeter tableAndrew Bartlett2012-07-271-15/+48
| | | | | | | | | | This finishes the series to remove the various warnings from smb.conf loading when a source3 parameter is used. Based on an earlier patch Pair-Programmed-With: Andrew Tridgell <tridge@samba.org> Andrew Bartlett
* lib/param: Merge "Security Options" section from source3/paramAndrew Bartlett2012-07-271-24/+589
| | | | | | | | | This will make the merge of the whole table smoother. Based on an earlier patch Pair-Programmed-With: Andrew Tridgell <tridge@samba.org> Andrew Bartlett
* lib/param: Merge "Logging Options" section from source3/paramAndrew Bartlett2012-07-271-7/+109
| | | | | | | | | This will make the merge of the whole table smoother. Based on an earlier patch Pair-Programmed-With: Andrew Tridgell <tridge@samba.org> Andrew Bartlett
* s3-param: Merge "log file" parameter with lib/paramAndrew Bartlett2012-07-271-1/+7
| | | | | | | | The lib/param code uses a special handler for setting the log file. We need to set this here, so that we can make this table common. Andrew Bartlett
* lib/param: Merge "Protocol Options" section from source3/paramAndrew Bartlett2012-07-271-54/+253
| | | | | | | | | This will make the merge of the whole table smoother. Based on an earlier patch Pair-Programmed-With: Andrew Tridgell <tridge@samba.org> Andrew Bartlett
* lib/param: Merge "Tuning Options" section from source3/paramAndrew Bartlett2012-07-271-4/+252
| | | | | | This will reduced the weight of the eventual merge of all of source3/param. Andrew Bartlett
* lib/param: Merge "Printing Options" section from source3/paramAndrew Bartlett2012-07-271-3/+290
| | | | | | This will reduced the weight of the eventual merge of all of source3/param. Andrew Bartlett
* s3-build: Make recursive waf build a developer build again (to build ↵Andrew Bartlett2012-07-271-1/+1
| | | | | | | | | | developer test facilities) My commit f446506608ba93303b9c671bdaacd692f72bad28 was to work around the automatic ABI check in the waf developer build. However, now that the validity of loadparm options depends on this being a developer build, we need to change back, but disable the ABI check. Andrew Bartlett
* s3:vlp: fix build on OS XBjörn Jacke2012-07-271-0/+1
| | | | | Autobuild-User(master): Björn Jacke <bj@sernet.de> Autobuild-Date(master): Fri Jul 27 03:13:59 CEST 2012 on sn-devel-104
* buildtools: use egrep when we need the "-f patternfile" optionBjörn Jacke2012-07-261-2/+2
| | | | | | | Solaris' default grep doesn't know the -f option Autobuild-User(master): Björn Jacke <bj@sernet.de> Autobuild-Date(master): Thu Jul 26 20:49:18 CEST 2012 on sn-devel-104
* s3/aio_fork: fix build on irixBjörn Jacke2012-07-262-0/+5
| | | | IRIX needs _XOPEN_SOURCE defined for SCM_RIGHTS to be available
* s3: use libreplace in pthreadpooltest to fix some buildsBjörn Jacke2012-07-261-1/+1
|
* s3: add Darwin sendfile support and merge with the FreeBSD codeBjörn Jacke2012-07-261-50/+44
| | | | | | | | This is based on the adpotion of the FreeBSD sendfile code that was done by James Peach for Darwin. Autobuild-User(master): Björn Jacke <bj@sernet.de> Autobuild-Date(master): Thu Jul 26 17:19:09 CEST 2012 on sn-devel-104
* s3:waf: add Darwin sendfile() testBjörn Jacke2012-07-261-0/+23
|
* s3:configure: add Darwin sendfile() testBjörn Jacke2012-07-261-0/+32
|
* lib/param: Merge "Filename Handling" section from source3/paramAndrew Bartlett2012-07-261-7/+211
| | | | | | | | | | | | This will make the merge of the whole table smoother. Based on an earlier patch Pair-Programmed-With: Andrew Tridgell <tridge@samba.org> Andrew Bartlett Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Thu Jul 26 14:16:02 CEST 2012 on sn-devel-104
* lib/param: Merge "Domain Options" section from source3/paramAndrew Bartlett2012-07-261-0/+13
| | | | | | | | | This will make the merge of the whole table smoother. Based on an earlier patch Pair-Programmed-With: Andrew Tridgell <tridge@samba.org> Andrew Bartlett
* lib/param: Merge "Logon Options" section from source3/paramAndrew Bartlett2012-07-261-8/+186
| | | | | | | | | This will make the merge of the whole table smoother. Based on an earlier patch Pair-Programmed-With: Andrew Tridgell <tridge@samba.org> Andrew Bartlett
* lib/param: Merge "Browse Options" section from source3/paramAndrew Bartlett2012-07-261-14/+73
| | | | | | | | | This will make the merge of the whole table smoother. Based on an earlier patch Pair-Programmed-With: Andrew Tridgell <tridge@samba.org> Andrew Bartlett
* lib/param: Merge "WINS Options" section from source3/paramAndrew Bartlett2012-07-261-1/+13
| | | | | | | | | This will make the merge of the whole table smoother. Based on an earlier patch Pair-Programmed-With: Andrew Tridgell <tridge@samba.org> Andrew Bartlett
* lib/param: Merge "Locking Options" section from source3/paramAndrew Bartlett2012-07-261-5/+89
| | | | | | | | | This will make the merge of the whole table smoother. Based on an earlier patch Pair-Programmed-With: Andrew Tridgell <tridge@samba.org> Andrew Bartlett
* lib/param: Merge "Ldap Options" section from source3/paramAndrew Bartlett2012-07-261-0/+178
| | | | | | | | | This will make the merge of the whole table smoother. Based on an earlier patch Pair-Programmed-With: Andrew Tridgell <tridge@samba.org> Andrew Bartlett
* lib/param: Merge "EventLog Options" section from source3/paramAndrew Bartlett2012-07-261-0/+10
| | | | | | | | | This will make the merge of the whole table smoother. Based on an earlier patch Pair-Programmed-With: Andrew Tridgell <tridge@samba.org> Andrew Bartlett
* lib/param: Merge "Miscellaneous Options" section from source3/paramAndrew Bartlett2012-07-261-12/+491
| | | | | | | | | This will make the merge of the whole table smoother. Based on an earlier patch Pair-Programmed-With: Andrew Tridgell <tridge@samba.org> Andrew Bartlett
* s3:smb2_negprot: return the current system time in the SMB2 NEGPROT responseStefan Metzmacher2012-07-261-1/+2
| | | | | | | metze Autobuild-User(master): Stefan Metzmacher <metze@samba.org> Autobuild-Date(master): Thu Jul 26 11:56:02 CEST 2012 on sn-devel-104
* s3:smbd: fix compiler warnings in notify_internal.cStefan Metzmacher2012-07-261-3/+5
| | | | metze
* libcli/smb: add basic session->smb2.channel_sequence handlingStefan Metzmacher2012-07-262-0/+34
| | | | metze
* libcli/smb: add SMB2_HDR_CHANNEL_SEQUENCEStefan Metzmacher2012-07-261-0/+1
| | | | metze
* libcli/smb: introduce a smb2cli_sessionStefan Metzmacher2012-07-261-107/+93
| | | | | | | This maintains the shared state between multiple session channels. metze
* s3:smb2_sesssetup: reject SMB2_SESSION_FLAG_BINDING requestsStefan Metzmacher2012-07-261-0/+13
| | | | | | | metze Autobuild-User(master): Stefan Metzmacher <metze@samba.org> Autobuild-Date(master): Thu Jul 26 02:08:56 CEST 2012 on sn-devel-104
* s3:libcli/smb: add SMB2_SESSION_FLAG_BINDINGStefan Metzmacher2012-07-261-1/+4
| | | | metze