summaryrefslogtreecommitdiffstats
path: root/source3
Commit message (Collapse)AuthorAgeFilesLines
...
* s3:vfs_modules: Fix Coverity ID 946: OVERRUN_STATICVolker Lendecke2009-09-141-1/+1
| | | | Tim, please check!
* s3: Test short reads in the build farmVolker Lendecke2009-09-141-0/+3
|
* s3:libsmb: Fix bug 6606 -- short reads in smbclient were not handledVolker Lendecke2009-09-141-4/+118
|
* s3-rpc_client: add rpccli_lsa_lookup_sids3 wrapper.Günther Deschner2009-09-142-17/+82
| | | | Guenther
* s3-rpc_client: add rpccli_lsa_lookup_names4 wrapper.Günther Deschner2009-09-142-23/+84
| | | | Guenther
* s3-samr: Fix Coverity #934 UNINIT.Günther Deschner2009-09-131-1/+1
| | | | Guenther
* s3-netlogon: Fix Coverity #945 UNINIT.Günther Deschner2009-09-131-1/+1
| | | | Guenther
* s3-nterr: print a NT_STATUS_RPC_PROTSEQ_NOT_SUPPORTED.Günther Deschner2009-09-131-0/+1
| | | | Guenther
* s3-schannel: fix Coverity #950 OVERRUN_STATIC.Günther Deschner2009-09-131-1/+1
| | | | Guenther
* s3-schannel: fix api_pipe_schannel_process(), was using incorrect buffer length.Günther Deschner2009-09-131-1/+3
| | | | | | Found by RPC-SCHANNEL torture test. Guenther
* s3:dbwrap_ctdb: set dmaster in ctdb_transaction_store() also when updating ↵Michael Adam2009-09-111-1/+1
| | | | | | | | | | an existing record not only when creating a record. This matches commit e9194a130327d6b05a8ab90bd976475b0e93b06d from ctdb-master. Michael
* talloc:mksyms: allow characters after closing functions parenthesis.Michael Adam2009-09-111-2/+2
| | | | Michael
* talloc:mksyms: allow double pointer return value of functions.Michael Adam2009-09-111-1/+1
| | | | Michael
* s3:mksyms: fix spelling...Michael Adam2009-09-112-2/+2
| | | | Michael
* s3-rpcclient: add lookupsids3 command.Günther Deschner2009-09-111-0/+70
| | | | Guenther
* lsa: fill in more unknowns in lsa_LookupSid calls.Günther Deschner2009-09-111-2/+2
| | | | Guenther
* s3-rpcclient: make netlogon credential setup also work for interdomain trusts.Günther Deschner2009-09-111-9/+11
| | | | Guenther
* s3-rpcclient: avoid using lp_workgroup() unconditionally for crypto.Günther Deschner2009-09-111-4/+17
| | | | Guenther
* s3-rpc_client: add dcerpc_transport_t to cli_rpc_pipe_open_schannel().Günther Deschner2009-09-118-11/+21
| | | | Guenther
* s3-rpc_client: add dcerpc_transport_t to cli_rpc_pipe_open_spnego_ntlmssp ↵Günther Deschner2009-09-118-4/+19
| | | | | | and cli_rpc_pipe_open_ntlmssp. Guenther
* s3-rpcclient: use cli_rpc_pipe_open_noauth_transport in rpcclient.Günther Deschner2009-09-111-2/+3
| | | | Guenther
* s3-rpc_client: add cli_rpc_pipe_open_noauth_transport.Günther Deschner2009-09-112-14/+30
| | | | Guenther
* s3-schannel: remove last schannel hand-marshalling function.Günther Deschner2009-09-112-34/+0
| | | | Guenther
* s3-schannel: use NL_AUTH_SIGNATURE for schannel sign & seal (client & server).Günther Deschner2009-09-115-83/+118
| | | | Guenther
* s3-errors: add NT_STATUS_RPC_NT_PROCNUM_OUT_OF_RANGE.Günther Deschner2009-09-111-0/+1
| | | | Guenther
* s3-schannel: remove unused code.Günther Deschner2009-09-113-75/+0
| | | | Guenther
* s3-schannel: use NL_AUTH_MESSAGE for schannel bind reply.Günther Deschner2009-09-111-10/+17
| | | | Guenther
* s3-nterr: add NT_STATUS_RPC_NT_PROTOCOL_ERROR to nt_errstr().Günther Deschner2009-09-111-0/+1
| | | | Guenther
* s3-util: add get/set_cmdline_auth_info_domain to user_auth_info struct.Günther Deschner2009-09-113-0/+22
| | | | Guenther
* s3-rpcclient: add lookupnames4 command.Günther Deschner2009-09-111-0/+52
| | | | Guenther
* s3-rpcclient: add ncacn transport handling for rpcclient.Günther Deschner2009-09-111-5/+88
| | | | Guenther
* s3-rpc_client: add enum dcerpc_transport_t to rpc_cli_transport struct.Günther Deschner2009-09-112-0/+10
| | | | Guenther
* Fix bug 6707 - 3.4.1 segfault in parsing configs.Marc Aurele La France2009-09-101-4/+4
| | | | Fixes an occasional segfault caused by an out-of-bounds reference in config file parsing.
* Fix compile in a usually non-selected define.Jeremy Allison2009-09-091-1/+1
| | | | Jeremy.
* s3:smbd: Add a "hidden" parameter "share:fake_fscaps"Volker Lendecke2009-09-091-0/+3
| | | | | | | | | | | This is needed to support some special app I've just come across where I had to set the SPARSE_FILES bit (0x40) to make it work against Samba at all. There might be others to fake. This is definitely a "Don't touch if you don't know what you're doing" thing, so I decided to make this an undocumented parametric parameter. I know this sucks, so feel free to beat me up on this. But I don't think it will hurt.
* s3-winbindd: Fix Bug #6700: Use dns domain name when needing to guess server ↵Günther Deschner2009-09-091-1/+1
| | | | | | | | | | principal. Patch from Robert LeBlanc <robert@leblancnet.us>. Thanks! Guenther
* s3-nterr: add NT_STATUS_RPC_NT_CALL_FAILED.Günther Deschner2009-09-081-0/+1
| | | | Guenther
* s3:smbd: Fix bug 6690, wrong error checkAndrew Klosterman2009-09-081-1/+1
|
* s3: remove unused RPC_AUTH_SCHANNEL_NEG struct and parsing functions.Günther Deschner2009-09-083-55/+0
| | | | Guenther
* s3-rpc_server: use NL_AUTH_MESSAGE in pipe_schannel_auth_bind().Günther Deschner2009-09-081-6/+23
| | | | Guenther
* s3-rpc_client: use NL_AUTH_MESSAGE in create_schannel_auth_rpc_bind_req().Günther Deschner2009-09-081-7/+24
| | | | Guenther
* schannel: add NL_AUTH_MESSAGE and both NL_AUTH_SIGNATURE structs.Günther Deschner2009-09-081-0/+1
| | | | | | | These actually belong netlogon but we for now want to keep netlogon as a security providor separate. Guenther
* s3-schannel: Fix Bug #6697. Interdomain trusts with Windows 2008 R2 DCs.Günther Deschner2009-09-082-2/+2
| | | | | | | | The Schannel verifier (aka NL_AUTH_SIGNATURE) structure (32 byte) sent from a W2k8r2 DC is passed in a buffer with the size of a NL_AUTH_SHA2_SIGNATURE (56 byte). We should just ignore the remaining 12 zeroed bytes and proceed. Guenther
* Add read() to socketwrapper. Metze please check.Jeremy Allison2009-09-071-1/+1
| | | | Jeremy.
* Fix bug 6673 - smbpasswd does not work with "unix password sync = yes".Jeremy Allison2009-09-065-22/+30
| | | | | | | | | | Revert change from 3.3 -> 3.4 with read_socket_with_timeout changed from sys_read() to sys_recv(). read_socket_with_timeout() is called with non-fd's (with a pty in chgpasswd.c and with a disk file in lib/dbwrap_file.c via read_data()). recv works for the disk file, but not the pty. Change the name of read_socket_with_timeout() to read_fd_with_timeout() to make this clear (and add comments). Jeremy.
* s3:winbind: Convert WINBINDD_SET_HWM to the new APIVolker Lendecke2009-09-0715-128/+454
|
* s3:winbind: Convert WINBINDD_REMOVE_MAPPING to the new APIVolker Lendecke2009-09-0715-108/+488
|
* s3:winbind: Convert WINBINDD_SET_MAPPING to the new APIVolker Lendecke2009-09-0715-106/+538
|
* s3:winbind: Convert WINBINDD_CHECK_MACHACC to the new APIVolker Lendecke2009-09-0715-76/+451
|
* s3:smbd: Add the ntstatus to the smb_panic in share_mode_lock_destructorVolker Lendecke2009-09-071-2/+18
| | | | This might help finding why bug 6518 happens