summaryrefslogtreecommitdiffstats
path: root/source3/libsmb
Commit message (Collapse)AuthorAgeFilesLines
* s3-libsmb: update libsmb to use new DLIST macrosAndrew Tridgell2010-02-102-23/+25
| | | | | manipulating p->prev directly is not safe any more (cherry picked from commit 3c650ac1e3e1cdbbabecfddcd29325f20b5dcb48)
* Fix off-by-one error in working out the limit of the NetServerEnum comment.Jeremy Allison2010-02-091-1/+1
| | | | Jeremy.
* s3:libsmb: fix NetServerEnum3 rap calls.Stefan Metzmacher2010-02-081-5/+19
| | | | metze
* s3:nmbd: also listen explicit on the subnet broadcast addressesStefan Metzmacher2010-02-082-4/+11
| | | | | | | | | And send replies always via the unicast address of the subnet. This behavior is off by default (as before) and can be enabled with "nmbd:bind explicit broadcast = yes". metze
* s3: Make cli_get_fs_volume_info() use cli_trans()Volker Lendecke2010-02-071-38/+21
|
* s3: Remove some unused codeVolker Lendecke2010-02-071-57/+0
|
* s3: Fix some nonempty blank linesVolker Lendecke2010-02-071-3/+3
|
* s3:libsmb: don't reuse the callers stype variable in cli_NetServerEnum()Stefan Metzmacher2010-02-041-2/+3
| | | | | | | When we need to do more than one network operation to get the browse list we need to use the same 'stype' value each time. metze
* Change uint_t to unsigned int in source3Matt Kraai2010-02-021-4/+4
| | | | Signed-off-by: Stefan Metzmacher <metze@samba.org>
* Fix bug #7079 - cliconnect gets realm wrong with trusted domains.Jeremy Allison2010-01-301-3/+22
| | | | | | | | | | | Passing NULL as dest_realm for cli_session_setup_spnego() was always using our own realm (as for a NetBIOS name). Change this to look for the mapped realm using krb5_get_host_realm() if the destination machine name is a DNS name (contains a '.'). Could get fancier with DNS name detection (length, etc.) but this will do for now. Jeremy.
* Fix a really interesting problem found by Volker's conversion of ↵Jeremy Allison2010-01-291-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | sessionsetup SPNEGO to asynchronous code. Normally clistr_push_fn() can depend upon cli->outbuf being initialized by negprot and sessionsetup packets, and cli->outbuf[smb_flgs2] being correctly set with FLAGS2_UNICODE_STRINGS when cli_setup_packet() is called. When all the sessionsetups are async, then cli_setup_packet() is never called, the async code uses cli_setup_packet_buf() - which initializes the allocated async buffer, not the cli->outbuf one. So the first time clistr_push_fn() is called is from libsmb/clidfs.c:cli_dfs_get_referral(), just after the connection and tconX. In this case cli->outbuf has never been initialized, and cli->outbuf[smb_flgs2] = 0 so the DFS query pushes ASCII on the wire, which is not what we want :-). Remove the dependency on cli->outbuf[smb_flgs2] in clistr_push_fn(), and fake up a SVAL(cli->outbuf, smb_flg2) value using cli_ucs2(cli) function instead, which has been initialized. We only care about the FLAGS2_UNICODE_STRINGS bit anyway. I don't think this is an issue for 3.5.0 as the sessionsetup is still synchronous there, but Volker PLEASE CHECK ! Jeremy.
* s3: Enable use of ccache by default for libsmbclientVolker Lendecke2010-01-261-0/+3
| | | | | | Disable this by setting the environment variable LIBSMBCLIENT_NO_CCACHE, which has the advantage over an smb.conf option to be easily settable per application.
* s3: fix detection and flags for using pthreadBjörn Jacke2010-01-261-0/+4
| | | | I hope this fixes the build on Tru64, IRIX and maybe bug #6983
* s3: remove unused variableBjörn Jacke2010-01-261-2/+0
|
* 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