cmds.c
上传用户:sddyfurun
上传日期:2007-01-04
资源大小:525k
文件大小:49k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. /* Copyright (c) 1985, 1989 Regents of the University of California.         */
  2. /* All rights reserved.                                                      */
  3. /*                                                                           */
  4. /* Redistribution and use in source and binary forms, with or without        */
  5. /* modification, are permitted provided that the following conditions        */
  6. /* are met:                                                                  */
  7. /*                                                                           */
  8. /* 1. Redistributions of source code must retain the above copyright         */
  9. /*    notice, this list of conditions and the following disclaimer.          */
  10. /* 2. Redistributions in binary form must reproduce the above copyright      */
  11. /*    notice, this list of conditions and the following disclaimer in the    */
  12. /*    documentation and/or other materials provided with the distribution.   */
  13. /* 3. All advertising materials mentioning features or use of this software  */
  14. /*    must display the following acknowledgement:                            */
  15. /*      This product includes software developed by the University of        */
  16. /*      California, Berkeley and its contributors.                           */
  17. /* 4. Neither the name of the University nor the names of its contributors   */
  18. /*    may be used to endorse or promote products derived from this software  */
  19. /*    without specific prior written permission.                             */
  20. /*                                                                           */
  21. /* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND   */
  22. /* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE     */
  23. /* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE*/
  24. /* ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE  */
  25. /* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL*/
  26. /* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS   */
  27. /* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)     */
  28. /* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT*/
  29. /* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY */
  30. /* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF    */
  31. /* SUCH DAMAGE.                                                              */
  32. /* FTP User Program -- Command Routines.                                     */
  33. #include "ftp_var.h"
  34. #define DONT_NEED_SIGBLOCK
  35. #define DONT_NEED_SIGPAUSE
  36. #define DONT_NEED_SIGUNBLOCK
  37. #define DONT_NEED_SIGPENDING
  38. #include "sigfix.h"
  39. #include <arpa/ftp.h>
  40. #include <ctype.h>
  41. #include "pathnames.h"
  42. #ifndef HAVE_GETCWD
  43. extern char *getwd();
  44. #endif
  45. extern int command();
  46. extern char *home;
  47. extern char *globerr;
  48. extern char **ftpglob();
  49. extern char *remglob();
  50. extern int  errno;
  51. extern off_t restart_point;
  52. extern char reply_string[];
  53. char *mname;
  54. jmp_buf jabort;
  55. char *dotrans(), *domap();
  56. /*
  57.  * Options and other state info.
  58.  */
  59. int trace; /* trace packets exchanged */
  60. int hash; /* print # for each buffer transferred */
  61. int sendport; /* use PORT cmd for each data connection */
  62. int verbose; /* print messages coming back from server */
  63. int connected; /* connected to server */
  64. int fromatty; /* input is from a terminal */
  65. int interactive; /* interactively prompt on m* cmds */
  66. int debug; /* debugging level */
  67. int bell; /* ring bell on cmd completion */
  68. int doglob; /* glob local file names */
  69. int autologin; /* establish user account on connection */
  70. int proxy; /* proxy server connection active */
  71. int proxflag; /* proxy connection exists */
  72. int sunique; /* store files on server with unique name */
  73. int runique; /* store local files with unique name */
  74. int mcase; /* map upper to lower case for mget names */
  75. int ntflag; /* use ntin ntout tables for name translation */
  76. int mapflag; /* use mapin mapout templates on file names */
  77. int code; /* return/reply code for ftp command */
  78. int crflag; /* if 1, strip car. rets. on ascii gets */
  79. char pasv[64]; /* passive port for proxy data connection */
  80. char *altarg; /* argv[1] with no shell-like preprocessing  */
  81. char ntin[17]; /* input translation table */
  82. char ntout[17]; /* output translation table */
  83. char mapin[MAXPATHLEN]; /* input map template */
  84. char mapout[MAXPATHLEN]; /* output map template */
  85. char typename[32]; /* name of file transfer type */
  86. int type; /* requested file transfer type */
  87. int curtype; /* current file transfer type */
  88. char structname[32]; /* name of file transfer structure */
  89. int stru; /* file transfer structure */
  90. char formname[32]; /* name of file transfer format */
  91. int form; /* file transfer format */
  92. char modename[32]; /* name of file transfer mode */
  93. int mode; /* file transfer mode */
  94. char bytename[32]; /* local byte size in ascii */
  95. int bytesize; /* local byte size in binary */
  96. char *hostname; /* name of host connected to */
  97. int unix_server; /* server is unix, can use binary for ascii */
  98. int unix_proxy; /* proxy is unix, can use binary for ascii */
  99. struct servent *sp; /* service spec for tcp/ftp */
  100. int ftp_s_port;         /* save ftp's sp->s_port value here */
  101. char line[200]; /* input line buffer */
  102. char *stringbase; /* current scan point in line buffer */
  103. char argbuf[200]; /* argument storage buffer */
  104. char *argbase; /* current storage point in arg buffer */
  105. int margc; /* count of arguments on input line */
  106. char *margv[20]; /* args parsed from input line */
  107. int     cpend;                  /* flag: if != 0, then pending server reply */
  108. int mflag; /* flag: if != 0, then active multi command */
  109. int options; /* used during socket creation */
  110. jmp_buf toplevel; /* non-local goto stuff for cmd scanner */
  111. int macnum; /* number of defined macros */
  112. struct macel macros[16];
  113. char macbuf[4096];
  114. /* `Another' gets another argument, and stores the new argc and argv.        */
  115. /* It reverts to the top level (via main.c's intr()) on EOF/error.           */
  116. /* Returns false if no new arguments have been added.                        */
  117. int another(int *pargc, char ***pargv, char *prompt) {
  118.   int len = strlen(line), ret;
  119.   extern sig_t intr();
  120.   if (len >= sizeof(line) - 3) {
  121.     printf("sorry, arguments too longn");
  122.     intr();
  123.   }
  124.   printf("(%s) ", prompt);
  125.   line[len++] = ' ';
  126.   if (fgets(&line[len], sizeof(line) - len, stdin) == NULL) intr();
  127.   len += strlen(&line[len]);
  128.   if (len > 0 && line[len - 1] == 'n') line[len - 1] = '';
  129.   makeargv();
  130.   ret = margc > *pargc;
  131.   *pargc = margc;
  132.   *pargv = margv;
  133.   return ret;
  134. }
  135. /* Connect to peer server and auto-login, if possible.                       */
  136. void setpeer(int argc, char *argv[]) {
  137.   char *host, *hookup();
  138.   short port;
  139.   if (connected) {
  140.     printf("Already connected to %s, use close first.n", hostname);
  141.     code = -1;
  142.     return;
  143.   }
  144.   if (argc < 2)
  145.     another(&argc, &argv, "to");
  146.   if (argc < 2 || argc > 3) {
  147.     printf("usage: %s host-name [port]n", argv[0]);
  148.     code = -1;
  149.     return;
  150.   }
  151.   /* port = sp->s_port; */
  152.   port = ftp_s_port;
  153.   if (argc > 2) {
  154.     port = atoi(argv[2]);
  155.     if (port <= 0) {
  156.       printf("%s: bad port number-- %sn", argv[1], argv[2]);
  157.       printf ("usage: %s host-name [port]n", argv[0]);
  158.       code = -1;
  159.       return;
  160.     }
  161.     port = htons(port);
  162.   }
  163.   host = hookup(argv[1], port);
  164.   if (host) {
  165. #if NBBY == 8
  166.     int overbose;
  167. #endif
  168.     connected = 1;
  169.     /* Set up defaults for FTP.                                          */
  170.     strcpy(typename, "ascii"), type = TYPE_A;
  171.     curtype = TYPE_A;
  172.     strcpy(formname, "non-print"), form = FORM_N;
  173.     strcpy(modename, "stream"), mode = MODE_S;
  174.     strcpy(structname, "file"), stru = STRU_F;
  175.     strcpy(bytename, "8"), bytesize = 8;
  176.     if (autologin) 
  177.       login(argv[1]);
  178. #if NBBY == 8
  179.     /* this ifdef is to keep someone form "porting" this to an           */
  180.     /* incompatible system and not checking this out. This way they have */
  181.     /* to think about it.                                                */
  182.     overbose = verbose;
  183.     if (debug == 0)
  184.       verbose = -1;
  185.     if (command("SYST") == COMPLETE && overbose) {
  186.       register char *cp, c;
  187.       cp = index(reply_string+4, ' ');
  188.       if (cp == NULL) cp = index(reply_string+4, 'r');
  189.       if (cp) {
  190. if (cp[-1] == '.') cp--;
  191. c = *cp;
  192. *cp = '';
  193.       }
  194.     
  195.       printf("Remote system type is %s.n", reply_string+4);
  196.       if (cp) *cp = c;
  197.     }
  198.     if (!strncmp(reply_string, "215 UNIX Type: L8", 17)) {
  199.       if (proxy) unix_proxy = 1;
  200.       else       unix_server = 1;
  201.       /* Set type to 0 (not specified by user), meaning binary by      */
  202.       /* default, but don't bother telling server.  We can use binary  */
  203.       /* for text files unless changed by the user.                    */
  204.       type = 0;
  205.       strcpy(typename, "binary");
  206.       if (overbose)
  207. printf("Using %s mode to transfer files.n", typename);
  208.     } else {
  209.       if (proxy) unix_proxy = 0;
  210.       else       unix_server = 0;
  211.       if (overbose && !strncmp(reply_string, "215 TOPS20", 10))
  212. printf("Remember to set tenex mode when transfering binary files from this machine.n");
  213.     }
  214.     verbose = overbose;
  215. #endif 
  216.   }
  217. }
  218. struct types {
  219.   char *t_name;
  220.   char *t_mode;
  221.   int          t_type;
  222.   char *t_arg;
  223. } types[] = {
  224.   { "ascii", "A", TYPE_A, 0 },
  225.   { "binary", "I", TYPE_I, 0 },
  226.   { "image", "I", TYPE_I, 0 },
  227.   { "ebcdic", "E", TYPE_E, 0 },
  228.   { "tenex", "L", TYPE_L, bytename },
  229.   { NULL, NULL, 0, NULL }
  230. };
  231. /* Set transfer type.                                                        */
  232. void settype(int argc, char *argv[]) {
  233.   register struct types *p;
  234.   int comret;
  235.     
  236.   if (argc > 2) {
  237.     char *sep;
  238.     printf("usage: %s [", argv[0]);
  239.     sep = " ";
  240.     for (p = types; p->t_name; p++) {
  241.       printf("%s%s", sep, p->t_name);
  242.       sep = " | ";
  243.     }
  244.     printf(" ]n");
  245.     code = -1;
  246.     return;
  247.   }
  248.   if (argc < 2) {
  249.     printf("Using %s mode to transfer files.n", typename);
  250.     code = 0;
  251.     return;
  252.   }
  253.   for (p = types; p->t_name; p++)
  254.     if (strcmp(argv[1], p->t_name) == 0)
  255.       break;
  256.   if (p->t_name == 0) {
  257.     printf("%s: unknown moden", argv[1]);
  258.     code = -1;
  259.     return;
  260.   }
  261.   if ((p->t_arg != NULL) && (*(p->t_arg) != ''))
  262.     comret = command ("TYPE %s %s", p->t_mode, p->t_arg);
  263.   else
  264.     comret = command("TYPE %s", p->t_mode);
  265.   if (comret == COMPLETE) {
  266.     strcpy(typename, p->t_name);
  267.     curtype = type = p->t_type;
  268.   }
  269. }
  270. /* Internal form of settype; changes current type in use with server         */
  271. /* without changing our notion of the type for data transfers.               */
  272. /* Used to change to and from ascii for listings.                            */
  273. void changetype(int newtype, int show) {
  274.   register struct types *p;
  275.   int comret, oldverbose = verbose;
  276.     
  277.   if (newtype == 0)
  278.     newtype = TYPE_I;
  279.   if (newtype == curtype)
  280.     return;
  281.   if (debug == 0 && show == 0)
  282.     verbose = 0;
  283.   for (p = types; p->t_name; p++)
  284.     if (newtype == p->t_type)
  285.       break;
  286.   if (p->t_name == 0) {
  287.     printf("ftp: internal error: unknown type %dn", newtype);
  288.     return;
  289.   }
  290.   if (newtype == TYPE_L && bytename[0] != '')
  291.     comret = command("TYPE %s %s", p->t_mode, bytename);
  292.   else
  293.     comret = command("TYPE %s", p->t_mode);
  294.   if (comret == COMPLETE)
  295.     curtype = newtype;
  296.   verbose = oldverbose;
  297. }
  298. char *stype[] = {
  299.   "type",
  300.   "",
  301.   0
  302. };
  303. /* Set binary transfer type.                                                 */
  304. void setbinary() {
  305.   stype[1] = "binary";
  306.   settype(2, stype);
  307. }
  308. /* Set ascii transfer type.                                                  */
  309. void setascii() {
  310.   stype[1] = "ascii";
  311.   settype(2, stype);
  312. }
  313. /* Set tenex transfer type.                                                  */
  314. void settenex() {
  315.   stype[1] = "tenex";
  316.   settype(2, stype);
  317. }
  318. /* Set file transfer mode.                                                   */
  319. void setftpmode(int argc, char *argv[]) {
  320.   printf("We only support %s mode, sorry.n", modename);
  321.   code = -1;
  322. }
  323. /* Set file transfer format.                                                 */
  324. void setform(int argc, char *argv[]) {
  325.   printf("We only support %s format, sorry.n", formname);
  326.   code = -1;
  327. }
  328. /* Set file transfer structure.                                              */
  329. void setstruct(int argc, char *argv[]) {
  330.   printf("We only support %s structure, sorry.n", structname);
  331.   code = -1;
  332. }
  333. /* Glob a local file name specification with the expectation of a single     */
  334. /* return value.  Can't control multiple values being expanded from the      */
  335. /* expression, we return only the first.                                     */
  336. int globulize(char **cpp) {
  337.   char **globbed;
  338.   if (!doglob) return (1);
  339.   globbed = ftpglob(*cpp);
  340.     
  341.   if (globerr != NULL) {
  342.     printf("%s: %sn", *cpp, globerr);
  343.     if (globbed) {
  344.       blkfree(globbed);
  345.       free((char *)globbed);
  346.     }
  347.     return 0;
  348.   }
  349.   if (globbed) {
  350.     *cpp = *globbed++;
  351.     /* don't waste too much memory */
  352.     if (*globbed) {
  353.       blkfree(globbed);
  354.       free((char *)globbed);
  355.     }
  356.   }
  357.   return 1;
  358. }
  359. /* Send a single file.                                                       */
  360. void put(int argc, char *argv[]) {
  361.   char *cmd;
  362.   int loc = 0;
  363.   char *oldargv1, *oldargv2;
  364.   if (argc == 2) {
  365.     argc++;
  366.     argv[2] = argv[1];
  367.     loc++;
  368.   }
  369.   if (argc < 2 && !another(&argc, &argv, "local-file"))
  370.     goto usage;
  371.   if (argc < 3 && !another(&argc, &argv, "remote-file")) {
  372.   usage:
  373.     printf("usage: %s local-file remote-filen", argv[0]);
  374.     code = -1;
  375.     return;
  376.   }
  377.   oldargv1 = argv[1];
  378.   oldargv2 = argv[2];
  379.   if (!globulize(&argv[1])) {
  380.     code = -1;
  381.     return;
  382.   }
  383.   /* If "globulize" modifies argv[1], and argv[2] is a copy of             */
  384.   /* the old argv[1], make it a copy of the new argv[1].                   */
  385.   if (argv[1] != oldargv1 && argv[2] == oldargv1) 
  386.     argv[2] = argv[1];
  387.   cmd = (argv[0][0] == 'a') ? "APPE" : ((sunique) ? "STOU" : "STOR");
  388.   if (loc && ntflag) 
  389.     argv[2] = dotrans(argv[2]);
  390.   if (loc && mapflag) 
  391.     argv[2] = domap(argv[2]);
  392.   sendrequest(cmd, argv[1], argv[2], argv[1] != oldargv1 || argv[2] != oldargv2);
  393. }
  394. int confirm(char *cmd, char *file) {
  395.   char bline[BUFSIZ];
  396.   if (!interactive) return (1);
  397.   printf("%s %s? ", cmd, file);
  398.   fflush(stdout);
  399.   if (fgets(bline, sizeof(bline), stdin) == NULL) return (0);
  400.   return (*bline != 'n' && *bline != 'N');
  401. }
  402. /* Send multiple files.                                                      */
  403. void mabort() {
  404.   int ointer;
  405.   extern jmp_buf jabort;
  406.     
  407.   printf("n");
  408.   fflush(stdout);
  409.   if (mflag && fromatty) {
  410.     ointer = interactive;
  411.     interactive = 1;
  412.     if (confirm("Continue with", mname)) {
  413.       interactive = ointer;
  414.       longjmp(jabort,0);
  415.     }
  416.     interactive = ointer;
  417.   }
  418.   mflag = 0;
  419.   longjmp(jabort,0);
  420. }
  421. void mput(int argc, char **argv) {
  422.   extern jmp_buf jabort;
  423.   register int i;
  424.   sig_t oldintr;
  425.   int ointer;
  426.   char *tp;
  427.   void mabort();
  428.     
  429.   if (argc < 2 && !another(&argc, &argv, "local-files")) {
  430.     printf("usage: %s local-filesn", argv[0]);
  431.     code = -1;
  432.     return;
  433.   }
  434.   mname = argv[0];
  435.   mflag = 1;
  436.   oldintr = (sig_t)Signal(SIGINT, mabort);
  437.   setjmp(jabort);
  438.   if (proxy) {
  439.     char *cp, *tp2, tmpbuf[MAXPATHLEN];
  440.     while ((cp = remglob(argv,0)) != NULL) {
  441.       if (*cp == 0) {
  442. mflag = 0;
  443. continue;
  444.       }
  445.       if (mflag && confirm(argv[0], cp)) {
  446. tp = cp;
  447. if (mcase) {
  448.   while (*tp && !islower(*tp)) {
  449.     tp++;
  450.   }
  451.   if (!*tp) {
  452.     tp = cp;
  453.     tp2 = tmpbuf;
  454.     while ((*tp2 = *tp)) {
  455.       if (isupper(*tp2)) {
  456. *tp2 = 'a' + *tp2 - 'A';
  457.       }
  458.       tp++;
  459.       tp2++;
  460.     }
  461.   }
  462.   tp = tmpbuf;
  463. }
  464. if (ntflag) {
  465.   tp = dotrans(tp);
  466. }
  467. if (mapflag) {
  468.   tp = domap(tp);
  469. }
  470. sendrequest((sunique) ? "STOU" : "STOR", cp, tp, cp != tp || !interactive);
  471. if (!mflag && fromatty) {
  472.   ointer = interactive;
  473.   interactive = 1;
  474.   if (confirm("Continue with","mput")) {
  475.     mflag++;
  476.   }
  477.   interactive = ointer;
  478. }
  479.       }
  480.     }
  481.     Signal(SIGINT, oldintr);
  482.     mflag = 0;
  483.     return;
  484.   }
  485.   for (i = 1; i < argc; i++) {
  486.     register char **cpp, **gargs;
  487.     if (!doglob) {
  488.       if (mflag && confirm(argv[0], argv[i])) {
  489. tp = (ntflag) ? dotrans(argv[i]) : argv[i];
  490. tp = (mapflag) ? domap(tp) : tp;
  491. sendrequest((sunique) ? "STOU" : "STOR", argv[i], tp, tp != argv[i] || !interactive);
  492. if (!mflag && fromatty) {
  493.   ointer = interactive;
  494.   interactive = 1;
  495.   if (confirm("Continue with","mput")) {
  496.     mflag++;
  497.   }
  498.   interactive = ointer;
  499. }
  500.       }
  501.       continue;
  502.     }
  503.     gargs = ftpglob(argv[i]);
  504.     if (globerr != NULL) {
  505.       printf("%sn", globerr);
  506.       if (gargs) {
  507. blkfree(gargs);
  508. free((char *)gargs);
  509.       }
  510.       continue;
  511.     }
  512.     for (cpp = gargs; cpp && *cpp != NULL; cpp++) {
  513.       if (mflag && confirm(argv[0], *cpp)) {
  514. tp = (ntflag) ? dotrans(*cpp) : *cpp;
  515. tp = (mapflag) ? domap(tp) : tp;
  516. sendrequest((sunique) ? "STOU" : "STOR", *cpp, tp, *cpp != tp || !interactive);
  517. if (!mflag && fromatty) {
  518.   ointer = interactive;
  519.   interactive = 1;
  520.   if (confirm("Continue with","mput")) {
  521.     mflag++;
  522.   }
  523.   interactive = ointer;
  524. }
  525.       }
  526.     }
  527.     if (gargs != NULL) {
  528.       blkfree(gargs);
  529.       free((char *)gargs);
  530.     }
  531.   }
  532.   Signal(SIGINT, oldintr);
  533.   mflag = 0;
  534. }
  535. /* Receive one file.                                                         */
  536. int getit(int argc, char *argv[], int restartit, char *mode) {
  537.   int loc = 0;
  538.   char *oldargv1, *oldargv2;
  539.   if (argc == 2) {
  540.     argc++;
  541.     argv[2] = argv[1];
  542.     loc++;
  543.   }
  544.   if (argc < 2 && !another(&argc, &argv, "remote-file"))
  545.     goto usage;
  546.   if (argc < 3 && !another(&argc, &argv, "local-file")) {
  547.   usage:
  548.     printf("usage: %s remote-file [ local-file ]n", argv[0]);
  549.     code = -1;
  550.     return (0);
  551.   }
  552.   oldargv1 = argv[1];
  553.   oldargv2 = argv[2];
  554.   if (!globulize(&argv[2])) {
  555.     code = -1;
  556.     return (0);
  557.   }
  558.   if (loc && mcase) {
  559.     char *tp = argv[1], *tp2, tmpbuf[MAXPATHLEN];
  560.     while (*tp && !islower(*tp)) tp++;
  561.     if (!*tp) {
  562.       tp = argv[2];
  563.       tp2 = tmpbuf;
  564.       while ((*tp2 = *tp)) {
  565. if (isupper(*tp2)) *tp2 = tolower(*tp2);
  566. tp2++;
  567. tp++;
  568.       }
  569.       argv[2] = tmpbuf;
  570.     }
  571.   }
  572.   if (loc && ntflag)
  573.     argv[2] = dotrans(argv[2]);
  574.   if (loc && mapflag)
  575.     argv[2] = domap(argv[2]);
  576.   if (restartit) {
  577.     struct stat stbuf;
  578.     int ret;
  579.     ret = stat(argv[2], &stbuf);
  580.     if (restartit == 1) {
  581.       if (ret < 0) {
  582. fprintf(stderr, "local: %s: %sn", argv[2],
  583. strerror(errno));
  584. return (0);
  585.       }
  586.       restart_point = stbuf.st_size;
  587.     } else {
  588.       if (ret == 0) {
  589. int overbose;
  590. overbose = verbose;
  591. if (debug == 0)
  592.   verbose = -1;
  593. if (command("MDTM %s", argv[1]) == COMPLETE) {
  594.   int yy, mo, day, hour, min, sec;
  595.   struct tm *tm;
  596.   verbose = overbose;
  597.   sscanf(reply_string,
  598.  "%*s %04d%02d%02d%02d%02d%02d",
  599.  &yy, &mo, &day, &hour, &min, &sec);
  600.   tm = gmtime(&stbuf.st_mtime);
  601.   tm->tm_mon++;
  602.   if (tm->tm_year > yy%100)
  603.     return (1);
  604.   else if (tm->tm_year == yy%100) {
  605.     if (tm->tm_mon > mo)
  606.       return (1);
  607.   } else if (tm->tm_mon == mo) {
  608.     if (tm->tm_mday > day)
  609.       return (1);
  610.   } else if (tm->tm_mday == day) {
  611.     if (tm->tm_hour > hour)
  612.       return (1);
  613.   } else if (tm->tm_hour == hour) {
  614.     if (tm->tm_min > min)
  615.       return (1);
  616.   } else if (tm->tm_min == min) {
  617.     if (tm->tm_sec > sec)
  618.       return (1);
  619.   }
  620. } else {
  621.   printf("%sn", reply_string);
  622.   verbose = overbose;
  623.   return (0);
  624. }
  625.       }
  626.     }
  627.   }
  628.     
  629.   recvrequest("RETR", argv[2], argv[1], mode,
  630.       argv[1] != oldargv1 || argv[2] != oldargv2);
  631.   restart_point = 0;
  632.   return (0);
  633. }
  634. void reget(int argc, char *argv[]) {
  635.   getit(argc, argv, 1, "r+w");
  636. }
  637. void get(int argc, char *argv[]){
  638.   getit(argc, argv, 0, restart_point ? "r+w" : "w" );
  639. }
  640. /* Get multiple files.                                                       */
  641. void mget(int argc, char **argv) {
  642.   extern jmp_buf jabort;
  643.   sig_t oldintr;
  644.   int ointer;
  645.   char *cp, *tp, *tp2, tmpbuf[MAXPATHLEN];
  646.   void mabort();
  647.   if (argc < 2 && !another(&argc, &argv, "remote-files")) {
  648.     printf("usage: %s remote-filesn", argv[0]);
  649.     code = -1;
  650.     return;
  651.   }
  652.   mname = argv[0];
  653.   mflag = 1;
  654.   oldintr = (sig_t)Signal(SIGINT,mabort);
  655.   setjmp(jabort);
  656.   while ((cp = remglob(argv,proxy)) != NULL) {
  657.     if (*cp == '') {
  658.       mflag = 0;
  659.       continue;
  660.     }
  661.     if (mflag && confirm(argv[0], cp)) {
  662.       tp = cp;
  663.       if (mcase) {
  664. while (*tp && !islower(*tp)) {
  665.   tp++;
  666. }
  667. if (!*tp) {
  668.   tp = cp;
  669.   tp2 = tmpbuf;
  670.     
  671.   while ((*tp2 = *tp)) {
  672.     if (isupper(*tp2)) *tp2 = tolower(*tp2);
  673.     tp2++;
  674.     tp++;
  675.   }
  676. }
  677. tp = tmpbuf;
  678.       }
  679.       if (ntflag) {
  680. tp = dotrans(tp);
  681.       }
  682.       if (mapflag) {
  683. tp = domap(tp);
  684.       }
  685.       recvrequest("RETR", tp, cp, "w", tp != cp || !interactive);
  686.       if (!mflag && fromatty) {
  687. ointer = interactive;
  688. interactive = 1;
  689. if (confirm("Continue with","mget")) {
  690.   mflag++;
  691. }
  692. interactive = ointer;
  693.       }
  694.     }
  695.   }
  696.   Signal(SIGINT,oldintr);
  697.   mflag = 0;
  698. }
  699. char *remglob(char *argv[], int doswitch) {
  700.   char temp[16];
  701.   static char buf[MAXPATHLEN];
  702.   static FILE *ftemp = NULL;
  703.   static char **args;
  704.   int oldverbose, oldhash;
  705.   char *cp, *mode;
  706.   if (!mflag) {
  707.     if (!doglob) {
  708.       args = NULL;
  709.     }
  710.     else {
  711.       if (ftemp) {
  712. fclose(ftemp);
  713. ftemp = NULL;
  714.       }
  715.     }
  716.     return(NULL);
  717.   }
  718.   if (!doglob) {
  719.     if (args == NULL)
  720.       args = argv;
  721.     if ((cp = *++args) == NULL)
  722.       args = NULL;
  723.     return (cp);
  724.   }
  725.   if (ftemp == NULL) {
  726.     strcpy(temp, _PATH_TMP);
  727.     mktemp(temp);
  728.     oldverbose = verbose, verbose = 0;
  729.     oldhash = hash, hash = 0;
  730.     if (doswitch) {
  731.       pswitch(!proxy);
  732.     }
  733.     for (mode = "w"; *++argv != NULL; mode = "a")
  734.       recvrequest ("NLST", temp, *argv, mode, 0);
  735.     if (doswitch) {
  736.       pswitch(!proxy);
  737.     }
  738.     verbose = oldverbose; hash = oldhash;
  739.     ftemp = fopen(temp, "r");
  740.     unlink(temp);
  741.     if (ftemp == NULL) {
  742.       printf("can't find list of remote files, oopsn");
  743.       return (NULL);
  744.     }
  745.   }
  746.   if (fgets(buf, sizeof (buf), ftemp) == NULL) {
  747.     fclose(ftemp), ftemp = NULL;
  748.     return (NULL);
  749.   }
  750.   if ((cp = index(buf, 'n')) != NULL)
  751.     *cp = '';
  752.   return (buf);
  753. }
  754. char *onoff(int bool) {
  755.   return (bool ? "on" : "off");
  756. }
  757. /* Show status.                                                              */
  758. /*                                                                           */
  759. /* ARGSUSED                                                                  */
  760. void status(int argc, char *argv[]) {
  761.   int i;
  762.   if (connected) {
  763.     printf("Connected to %s.n", hostname);
  764.   } else {
  765.     printf("Not connected.n");
  766.   }
  767.   if (!proxy) {
  768.     pswitch(1);
  769.     if (connected) {
  770.       printf("Connected for proxy commands to %s.n", hostname);
  771.     } else {
  772.       printf("No proxy connection.n");
  773.     }
  774.     pswitch(0);
  775.   }
  776.   printf("Mode: %s; Type: %s; Form: %s; Structure: %sn",
  777.  modename, typename, formname, structname);
  778.   printf("Verbose: %s; Bell: %s; Prompting: %s; Globbing: %sn", 
  779.  onoff(verbose), onoff(bell), onoff(interactive),
  780.  onoff(doglob));
  781.   printf("Store unique: %s; Receive unique: %sn", onoff(sunique),
  782.  onoff(runique));
  783.   printf("Case: %s; CR stripping: %sn",onoff(mcase),onoff(crflag));
  784.   if (ntflag) {
  785.     printf("Ntrans: (in) %s (out) %sn", ntin,ntout);
  786.   } else {
  787.     printf("Ntrans: offn");
  788.   }
  789.   if (mapflag) {
  790.     printf("Nmap: (in) %s (out) %sn", mapin, mapout);
  791.   } else {
  792.     printf("Nmap: offn");
  793.   }
  794.     
  795.   printf("Hash mark printing: %s; Use of PORT cmds: %sn",
  796.  onoff(hash), onoff(sendport));
  797.   if (macnum > 0) {
  798.     printf("Macros:n");
  799.     for (i=0; i<macnum; i++) {
  800.       printf("t%sn",macros[i].mac_name);
  801.     }
  802.   }
  803.   code = 0;
  804. }
  805. /* Set beep on cmd completed mode.                                           */
  806. /*                                                                           */
  807. /* VARARGS                                                                   */
  808. void setbell() {
  809.   bell = !bell;
  810.   printf("Bell mode %s.n", onoff(bell));
  811.   code = bell;
  812. }
  813. /* Turn on packet tracing.                                                   */
  814. /*                                                                           */
  815. /* VARARGS                                                                   */
  816. void settrace() {
  817.   trace = !trace;
  818.   printf("Packet tracing %s.n", onoff(trace));
  819.   code = trace;
  820. }
  821. /* Toggle hash mark printing during transfers.                               */
  822. /*                                                                           */
  823. /* VARARGS                                                                   */
  824. void sethash() {
  825.   hash = !hash;
  826.   printf("Hash mark printing %s", onoff(hash));
  827.   code = hash;
  828.   if (hash)
  829.     printf(" (%d bytes/hash mark)", 1024);
  830.   printf(".n");
  831. }
  832. /* Turn on printing of server echo's.                                        */
  833. /*                                                                           */
  834. /* VARARGS                                                                   */
  835. void setverbose() {
  836.   verbose = !verbose;
  837.   printf("Verbose mode %s.n", onoff(verbose));
  838.   code = verbose;
  839. }
  840. /* Toggle PORT cmd use before each data connection.                          */
  841. /*                                                                           */
  842. /* VARARGS                                                                   */
  843. void setport() {
  844.   sendport = !sendport;
  845.   printf("Use of PORT cmds %s.n", onoff(sendport));
  846.   code = sendport;
  847. }
  848. /* Turn on interactive prompting during mget, mput, and mdelete.             */
  849. /*                                                                           */
  850. /* VARARGS                                                                   */
  851. void setprompt() {
  852.   interactive = !interactive;
  853.   printf("Interactive mode %s.n", onoff(interactive));
  854.   code = interactive;
  855. }
  856. /* Toggle metacharacter interpretation on local file names.                  */
  857. /*                                                                           */
  858. /* VARARGS                                                                   */
  859. void setglob() {
  860.   doglob = !doglob;
  861.   printf("Globbing %s.n", onoff(doglob));
  862.   code = doglob;
  863. }
  864. /* Set debugging mode on/off and/or set level of debugging.                  */
  865. /*                                                                           */
  866. /* VARARGS                                                                   */
  867. void setdebug(int argc, char *argv[]) {
  868.   int val;
  869.   if (argc > 1) {
  870.     val = atoi(argv[1]);
  871.     if (val < 0) {
  872.       printf("%s: bad debugging value.n", argv[1]);
  873.       code = -1;
  874.       return;
  875.     }
  876.   } else
  877.     val = !debug;
  878.   debug = val;
  879.   if (debug)
  880.     options |= SO_DEBUG;
  881.   else
  882.     options &= ~SO_DEBUG;
  883.   printf("Debugging %s (debug=%d).n", onoff(debug), debug);
  884.   code = debug > 0;
  885. }
  886. /* Set current working directory on remote machine.                          */
  887. void cd(int argc, char **argv) {
  888.   if (argc < 2 && !another(&argc, &argv, "remote-directory")) {
  889.     printf("usage: %s remote-directoryn", argv[0]);
  890.     code = -1;
  891.     return;
  892.   }
  893.   if (command("CWD %s", argv[1]) == ERROR && code == 500) {
  894.     if (verbose) printf("CWD command not recognized, trying XCWDn");
  895.     command("XCWD %s", argv[1]);
  896.   }
  897. }
  898. /* Set current working directory on local machine.                           */
  899. void lcd(int argc, char **argv) {
  900.   char buf[MAXPATHLEN];
  901.   if (argc < 2)
  902.     argc++, argv[1] = home;
  903.   if (argc != 2) {
  904.     printf("usage: %s local-directoryn", argv[0]);
  905.     code = -1;
  906.     return;
  907.   }
  908.   if (!globulize(&argv[1])) {
  909.     code = -1;
  910.     return;
  911.   }
  912.   if (chdir(argv[1]) < 0) {
  913.     fprintf(stderr, "local: %s: %sn", argv[1], strerror(errno));
  914.     code = -1;
  915.     return;
  916.   }
  917. #ifdef HAVE_GETCWD
  918.   printf("Local directory now %sn", getcwd(buf, MAXPATHLEN-1));
  919. #else
  920.   printf("Local directory now %sn", getwd(buf));
  921. #endif
  922.   code = 0;
  923. }
  924. /* Delete a single file.                                                     */
  925. void delete(int argc, char *argv[]) {
  926.   if (argc < 2 && !another(&argc, &argv, "remote-file")) {
  927.     printf("usage: %s remote-filen", argv[0]);
  928.     code = -1;
  929.     return;
  930.   }
  931.   command("DELE %s", argv[1]);
  932. }
  933. /* Delete multiple files.                                                    */
  934. void mdelete(int argc, char *argv[]) {
  935.   extern jmp_buf jabort;
  936.   sig_t oldintr;
  937.   int ointer;
  938.   char *cp;
  939.   void mabort();
  940.     
  941.   if (argc < 2 && !another(&argc, &argv, "remote-files")) {
  942.     printf("usage: %s remote-filesn", argv[0]);
  943.     code = -1;
  944.     return;
  945.   }
  946.   mflag = 1;
  947.   mname = argv[0];
  948.   oldintr = (sig_t)Signal(SIGINT, mabort);
  949.   setjmp(jabort);
  950.   while ((cp = remglob(argv,0)) != NULL) {
  951.     if (*cp == '') {
  952.       mflag = 0;
  953.       continue;
  954.     }
  955.     if (mflag && confirm(argv[0], cp)) {
  956.       command("DELE %s", cp);
  957.       if (!mflag && fromatty) {
  958. ointer = interactive;
  959. interactive = 1;
  960. if (confirm("Continue with", "mdelete")) {
  961.   mflag++;
  962. }
  963. interactive = ointer;
  964.       }
  965.     }
  966.   }
  967.   Signal(SIGINT, oldintr);
  968.   mflag = 0;
  969. }
  970. /* Rename a remote file.                                                     */
  971. void renamefile(int argc, char *argv[]) {
  972.   if (argc < 2 && !another(&argc, &argv, "from-name"))
  973.     goto usage;
  974.   if (argc < 3 && !another(&argc, &argv, "to-name")) {
  975.   usage:
  976.     printf("%s from-name to-namen", argv[0]);
  977.     code = -1;
  978.     return;
  979.   }
  980.   if (command("RNFR %s", argv[1]) == CONTINUE)
  981.     command("RNTO %s", argv[2]);
  982. }
  983. /* Get a directory listing                                                   */
  984. /* of remote files.                                                          */
  985. void ls(int argc, char *argv[]) {
  986.   char *cmd;
  987.   if (argc < 2) argc++, argv[1] = NULL;
  988.   if (argc < 3) argc++, argv[2] = "-";
  989.   if (argc > 3) {
  990.     printf("usage: %s remote-directory local-filen", argv[0]);
  991.     code = -1;
  992.     return;
  993.   }
  994.   cmd = argv[0][0] == 'n' ? "NLST" : "LIST";
  995.   if (strcmp(argv[2], "-") && !globulize(&argv[2])) {
  996.     code = -1;
  997.     return;
  998.   }
  999.   if (strcmp(argv[2], "-") && *argv[2] != '|')
  1000.     if (!globulize(&argv[2]) || !confirm("output to local-file:", argv[2])) {
  1001.       code = -1;
  1002.       return;
  1003.     }
  1004.   recvrequest(cmd, argv[2], argv[1], "w", 0);
  1005. }
  1006. /* Get a directory listing                                                   */
  1007. /* of multiple remote files.                                                 */
  1008. void mls(int argc, char **argv) {
  1009.   extern jmp_buf jabort;
  1010.   sig_t oldintr;
  1011.   int ointer, i;
  1012.   char *cmd, mode[1], *dest;
  1013.   void mabort();
  1014.   if (argc < 2 && !another(&argc, &argv, "remote-files"))
  1015.     goto usage;
  1016.   if (argc < 3 && !another(&argc, &argv, "local-file")) {
  1017.   usage:
  1018.     printf("usage: %s remote-files local-filen", argv[0]);
  1019.     code = -1;
  1020.     return;
  1021.   }
  1022.   dest = argv[argc - 1];
  1023.   argv[argc - 1] = NULL;
  1024.   if (strcmp(dest, "-") && *dest != '|')
  1025.     if (!globulize(&dest) ||
  1026. !confirm("output to local-file:", dest)) {
  1027.       code = -1;
  1028.       return;
  1029.     }
  1030.   cmd = argv[0][1] == 'l' ? "NLST" : "LIST";
  1031.   mname = argv[0];
  1032.   mflag = 1;
  1033.   oldintr = (sig_t)Signal(SIGINT, mabort);
  1034.   setjmp(jabort);
  1035.   for (i = 1; mflag && i < argc-1; ++i) {
  1036.     *mode = (i == 1) ? 'w' : 'a';
  1037.     recvrequest(cmd, dest, argv[i], mode, 0);
  1038.     if (!mflag && fromatty) {
  1039.       ointer = interactive;
  1040.       interactive = 1;
  1041.       if (confirm("Continue with", argv[0])) {
  1042. mflag ++;
  1043.       }
  1044.       interactive = ointer;
  1045.     }
  1046.   }
  1047.   Signal(SIGINT, oldintr);
  1048.   mflag = 0;
  1049. }
  1050. /* Do a shell escape                                                         */
  1051. /*                                                                           */
  1052. /* ARGSUSED                                                                  */
  1053. int shell(int argc, char **argv) {
  1054.   int pid;
  1055.   sig_t old1, old2;
  1056.   char shellnam[40], *shell, *namep; 
  1057.   int  status;
  1058.   old1 = (sig_t)Signal (SIGINT, SIG_IGN);
  1059.   old2 = (sig_t)Signal (SIGQUIT, SIG_IGN);
  1060.   if ((pid = fork()) == 0) {
  1061.     for (pid = 3; pid < 20; pid++)
  1062.       close(pid);
  1063.     Signal(SIGINT, SIG_DFL);
  1064.     Signal(SIGQUIT, SIG_DFL);
  1065.     shell = getenv("SHELL");
  1066.     if (shell == NULL)
  1067.       shell = _PATH_BSHELL;
  1068.     namep = rindex(shell,'/');
  1069.     if (namep == NULL)
  1070.       namep = shell;
  1071.     strcpy(shellnam,"-");
  1072.     strcat(shellnam, ++namep);
  1073.     if (strcmp(namep, "sh") != 0)
  1074.       shellnam[0] = '+';
  1075.     if (debug) {
  1076.       printf ("%sn", shell);
  1077.       fflush (stdout);
  1078.     }
  1079.     if (argc > 1) {
  1080.       execl(shell,shellnam,"-c",altarg,(char *)0);
  1081.     }
  1082.     else {
  1083.       execl(shell,shellnam,(char *)0);
  1084.     }
  1085.     perror(shell);
  1086.     code = -1;
  1087.     exit(1);
  1088.   }
  1089.   if (pid > 0)
  1090.     while (wait(&status) != pid) ;
  1091.   Signal(SIGINT, old1);
  1092.   Signal(SIGQUIT, old2);
  1093.   if (pid == -1) {
  1094.     perror("Try again later");
  1095.     code = -1;
  1096.   }
  1097.   else {
  1098.     code = 0;
  1099.   }
  1100.   return (0);
  1101. }
  1102. /* Send new user information (re-login)                                      */
  1103. int user(int argc, char **argv) {
  1104.   char acct[80], *getpass();
  1105.   int n, aflag = 0;
  1106.   if (argc < 2) {
  1107.     another(&argc, &argv, "username");
  1108.   }
  1109.   if (argc < 2 || argc > 4) {
  1110.     printf("usage: %s username [password] [account]n", argv[0]);
  1111.     code = -1;
  1112.     return (0);
  1113.   }
  1114.   if ((n = command("USER %s", argv[1])) == CONTINUE) {
  1115.     if (argc < 3 ){
  1116.       if (!strcmp(argv[1], "anonymous") || !strcmp(argv[1], "ftp")) {
  1117. printf("Password: "); fflush(stdout);
  1118. fgets(acct, sizeof(acct) - 1, stdin);
  1119. acct[strlen(acct) - 1] = '';
  1120. argv[2] = acct;
  1121.       } else
  1122. argv[2] = getpass("Password: ");
  1123.       argc++;
  1124.     }
  1125.     n = command("PASS %s", argv[2]);
  1126.   }
  1127.   if (n == CONTINUE) {
  1128.     if (argc < 4) {
  1129.       printf("Account: "); fflush(stdout);
  1130.       fgets(acct, sizeof(acct) - 1, stdin);
  1131.       acct[strlen(acct) - 1] = '';
  1132.       argv[3] = acct; argc++;
  1133.     }
  1134.     n = command("ACCT %s", argv[3]);
  1135.     aflag++;
  1136.   }
  1137.   if (n != COMPLETE) {
  1138.     fprintf(stdout, "Login failed.n");
  1139.     return (0);
  1140.   }
  1141.   if (!aflag && argc == 4) {
  1142.     command("ACCT %s", argv[3]);
  1143.   }
  1144.   return (1);
  1145. }
  1146. /* Print working directory.                                                  */
  1147. /*                                                                           */
  1148. /* VARARGS                                                                   */
  1149. void pwd() {
  1150.   int oldverbose = verbose;
  1151.   /* If we aren't verbose, this doesn't do anything!                         */
  1152.   verbose = 1;
  1153.   if (command("PWD") == ERROR && code == 500) {
  1154.     printf("PWD command not recognized, trying XPWDn");
  1155.     command("XPWD");
  1156.   }
  1157.   verbose = oldverbose;
  1158. }
  1159. /* Make a directory.                                                         */
  1160. void makedir(int argc, char *argv[]) {
  1161.   if (argc < 2 && !another(&argc, &argv, "directory-name")) {
  1162.     printf("usage: %s directory-namen", argv[0]);
  1163.     code = -1;
  1164.     return;
  1165.   }
  1166.   if (command("MKD %s", argv[1]) == ERROR && code == 500) {
  1167.     if (verbose)
  1168.       printf("MKD command not recognized, trying XMKDn");
  1169.     command("XMKD %s", argv[1]);
  1170.   }
  1171. }
  1172. /* Remove a directory.                                                       */
  1173. void removedir(int argc, char *argv[]) {
  1174.   if (argc < 2 && !another(&argc, &argv, "directory-name")) {
  1175.     printf("usage: %s directory-namen", argv[0]);
  1176.     code = -1;
  1177.     return;
  1178.   }
  1179.   if (command("RMD %s", argv[1]) == ERROR && code == 500) {
  1180.     if (verbose)
  1181.       printf("RMD command not recognized, trying XRMDn");
  1182.     command("XRMD %s", argv[1]);
  1183.   }
  1184. }
  1185. /* Turn argv[1..argc) into a space-separated string, then prepend initial    */
  1186. /* text.  Send the result as a one-line command and get response.            */
  1187. void quote1(char *initial, int argc, char **argv) {
  1188.   register int i, len;
  1189.   char buf[BUFSIZ]; /* must be >= sizeof(line) */
  1190.   strcpy(buf, initial);
  1191.   if (argc > 1) {
  1192.     len = strlen(buf);
  1193.     len += strlen(strcpy(&buf[len], argv[1]));
  1194.     for (i = 2; i < argc; i++) {
  1195.       buf[len++] = ' ';
  1196.       len += strlen(strcpy(&buf[len], argv[i]));
  1197.     }
  1198.   }
  1199.   if (command(buf) == PRELIM) {
  1200.     while (getreply(0) == PRELIM);
  1201.   }
  1202. }
  1203. /* Send a line, verbatim, to the remote machine.                             */
  1204. void quote(int argc, char *argv[]) { 
  1205.   if (argc < 2 && !another(&argc, &argv, "command line to send")) {
  1206.     printf("usage: %s line-to-sendn", argv[0]);
  1207.     code = -1;
  1208.     return;
  1209.   }
  1210.   quote1("", argc, argv);
  1211. }
  1212. /* Send a SITE command to the remote machine.  The line                      */
  1213. /* is sent verbatim to the remote machine, except that the                   */
  1214. /* word "SITE" is added at the front.                                        */
  1215. void site(int argc, char *argv[]) {
  1216.   if (argc < 2 && !another(&argc, &argv, "arguments to SITE command")) {
  1217.     printf("usage: %s line-to-sendn", argv[0]);
  1218.     code = -1;
  1219.     return;
  1220.   }
  1221.   quote1("SITE ", argc, argv);
  1222. }
  1223. void do_chmod(int argc, char *argv[]) {
  1224.   if (argc < 2 && !another(&argc, &argv, "mode"))
  1225.     goto usage;
  1226.   if (argc < 3 && !another(&argc, &argv, "file-name")) {
  1227.   usage:
  1228.     printf("usage: %s mode file-namen", argv[0]);
  1229.     code = -1;
  1230.     return;
  1231.   }
  1232.   command("SITE CHMOD %s %s", argv[1], argv[2]);
  1233. }
  1234. void do_umask(int argc, char *argv[]) {
  1235.   int oldverbose = verbose;
  1236.   verbose = 1;
  1237.   command(argc == 1 ? "SITE UMASK" : "SITE UMASK %s", argv[1]);
  1238.   verbose = oldverbose;
  1239. }
  1240. void idletime(int argc, char *argv[]) {
  1241.   int oldverbose = verbose;
  1242.   verbose = 1;
  1243.   command(argc == 1 ? "SITE IDLE" : "SITE IDLE %s", argv[1]);
  1244.   verbose = oldverbose;
  1245. }
  1246. /* Ask the other side for help.                                              */
  1247. void rmthelp(int argc, char *argv[]) {
  1248.   int oldverbose = verbose;
  1249.   verbose = 1;
  1250.   command(argc == 1 ? "HELP" : "HELP %s", argv[1]);
  1251.   verbose = oldverbose;
  1252. }
  1253. /* Terminate session, but don't exit.                                        */
  1254. void disconnect() {
  1255.   extern FILE *cout;
  1256.   extern int data;
  1257.   if (!connected)
  1258.     return;
  1259.   command("QUIT");
  1260.   if (cout) {
  1261.     fclose(cout);
  1262.   }
  1263.   cout = NULL;
  1264.   connected = 0;
  1265.   data = -1;
  1266.   if (!proxy) {
  1267.     macnum = 0;
  1268.   }
  1269. }
  1270. /* Terminate session and exit.                                               */
  1271. /*                                                                           */
  1272. /* VARARGS                                                                   */
  1273. int quit() {
  1274.   if (connected) disconnect();
  1275.   pswitch(1);
  1276.   if (connected) disconnect();
  1277.   exit(0);
  1278.   return -1;
  1279. }
  1280. void fatal(char *msg) {
  1281.   fprintf(stderr, "ftp: %sn", msg);
  1282.   exit(1);
  1283. }
  1284. void account(int argc, char **argv) {
  1285.   char acct[50], *getpass(), *ap;
  1286.   if (argc > 1) {
  1287.     ++argv;
  1288.     --argc;
  1289.     strncpy(acct,*argv,49);
  1290.     acct[49] = '';
  1291.     while (argc > 1) {
  1292.       --argc;
  1293.       ++argv;
  1294.       strncat(acct,*argv, 49-strlen(acct));
  1295.     }
  1296.     ap = acct;
  1297.   }
  1298.   else {
  1299.     ap = getpass("Account:");
  1300.   }
  1301.   command("ACCT %s", ap);
  1302. }
  1303. jmp_buf abortprox;
  1304. void proxabort() {
  1305.   extern int proxy;
  1306.   if (!proxy) {
  1307.     pswitch(1);
  1308.   }
  1309.   if (connected) {
  1310.     proxflag = 1;
  1311.   }
  1312.   else {
  1313.     proxflag = 0;
  1314.   }
  1315.   pswitch(0);
  1316.   longjmp(abortprox,1);
  1317. }
  1318. void doproxy(int argc, char *argv[]) {
  1319.   extern jmp_buf abortprox;
  1320.   register struct cmd *c;
  1321.   struct cmd *getcmd();
  1322.   sig_t oldintr;
  1323.   void proxabort();
  1324.     
  1325.   if (argc < 2 && !another(&argc, &argv, "command")) {
  1326.     printf("usage: %s commandn", argv[0]);
  1327.     code = -1;
  1328.     return;
  1329.   }
  1330.   c = getcmd(argv[1]);
  1331.   if (c == (struct cmd *) -1) {
  1332.     printf("?Ambiguous commandn");
  1333.     fflush(stdout);
  1334.     code = -1;
  1335.     return;
  1336.   }
  1337.   if (c == 0) {
  1338.     printf("?Invalid commandn");
  1339.     fflush(stdout);
  1340.     code = -1;
  1341.     return;
  1342.   }
  1343.   if (!c->c_proxy) {
  1344.     printf("?Invalid proxy commandn");
  1345.     fflush(stdout);
  1346.     code = -1;
  1347.     return;
  1348.   }
  1349.   if (setjmp(abortprox)) {
  1350.     code = -1;
  1351.     return;
  1352.   }
  1353.   oldintr = (sig_t)Signal(SIGINT, proxabort);
  1354.   pswitch(1);
  1355.   if (c->c_conn && !connected) {
  1356.     printf("Not connectedn");
  1357.     fflush(stdout);
  1358.     pswitch(0);
  1359.     Signal(SIGINT, oldintr);
  1360.     code = -1;
  1361.     return;
  1362.   }
  1363.   (*c->c_handler)(argc-1, argv+1);
  1364.   if (connected) {
  1365.     proxflag = 1;
  1366.   }
  1367.   else {
  1368.     proxflag = 0;
  1369.   }
  1370.   pswitch(0);
  1371.   Signal(SIGINT, oldintr);
  1372. }
  1373. void setcase() {
  1374.   mcase = !mcase;
  1375.   printf("Case mapping %s.n", onoff(mcase));
  1376.   code = mcase;
  1377. }
  1378. void setcr() {
  1379.   crflag = !crflag;
  1380.   printf("Carriage Return stripping %s.n", onoff(crflag));
  1381.   code = crflag;
  1382. }
  1383. void setntrans(int argc, char *argv[]) {
  1384.   if (argc == 1) {
  1385.     ntflag = 0;
  1386.     printf("Ntrans off.n");
  1387.     code = ntflag;
  1388.     return;
  1389.   }
  1390.   ntflag++;
  1391.   code = ntflag;
  1392.   strncpy(ntin, argv[1], 16);
  1393.   ntin[16] = '';
  1394.   if (argc == 2) {
  1395.     ntout[0] = '';
  1396.     return;
  1397.   }
  1398.   strncpy(ntout, argv[2], 16);
  1399.   ntout[16] = '';
  1400. }
  1401. char *
  1402. dotrans(char *name)
  1403. {
  1404.   static char new[MAXPATHLEN];
  1405.   char *cp1, *cp2 = new;
  1406.   register int i, ostop, found;
  1407.   for (ostop = 0; *(ntout + ostop) && ostop < 16; ostop++);
  1408.   for (cp1 = name; *cp1; cp1++) {
  1409.     found = 0;
  1410.     for (i = 0; *(ntin + i) && i < 16; i++) {
  1411.       if (*cp1 == *(ntin + i)) {
  1412. found++;
  1413. if (i < ostop) {
  1414.   *cp2++ = *(ntout + i);
  1415. }
  1416. break;
  1417.       }
  1418.     }
  1419.     if (!found) {
  1420.       *cp2++ = *cp1;
  1421.     }
  1422.   }
  1423.   *cp2 = '';
  1424.   return(new);
  1425. }
  1426. void setnmap(int argc, char *argv[]) {
  1427.   char *cp;
  1428.     
  1429.   if (argc == 1) {
  1430.     mapflag = 0;
  1431.     printf("Nmap off.n");
  1432.     code = mapflag;
  1433.     return;
  1434.   }
  1435.   if (argc < 3 && !another(&argc, &argv, "mapout")) {
  1436.     printf("Usage: %s [mapin mapout]n",argv[0]);
  1437.     code = -1;
  1438.     return;
  1439.   }
  1440.   mapflag = 1;
  1441.   code = 1;
  1442.   cp = index(altarg, ' ');
  1443.   if (proxy) {
  1444.     while(*++cp == ' ');
  1445.     altarg = cp;
  1446.     cp = index(altarg, ' ');
  1447.   }
  1448.   *cp = '';
  1449.   strncpy(mapin, altarg, MAXPATHLEN - 1);
  1450.   while (*++cp == ' ');
  1451.   strncpy(mapout, cp, MAXPATHLEN - 1);
  1452. }
  1453. char *domap(char *name) {
  1454.   static char new[MAXPATHLEN];
  1455.   register char *cp1 = name, *cp2 = mapin;
  1456.   char *tp[9], *te[9];
  1457.   int i, toks[9], toknum = 0, match = 1;
  1458.   for (i=0; i < 9; ++i) {
  1459.     toks[i] = 0;
  1460.   }
  1461.   while (match && *cp1 && *cp2) {
  1462.     switch (*cp2) {
  1463.       case '\':
  1464. if (*++cp2 != *cp1) {
  1465.   match = 0;
  1466. }
  1467. break;
  1468.       case '$':
  1469. if (*(cp2+1) >= '1' && (*cp2+1) <= '9') {
  1470.   if (*cp1 != *(++cp2+1)) {
  1471.     toks[toknum = *cp2 - '1']++;
  1472.     tp[toknum] = cp1;
  1473.     while (*++cp1 && *(cp2+1) != *cp1);
  1474.     te[toknum] = cp1;
  1475.   }
  1476.   cp2++;
  1477.   break;
  1478. }
  1479. /* FALLTHROUGH */
  1480.       default:
  1481. if (*cp2 != *cp1) {
  1482.   match = 0;
  1483. }
  1484. break;
  1485.     }
  1486.     if (match && *cp1) {
  1487.       cp1++;
  1488.     }
  1489.     if (match && *cp2) {
  1490.       cp2++;
  1491.     }
  1492.   }
  1493.   if (!match && *cp1) {
  1494.     /* last token mismatch */
  1495.     toks[toknum] = 0;
  1496.   }
  1497.   cp1  = new;
  1498.   *cp1 = '';
  1499.   cp2  = mapout;
  1500.   while (*cp2) {
  1501.     match = 0;
  1502.     switch (*cp2) {
  1503.       case '\':
  1504. if (*(cp2 + 1)) {
  1505.   *cp1++ = *++cp2;
  1506. }
  1507. break;
  1508.       case '[':
  1509.     LOOP:
  1510.       if (*++cp2 == '$' && isdigit(*(cp2+1))) { 
  1511. if (*++cp2 == '0') {
  1512.   char *cp3 = name;
  1513.   while (*cp3) {
  1514.     *cp1++ = *cp3++;
  1515.   }
  1516.   match = 1;
  1517. } else if (toks[toknum = *cp2 - '1']) {
  1518.   char *cp3 = tp[toknum];
  1519.   while (cp3 != te[toknum]) {
  1520.     *cp1++ = *cp3++;
  1521.   }
  1522.   match = 1;
  1523. }
  1524.       } else {
  1525. while (*cp2 && *cp2 != ',' && *cp2 != ']') {
  1526.   if (*cp2 == '\') {
  1527.     cp2++;
  1528.   } else if (*cp2 == '$' && isdigit(*(cp2+1))) {
  1529.     if (*++cp2 == '0') {
  1530.       char *cp3 = name;
  1531.       while (*cp3) {
  1532. *cp1++ = *cp3++;
  1533.       }
  1534.     } else if (toks[toknum = *cp2 - '1']) {
  1535.       char *cp3=tp[toknum];
  1536.       while (cp3 != te[toknum]) {
  1537. *cp1++ = *cp3++;
  1538.       }
  1539.     }
  1540.   } else if (*cp2) {
  1541.     *cp1++ = *cp2++;
  1542.   }
  1543. }
  1544. if (!*cp2) {
  1545.   printf("nmap: unbalanced bracketsn");
  1546.   return(name);
  1547. }
  1548. match = 1;
  1549. cp2--;
  1550.       }
  1551.       if (match) {
  1552. while (*++cp2 && *cp2 != ']') {
  1553.   if (*cp2 == '\' && *(cp2 + 1)) {
  1554.     cp2++;
  1555.   }
  1556. }
  1557. if (!*cp2) {
  1558.   printf("nmap: unbalanced bracketsn");
  1559.   return(name);
  1560. }
  1561. break;
  1562.       }
  1563.       switch (*++cp2) {
  1564. case ',':
  1565.   goto LOOP;
  1566. case ']':
  1567.   break;
  1568. default:
  1569.   cp2--;
  1570.   goto LOOP;
  1571.       }
  1572.       break;
  1573.       case '$':
  1574. if (isdigit(*(cp2 + 1))) {
  1575.   if (*++cp2 == '0') {
  1576.     char *cp3 = name;
  1577.     while (*cp3) {
  1578.       *cp1++ = *cp3++;
  1579.     }
  1580.   } else if (toks[toknum = *cp2 - '1']) {
  1581.     char *cp3 = tp[toknum];
  1582.     while (cp3 != te[toknum]) {
  1583.       *cp1++ = *cp3++;
  1584.     }
  1585.   }
  1586.   break;
  1587. }
  1588. /* intentional drop through */
  1589.       default:
  1590. *cp1++ = *cp2;
  1591. break;
  1592.     }
  1593.     cp2++;
  1594.   }
  1595.   *cp1 = '';
  1596.   if (!*new) {
  1597.     return(name);
  1598.   }
  1599.   return(new);
  1600. }
  1601. void setsunique() {
  1602.   sunique = !sunique;
  1603.   printf("Store unique %s.n", onoff(sunique));
  1604.   code = sunique;
  1605. }
  1606. void setrunique() {
  1607.   runique = !runique;
  1608.   printf("Receive unique %s.n", onoff(runique));
  1609.   code = runique;
  1610. }
  1611. /* change directory to perent directory                                      */
  1612. void cdup() {
  1613.   if (command("CDUP") == ERROR && code == 500) {
  1614.     if (verbose) printf("CDUP command not recognized, trying XCUPn");
  1615.     command("XCUP");
  1616.   }
  1617. }
  1618. /* restart transfer at specific point                                        */
  1619. void restart(int argc, char *argv[]) {
  1620.   extern long atol();
  1621.   if (argc != 2) {
  1622.     printf("restart: offset not specifiedn");
  1623.   } else {
  1624.     restart_point = atol(argv[1]);
  1625.     printf("restarting at %ld. execute get, put or append to initiate transfern", (long)restart_point);
  1626.   }
  1627. }
  1628. /* show remote system type                                                   */
  1629. void syst() {
  1630.   command("SYST");
  1631. }
  1632. void macdef(int argc, char *argv[]) {
  1633.   char *tmp;
  1634.   int c;
  1635.   if (macnum == 16) {
  1636.     printf("Limit of 16 macros have already been definedn");
  1637.     code = -1;
  1638.     return;
  1639.   }
  1640.   if (argc < 2 && !another(&argc, &argv, "macro name")) {
  1641.     printf("Usage: %s macro_namen",argv[0]);
  1642.     code = -1;
  1643.     return;
  1644.   }
  1645.   if (interactive) {
  1646.     printf("Enter macro line by line, terminating it with a null linen");
  1647.   }
  1648.   strncpy(macros[macnum].mac_name, argv[1], 8);
  1649.   if (macnum == 0) {
  1650.     macros[macnum].mac_start = macbuf;
  1651.   } else {
  1652.     macros[macnum].mac_start = macros[macnum - 1].mac_end + 1;
  1653.   }
  1654.   tmp = macros[macnum].mac_start;
  1655.   while (tmp != macbuf+4096) {
  1656.     if ((c = getchar()) == EOF) {
  1657.       printf("macdef:end of file encounteredn");
  1658.       code = -1;
  1659.       return;
  1660.     }
  1661.     if ((*tmp = c) == 'n') {
  1662.       if (tmp == macros[macnum].mac_start) {
  1663. macros[macnum++].mac_end = tmp;
  1664. code = 0;
  1665. return;
  1666.       }
  1667.       if (*(tmp-1) == '') {
  1668. macros[macnum++].mac_end = tmp - 1;
  1669. code = 0;
  1670. return;
  1671.       }
  1672.     
  1673.       *tmp = '';
  1674.     }
  1675.     tmp++;
  1676.   }
  1677.   while (1) {
  1678.     while ((c = getchar()) != 'n' && c != EOF) /* LOOP */;
  1679.     if (c == EOF || getchar() == 'n') {
  1680.       printf("Macro not defined - 4k buffer exceededn");
  1681.       code = -1;
  1682.       return;
  1683.     }
  1684.   }
  1685. }
  1686. /* get size of file on remote machine                                        */
  1687. void sizecmd(int argc, char *argv[]) {
  1688.   if (argc < 2 && !another(&argc, &argv, "filename")) {
  1689.     printf("usage: %s filenamen", argv[0]);
  1690.     code = -1;
  1691.     return;
  1692.   }
  1693.   command("SIZE %s", argv[1]);
  1694. }
  1695. /* get last modification time of file on remote machine                      */
  1696. void modtime(int argc, char *argv[]) {
  1697.   int overbose;
  1698.   if (argc < 2 && !another(&argc, &argv, "filename")) {
  1699.     printf("usage: %s filenamen", argv[0]);
  1700.     code = -1;
  1701.     return;
  1702.   }
  1703.   overbose = verbose;
  1704.     
  1705.   if (debug == 0) {
  1706.     verbose = -1;
  1707.   }
  1708.     
  1709.   if (command("MDTM %s", argv[1]) == COMPLETE) {
  1710.     int yy, mo, day, hour, min, sec;
  1711.     sscanf(reply_string, "%*s %04d%02d%02d%02d%02d%02d", &yy, &mo, &day, &hour, &min, &sec);
  1712.     /* might want to print this in local time */
  1713.     printf("%st%02d/%02d/%04d %02d:%02d:%02d GMTn", argv[1], mo, day, yy, hour, min, sec);
  1714.   } else {
  1715.     printf("%sn", reply_string);
  1716.   }
  1717.   verbose = overbose;
  1718. }
  1719. /* show status on reomte machine                                             */
  1720. void rmtstatus(int argc, char *argv[]) {
  1721.   command(argc > 1 ? "STAT %s" : "STAT" , argv[1]);
  1722. }
  1723. /* get file if modtime is more recent than current file                      */
  1724. void newer(int argc, char *argv[]) {
  1725.   if (!getit(argc, argv, -1, "w")) return;
  1726.   printf("Local file "%s" is newer than remote file "%s"n", argv[1], argv[2]);
  1727. }