mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-19 03:51:02 -05:00
Next phase of general SFTP reworking: psftp.c is now a platform-
independent source file. All Windowsisms have been moved out to winsftp.c. [originally from svn r3418]
This commit is contained in:
108
psftp.c
108
psftp.c
@ -2,8 +2,6 @@
|
||||
* psftp.c: front end for PSFTP.
|
||||
*/
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdarg.h>
|
||||
@ -12,6 +10,7 @@
|
||||
|
||||
#define PUTTY_DO_GLOBALS
|
||||
#include "putty.h"
|
||||
#include "psftp.h"
|
||||
#include "storage.h"
|
||||
#include "ssh.h"
|
||||
#include "sftp.h"
|
||||
@ -1024,34 +1023,21 @@ static int sftp_cmd_open(struct sftp_command *cmd)
|
||||
|
||||
static int sftp_cmd_lcd(struct sftp_command *cmd)
|
||||
{
|
||||
char *currdir;
|
||||
int len;
|
||||
char *currdir, *errmsg;
|
||||
|
||||
if (cmd->nwords < 2) {
|
||||
printf("lcd: expects a local directory name\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (!SetCurrentDirectory(cmd->words[1])) {
|
||||
LPVOID message;
|
||||
int i;
|
||||
FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER |
|
||||
FORMAT_MESSAGE_FROM_SYSTEM |
|
||||
FORMAT_MESSAGE_IGNORE_INSERTS,
|
||||
NULL, GetLastError(),
|
||||
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
|
||||
(LPTSTR)&message, 0, NULL);
|
||||
i = strcspn((char *)message, "\n");
|
||||
printf("lcd: unable to change directory: %.*s\n", i, (LPCTSTR)message);
|
||||
LocalFree(message);
|
||||
errmsg = psftp_lcd(cmd->words[1]);
|
||||
if (errmsg) {
|
||||
printf("lcd: unable to change directory: %s\n", errmsg);
|
||||
sfree(errmsg);
|
||||
return 0;
|
||||
}
|
||||
|
||||
currdir = snewn(256, char);
|
||||
len = GetCurrentDirectory(256, currdir);
|
||||
if (len > 256)
|
||||
currdir = sresize(currdir, len, char);
|
||||
GetCurrentDirectory(len, currdir);
|
||||
currdir = psftp_getcwd();
|
||||
printf("New local directory is %s\n", currdir);
|
||||
sfree(currdir);
|
||||
|
||||
@ -1061,13 +1047,8 @@ static int sftp_cmd_lcd(struct sftp_command *cmd)
|
||||
static int sftp_cmd_lpwd(struct sftp_command *cmd)
|
||||
{
|
||||
char *currdir;
|
||||
int len;
|
||||
|
||||
currdir = snewn(256, char);
|
||||
len = GetCurrentDirectory(256, currdir);
|
||||
if (len > 256)
|
||||
currdir = sresize(currdir, len, char);
|
||||
GetCurrentDirectory(len, currdir);
|
||||
currdir = psftp_getcwd();
|
||||
printf("Current local directory is %s\n", currdir);
|
||||
sfree(currdir);
|
||||
|
||||
@ -1108,9 +1089,10 @@ static struct sftp_cmd_lookup {
|
||||
* in ASCII order.
|
||||
*/
|
||||
{
|
||||
"!", TRUE, "run a local Windows command",
|
||||
"!", TRUE, "run a local command",
|
||||
"<command>\n"
|
||||
" Runs a local Windows command. For example, \"!del myfile\".\n",
|
||||
/* FIXME: this example is crap for non-Windows. */
|
||||
" Runs a local command. For example, \"!del myfile\".\n",
|
||||
sftp_cmd_pling
|
||||
},
|
||||
{
|
||||
@ -1620,20 +1602,6 @@ void ldisc_send(void *handle, char *buf, int len, int interactive)
|
||||
assert(len == 0);
|
||||
}
|
||||
|
||||
/*
|
||||
* Be told what socket we're supposed to be using.
|
||||
*/
|
||||
static SOCKET sftp_ssh_socket;
|
||||
char *do_select(SOCKET skt, int startup)
|
||||
{
|
||||
if (startup)
|
||||
sftp_ssh_socket = skt;
|
||||
else
|
||||
sftp_ssh_socket = INVALID_SOCKET;
|
||||
return NULL;
|
||||
}
|
||||
extern int select_result(WPARAM, LPARAM);
|
||||
|
||||
/*
|
||||
* In psftp, all agent requests should be synchronous, so this is a
|
||||
* never-called stub.
|
||||
@ -1729,13 +1697,8 @@ int sftp_recvdata(char *buf, int len)
|
||||
}
|
||||
|
||||
while (outlen > 0) {
|
||||
fd_set readfds;
|
||||
|
||||
FD_ZERO(&readfds);
|
||||
FD_SET(sftp_ssh_socket, &readfds);
|
||||
if (select(1, &readfds, NULL, NULL, NULL) < 0)
|
||||
if (ssh_sftp_loop_iteration() < 0)
|
||||
return 0; /* doom */
|
||||
select_result((WPARAM) sftp_ssh_socket, (LPARAM) FD_READ);
|
||||
}
|
||||
|
||||
return 1;
|
||||
@ -1746,42 +1709,6 @@ int sftp_senddata(char *buf, int len)
|
||||
return 1;
|
||||
}
|
||||
|
||||
/*
|
||||
* Loop through the ssh connection and authentication process.
|
||||
*/
|
||||
static void ssh_sftp_init(void)
|
||||
{
|
||||
if (sftp_ssh_socket == INVALID_SOCKET)
|
||||
return;
|
||||
while (!back->sendok(backhandle)) {
|
||||
fd_set readfds;
|
||||
FD_ZERO(&readfds);
|
||||
FD_SET(sftp_ssh_socket, &readfds);
|
||||
if (select(1, &readfds, NULL, NULL, NULL) < 0)
|
||||
return; /* doom */
|
||||
select_result((WPARAM) sftp_ssh_socket, (LPARAM) FD_READ);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Initialize the Win$ock driver.
|
||||
*/
|
||||
static void init_winsock(void)
|
||||
{
|
||||
WORD winsock_ver;
|
||||
WSADATA wsadata;
|
||||
|
||||
winsock_ver = MAKEWORD(1, 1);
|
||||
if (WSAStartup(winsock_ver, &wsadata)) {
|
||||
fprintf(stderr, "Unable to initialise WinSock");
|
||||
cleanup_exit(1);
|
||||
}
|
||||
if (LOBYTE(wsadata.wVersion) != 1 || HIBYTE(wsadata.wVersion) != 1) {
|
||||
fprintf(stderr, "WinSock version is incompatible with 1.1");
|
||||
cleanup_exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Short description of parameters.
|
||||
*/
|
||||
@ -1963,7 +1890,12 @@ static int psftp_connect(char *userhost, char *user, int portnumber)
|
||||
logctx = log_init(NULL, &cfg);
|
||||
back->provide_logctx(backhandle, logctx);
|
||||
console_provide_logctx(logctx);
|
||||
ssh_sftp_init();
|
||||
while (!back->sendok(backhandle)) {
|
||||
if (ssh_sftp_loop_iteration() < 0) {
|
||||
fprintf(stderr, "ssh_init: error during SSH connection setup\n");
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
if (verbose && realhost != NULL)
|
||||
printf("Connected to %s\n", realhost);
|
||||
return 0;
|
||||
@ -1983,7 +1915,7 @@ void cmdline_error(char *p, ...)
|
||||
/*
|
||||
* Main program. Parse arguments etc.
|
||||
*/
|
||||
int main(int argc, char *argv[])
|
||||
int psftp_main(int argc, char *argv[])
|
||||
{
|
||||
int i;
|
||||
int portnumber = 0;
|
||||
@ -1996,7 +1928,6 @@ int main(int argc, char *argv[])
|
||||
flags = FLAG_STDERR | FLAG_INTERACTIVE | FLAG_SYNCAGENT;
|
||||
cmdline_tooltype = TOOLTYPE_FILETRANSFER;
|
||||
ssh_get_line = &console_get_line;
|
||||
init_winsock();
|
||||
sk_init();
|
||||
|
||||
userhost = user = NULL;
|
||||
@ -2064,7 +1995,6 @@ int main(int argc, char *argv[])
|
||||
back->special(backhandle, TS_EOF);
|
||||
sftp_recvdata(&ch, 1);
|
||||
}
|
||||
WSACleanup();
|
||||
random_save_seed();
|
||||
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user