aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-11-12 23:04:44 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-11-12 23:04:44 +0000
commitc508d702586d50198213a457023aa8a95c73f279 (patch)
tree10de8f2fa22847f8110b57e9a8d22ded60288c17 /lib
parentf5971f54ff264218446363bb5003d44ec9b88c98 (diff)
downloadgnurl-c508d702586d50198213a457023aa8a95c73f279.tar.gz
gnurl-c508d702586d50198213a457023aa8a95c73f279.tar.bz2
gnurl-c508d702586d50198213a457023aa8a95c73f279.zip
Fixed a remaining problem with doing SFTP directory listings on a re-used
persistent connection. Mentioned by Immanuel Gregoire on the mailing list.
Diffstat (limited to 'lib')
-rw-r--r--lib/ssh.c65
-rw-r--r--lib/urldata.h1
2 files changed, 33 insertions, 33 deletions
diff --git a/lib/ssh.c b/lib/ssh.c
index faa288e0e..922422ba0 100644
--- a/lib/ssh.c
+++ b/lib/ssh.c
@@ -1340,9 +1340,18 @@ static CURLcode ssh_statemach_act(struct connectdata *conn)
sshc->actualcode = CURLE_OUT_OF_MEMORY;
break;
}
- result = Curl_client_write(conn, CLIENTWRITE_BODY, tmpLine, 0);
+ result = Curl_client_write(conn, CLIENTWRITE_BODY,
+ tmpLine, sshc->readdir_len+1);
Curl_safefree(tmpLine);
+ if(result) {
+ state(conn, SSH_STOP);
+ break;
+ }
+ /* since this counts what we send to the client, we include the newline
+ in this counter */
+ data->reqdata.keep.bytecount += sshc->readdir_len+1;
+
/* output debug output if that is requested */
if(data->set.verbose) {
Curl_debug(data, CURLINFO_DATA_OUT, sshc->readdir_filename,
@@ -1450,16 +1459,25 @@ static CURLcode ssh_statemach_act(struct connectdata *conn)
sshc->readdir_totalLen -
sshc->readdir_currLen, "\n");
result = Curl_client_write(conn, CLIENTWRITE_BODY,
- sshc->readdir_line, 0);
+ sshc->readdir_line,
+ sshc->readdir_currLen);
- /* output debug output if that is requested */
- if(data->set.verbose) {
- Curl_debug(data, CURLINFO_DATA_OUT, sshc->readdir_line,
- sshc->readdir_currLen, conn);
+ if(result == CURLE_OK) {
+
+ /* output debug output if that is requested */
+ if(data->set.verbose) {
+ Curl_debug(data, CURLINFO_DATA_OUT, sshc->readdir_line,
+ sshc->readdir_currLen, conn);
+ }
+ data->reqdata.keep.bytecount += sshc->readdir_currLen;
}
Curl_safefree(sshc->readdir_line);
sshc->readdir_line = NULL;
- state(conn, SSH_SFTP_READDIR);
+ if(result) {
+ state(conn, SSH_STOP);
+ }
+ else
+ state(conn, SSH_SFTP_READDIR);
break;
case SSH_SFTP_READDIR_DONE:
@@ -1818,12 +1836,8 @@ static CURLcode ssh_easy_statemach(struct connectdata *conn)
struct ssh_conn *sshc = &conn->proto.sshc;
CURLcode result = CURLE_OK;
- while(sshc->state != SSH_STOP) {
+ while((sshc->state != SSH_STOP) && !result)
result = ssh_statemach_act(conn);
- if(result) {
- break;
- }
- }
return result;
}
@@ -1844,9 +1858,6 @@ static CURLcode ssh_init(struct connectdata *conn)
data->reqdata.proto.ssh = ssh;
- /* get some initial data into the ssh struct */
- ssh->bytecountp = &data->reqdata.keep.bytecount;
-
return CURLE_OK;
}
@@ -1978,17 +1989,6 @@ static CURLcode ssh_do(struct connectdata *conn, bool *done)
*done = FALSE; /* default to false */
- /*
- * Since connections can be re-used between SessionHandles, this might be a
- * connection already existing but on a fresh SessionHandle struct so we must
- * make sure we have a good 'struct SSHPROTO' to play with. For new
- * connections, the struct SSHPROTO is allocated and setup in the
- * Curl_ssh_connect() function.
- */
- res = ssh_init(conn);
- if(res)
- return res;
-
data->reqdata.size = -1; /* make sure this is unknown at this point */
Curl_pgrsSetUploadCounter(data, 0);
@@ -2011,6 +2011,9 @@ static CURLcode scp_disconnect(struct connectdata *conn)
{
CURLcode result;
+ Curl_safefree(conn->data->reqdata.proto.ssh);
+ conn->data->reqdata.proto.ssh = NULL;
+
state(conn, SSH_SESSION_DISCONNECT);
result = ssh_easy_statemach(conn);
@@ -2044,11 +2047,8 @@ static CURLcode scp_done(struct connectdata *conn, CURLcode status,
if(done) {
struct SSHPROTO *sftp_scp = conn->data->reqdata.proto.ssh;
-
Curl_safefree(sftp_scp->path);
-
- Curl_safefree(sftp_scp);
- conn->data->reqdata.proto.ssh = NULL;
+ sftp_scp->path = NULL;
Curl_pgrsDone(conn);
}
@@ -2154,6 +2154,9 @@ static CURLcode sftp_disconnect(struct connectdata *conn)
DEBUGF(infof(conn->data, "SSH DISCONNECT starts now\n"));
+ Curl_safefree(conn->data->reqdata.proto.ssh);
+ conn->data->reqdata.proto.ssh = NULL;
+
state(conn, SSH_SFTP_SHUTDOWN);
result = ssh_easy_statemach(conn);
@@ -2195,8 +2198,6 @@ static CURLcode sftp_done(struct connectdata *conn, CURLcode status,
}
if(done) {
- Curl_safefree(conn->data->reqdata.proto.ssh);
- conn->data->reqdata.proto.ssh = NULL;
Curl_pgrsDone(conn);
}
diff --git a/lib/urldata.h b/lib/urldata.h
index dbda3277c..d28108d34 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -490,7 +490,6 @@ typedef enum {
Everything that is strictly related to a connection is banned from this
struct. */
struct SSHPROTO {
- curl_off_t *bytecountp;
char *path; /* the path we operate on */
};