summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* ldb:pyldb.c - fix some "Py_ssize_t" output warningsMatthias Dieter Wallnöfer2010-11-081-3/+2
|
* ldb:pyldb.c - use "Py_ssize_t" for counting list entriesMatthias Dieter Wallnöfer2010-11-081-12/+11
| | | | This seems to be the most appopriate type
* ldb:pyldb.c - fix indentationMatthias Dieter Wallnöfer2010-11-081-2/+3
|
* s4:pydsdb.c - use "Py_ssize_t" for Python list countersMatthias Dieter Wallnöfer2010-11-081-1/+1
| | | | Seems to be the most appropriate type
* s4:pydsdb.c - introduce Python 2.4 compatibility definesMatthias Dieter Wallnöfer2010-11-081-0/+11
|
* s4:objectguid/repl_meta_data LDB module - deny "objectGUID" updatesMatthias Dieter Wallnöfer2010-11-083-0/+29
| | | | | Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Mon Nov 8 10:36:50 UTC 2010 on sn-devel-104
* s4:objectclass LDB module - no idea why we'd need the "objectGUID" hereMatthias Dieter Wallnöfer2010-11-081-1/+1
|
* s4:objectguid LDB module - make use of "dsdb_next_callback"Matthias Dieter Wallnöfer2010-11-082-30/+6
|
* s4:drsuapi RPC server - writespn.c - fix indentationsMatthias Dieter Wallnöfer2010-11-081-15/+24
|
* s4-drs: allow bypass of writespn checking for some SPNsAndrew Tridgell2010-11-081-1/+111
| | | | | | | | | | | | | this allows accounts (and in particular RODCs) to make SPN updates on their own account if they take the form SERVICE/hostname we may be able to remove this in the future after some changes in our ACL checking for userPrincipalName Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Mon Nov 8 08:45:16 UTC 2010 on sn-devel-104
* heimdal Add clock-skew handling to DCE-style GSSAPIAndrew Bartlett2010-11-081-39/+65
| | | | | | | | | | | The clock skew handling was previously only on properly wrapped GSSAPI, and was skipped for DCE-style. This allows the ASN.1 errors from the krb5_rd_req to suggest parsing as a kerberos error packet. Andrew Bartlett Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Mon Nov 8 07:58:09 UTC 2010 on sn-devel-104
* s4-auth Supply more useful error messages on Kerberos failureAndrew Bartlett2010-11-083-13/+28
| | | | | | | | | The practice of returning only NT_STATUS_INVALID_PARAMETER hasn't helped our users to debug problems effectivly, and so we now return more errors and try and give a more useful debug message when then happen. Andrew Bartlett
* s4-auth Fix typos in samba4 auth codeBrad Hards2010-11-081-7/+7
|
* s4-dsdb Explain why we may not use the GC name in some situations.Andrew Bartlett2010-11-081-0/+8
| | | | | | | This delicate balance caused us a bit of a puzzle when we could not work out why an DC join failed with the new python scripts. Andrew Bartlett
* s4-selftest fix indentationAndrew Bartlett2010-11-081-3/+3
|
* s4-repl: fixed replication notifications to RODCsAndrew Tridgell2010-11-083-7/+58
| | | | | | | | | | We need a separate source dsa list for RODCs, as they are not in the repsFrom for our partitions, but are in the repsTo. This adds a new 'notifies' list, which contains all the source dsas for the DCs that we should send notifies to, but which we don't replicate from Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Mon Nov 8 06:57:43 UTC 2010 on sn-devel-104
* fixAndrew Tridgell2010-11-082-4/+4
|
* s4-debug: lowered the debug level of some unimportant messagesAndrew Tridgell2010-11-083-4/+4
|
* s4-ldb: don't give an error if a module is already registeredAndrew Tridgell2010-11-081-0/+7
| | | | | | | | this can happen when both the build and install paths are used to load ldb modules Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Mon Nov 8 05:28:14 UTC 2010 on sn-devel-104
* waf: go back to the previous method of handling .inst. rulesAndrew Tridgell2010-11-081-1/+1
| | | | | the change broke the library linkages for some library, as spotted by Brad
* waf: fixed the names of the installed libraries after the last changeAndrew Tridgell2010-11-081-5/+13
| | | | | Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Mon Nov 8 02:31:18 UTC 2010 on sn-devel-104
* s4-dns: ensure we get the right case on the grant rule for administratorAndrew Tridgell2010-11-081-2/+1
| | | | | | | | | | it may be 'Administrator' in the database, and bind match rules are case sensitive Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Mon Nov 8 01:41:43 UTC 2010 on sn-devel-104
* waf: fixed tabs/spaces for python3.0Andrew Tridgell2010-11-082-5/+5
| | | | | Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Mon Nov 8 00:55:13 UTC 2010 on sn-devel-104
* waf: prevent us from modifying non-install libs during make installAndrew Tridgell2010-11-081-2/+6
| | | | | | | | | | | | | we need to ensure that 'make install' does not change any of our build libraries, and only changes the .inst.so libraries, otherwise doing a make test in the build directory directly after a make install could use the installed libraries, which would mean using the wrong LDB_MODULES_PATH this could cause the "unknown error" loading ldb modules when running some commands directly after a make install Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-ldb: better error message when we try to register a module twiceAndrew Tridgell2010-11-081-2/+3
| | | | Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-pydrs: validate the DsGetNCChanges responseAndrew Tridgell2010-11-081-0/+2
| | | | check that object_count matches up with first_object
* s4-join: modify join behaviour according to domain levelAndrew Tridgell2010-11-074-43/+112
| | | | | Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Sun Nov 7 23:32:16 UTC 2010 on sn-devel-104
* s4-drs: allow override of the replica_flagsAndrew Tridgell2010-11-071-2/+7
|
* s4-dsdb: give the DN on a shema attribute failureAndrew Tridgell2010-11-071-1/+1
|
* s4:ldap.py - add more "objectGUID" related testsMatthias Dieter Wallnöfer2010-11-071-2/+76
| | | | | Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Sun Nov 7 21:12:03 UTC 2010 on sn-devel-104
* s4:objectguid LDB module - fix typo in output messageMatthias Dieter Wallnöfer2010-11-071-1/+1
|
* s4:objectguid LDB module - objectGUIDs cannot be specified on add operationsMatthias Dieter Wallnöfer2010-11-071-2/+6
|
* s4:upgradeprovision - remove some "recalculate_sd" usesMatthias Dieter Wallnöfer2010-11-071-3/+3
| | | | | | | | We need "recalculate_sd" only when no external "nTSecurityDescriptor" change is performed. Otherwise the recalculation is performed automatically. Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Sun Nov 7 18:52:42 UTC 2010 on sn-devel-104
* s4:descriptor LDB module - make the "nTSecurityDescriptor" attribute fully ↵Matthias Dieter Wallnöfer2010-11-072-52/+117
| | | | | | | | behave as in AD - fix crash when provided "nTSecurityDescriptor" attribute is empty - print out the correct error codes if it's provided multi-valued - simplify the "recalculate_sd" control handling
* s4:ldb_modules/util.c - "dsdb_get_single_valued_attr" - support the ↵Matthias Dieter Wallnöfer2010-11-072-10/+20
| | | | | | | | | attribute fetch also on LDB add operations We've to completely ignore the flags in that case. Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Sun Nov 7 11:10:23 UTC 2010 on sn-devel-104
* ldb:ldb_pack.c - the "dn" attribute isn't allowed in the message part, only ↵Matthias Dieter Wallnöfer2010-11-071-2/+0
| | | | | | | the "distinguishedName" one Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Sun Nov 7 10:11:02 UTC 2010 on sn-devel-104
* s4:torture/dssync.c - remove unused variableMatthias Dieter Wallnöfer2010-11-071-1/+0
|
* s4:descriptor LDB module - save a pointer to the request message on the ↵Matthias Dieter Wallnöfer2010-11-071-33/+33
| | | | | | temporary "ac" context This prevents two calls of "ldb_msg_copy_shallow".
* s4:descriptor LDB module - by "dsdb_next_callback" we don't need anymore the ↵Matthias Dieter Wallnöfer2010-11-071-33/+2
| | | | | | default operation callback implementations Only customised ones still need to remain.
* s4:descriptor LDB module - remove a bit pointless memory contextMatthias Dieter Wallnöfer2010-11-071-9/+1
| | | | | For only one operation we do not need an additional "mem_ctx". "ac" should be enough (see for example the samldb LDB module).
* s4:descriptor LDB module - remove a "ldb_msg_sanity_check" callMatthias Dieter Wallnöfer2010-11-071-7/+0
| | | | | This check (the structural objectclass) is performed in the objectclass LDB module.
* s4:descriptor LDB module - don't ignore referrals if we are executing an ↵Matthias Dieter Wallnöfer2010-11-071-4/+2
| | | | | | ordinary external search operation Referrals are valid results.
* credentials: Lowercase library name,Jelmer Vernooij2010-11-0719-45/+45
| | | | | Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sun Nov 7 01:48:44 UTC 2010 on sn-devel-104
* ldbsamba: Lowercase library name.Jelmer Vernooij2010-11-0714-21/+21
|
* samdb: Lowercase library name.Jelmer Vernooij2010-11-0713-109/+109
|
* samdb: Make private (at least for the moment).Jelmer Vernooij2010-11-071-1/+1
|
* pytalloc: Make some arguments optional.Jelmer Vernooij2010-11-071-6/+6
|
* ldb:ldb_parse.c - "ldb_parse_hex2char" - always initialise "c"Matthias Dieter Wallnöfer2010-11-061-1/+1
| | | | | Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Sat Nov 6 21:04:58 UTC 2010 on sn-devel-104
* s4:ldap.py - enhance the "distinguishedName" testsMatthias Dieter Wallnöfer2010-11-061-0/+24
| | | | The "dn" shortcut isn't supported by AD.
* s4:update_keytab LDB module - we don't need to search for the ↵Matthias Dieter Wallnöfer2010-11-061-2/+2
| | | | | | | "distinguishedName" attribute Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Sat Nov 6 20:08:28 UTC 2010 on sn-devel-104