summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* s4-pyauth Add bindings for auth_context_create() as AuthContext()Andrew Bartlett2011-01-182-1/+81
|
* s4-pyauth Use py_talloc_get_type() for greater talloc binding safetyAndrew Bartlett2011-01-182-12/+15
| | | | | | This does a talloc check of the returned pointer before casting it. Andrew Bartlett
* s4-gensec Don't steal the auth_context, reference it.Andrew Bartlett2011-01-182-6/+17
| | | | | | | We don't want to steal this pointer away from the caller if it's been set up from python. Andrew Bartlett
* pidl:wscript: don't warn about pidl gammar file changes for nowStefan Metzmacher2011-01-181-2/+4
| | | | | | | | | | We may add some logic that uses git diff HEAD to detect this changes in developer mode later again. metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Tue Jan 18 08:10:06 CET 2011 on sn-devel-104
* s4-ldb_ldif: Take into account LDB_FLG_SHOW_BINARYKamen Mazdrashki2011-01-181-1/+4
| | | | | | | | | | | | when user requires binary data to be displayed using samba user-friendly ldif handlers Found using following test search: bin/ldbsearch -H st/dc/private/sam.ldb -b "CN=Deleted Objects,DC=samba,DC=example,DC=com" \ "(objectGUID=97b52eac-6d89-434d-b935-1e5f2e086ffc)" replPropertyMetaData --show-deleted --show-binary Autobuild-User: Kamen Mazdrashki <kamenim@samba.org> Autobuild-Date: Tue Jan 18 00:40:01 CET 2011 on sn-devel-104
* s4-ldb_ldif: Don't check for LDB_FLG_SHOW_BINARY in ldb_should_b64_encodeKamen Mazdrashki2011-01-181-4/+0
| | | | | | | | | | | | | LDB_FLG_SHOW_BINARY is data representation flag and should not modify behavior of data checking functions. This lead to a bug in lib/ldb/ldb_tdb/ldb_index.c as ltdb_index_key() function relies on ldb_should_b64_encode function to determine how to process index keys. Found using following test search: bin/ldbsearch -H st/dc/private/sam.ldb -b "CN=Deleted Objects,DC=samba,DC=example,DC=com" \ "(objectGUID=97b52eac-6d89-434d-b935-1e5f2e086ffc)" replPropertyMetaData --show-deleted --show-binary
* s4-provision: Fixed owner/group for hard-coded Sites descriptor.Nadezhda Ivanova2011-01-171-3/+1
| | | | | | | | We must not specify explicitly owner and group. As there is a difference between WIN_2003 and WIN_2008, we should let descriptor module compute the correct default ones. Also removed inherited ACEs, they are ignored during SD creation anyway. Autobuild-User: Nadezhda Ivanova <nivanova@samba.org> Autobuild-Date: Mon Jan 17 18:23:24 CET 2011 on sn-devel-104
* s4-tools: Fixed a bug in ldapcmp - DACL was not retrieved correctly if the ↵Nadezhda Ivanova2011-01-171-1/+4
| | | | | | object had no SACL. --Pair-Programmed-With: Zahari Zahariev
* s3-rpc_client: Fixed status check of dcerpc_lsa_lookup_sids_noalloc.Andreas Schneider2011-01-171-1/+1
| | | | | Autobuild-User: Andreas Schneider <asn@samba.org> Autobuild-Date: Mon Jan 17 17:35:50 CET 2011 on sn-devel-104
* s3-rpc_client: Fixed return values of dcerpc_lsa_lookup_sids_generic.Andreas Schneider2011-01-171-4/+4
|
* s3-auth: Fixed account lockout check.Andreas Schneider2011-01-171-1/+1
|
* s3: Make sure we call wbcAuthenticateUserEx correctlyVolker Lendecke2011-01-172-8/+29
| | | | | | | | | | | | There are cases where we fill in params.password.response.lm_data with non-NULL where params.password.response.lm_length is 0. wbcAuthenticateUserEx does not like that. I haven't been able to reproduce this with smbclient yet, I've seen it with a proprietary smb client implementation. Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Mon Jan 17 16:30:11 CET 2011 on sn-devel-104
* s4-tools: Added a --sort-aces option to ldapcmpNadezhda Ivanova2011-01-171-6/+12
| | | | | | | | This option sorts the ACE lists during SD comparison in collision view to make it easier to determine of a difference is only in ACE order, and if not, where do differences start. Autobuild-User: Nadezhda Ivanova <nivanova@samba.org> Autobuild-Date: Mon Jan 17 14:09:09 CET 2011 on sn-devel-104
* s3:build: don't use librpc/gen_ndr/cli_echo.[ch] anymoreStefan Metzmacher2011-01-172-8/+3
| | | | | | | metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Mon Jan 17 09:34:12 CET 2011 on sn-devel-104
* s3:torture: use dcerpc_echo_X() functionsStefan Metzmacher2011-01-171-4/+6
| | | | metze
* s3:rpcclient: use dcerpc_echo_X() functionsStefan Metzmacher2011-01-171-30/+37
| | | | metze
* s3: Avoid a few calls to cli_errstrVolker Lendecke2011-01-172-9/+13
| | | | | Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Mon Jan 17 08:47:25 CET 2011 on sn-devel-104
* s3: Remove some unused codeVolker Lendecke2011-01-172-107/+0
|
* s3: Convert cli_lock64 to cli_smbVolker Lendecke2011-01-171-34/+24
|
* s3: Convert cli_lock to use cli_locktypeVolker Lendecke2011-01-171-46/+7
|
* s3: Convert cli_locktype to cli_smbVolker Lendecke2011-01-171-32/+22
|
* s3: Make passing up "result_parent" from cli_smb optionalVolker Lendecke2011-01-172-3/+2
|
* s3: Remove unused cli_send_keepaliveVolker Lendecke2011-01-172-20/+0
|
* s3: Remove unused cli_send/receive_transVolker Lendecke2011-01-172-340/+0
|
* s3: Convert try_trans2 to cli_transVolker Lendecke2011-01-171-28/+28
|
* s3: Convert cli_api to cli_transVolker Lendecke2011-01-171-11/+48
|
* s3: Make cli_setpathinfo_basic use cli_setpathinfoVolker Lendecke2011-01-173-77/+20
|
* s3: Add cli_setpathinfoVolker Lendecke2011-01-172-0/+40
|
* s3: Rename cli_setpathinfo->cli_setpathinfo_basicVolker Lendecke2011-01-173-18/+18
|
* s3: Remove unused cli_send/receive_nt_transVolker Lendecke2011-01-172-350/+0
|
* s3: Convert try_nttrans to cli_transVolker Lendecke2011-01-171-26/+25
|
* s3: Move dump_ntquota* to smbcquotas.cVolker Lendecke2011-01-173-77/+99
|
* s3: Convert cli_set_fs_quota_info to cli_transVolker Lendecke2011-01-173-37/+31
|
* s3: Convert cli_get_fs_quota_info to cli_transVolker Lendecke2011-01-173-47/+49
|
* s3: Convert cli_list_user_quota to cli_transVolker Lendecke2011-01-173-64/+54
|
* s3: Convert cli_set_user_quota to cli_transVolker Lendecke2011-01-173-38/+30
|
* s3: Convert cli_get_user_quota to cli_transVolker Lendecke2011-01-173-52/+54
|
* s3: Fix some nonempty blank linesVolker Lendecke2011-01-174-14/+12
|
* s3: Fix a C++ warningVolker Lendecke2011-01-171-1/+1
|
* s3: Remove cli_send_trans from cli_qpathinfo_alt_nameVolker Lendecke2011-01-171-51/+25
|
* s3: Remove cli_send_trans from cli_oem_change_passwordVolker Lendecke2011-01-171-15/+5
|
* ldb: new ABI sigs fileAndrew Tridgell2011-01-171-0/+248
| | | | | Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Mon Jan 17 06:09:23 CET 2011 on sn-devel-104
* s4-dsdb: replaced the calls to ldb_search() in dsdb modules with ↵Andrew Tridgell2011-01-174-26/+32
| | | | | | | dsdb_module_search() this ensures we follow the module stack, and set the parent on child requests
* s4-dsdb: pass parent request to dsdb_module_*() functions Andrew Tridgell2011-01-1725-235/+335
| | | | | | | this preserves the request hierarchy for dsdb_module_*() calls inside dsdb ldb modules Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* ldb: added ldb_req_mark_trusted()Andrew Tridgell2011-01-173-1/+14
| | | | | | | | this is used to mark a ldb child request trusted, if the caller has validated all inputs. This will be used when creating new child requests with trusted inputs. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* ldb: inherit parent flags on child requests in modulesMatthias Dieter Wallnöfer2011-01-171-0/+11
|
* web_server: Display trivial placeholder page if SWAT could not be found.Jelmer Vernooij2011-01-171-6/+19
| | | | | Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Mon Jan 17 01:27:10 CET 2011 on sn-devel-104
* web_server: Fix initialization.Jelmer Vernooij2011-01-171-3/+6
|
* web_server: Avoid references to swat. Load samba.web_server instead.Jelmer Vernooij2011-01-172-8/+11
|
* param: Load web service by default.Jelmer Vernooij2011-01-171-1/+1
|