summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * s4-smbtorture: define TORTURE_DEFAULT_SERVICE and set to netlogon.Günther Deschner2009-04-151-6/+8
| | | | | | | | Guenther
* | Remove use of talloc_reference in cli_rpc_pipe_open_schannel_with_key()Andrew Bartlett2009-04-205-9/+11
| |
* | libcli/auth Ensure we cancel the transaction when schannel not detectedAndrew Bartlett2009-04-201-0/+1
| | | | | | | | | | | | (found by jra on code review) Andrew Bartlett
* | s3:ntlmssp Remove use of talloc(NULL) in NTLMSSP codeAndrew Bartlett2009-04-202-12/+12
| |
* | libcli/auth: Don't pass back lm_sess_key as the same pointer as user_sess_keyAndrew Bartlett2009-04-201-13/+7
| | | | | | | | | | | | | | This ensures that a talloc_free() of both pointers won't double-free (sharing pointers like this is evil anyway). Andrew Bartlett
* | Remove unused headersAndrew Bartlett2009-04-194-9/+2
| |
* | s3:auth Fix segfault: Always initialise returned session keysAndrew Bartlett2009-04-191-1/+3
| |
* | s3:ntlmssp Fix segfault: msrpc_gen now uses talloc()Andrew Bartlett2009-04-201-46/+8
| |
* | Fix crash bug in NTLMSSP caused by msrpc_parse() moving to tallocAndrew Bartlett2009-04-161-4/+2
| |
* | Use an absolute path to ensure that we can always regenerate tables.cAndrew Bartlett2009-04-161-0/+2
| | | | | | | | | | | | | | I had trouble building Samba3 in a merged build, perhaps because I was also building Samba4 in that tree. Andrew Bartlett
* | Fix building the now common msrpc_parse codeAndrew Bartlett2009-04-161-1/+1
| |
* | Fix building the common libcli/samsync codeAndrew Bartlett2009-04-161-1/+1
| |
* | Fix Samba4 build errors with common libcli/samsyncAndrew Bartlett2009-04-165-6/+5
| |
* | Merge branch 'master' of ssh://git.samba.org/data/git/samba into ↵Andrew Bartlett2009-04-1517-115/+245
|\| | | | | | | libcli-auth-merge-without-netlogond
| * Enable software rollout through ADMatthias Dieter Wallnöfer2009-04-151-0/+10
| | | | | | | | | | | | This enables the sofware rollout feature in Samba4 Signed-off-by: Andrew Bartlett <abartlet@samba.org>
| * Ensure a tls key is only generated once - wrap create & destroy in a mutex.Jeremy Allison2009-04-144-40/+71
| | | | | | | | | | | | Change the function names to add _once to the tls_create & tls_destroy to make this obvious. Jeremy.
| * s3-spoolss: Fix format of description string in spoolss_PrinterInfo1.Günther Deschner2009-04-141-10/+6
| | | | | | | | | | | | | | This is what windows does and should get us closer to show the appropriate printer location string in explorer. Guenther
| * netdomjoin-gui: make sure to grey out change fields when not running as root.Günther Deschner2009-04-141-0/+15
| | | | | | | | Guenther
| * Try and fix the S4 build - include thread includes.Jeremy Allison2009-04-141-0/+4
| | | | | | | | Jeremy.
| * Make talloc_stack threadsafe using TLS. Volker pleaseJeremy Allison2009-04-144-25/+93
| | | | | | | | | | check. Passes make test and basic valgrind testing. Jeremy.
| * libwbclient: Fix undocumented arguments doxygen warnings.Günther Deschner2009-04-141-8/+8
| | | | | | | | | | Guenther (cherry picked from commit f2b3fbf0c04a6f9484853da263174a472eb6bb6d)
| * s3-nsswitch: fix make test_wbpad.Günther Deschner2009-04-141-1/+1
| | | | | | | | Guenther
| * socket_wrapper: fix the build on systems without ipv6 supportStefan Metzmacher2009-04-141-0/+2
| | | | | | | | metze
| * s4-smbtorture: make sure samba3 does not regress in EnumServicesStatusW call.Günther Deschner2009-04-141-0/+3
| | | | | | | | Guenther
| * s3-svcctl: fix memcpy in _svcctl_EnumServicesStatusW().Günther Deschner2009-04-141-2/+1
| | | | | | | | | | | | | | | | Make sure we are not copying more than what we have as valid data. Fix from Jeremy. Thanks a lot for watching this so closely! Guenther
| * s3-spoolss: remove unused dup_nt_devicemode().Günther Deschner2009-04-142-29/+0
| | | | | | | | Guenther
| * s4-smbtorture: print SPOOLSS_JOB_CONTROL flags in RPC-SPOOLSS test.Günther Deschner2009-04-141-1/+32
| | | | | | | | Guenther
* | Add missing header, remove generated headerAndrew Bartlett2009-04-151-10/+8
| | | | | | | | (This isn't a rename, honest :-)
* | common:libcli/auth Add missing samsync config.mkAndrew Bartlett2009-04-151-0/+10
| |
* | s3: Fix ntlm_auth and winbindd to use new common libcli/auth APIsAndrew Bartlett2009-04-142-11/+11
| |
* | Rework to use new API for common netlogon credential chainingAndrew Bartlett2009-04-142-13/+19
| |
* | Link in the common samsync decryption codeAndrew Bartlett2009-04-141-0/+1
| |
* | libcli/auth Push schannel check into common libcli/authAndrew Bartlett2009-04-141-4/+9
| | | | | | | | | | | | | | This means we have a single choke point to ensure the remote client is using schannel. Andrew Bartlett
* | Make Samba3 use the new common libcli/auth codeAndrew Bartlett2009-04-1412-144/+164
| | | | | | | | | | This is particuarly in the netlogon client (but not server at this stage)
* | Rework Samba4 to use the new common libcli/auth codeAndrew Bartlett2009-04-1427-331/+330
| | | | | | | | | | | | | | In particular, this is the rename from creds_ to netlogon_creds_, as well as other links to use the new common crypto. Andrew Bartlett
* | Rework netlogon credentials for the top levelAndrew Bartlett2009-04-142-59/+130
| | | | | | | | | | | | | | | | | | | | | | This makes constructor functions that return the allocated structure, rather than having the caller pass them in, and makes the server init function also check the first credential. The rename of creds_ to netlogon_creds should make it more clear what this code works with. Andrew Bartlett
* | Push schannel_state.c into the top level.Andrew Bartlett2009-04-144-284/+323
| | | | | | | | | | | | This is the server side state for netlogon credential chaining Andrew Bartlett
* | Use common samsync delta decryption functions in libnet_samsync.cAndrew Bartlett2009-04-144-291/+209
| | | | | | | | Andrew Bartlett
* | More work to adapt to merged libcli/auth function prototypesAndrew Bartlett2009-04-145-16/+20
| |
* | Adapt to common crypto functions: sam_pwd_hash() -> sam_rid_crypt()Andrew Bartlett2009-04-142-8/+10
| |
* | libcli/auth Don't compile against un-needed Samba4 headersAndrew Bartlett2009-04-141-1/+0
| |
* | Port Samba4 to the new combined libcli/auth functionsAndrew Bartlett2009-04-146-49/+11
| | | | | | | | | | | | | | For example, some of the new shared functionality was previously in the wkssvc torture test. Andrew Bartlett
* | Move ntlm_check.h into the common libcli/authAndrew Bartlett2009-04-141-0/+0
| |
* | Rework Samba3 to use new libcli/auth code (partial)Andrew Bartlett2009-04-1448-2520/+198
| | | | | | | | | | | | | | | | | | | | | | This commit is mostly to cope with the removal of SamOemHash (replaced by arcfour_crypt()) and other collisions (such as changed function arguments compared to Samba3). We still provide creds_hash3 until Samba3 uses the credentials code in netlogon server Andrew Bartlett
* | Merge smbencrypt.c between Samba3 and Samba4Andrew Bartlett2009-04-141-31/+219
| |
* | Rework trivial msrpc parser to use convert_string_talloc()Andrew Bartlett2009-04-141-21/+21
| | | | | | | | | | | | | | | | | | Also avoid still string conversions when trying to match NTLMSSP in the header of the NTLMSSP packet. This also changes a few things to avoid const warnings. Andrew Bartlett
* | Move MSRPC-PARSE into the common libcli/authAndrew Bartlett2009-04-143-6/+6
| | | | | | | | This is a depenceny of smbencrypt.c
* | Move DRSUAPI per-attribute decryption into a common fileAndrew Bartlett2009-04-149-347/+249
| | | | | | | | | | | | | | This file (contining metze's decryption routines) is now also be used by Samba3's DRSUAPI implementation Andrew Bartlett
* | Move libcli/auth to the top levelAndrew Bartlett2009-04-1411-18/+14
|/
* s3:charcnv remove now unused malloc() based conversion functionsAndrew Bartlett2009-04-142-43/+0
|