summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2008-10-07Make map_errno_from_nt_status() a generic call, not just a cli specific one.Jeremy Allison4-160/+175
Remove some unused calls from vfs_acl_xattr. Test for SD's on existing files. Jeremy.
2008-10-07Changed variable name from f19086872ec734fff3f2119712ff24117bec4e5e to match ↵Tim Prouty1-19/+19
v3-[23]-test
2008-10-06Fixed build warning "passing arg from incompatible pointer type"Tim Prouty1-1/+3
The fix explicitly makes the conversion from timeval to time_t using the existing time utility functions. Compiling modules/vfs_smb_traffic_analyzer.c modules/vfs_smb_traffic_analyzer.c: In function `smb_traffic_analyzer_send_data': modules/vfs_smb_traffic_analyzer.c:173: warning: passing arg 1 of `localtime' from incompatible pointer type
2008-10-06Fixed "declaration shadows global declaration" warnings.Tim Prouty1-19/+19
The patch simply uses a more descriptive variable name for tcp_seq. ../lib/socket_wrapper/socket_wrapper.c:753: warning: declaration of 'tcp_seq' shadows a global declaration /usr/include/netinet/tcp.h:40: warning: shadowed declaration is here ../lib/socket_wrapper/socket_wrapper.c: In function `swrap_marshall_packet': ../lib/socket_wrapper/socket_wrapper.c:919: warning: declaration of 'tcp_seq' shadows a global declaration /usr/include/netinet/tcp.h:40: warning: shadowed declaration is here
2008-10-06Set default trust kvno to -1Andrew Bartlett1-1/+1
2008-10-06Fix cross-realm authentication in Samba4's KDC.Andrew Bartlett1-3/+5
2008-10-06Allow the PAC to be passed along during cross-realm authenticationAndrew Bartlett1-18/+16
2008-10-06Use the trust password version as kvno for trusts in Kerberos.Andrew Bartlett1-0/+7
2008-10-06Start implementing AD-style trusted domains in Samba4's NETLOGON serverAndrew Bartlett1-2/+50
2008-10-06Store trusted domain passwords in the LSA serverAndrew Bartlett1-4/+64
2008-10-06Make RPC-LSA test for enumeration conditions more strictAndrew Bartlett1-3/+14
2008-10-06Add in secure channel type used by AD trustsAndrew Bartlett1-3/+5
2008-10-06Clarify use of manual parsers in trustInOutBlob (drsblobs.idl)Andrew Bartlett1-4/+6
2008-10-06Implement 'type unknown' names in the CrackNames code.Andrew Bartlett3-11/+50
This guesses the type by running each of the possible options. Andrew Bartlett
2008-10-06Remove compleatly bogus rename test in partitions module.Andrew Bartlett1-17/+0
2008-10-06Remove DESCRIPTION from generated schema lines.Andrew Bartlett2-24/+11
This is not permitted in the AD aggregate schema, and more trouble than it is worth in the OpenLDAP schema due to escaping issues. Andrew Bartlett
2008-10-06Fix Domain Trust creation with Windows 2008 (and many other tools)Andrew Bartlett1-1/+5
A dITConentRules attribute (unlike objectClasses) must not contain a 'SUP'. The ADSI layer in Windows would download the whole schema, and validate it. Thanks to the team at Microsoft for very long debugging session to find this. Andrew Bartlett
2008-10-06idmap_adex: Add more debugging to the basic search function.Gerald (Jerry) Carter1-0/+18
Log the dn of all located entries in order to verify search results.
2008-10-06idmap_adex: Add log messages to dc_add_domain for easier debugging.Gerald (Jerry) Carter1-0/+8
Part of continue work on BUG 5806.
2008-10-06s4:rpc_server: tell the gensec layer that we want to do header signingStefan Metzmacher1-0/+4
Note: header signing is still off by default, as the gensec backends don't support it together with seal yet. metze
2008-10-06s4:gensec: pass down want_features to the spnego backend mechStefan Metzmacher3-1/+24
metze
2008-10-06If name_to_fqdn fails, retry with the dns domain the DC gave usVolker Lendecke1-3/+8
This is a workaround for the cases where you want to join under a netbios name that is different from your hostname, i.e. a name that can not be found in /etc/hosts or dns. In these cases, name_to_fqdn fails or gives invalid results.
2008-10-06Log in the parent winbind log where a request is goingVolker Lendecke1-0/+4
2008-10-06Add netlogond auth methodVolker Lendecke4-1/+330
This authenticates against a local running samba4 using SamLogonEx. We retrieve the machine password using samba4's mymachinepwd script and store the schannel key for re-use in secrets.tdb.
2008-10-06Add dyn_NCALRPCDIRVolker Lendecke4-0/+26
2008-10-06Store a local schannel key in secrets.tdbVolker Lendecke3-0/+29
2008-10-06s4:blackbox/test_ldb: test search by <GUID=...> and <SID=...>Stefan Metzmacher1-0/+25
metze
2008-10-05Fix some nonempty blank linesVolker Lendecke1-25/+25
2008-10-05smbd3 is unhappy if stderr is not openVolker Lendecke1-1/+2
2008-10-05Re-enable build of smb_samba3.c after the rename smbd->sambaVolker Lendecke1-1/+1
2008-10-05Remove an unused variableVolker Lendecke1-1/+0
2008-10-05Fix some missing error handlingsVolker Lendecke3-2/+8
2008-10-05OS/X does not have rl_done in readline.hVolker Lendecke1-0/+8
2008-10-05Fix an uninitialized variable warningVolker Lendecke1-0/+2
Not sure if we can ever not get domain and dns_domain, but gcc complained
2008-10-05remove dependencies on my home domainAndrew Tridgell1-2/+3
(in other words, don't do commits in airports)
2008-10-05removed some debug lines I left in the last commitAndrew Tridgell1-4/+0
2008-10-04Merge branch 'master' of ssh://git.samba.org/data/git/sambaAndrew Tridgell14-192/+200
2008-10-04Fix an unlikely memleak found by the IBM checkerVolker Lendecke1-0/+2
2008-10-04Fix an uninitialized variable found by the IBM CheckerVolker Lendecke1-0/+1
2008-10-04Fix a potential NULL deref in line 258 found by the IBM checkerVolker Lendecke1-0/+1
2008-10-04"gwen/cc" does not like the double const :-)Volker Lendecke1-1/+1
2008-10-03Fix the build farm. In this branch cli_echo returns NTSTATUS.Jeremy Allison1-1/+4
Jeremy
2008-10-03updated the LSA and NETLOGON servers with fixes resulting from the ADAndrew Tridgell7-60/+211
plugfest in Redmond
2008-10-03expanded the netlogon test to better simulate the WSPP NRPC test thatAndrew Tridgell1-1/+9
we had some trouble with
2008-10-03fixed the ldb blackbox test to work with non-bourne shells (as neededAndrew Tridgell1-7/+7
by ubuntu) fixed spelling of 'wellknown'
2008-10-03Correctly fix smbclient to terminate on eof from server.Jeremy Allison3-3/+24
Jeremy.
2008-10-03Simply our main loop processing. A lot :-). Correctly use events for all the ↵Jeremy Allison7-188/+148
previous "special" cases. A step on the way to adding signals to the events and being able to merge the S3 event system with the S4 one. Jeremy.
2008-10-03Document "cups connection timeout".Jeremy Allison1-0/+20
Jeremy.
2008-10-03Merge commit 'master/master'Andrew Tridgell40-647/+1313
2008-10-03fixed the partition module and the GC handlingAndrew Tridgell1-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