summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* updated the LSA and NETLOGON servers with fixes resulting from the ADAndrew Tridgell2008-10-037-60/+211
| | | | plugfest in Redmond
* expanded the netlogon test to better simulate the WSPP NRPC test thatAndrew Tridgell2008-10-031-1/+9
| | | | we had some trouble with
* fixed the ldb blackbox test to work with non-bourne shells (as neededAndrew Tridgell2008-10-031-7/+7
| | | | | | by ubuntu) fixed spelling of 'wellknown'
* Merge commit 'master/master'Andrew Tridgell2008-10-0340-647/+1313
|\
| * net_dns: Make "lwinet ads dns register" honor the "interfaces" parameter.Gerald (Jerry) Carter2008-10-031-13/+12
| | | | | | | | | | This is helpful on multihomed hosts that only require a subset of IP addresses be registered with DNS.
| * libaddns: Use the same prerequisite for DDNS update as Windows XP.Gerald (Jerry) Carter2008-10-031-2/+2
| | | | | | | | | | | | | | Hostname, TYPE: CNAME, CLASS: NONE This has to have been broken for ages. I cannot see how it would have worked in any environment.
| * Fix regressions in patchfile after last patch, several other minor fixes.Matthias Dieter Wallnöfer2008-10-031-22/+20
| |
| * Fix crash bugs in error paths: ac is not yet initialized here, and we don'tSimo Sorce2008-10-021-27/+18
| | | | | | | | | | need to call ldb_module_done in the main module functions, we can directly return an error. ldb_module_done() is for callbacks
| * Don't reject a successful alloc :-(.Jeremy Allison2008-10-021-1/+1
| | | | | | | | Jeremy.
| * s4:blackblox/test_ldb: test searches via wellknownObjectsStefan Metzmacher2008-10-021-0/+62
| | | | | | | | metze
| * s4:setup: add wellknownObjects to the domain objectStefan Metzmacher2008-10-021-0/+8
| | | | | | | | metze
| * Fix bug 5805: don't close stdoutDerrell Lipman2008-10-021-1/+3
| | | | | | | | | | | | | | | | - When calling setup_logging multiple times, the code was closing the debug file descriptor before opening or assigning the new one. We don't, however, want to close the debug file descriptor if it is stdout. Derrell
| * s4:drsuapi.idl: fix some fields in drsuapi_DsRemoveDSServer()Stefan Metzmacher2008-10-022-8/+3
| | | | | | | | metze
| * s4:rootdse: for now don't pass down controls for the rootdse searchStefan Metzmacher2008-10-021-1/+1
| | | | | | | | metze
| * s4:partition: register DOMAIN_SCOPE and SEARCH_OPTIONS controlsStefan Metzmacher2008-10-021-0/+14
| | | | | | | | metze
| * s4:partition: pass down the SEARCH_OPTIONS control as uncriticalStefan Metzmacher2008-10-021-0/+8
| | | | | | | | metze
| * s4:linked_attributes: fix a crash bug when the definition of a target ↵Stefan Metzmacher2008-10-021-3/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | attribute is missing Windows 2003 has a broken schema where the definition of msDS-IsDomainFor is missing (which is supposed to be the backlink of the msDS-HasDomainNCs attribute. Our schema is extracted from windows 2003, so we have the problem. As the NET-API-BECOME-DC test triggers this bug, windows 2003 seems to just skip creating a backlink. metze
| * s4:kludge_acl: just fake support for the SD_FLAGS controlStefan Metzmacher2008-10-021-0/+20
| | | | | | | | metze
| * s4:extended_dn: add support for <GUID=...>, <SID=...> or <WKGUID=...,DC=...> ↵Stefan Metzmacher2008-10-021-44/+355
| | | | | | | | | | | | | | | | as basedn We resolve them into the real basedn before do the real search. metze
| * s4:lib/ldb: fix stupid <SID=...> dn parsing bugsStefan Metzmacher2008-10-021-2/+2
| | | | | | | | metze
| * The IRIX compiler does not like embedded unnamed unionsVolker Lendecke2008-10-0214-168/+183
| |
| * Attempt to fix the build on IRIXVolker Lendecke2008-10-024-6/+6
| | | | | | | | Under irix, "sa_family" is a #define to sa_union.sa_generic.sa_family2
| * Fix bug 5798: "CFLAGS info lost in configure"Volker Lendecke2008-10-021-1/+1
| | | | | | | | | | | | | | | | Michael, please check and merge to the other branches if it's right. Thanks, Volker
| * Fix bug #5080. Access to cups-printers via samba broken with cups 1.3.4, ↵Jeremy Allison2008-10-011-90/+251
| | | | | | | | | | | | | | | | | | Unsupported character set. Cups 1.3.4 expects utf8 to be used in all messages to/from the server. We may be using a different character set so we need to use talloc utf8 push/pull functions in all communication. Needs more testing. Don't release until I've done a thorough test. I also have a version for 3.2.x. Jeremy.
| * Whitespace cleanup.Jeremy Allison2008-10-011-16/+16
| | | | | | | | Jeremy.
| * Fix use of DLIST_REMOVE as spotted by Constantine Vetoshev <gepardcv@gmail.com>.Jeremy Allison2008-10-013-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This API is unusual in that if used to remove a non-list head it nulls out the next and prev pointers. This is what you want for debugging (don't want an entry removed from the list to be still virtually linked into it) but means there is no consistent idiom for use as the next and prev pointers get trashed on removal from the list, meaning you must save them yourself. You can use it one way when deleting everything via the head pointer, as this preserves the next pointer, but you *must* use it another way when not deleting everything via the head pointer. Fix all known uses of this (the main one is in conn_free_internal() and would not free all the private data entries for vfs modules. The other changes in web/statuspage.c and winbindd_util.c are not strictly neccessary, as the head pointer is being used, but I've done them for consistency. Long term we must revisit this as this API is too hard to use correctly. Jeremy.
| * Turn the socket connections into a refcounted list - in the common case ↵Jeremy Allison2008-10-011-44/+95
| | | | | | | | | | | | | | | | | | there'll now only be one socket per smbd. Changed the format of the wire data to (a) include a version number (V1) as the first element. (b) removed the ";)" at the end an replaced it with a "\n". Receiver can change back if needed, and now receiver can just log "as-is" to a text file (making testing easier). Added my (C). Sorry Holger, but I've changed quite a bit now. Jeremy.
| * Fix some syntax errors for use with ReST.Jelmer Vernooij2008-10-011-17/+26
| |
| * Fix header.Jelmer Vernooij2008-10-011-1/+1
| |
| * Fix formatting to be compatible with ReST.Jelmer Vernooij2008-10-011-13/+16
| |
| * Update to refer to 3 and 4, not just Samba 3.Jelmer Vernooij2008-10-011-33/+32
| |
| * Convert to allocated strings. Use write_data(), not send as this doesn't ↵Jeremy Allison2008-09-301-58/+42
| | | | | | | | | | | | | | correctly deal with EINTR. Jim and Holger please check this still works. Jeremy.
| * Revert erroneous commit.Jeremy Allison2008-09-301-1/+1
| | | | | | | | Jeremy.
| * Remove current_user_info - not needed.Jeremy Allison2008-09-302-5/+3
| | | | | | | | Jeremy.
| * Restructure the module so it connects to the remote data sinkJeremy Allison2008-09-301-150/+156
| | | | | | | | | | | | | | | | on connect, and closes the socket on client disconnect. This should make it much more efficient. Store the remote fd in a private data pointer off the handle. Finally we need to remove the fstrings and convert to allocated buffer storage. Jeremy.
| * Fix the make test problem Karolin reported. Now rename_open_files actually ↵Jeremy Allison2008-09-301-2/+2
| | | | | | | | | | | | works correctly we must emit the change notify before we change the name, not before. Jeremy.
* | fixed the partition module and the GC handlingAndrew Tridgell2008-10-031-4/+38
| | | | | | | | | | | | | | | | | | | | - when multiple partitions are searched, consider the search a success if any of the partitions return success - only search the right subset of partitions, looking at the scope and basedn of the search This fixes several errors with GC searches
* | fixed the sense of ldb base dn comparisons in two places, and use aAndrew Tridgell2008-10-023-5/+5
| | | | | | | | | | | | direct comparison instead of a sub-tree comparison in another this fixes basedn searches on the global catalog port
* | fixed a talloc error in the rpc handle desctructor - destructorsAndrew Tridgell2008-10-021-1/+0
| | | | | | | | should not try to free the ptr they are given
* | we need to listen on all interfaces in the CLDAP server as the windowsAndrew Tridgell2008-10-021-8/+9
| | | | | | | | CDLAP client ignores replies from the wrong IP
* | add a test for a LSA lookupnames with a NULL stringAndrew Tridgell2008-09-301-4/+5
| |
* | handle NULL strings in strchr_m() and strrchr_m()Andrew Tridgell2008-09-301-0/+7
| | | | | | | | | | This is needed for the LSA server code which needs to cope with a NULL names passed to lsa_LookupNames3()
* | fixed a number of places in our LSA server where we should return theAndrew Tridgell2008-09-302-12/+14
|/ | | | | sid/name array even when all are unmapped. If we don't fill in the array then the windows client runtime crashes
* Merge branch 'master' of ssh://git.samba.org/data/git/sambaAndrew Tridgell2008-09-3095-402/+778
|\
| * Use a getatr instead to make things cleaner.root2008-09-301-2/+4
| | | | | | | | Jeremy.
| * Add in test name visible on the wire or in debug logs so you can see when ↵Jeremy Allison2008-09-301-16/+17
| | | | | | | | | | | | particular tests start. Jeremy.
| * Use UTF8 rather than the possibly different UNIX charset.Matthias Dieter Wallnöfer2008-09-301-3/+3
| |
| * Move Samba4-specific files into source4/Jelmer Vernooij2008-09-303-4/+4
| |
| * Fix FHS flag, rename to --enable-fhs since it's a feature flagJelmer Vernooij2008-09-301-7/+12
| | | | | | | | and doesn't take any arguments.
| * Compare sids in samba3sam tests.Jelmer Vernooij2008-09-301-11/+21
| |