summaryrefslogtreecommitdiffstats
path: root/source3/client
Commit message (Collapse)AuthorAgeFilesLines
* Fix client authentication with -P switch in client tools (Bug 5435).Günther Deschner2008-05-051-0/+5
| | | | | Guenther (This used to be commit d077ef64cd1d9bbaeb936566c2c70da508de829f)
* Tidyup to ensure '\n' is treated identically in allJeremy Allison2008-05-011-0/+2
| | | | | | cases. Jeremy. (This used to be commit 818fbc9889af8c9fb6e7978e8ed2269a78f14404)
* Fix bug #5434 found by Ted Percival <ted@midg3t.net>.Jeremy Allison2008-05-011-0/+2
| | | | | | | Introduced by me in the strlcpy cleanup. Ensure the loaded password doesn't contain the '\n' at the end. Jeremy. (This used to be commit 41984743d9e89b6568119832c35ee4c0024e43a2)
* Sync up client/mount.cifs.c with v3-2-test.Jeremy Allison2008-04-251-25/+4
| | | | | Jeremy. (This used to be commit 7a724d78e11f016f154c0029dc394ce133f41110)
* mount.cifs: Zero mountpassword content before freeing.Karolin Seeger2008-04-251-3/+24
| | | | | Karolin (This used to be commit d99a31848bd2172c15500dd61ce30fef963c1ac6)
* Make mount.cifs.c consistent with other Samba code usage w.r.tJeremy Allison2008-04-241-69/+54
| | | | | | | | SAFE_FREE. Use #define constants not arbitrary numbers. Stevef please check. Karolyn, once Steve has checked please pull for 3.2-stable. Jeremy. (This used to be commit cc23f91d639db61903bf8b6c9fa46ec9c1f44178)
* smbspool: Fix the smbspool build.James Peach2008-04-211-11/+15
| | | | (This used to be commit a51cb3c1a9549d74c1e5cf05bc43b955af1a25b7)
* smbspool: minor formatting cleanups.James Peach2008-04-211-88/+133
| | | | (This used to be commit 831a09ae25e98eacc0b0be5390d3ac3aa671a8a5)
* smbspool: Run indent to approximate conding standards.James Peach2008-04-211-533/+485
| | | | (This used to be commit 4244be792eeb69e883a1ece013b62fe6941086f2)
* smbspool: add my copyright.James Peach2008-04-211-0/+1
| | | | (This used to be commit b294b2055a422e1af59e3b6843b84750b6786d99)
* smbspool: Fix CUPS authentication protocol support.Mike Sweet2008-04-211-34/+75
| | | | | | | There were a couple of places where we weren't checking for authentication correctly. This chance fixes those places and properly supports Kerberos where available. (This used to be commit 8eff35bc4acc13807c895af43b52db79ee195cb5)
* smbspool: fix Kerberos support for CUPS 1.3.Mike Sweet2008-04-211-144/+87
| | | | | | | | | | | | | | | | | | | | | | | To summarize the changes, the patches remove the old (probably non- working) Kerberos support code which is unnecessary with CUPS 1.3 and adds some checks on the NT status we get back to see whether the connection error is related to authentication. If so, we send the ATTR: message to tell CUPS we need a username and password and return exit code 2 so cupsd will do the right thing. AUTH_USERNAME, AUTH_PASSWORD, and KRB5CCNAME are set and supported by CUPS 1.3. The new exit code is supported by CUPS 1.2.x and 1.3, and it treated as a general failure in CUPS 1.1. The ATTR: message is only supported by CUPS 1.3, while CUPS 1.2 will assume the "username,password" value we are setting. The current code only uses the AUTH_* env vars if they are set. If not, we fall back to the previous behavior. I really can't tell whether the Kerberos code that was in there would work at all. It did not work for Mac OS X which is why I dropped it. (This used to be commit 8c12c5cea01d9b801fe80c2a87b8139c488a62a5)
* Replace cli_rpc_pipe_close by a talloc destructor on rpc_pipe_structVolker Lendecke2008-04-201-2/+2
| | | | (This used to be commit 99fc3283c4ecc791f5a242bd1983b4352ce3e6cf)
* Add "desthost" to rpc_pipe_clientVolker Lendecke2008-04-201-1/+1
| | | | | This reduces the dependency on cli_state (This used to be commit 783afab9c891dd7bcb78895b2a639b6f3a0edf5b)
* Fix the problem when -L is used with IPv6 addresses. Don't try toJeremy Allison2008-04-171-0/+8
| | | | | | | connect on port 139 with IPv6. Found by David Holder @ Erion. Karolin please merge to 3.2-stable. Jeremy. (This used to be commit c003e66ff10b23bb30aef0071ba7a3ae9579174e)
* mount.cifs: fix several problems when mounting subdirectories of shares (try 2)Jeff Layton2008-03-311-24/+66
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch is the second patch to attempt to fix up some of the problems with mounting subdirectories of shares. The earlier patch didn't handle this correctly when POSIX extensions were enabled. This one does. This is a bit of a confusing area since the different components of a service string have different rules: 1) hostname: no '/' (slash) or '\' (backslash) is allowed to be embedded within the string 2) sharename: same rules as hostname 3) prefixpath: '\' *is* allowed to be embedded in a path component, iff POSIX extensions are enabled. Otherwise, neither character is allowed. The idea here is to allow either character to act as a delimiter when we know that the character can't be anything but a delimiter (namely everywhere up to the start of the prefixpath). The patch will convert any '\' unconditionally to '/' in the UNC portion of the string. However, inside the prefixpath, we can't make assumptions about what constitutes a delimiter because POSIX allows for embedded '\' characters. So there we don't attempt to do any conversion, and pass the prefixpath to the kernel as is. Once the kernel determines whether POSIX extensions are enabled, it can then convert the path if needed and it's able to do so. A patch to handle this has already been committed to the cifs-2.6 git tree. This patch also fixes an annoyance. When you mount a subdir of a share, mount.cifs munges the device string so that you can't tell what the prefixpath is. So if I mount: //server/share/p1/p2/p3 ..then /proc/mounts and mtab will show only: //server/share Finally, it also tries to apply some consistent rules to the uppercasing of strings. Signed-off-by: Jeff Layton <jlayton@redhat.com> (This used to be commit e03d1dfdb80333c071b600245eb749ef5664aa22)
* More ssize_t->SMB_OFF_TVolker Lendecke2008-03-281-1/+1
| | | | (This used to be commit 8dd6458049d1b9d6849730ac19c39b049a68f302)
* Coverity fixesMarc VanHeyningen2008-03-171-1/+4
| | | | (This used to be commit 3fc85d22590550f0539215d020e4411bf5b14363)
* Fix Coverity ID 563Volker Lendecke2008-03-151-5/+1
| | | | | dirmask is always set here, we've dereferenced it before anyway (This used to be commit e6787aa133a1b241987319486c3bc46ac6ad41af)
* Fix Coverity ID 564Volker Lendecke2008-03-151-10/+0
| | | | | finfo1==NULL just does not happen in current code (This used to be commit 9ea0078c3151984a901c9bba559ae2bd7959e077)
* Use rpccli_srvsvc_NetShareEnumAll in smbclient.Günther Deschner2008-03-101-15/+21
| | | | | Guenther (This used to be commit 1121633652ffb77dce8df9cc91b7dfc2d55fd348)
* Eliminate global variable in_client and a plethora of extern declarations.Derrell Lipman2008-03-062-4/+2
| | | | | Derrell (This used to be commit b7f34e7ef2907b498a0645ce68f2773ed7d60cdc)
* Change default bufsize to 512kVolker Lendecke2008-03-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | I did not do any scientific tests, but the dummy test on my laptop against a w2k3 vmware shows that in this specific situation going beyond 512k seems not to gain anything anymore. smb: \> iosize 64512 iosize is now 64512 smb: \> lcd /dev smb: \> get random null getting file \random of size 104857600 as null (33453,1 kb/s) (average 19718,5 kb/s) smb: \> get random null getting file \random of size 104857600 as null (34236,0 kb/s) (average 20509,1 kb/s) smb: \> iosize 524288 iosize is now 524288 smb: \> get random null getting file \random of size 104857600 as null (49042,1 kb/s) (average 22521,9 kb/s) smb: \> get random null getting file \random of size 104857600 as null (49420,8 kb/s) (average 23432,9 kb/s) smb: \> iosize 1048576 iosize is now 1048576 smb: \> get random null getting file \random of size 104857600 as null (49420,8 kb/s) (average 24284,2 kb/s) smb: \> get random null getting file \random of size 104857600 as null (49136,3 kb/s) (average 25076,9 kb/s) (This used to be commit 1bcfef6a9093aa873550a263dc142c8a3f5edffd)
* Use io_bufsize as window size in smbclient get commandVolker Lendecke2008-03-061-1/+1
| | | | (This used to be commit e602f06cbba852a7eacd15b2511ef2571a95cc80)
* Add async cli_pull supportVolker Lendecke2008-03-061-29/+16
| | | | | | | | | | | | | This is the big (and potentially controversial) one. It took a phone call to explain to metze what is going on inside cli_pull_read_done, but I would really like everybody to understand this function. It is a very good and reasonably complex example of async programming. If we want more asynchronism in s3, this is what we will have to deal with :-) Make use of it in the smbclient "get" command. Volker (This used to be commit 76f9b360ee1d973630d82d401eeddce858189301)
* Revert "Add async cli_pull support"Volker Lendecke2008-03-011-15/+27
| | | | | This reverts commit 844a163458c7585e4306a21ffdae5d08e03d6e4d. (This used to be commit 5ab1cfda500de07ff3c712442ab2fc74eecc8886)
* Revert "Fix warnings"Volker Lendecke2008-03-011-1/+2
| | | | | This reverts commit 9a966e5593ae4474014aec5d8c68c489ac8ce0c9. (This used to be commit 413695e8d0d8232a9c35e693f9a4a8009418ede4)
* Fix warningsVolker Lendecke2008-02-291-2/+1
| | | | (This used to be commit 9a966e5593ae4474014aec5d8c68c489ac8ce0c9)
* Remove smbmount.Karolin Seeger2008-02-283-1575/+0
| | | | | Karolin (This used to be commit 5fbd98f7065268ae134108310119078ad8f62322)
* Add async cli_pull supportVolker Lendecke2008-02-281-27/+15
| | | | | | | | | | | | | This is the big (and potentially controversial) one. It took a phone call to explain to metze what is going on inside cli_pull_read_done, but I would really like everybody to understand this function. It is a very good and reasonably complex example of async programming. If we want more asynchronism in s3, this is what we will have to deal with :-) Make use of it in the smbclient "get" command. Volker (This used to be commit 844a163458c7585e4306a21ffdae5d08e03d6e4d)
* Do the formatting change in all 3 places :-)Volker Lendecke2008-02-251-3/+7
| | | | (This used to be commit d32066eaef1d09ec41fd5365e18eacd93e485d53)
* Fix confusing error message -- bug 5252Volker Lendecke2008-02-251-3/+5
| | | | | Thanks to Walter Franzini (This used to be commit 19de47fef1b35c47885acc40760a232e4643079c)
* Make sure mount.cifs.c compiles on Fedora 9 with gcc 4.3Simo Sorce2008-02-221-0/+1
| | | | (This used to be commit ce57d388251063c22f89680e9d1c2129d9879975)
* Replace C++-style comments with C.Tim Potter2008-02-181-1/+1
| | | | (This used to be commit a1d07469236c06b65f14a59a27d7f7abcb106b5e)
* Revert "Merge in J.Layton patch and resolve conflict."Simo Sorce2008-02-141-64/+26
| | | | | | | | | | This reverts commit 6b1a118eaaab405eeef0cf3c0488a2747af562ba. We found that this patch does not play well with currently released cifs.ko code, so after discussions with Jeff Layton and Steve french we decided it is best to back it off and re-think a better approach. Jeff will send new patches later, but for now it is better to just revert to the previous code (This used to be commit c5b7d538ecfa93377ff20704633ac57dbf8dd530)
* Fix bug #5247 "Wildcard expansion in mget is broken"Jeremy Allison2008-02-081-71/+38
| | | | | | for 3.2. Jeremy. (This used to be commit 69aa0766203cb88b8b07e364f7148ade809f5ce6)
* Convert receive_smb_raw to NTSTATUSVolker Lendecke2008-02-021-3/+24
| | | | (This used to be commit ba771bd858602452a9e58c3aab1336f2ac8a25ef)
* Fix bogus uninitialized variable warningsVolker Lendecke2008-01-252-2/+2
| | | | (This used to be commit 71d6580c837adcc2cddcdff561f6fb09701501ee)
* Fix Coverity ID 463Volker Lendecke2008-01-241-1/+3
| | | | (This used to be commit 21d126c56a633d2d72ffad08db7331ecc0ee3c0c)
* strtok -> strtok_rVolker Lendecke2008-01-234-8/+13
| | | | (This used to be commit fd34ce437057bb34cdc37f4b066e424000d36789)
* Fix error message for new allinfo command.Jeremy Allison2008-01-181-1/+1
| | | | | Jeremy. (This used to be commit 3a1bcbfa7ca2b55265eb486e2b7c740e04775698)
* Add the "allinfo" command to smbclientVolker Lendecke2008-01-181-0/+88
| | | | | Modeled after the Samba4 allinfo command (This used to be commit 3fa0cf3fe5f819f6e76df6f7cef3bb4e1c307a52)
* Adds support for cifs.resolver upcall.Igor Mammedov2008-01-161-2/+61
| | | | | | | | | | | | | | Here is a patch for userspace cifs.spnego handler that adds support for cifs.resolver upcall used in DFS code. Any comments are appreciated. ############################# Cifs upcall with key type cifs.resolver is used for resolving server names in handling DFS refferals. Signed-off-by: Igor Mammedov <niallain@gmail.com> (This used to be commit dfc80b4f1c00c131ba8077432bfe79f22f63ccd1)
* Correct comment. Default debug level of smbclient is 1, not 0.Karolin Seeger2008-01-091-1/+1
| | | | (This used to be commit 9c81125e6d3df49806e1c0b39409ffac8e3a0fd1)
* Merge branch 'v3-2-test' of git://git.samba.org/samba into v3-2-testSteve French2008-01-052-6/+31
|\ | | | | | | (This used to be commit d3b91e494c824a65506ba1bc1cba5bba77000530)
| * Use the common -e option not the custom one.Jeremy Allison2008-01-051-1/+1
| | | | | | | | | | Jeremy. (This used to be commit ef1bbcdfb98da185c07005dd7810039f99f0685f)
| * Add general '-e' option to enable smb encryptionJeremy Allison2008-01-051-1/+20
| | | | | | | | | | | | on tools. Jeremy. (This used to be commit 757653966fc1384159bd2d57c5670cd8af0cae96)
| * Merge branch 'v3-2-test' of ssh://jra@git.samba.org/data/git/samba into ↵Jeremy Allison2008-01-041-2/+8
| |\ | | | | | | | | | | | | | | | v3-2-test (This used to be commit 3a45f62310faf63cd6864d2cb10f941492eda818)
| | * Fix idle client reading keepalive.Jeremy Allison2008-01-041-1/+1
| | | | | | | | | | | | | | | Jeremy. (This used to be commit 4ce0bf785635371e2923217b1e0b7f30986c25bb)
| | * Refactor the crypto code after a very helpful conversationJeremy Allison2008-01-041-2/+8
| | | | | | | | | | | | | | | | | | | | | with Volker. Mostly making sure we have data on the incoming packet type, not stored in the smb header. Jeremy. (This used to be commit c4e5a505043965eec77b5bb9bc60957e8f3b97c8)