summaryrefslogtreecommitdiffstats
path: root/source3/libsmb
Commit message (Collapse)AuthorAgeFilesLines
...
* s3:async_smb: remove unused variableBjörn Jacke2010-01-261-2/+0
|
* s3-libsmbclient: Add smbc_setOptionUseCCache()Volker Lendecke2010-01-243-0/+39
| | | | | | | Can we enable this by default? This would be a change in behaviour, but this feature is just too cool for everyone to catch up in the apps. The patch would be
* s3: Add CLI_FULL_CONNECTION_USE_CCACHEVolker Lendecke2010-01-241-0/+3
|
* s3: Use -C in smbclientVolker Lendecke2010-01-241-0/+1
| | | | | | | | | | | | | | | $ bin/wbinfo --ccache-save=w2k3ad\\vl%Password saving creds succeeded $ bin/smbclient //192.168.42.160/tmp -Uvl -N -C -W w2k3ad OS=[Windows Server 2003 R2 3790 Service Pack 2] Server=[Windows Server 2003 R2 5.2] smb: \> $ bin/wbinfo --ccache-save=w2k3ad\\vl%WrongPassword saving creds succeeded $ bin/smbclient //192.168.42.160/tmp -Uvl -N -C -W w2k3ad Anonymous login successful Domain=[W2K3AD] OS=[Windows Server 2003 R2 3790 Service Pack 2] Server=[Windows Server 2003 R2 5.2] tree connect failed: NT_STATUS_ACCESS_DENIED $
* s3: Add ccache use to cli_session_setup_ntlmsspVolker Lendecke2010-01-241-0/+4
|
* s3: Add NTLMSSP_FEATURE_CCACHEVolker Lendecke2010-01-241-0/+60
| | | | Uses the winbind ccache to do authentication if asked to do so
* s3: Remove some calls to memset -- reduces text size by some bytes for meVolker Lendecke2010-01-241-5/+2
|
* s3: Fix a crash in libsmbclient used against the OpenSolaris CIFS serverVolker Lendecke2010-01-161-1/+1
| | | | | | A user has sent me a sniff where the OpenSolaris CIFS server returns "32" in totalentries, but the array in ctr only contains 15 entries. Look at the right delimiter for walking the array.
* Second part of bug 7045 - Bad (non memory copying) interfaces in ↵Jeremy Allison2010-01-151-3/+9
| | | | | | | | smbc_setXXXX calls. Protect against SMB_STRDUP of null... Jeremy.
* Fix bug 7045 - Bad (non memory copying) interfaces in smbc_setXXXX calls.Jeremy Allison2010-01-152-10/+25
| | | | | | | | | | In smbc_free_context libsmbclient just called free() on the string options so it assumes the callers have malloced them before setting them via smbc_set calls. Change to corretly malloc/free string options to the library. Jeremy
* s3-libsmbclient: Fix crash bug in SMBC_parse_path().Günther Deschner2010-01-141-1/+1
| | | | | | | | | Patch from Tim Waugh <twaugh@redhat.com>. This resolves https://bugzilla.redhat.com/show_bug.cgi?id=552658 LIBSMBCLIENT-OPENDIR torture test checks this as well. Guenther
* s3: Replace most calls to sid_append_rid() by sid_compose()Volker Lendecke2010-01-101-4/+2
|
* s3 torture: Prevent smbcli segfault when running smbtorture3 against an smbd ↵Tim Prouty2010-01-071-0/+5
| | | | with security=share
* s3: Convert cli_ulogoff to the async APIVolker Lendecke2010-01-031-14/+77
|
* s3: Convert cli_tdis to the async APIVolker Lendecke2010-01-033-16/+79
|
* s3: Fix some nonempty blank linesVolker Lendecke2010-01-031-14/+14
|
* s3: Remove some unused codeVolker Lendecke2010-01-031-95/+0
|
* s3: Convert cli_sesssetup_ntlmssp to the async APIVolker Lendecke2010-01-031-92/+196
|
* s3: NT_STATUS_MORE_PROCESSING_REQUIRED is a valid sesssetup return valueVolker Lendecke2010-01-031-9/+23
|
* s3: Convert cli_session_setup_kerberos to the async APIVolker Lendecke2010-01-031-83/+285
| | | | | This is still cheated, acquiring the ticket is not async yet, but the SMB part is
* s3:ntlmssp: change get_challange() to return NTSTATUSStefan Metzmacher2009-12-291-3/+8
| | | | metze
* s3:ntlmssp: remove unused p24 variable from ntlmssp_sign_init()Stefan Metzmacher2009-12-291-2/+0
| | | | metze
* s3:ntlmssp: move some indentation in ntlmssp_sign.cStefan Metzmacher2009-12-291-19/+19
| | | | metze
* s3:ntlmssp: remove unused ntlmssp_stored_response()Stefan Metzmacher2009-12-291-25/+1
| | | | metze
* s3:ntlmssp: remove unused ref_count from ntlmssp_stateStefan Metzmacher2009-12-291-12/+4
| | | | metze
* s3:ntlmssp: rename NTLM_MESSAGE_TYPE into ntlmssp_message_typeStefan Metzmacher2009-12-291-1/+1
| | | | metze
* s3: Fix some nonempty blank linesVolker Lendecke2009-12-261-3/+3
|
* s3: Remove unused delete_negative_conn_cache()Volker Lendecke2009-12-241-23/+0
|
* s3: Remove unused flush_negative_conn_cache()Volker Lendecke2009-12-241-9/+0
|
* s3: Remove some unnecessary variables from libsmb/conn_cache.cVolker Lendecke2009-12-241-9/+4
|
* s3: Fix a comment in conn_cache.cVolker Lendecke2009-12-241-1/+1
|
* s3: Fix a 64-bit errorVolker Lendecke2009-12-241-4/+5
|
* s3: Remove some pointless SMB_ASSERTsVolker Lendecke2009-12-241-3/+10
|
* s3: Remove some pointless castsVolker Lendecke2009-12-241-5/+4
|
* s3:ntlmssp: only include ntlmssp.h where actually neededAndrew Bartlett2009-12-225-0/+5
| | | | Andrew Bartlett
* s3:ntlmssp: remove the typedef NTLMSSP_STATEAndrew Bartlett2009-12-223-23/+23
| | | | Andrew Bartlett
* s3:ntlmssp: rename enum NTLMSSP_ROLE into enum ntlmssp_roleAndrew Bartlett2009-12-221-1/+1
| | | | Andrew Bartlett
* libcli/auth Make gd's NDR NTLMSSP parsers helpers commonAndrew Bartlett2009-12-223-190/+1
| | | | (but not built in Samba4 for now)
* s3: Restore correct timeouts for SMB requestsVolker Lendecke2009-12-221-0/+5
|
* s3: Remove a pointless else branchVolker Lendecke2009-12-221-5/+3
|
* s3: Move smb_splice_chain to smbd/process.c, its only userVolker Lendecke2009-12-221-174/+0
|
* Rename 282 -> ERReasnotsupported.Jeremy Allison2009-12-211-3/+3
| | | | Jeremy.
* s3: Fix an error case in cli_negprotVolker Lendecke2009-12-201-0/+1
|
* s3: let netsamlogon_cache_init() use tdb_check()Stefan Metzmacher2009-12-071-4/+42
| | | | | | | If the check fails we try to unlink the old file and start with an empty cache. metze
* s3-kerberos: add a missing reference to authdata headers.Günther Deschner2009-11-271-0/+1
| | | | Guenther
* s3-kerberos: only use krb5 headers where required.Günther Deschner2009-11-273-3/+3
| | | | | | | This seems to be the only way to deal with mixed heimdal/MIT setups during merged build. Guenther
* s3-kerberos: Fix Bug #6929: build with recent heimdal.Günther Deschner2009-11-271-1/+1
| | | | | | | Heimdal changed the KRB5_DEPRECATED define (which now may not take an identifier for activation) in new releases (like 1.3.1). Guenther
* s3-rpc: Avoid including every pipe's client and server stubs everywhere in ↵Günther Deschner2009-11-262-1/+2
| | | | | | samba. Guenther
* s3: Fix some nonempty blank linesVolker Lendecke2009-11-219-568/+468
|
* s3: Remove a struct typedefVolker Lendecke2009-11-211-6/+6
|