cmds.c
来自「一个类似windows」· C语言 代码 · 共 2,374 行 · 第 1/4 页
C
2,374 行
argc++, argv[1] = NULL;
if (argc < 3)
argc++, argv[2] = "-";
if (argc > 3) {
printf("usage: %s remote-directory local-file\n", argv[0]);
(void) fflush(stdout);
code = -1;
return;
}
cmd = argv[0][0] == 'n' ? "NLST" : "LIST";
// cmd = argv[0][0] == 'n' ? "NLST -CF" : "NLST -CF";
if (strcmp(argv[2], "-") && !globulize(&argv[2])) {
code = -1;
return;
}
if (strcmp(argv[2], "-") && *argv[2] != '|')
if (!globulize(&argv[2]) || !confirm("output to local-file:", argv[2])) {
code = -1;
return;
}
recvrequest(cmd, argv[2], argv[1], "w", 0);
}
/*
* Get a directory listing
* of multiple remote files.
*/
void mls(argc, argv)
const char *argv[];
{
const char *cmd, *dest;
char mode[1];
int ointer, i;
extern jmp_buf jabort;
if (argc < 2) {
(void) strcat(line, " ");
printf("(remote-files) ");
(void) fflush(stdout);
(void) gets(&line[strlen(line)]);
makeargv();
argc = margc;
argv = margv;
}
if (argc < 3) {
(void) strcat(line, " ");
printf("(local-file) ");
(void) fflush(stdout);
(void) gets(&line[strlen(line)]);
makeargv();
argc = margc;
argv = margv;
}
if (argc < 3) {
printf("usage:%s remote-files local-file\n", argv[0]);
(void) fflush(stdout);
code = -1;
return;
}
dest = argv[argc - 1];
argv[argc - 1] = NULL;
if (strcmp(dest, "-") && *dest != '|')
if (!globulize(&dest) || !confirm("output to local-file:", dest)) {
code = -1;
return;
}
cmd = argv[0][1] == 'l' ? "NLST" : "LIST";
mname = argv[0];
mflag = 1;
// oldintr = signal(SIGINT, mabort);
(void) setjmp(jabort);
for (i = 1; mflag && i < argc-1; ++i) {
*mode = (i == 1) ? 'w' : 'a';
recvrequest(cmd, dest, argv[i], mode, 0);
if (!mflag && fromatty) {
ointer = interactive;
interactive = 1;
if (confirm("Continue with", argv[0])) {
mflag ++;
}
interactive = ointer;
}
}
// (void) signal(SIGINT, oldintr);
mflag = 0;
}
/*
* Do a shell escape
*/
/*ARGSUSED*/
void shell(argc, argv)
char *argv[];
{
#if 0
int pid;
sig_t (*old1)(), (*old2)();
char shellnam[40], *shell, *namep;
union wait status;
old1 = signal (SIGINT, SIG_IGN);
old2 = signal (SIGQUIT, SIG_IGN);
if ((pid = fork()) == 0) {
for (pid = 3; pid < 20; pid++)
(void) close(pid);
(void) signal(SIGINT, SIG_DFL);
(void) signal(SIGQUIT, SIG_DFL);
shell = getenv("SHELL");
if (shell == NULL)
shell = _PATH_BSHELL;
namep = rindex(shell,'/');
if (namep == NULL)
namep = shell;
(void) strcpy(shellnam,"-");
(void) strcat(shellnam, ++namep);
if (strcmp(namep, "sh") != 0)
shellnam[0] = '+';
if (debug) {
printf ("%s\n", shell);
(void) fflush (stdout);
}
if (argc > 1) {
execl(shell,shellnam,"-c",altarg,(char *)0);
}
else {
execl(shell,shellnam,(char *)0);
}
perror(shell);
code = -1;
exit(1);
}
if (pid > 0)
while (wait(&status) != pid)
;
(void) signal(SIGINT, old1);
(void) signal(SIGQUIT, old2);
if (pid == -1) {
perror("Try again later");
code = -1;
}
else {
code = 0;
}
#endif
char * AppName;
char ShellCmd[MAX_PATH];
char CmdLine[MAX_PATH];
int i;
PROCESS_INFORMATION ProcessInformation;
BOOL Result;
STARTUPINFO StartupInfo;
char ShellName[] = "COMSPEC";
int NumBytes;
NumBytes = GetEnvironmentVariable( ShellName, ShellCmd, MAX_PATH);
if (NumBytes == 0)
{
return;
}
AppName = ShellCmd;
strcpy( CmdLine, ShellCmd );
if (argc > 1)
{
strncat(CmdLine, " /C", MAX_PATH);
}
for (i=1; i<argc; i++)
{
strncat(CmdLine, " ", MAX_PATH);
strncat(CmdLine, argv[i], MAX_PATH);
}
StartupInfo.cb = sizeof( StartupInfo );
StartupInfo.lpReserved = NULL;
StartupInfo.lpDesktop = NULL;
StartupInfo.lpTitle = NULL;
StartupInfo.dwX = 0;
StartupInfo.dwY = 0;
StartupInfo.dwXSize = 0;
StartupInfo.dwYSize = 0;
StartupInfo.dwFlags = 0;
StartupInfo.wShowWindow = 0;
StartupInfo.cbReserved2 = 0;
StartupInfo.lpReserved2 = NULL;
Result = CreateProcess( AppName, // cmd name
CmdLine, // cmd line arguments
NULL,
NULL, // security attributes
FALSE, // inherit flags
0, // Creation flags
NULL, // Environment
NULL, // Current directory
&StartupInfo, // Startup info structure
&ProcessInformation); // processInfo structure
if (Result)
{
WaitForSingleObject( ProcessInformation.hProcess, 0xffffffff);
CloseHandle( ProcessInformation.hProcess);
}
}
/*
* Send new user information (re-login)
*/
void user(argc, argv)
int argc;
const char **argv;
{
char acct[80], *getpass();
int n, aflag = 0;
if (argc < 2) {
(void) strcat(line, " ");
printf("(username) ");
(void) fflush(stdout);
(void) gets(&line[strlen(line)]);
makeargv();
argc = margc;
argv = margv;
}
if (argc > 4) {
printf("usage: %s username [password] [account]\n", argv[0]);
(void) fflush(stdout);
code = -1;
return;
}
n = command("USER %s", argv[1]);
if (n == CONTINUE) {
if (argc < 3 )
argv[2] = getpass("Password: "), argc++;
n = command("PASS %s", argv[2]);
}
if (n == CONTINUE) {
if (argc < 4) {
printf("Account: "); (void) fflush(stdout);
(void) fflush(stdout);
(void) fgets(acct, sizeof(acct) - 1, stdin);
acct[strlen(acct) - 1] = '\0';
argv[3] = acct; argc++;
}
n = command("ACCT %s", argv[3]);
aflag++;
}
if (n != COMPLETE) {
fprintf(stdout, "Login failed.\n");
(void) fflush(stdout);
return;
}
if (!aflag && argc == 4) {
(void) command("ACCT %s", argv[3]);
}
}
/*
* Print working directory.
*/
/*VARARGS*/
void pwd()
{
int oldverbose = verbose;
/*
* If we aren't verbose, this doesn't do anything!
*/
verbose = 1;
if (command("PWD") == ERROR && code == 500) {
printf("PWD command not recognized, trying XPWD\n");
(void) fflush(stdout);
(void) command("XPWD");
}
verbose = oldverbose;
}
/*
* Make a directory.
*/
void makedir(argc, argv)
const char *argv[];
{
if (argc < 2) {
(void) strcat(line, " ");
printf("(directory-name) ");
(void) fflush(stdout);
(void) gets(&line[strlen(line)]);
makeargv();
argc = margc;
argv = margv;
}
if (argc < 2) {
printf("usage: %s directory-name\n", argv[0]);
(void) fflush(stdout);
code = -1;
return;
}
if (command("MKD %s", argv[1]) == ERROR && code == 500) {
if (verbose) {
printf("MKD command not recognized, trying XMKD\n");
(void) fflush(stdout);
}
(void) command("XMKD %s", argv[1]);
}
}
/*
* Remove a directory.
*/
void removedir(argc, argv)
const char *argv[];
{
if (argc < 2) {
(void) strcat(line, " ");
printf("(directory-name) ");
(void) fflush(stdout);
(void) gets(&line[strlen(line)]);
makeargv();
argc = margc;
argv = margv;
}
if (argc < 2) {
printf("usage: %s directory-name\n", argv[0]);
(void) fflush(stdout);
code = -1;
return;
}
if (command("RMD %s", argv[1]) == ERROR && code == 500) {
if (verbose) {
printf("RMD command not recognized, trying XRMD\n");
(void) fflush(stdout);
}
(void) command("XRMD %s", argv[1]);
}
}
/*
* Send a line, verbatim, to the remote machine.
*/
void quote(argc, argv)
const char *argv[];
{
int i;
char buf[BUFSIZ];
if (argc < 2) {
(void) strcat(line, " ");
printf("(command line to send) ");
(void) fflush(stdout);
(void) gets(&line[strlen(line)]);
makeargv();
argc = margc;
argv = margv;
}
if (argc < 2) {
printf("usage: %s line-to-send\n", argv[0]);
(void) fflush(stdout);
code = -1;
return;
}
(void) strcpy(buf, argv[1]);
for (i = 2; i < argc; i++) {
(void) strcat(buf, " ");
(void) strcat(buf, argv[i]);
}
if (command(buf) == PRELIM) {
while (getreply(0) == PRELIM);
}
}
/*
* Send a SITE command to the remote machine. The line
* is sent almost verbatim to the remote machine, the
* first argument is changed to SITE.
*/
void site(argc, argv)
const char *argv[];
{
int i;
char buf[BUFSIZ];
if (argc < 2) {
(void) strcat(line, " ");
printf("(arguments to SITE command) ");
(void) fflush(stdout);
(void) gets(&line[strlen(line)]);
makeargv();
argc = margc;
argv = margv;
}
if (argc < 2) {
printf("usage: %s line-to-send\n", argv[0]);
(void) fflush(stdout);
code = -1;
return;
}
(void) strcpy(buf, "SITE ");
(void) strcat(buf, argv[1]);
for (i = 2; i < argc; i++) {
(void) strcat(buf, " ");
(void) strcat(buf, argv[i]);
}
if (command(buf) == PRELIM) {
while (getreply(0) == PRELIM);
}
}
void do_chmod(argc, argv)
const char *argv[];
{
if (argc == 2) {
printf("usage: %s mode file-name\n", argv[0]);
(void) fflush(stdout);
code = -1;
return;
}
if (argc < 3) {
(void) strcat(line, " ");
printf("(mode and file-name) ");
(void) fflush(stdout);
(void) gets(&line[strlen(line)]);
makeargv();
argc = margc;
argv = margv;
}
if (argc != 3) {
printf("usage: %s mode file-name\n", argv[0]);
(void) fflush(stdout);
code = -1;
return;
}
(void)command("SITE CHMOD %s %s", argv[1], argv[2]);
}
void do_umask(argc, argv)
char *argv[];
{
int oldverbose = verbose;
verbose = 1;
(void) command(argc == 1 ? "SITE UMASK" : "SITE UMASK %s", argv[1]);
verbose = oldverbose;
}
void idle(argc, argv)
char *argv[];
{
int oldverbose = verbose;
verbose = 1;
(void) command(argc == 1 ? "SITE IDLE" : "SITE IDLE %s", argv[1]);
verbose = oldverbose;
}
/*
* Ask the other side for help.
*/
void rmthelp(argc, argv)
char *argv[];
{
int oldverbose = verbose;
verbose = 1;
(void) command(argc == 1 ? "HELP" : "HELP %s", argv[1]);
verbose = oldverbose;
}
/*
* Terminate session and exit.
*/
/*VARARGS*/
void quit()
{
if (connected)
disconnect();
pswitch(1);
if (connected) {
disconnect();
}
exit(0);
}
/*
* Terminate session, but don't exit.
*/
void disconnect()
{
extern int cout;
extern int data;
if (!connected)
return;
(void) command("QUIT");
cout = (int) NULL;
connected = 0;
data = -1;
if (!proxy) {
macnum = 0;
}
}
int confirm(cmd, file)
const char *cmd, *file;
{
char line[BUFSIZ];
if (!interactive)
return (1);
printf("%s %s? ", cmd, file);
(void) fflush(stdout);
(void) gets(line);
return (*line != 'n' && *line != 'N');
}
#if 0
static void fatal(msg)
char *msg;
{
fprintf(stderr, "ftp: %s\n", msg);
exit(1);
}
#endif
/*
* Glob a local file name specification with
* the expectation of a single return value.
* Can't control multiple values being expanded
* from the expression, we return only the first.
*/
int globulize(cpp)
const char **cpp;
{
char **globbed;
if (!doglob)
return (1);
globbed = glob(*cpp);
if (globerr != NULL) {
printf("%s: %s\n", *cpp, globerr);
(void) fflush(stdout);
if (globbed) {
blkfree(globbed);
free((char *)globbed);
}
return (0);
}
if (globbed) {
*cpp = *globbed++;
/* don't waste too much memory */
if (*globbed) {
blkfree(globbed);
free((char *)globbed);
}
}
return (1);
}
void account(argc,argv)
int argc;
char **argv;
{
char acct[50], *getpass(), *ap;
if (argc > 1) {
++argv;
--argc;
(void) strncpy(acct,*argv,49);
acct[49] = '\0';
while (argc > 1) {
--argc;
++argv;
(void) strncat(acct,*argv, 49-strlen(acct));
}
ap = acct;
}
else {
ap = getpass("Account:");
}
(void) command("ACCT %s", ap);
}
jmp_buf abortprox;
#if 0
static void
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?