summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* s3: Remove talloc_autofree_context() from nametouid()Volker Lendecke2010-09-261-1/+1
| | | | pass is freed a few lines down
* s3: Remove talloc_autofree_context() from guest_user_info()Volker Lendecke2010-09-261-1/+2
| | | | pwd is freed a few lines down
* s3: Remove talloc_autofree_context() from getpwnam_alloc()Volker Lendecke2010-09-261-1/+1
| | | | This is given to the memcache a few lines down
* s3: Remove talloc_autofree_context() from notify_internal_parent_init()Volker Lendecke2010-09-263-6/+5
|
* Fix bug #7698 - Assert causes smbd to panic on invalid NetBIOS session request.Jeremy Allison2010-09-266-57/+134
| | | | | | | | | | | | | | Found by the CodeNomicon test suites at the SNIA plugfest. http://www.codenomicon.com/ If an invalid NetBIOS session request is received the code in name_len() in libsmb/nmblib.c can hit an assert. Re-write name_len() and name_extract() to use "buf/len" pairs and always limit reads. Jeremy.
* s4:schannel: handle move flag combinations in the serverStefan Metzmacher2010-09-261-13/+23
| | | | | | This fixes some testsuites in the CIFS plugfest. metze
* s4-auth: fixed the SID list for DCs in the PACAndrew Tridgell2010-09-264-29/+16
| | | | | | | | | | | the S-1-5-9 SID is added in the PAC by the KDC, not on the server that receives the PAC Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> Pair-Programmed-With: Stefan Metzmacher <metze@samba.org> Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Sun Sep 26 07:09:08 UTC 2010 on sn-devel-104
* autobuild: fixed detection of master changesAndrew Tridgell2010-09-261-3/+4
|
* s3-selftest: added samba3.posix_s3.rap.printing as a knownfailAndrew Tridgell2010-09-261-0/+1
| | | | | this fails intermittently on sn-devel, Günther suggests adding this to knownfail for now
* idl-pac: add a decoder for the pac info ctrAndrew Tridgell2010-09-261-0/+4
| | | | | Pair-Programmed-With: Stefan Metzmacher <metze@samba.org> Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-drs: use the system sam_ctx for updaterefsAndrew Tridgell2010-09-261-8/+9
| | | | this is needed for RODC clients calling updaterefs
* s4-spn: don't try to do SPN updates as a RODCAndrew Tridgell2010-09-261-0/+4
| | | | we don't have the permissions to do it
* libcli/ldap: let ldap_full_packet() use asn1_peek_tag_needed_size()Stefan Metzmacher2010-09-261-1/+1
| | | | | | | This allows us to read a full packet without read byte after byte or possible read to much. metze
* lib/util/asn1: add asn1_peek_tag_needed_size() and asn1_peek_full_tag()Stefan Metzmacher2010-09-262-0/+85
| | | | | | | We need a way to ask for the length of a tag without having the full buffer yet. metze
* libcli/util: let tstream_read_pdu_blob_* cope with variable length headersStefan Metzmacher2010-09-261-5/+13
| | | | metze
* s4-kerberos Don't segfault if the password isn't specified in keytab generationAndrew Bartlett2010-09-261-0/+7
| | | | | | | Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Sun Sep 26 03:29:34 UTC 2010 on sn-devel-104
* upgradeprovision: fix a typoMatthieu Patou2010-09-261-1/+1
|
* upgradeprovision: Fix a bug with renamed entriesMatthieu Patou2010-09-261-2/+13
| | | | | The SD was not refetched for renamed entries, resulting with a try to add an additional SD when there was already one.
* upgradeprovision: fix a bug with not updated linksMatthieu Patou2010-09-261-0/+1
|
* s4 provision: start with gpo of version 0 and be consistent between ↵Matthieu Patou2010-09-262-3/+3
| | | | different policies
* s4 upgradeprovision: fix a bug with empty reference objectsMatthieu Patou2010-09-261-1/+9
| | | | Thanks to lukas@eecs.qmul.ac.uk for poiting it to me
* s4 upgradeprovision: Copy versionNumber if not present it helps to make gpo ↵Matthieu Patou2010-09-261-3/+3
| | | | valid
* s4 provision: Make GPO folder group writableMatthieu Patou2010-09-261-3/+3
| | | | | | The group of this folder is domain administrator and it seems sensible that all domain administrators have the right to modify the gpo (they have it at the NT ACLs level ...)
* s3: Remove talloc_autofree_context() from change_to_guest()Volker Lendecke2010-09-261-1/+1
| | | | pass is freed at the exit of this routine
* s3: Remove talloc_autofree_context() from swatVolker Lendecke2010-09-261-2/+2
| | | | In both cases, pass is freed immediately
* s3: Remove talloc_autofree_context() from smbpasswdVolker Lendecke2010-09-261-2/+2
| | | | In both cases, pwd is freed immediately
* s3: Remove talloc_autofree_context() from net_sam_provision()Volker Lendecke2010-09-261-1/+1
|
* s3: Remove talloc_autofree_context() from lookup_unix_user_name()Volker Lendecke2010-09-261-1/+1
| | | | pwd is freed in this routine immediately
* s3: Remove talloc_autofree_context() from pdb_init_ads()Volker Lendecke2010-09-261-1/+1
|
* s3: Remove two talloc_autofree_context() callsVolker Lendecke2010-09-261-2/+2
| | | | Both allocated blobs are freed in their routines
* s3: Remove talloc_autofree_context() from serverid_db()Volker Lendecke2010-09-261-2/+2
| | | | | If we needed an explicit tdb_close() in the destructor, we'd be hosed long ago.
* s3: Remove talloc_autofree_context() from serverid_parent_init()Volker Lendecke2010-09-263-5/+4
|
* s3: Remove talloc_autofree_context() from messaging_tdb_parent_init()Volker Lendecke2010-09-263-5/+4
|
* s3: Remove talloc_autofree_context() from ctdb_read_req()Volker Lendecke2010-09-261-1/+2
|
* s3: Remove talloc_autofree_context() from get_root_nt_token()Volker Lendecke2010-09-261-1/+1
| | | | The memcache_add_talloc() later on steals it anyway
* upgradeprovision: use the same case for hostname in reference provision as ↵Matthieu Patou2010-09-261-1/+1
| | | | | | | in the current provision Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Sun Sep 26 01:21:52 UTC 2010 on sn-devel-104
* autobuild: added --retry optionAndrew Tridgell2010-09-261-26/+68
| | | | this allows the build to auto retry if master changes
* s4-dns: the DNS/${HOSTNAME} SPN should be on the DNS account onlyAndrew Tridgell2010-09-261-1/+0
|
* s4-provision: switch to dns-HOSTNAME instead of dnsAndrew Tridgell2010-09-264-25/+33
| | | | | | | | | We now use a host specific account name for the DNS account, which is the account used for dynamic DNS updates. We also setup the servicePrincipalName for automatic update, and add both DNS/${DNSDOMAIN} and DNS/${DNSNAME} for compatibility with both the old and new SPNs Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* autobuild: enable ccacheAndrew Tridgell2010-09-261-0/+2
|
* autobuild: added --fix-whitespace optionAndrew Tridgell2010-09-261-1/+7
|
* autobuild: added --rebase-master and --push-masterAndrew Tridgell2010-09-262-3/+26
| | | | Pair-Programmed-With: Stefan Metzmacher <metze@samba.org>
* autobuild: added a EDITOR script to mark successful autobuildsAndrew Tridgell2010-09-262-7/+37
| | | | Pair-Programmed-With: Stefan Metzmacher <metze@samba.org>
* autobuild: added --rebase optionAndrew Tridgell2010-09-261-24/+35
| | | | this allows you to rebase on a URL before starting
* script: added autobuild.py automatic build test scriptAndrew Tridgell2010-09-261-0/+263
| | | | this can be used to run all tests in parallel, in free git clones
* s4-possibleinferiors.py: Fix usage of 'paged_search' module for remote LDB ↵Kamen Mazdrashki2010-09-261-1/+7
| | | | connections
* s4-fsmo.py: Fix usage of 'paged_search' module for remote LDB connectionsKamen Mazdrashki2010-09-261-2/+3
|
* s4-delete_object.py: Fix usage of 'paged_search' module for remote LDB ↵Kamen Mazdrashki2010-09-261-2/+3
| | | | connections
* s4-sec_descriptor.py: Fix usage of 'paged_search' module for remote LDB ↵Kamen Mazdrashki2010-09-261-1/+9
| | | | connections
* s4-ldap_schema.py: Remove unused LDB connection to GC portKamen Mazdrashki2010-09-261-5/+0
|