home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / inetutils-1.2-src.tgz / tar.out / fsf / inetutils / ftpd / ftpcmd.y < prev    next >
Text File  |  1996-09-28  |  26KB  |  1,320 lines

  1. /*
  2.  * Copyright (c) 1985, 1988, 1993, 1994
  3.  *    The Regents of the University of California.  All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  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.  *
  33.  *    @(#)ftpcmd.y    8.3 (Berkeley) 4/6/94
  34.  */
  35.  
  36. /*
  37.  * Grammar for FTP commands.
  38.  * See RFC 959.
  39.  */
  40.  
  41. %{
  42.  
  43. #ifndef lint
  44. static char sccsid[] = "@(#)ftpcmd.y    8.3 (Berkeley) 4/6/94";
  45. #endif /* not lint */
  46.  
  47. #ifdef HAVE_CONFIG_H
  48. #include <config.h>
  49. #endif
  50.  
  51. #include <sys/param.h>
  52. #include <sys/socket.h>
  53. #include <sys/stat.h>
  54.  
  55. #include <netinet/in.h>
  56. #include <arpa/ftp.h>
  57.  
  58. #include <ctype.h>
  59. #include <errno.h>
  60. #include <glob.h>
  61. #include <pwd.h>
  62. #include <setjmp.h>
  63. #include <signal.h>
  64. #include <stdio.h>
  65. #include <stdlib.h>
  66. #include <string.h>
  67. #include <syslog.h>
  68. #include <time.h>
  69. #include <unistd.h>
  70. #include <limits.h>
  71. #ifdef HAVE_SYS_UTSNAME_H
  72. #include <sys/utsname.h>
  73. #endif
  74.  
  75. #include "extern.h"
  76.  
  77. #if ! defined (NBBY) && defined (CHAR_BIT)
  78. #define NBBY CHAR_BIT
  79. #endif
  80.  
  81. extern    struct sockaddr_in data_dest;
  82. extern    int logged_in;
  83. extern    struct passwd *pw;
  84. extern    int guest;
  85. extern    int logging;
  86. extern    int type;
  87. extern    int form;
  88. extern    int debug;
  89. extern    int timeout;
  90. extern    int maxtimeout;
  91. extern  int pdata;
  92. extern    char *hostname, *remotehost;
  93. extern    char proctitle[];
  94. extern    int usedefault;
  95. extern  int transflag;
  96. extern  char tmpline[];
  97.  
  98. off_t    restart_point;
  99.  
  100. static    int cmd_type;
  101. static    int cmd_form;
  102. static    int cmd_bytesz;
  103. char    cbuf[512];
  104. char    *fromname;
  105.  
  106. struct tab {
  107.     char    *name;
  108.     short    token;
  109.     short    state;
  110.     short    implemented;    /* 1 if command is implemented */
  111.     char    *help;
  112. };
  113.  
  114. struct tab cmdtab[], sitetab[];
  115.  
  116. static char    *copy __P((char *));
  117. static void     help __P((struct tab *, char *));
  118. static struct tab *
  119.          lookup __P((struct tab *, char *));
  120. static void     sizecmd __P((char *));
  121. static void     toolong __P((int));
  122. static int     yylex __P((void));
  123.  
  124. %}
  125.  
  126. %union {
  127.     int    i;
  128.     char   *s;
  129. }
  130.  
  131. %token
  132.     A    B    C    E    F    I
  133.     L    N    P    R    S    T
  134.  
  135.     SP    CRLF    COMMA
  136.  
  137.     USER    PASS    ACCT    REIN    QUIT    PORT
  138.     PASV    TYPE    STRU    MODE    RETR    STOR
  139.     APPE    MLFL    MAIL    MSND    MSOM    MSAM
  140.     MRSQ    MRCP    ALLO    REST    RNFR    RNTO
  141.     ABOR    DELE    CWD    LIST    NLST    SITE
  142.     STAT    HELP    NOOP    MKD    RMD    PWD
  143.     CDUP    STOU    SMNT    SYST    SIZE    MDTM
  144.  
  145.     UMASK    IDLE    CHMOD
  146.  
  147.     LEXERR
  148.  
  149. %token    <s> STRING
  150. %token    <i> NUMBER
  151.  
  152. %type    <i> check_login octal_number byte_size
  153. %type    <i> struct_code mode_code type_code form_code
  154. %type    <s> pathstring pathname password username
  155.  
  156. %start    cmd_list
  157.  
  158. %%
  159.  
  160. cmd_list
  161.     : /* empty */
  162.     | cmd_list cmd
  163.         {
  164.             fromname = (char *) 0;
  165.             restart_point = (off_t) 0;
  166.         }
  167.     | cmd_list rcmd
  168.     ;
  169.  
  170. cmd
  171.     : USER SP username CRLF
  172.         {
  173.             user($3);
  174.             free($3);
  175.         }
  176.     | PASS SP password CRLF
  177.         {
  178.             pass($3);
  179.             free($3);
  180.         }
  181.     | PORT SP host_port CRLF
  182.         {
  183.             usedefault = 0;
  184.             if (pdata >= 0) {
  185.                 (void) close(pdata);
  186.                 pdata = -1;
  187.             }
  188.             reply(200, "PORT command successful.");
  189.         }
  190.     | PASV CRLF
  191.         {
  192.             passive();
  193.         }
  194.     | TYPE SP type_code CRLF
  195.         {
  196.             switch (cmd_type) {
  197.  
  198.             case TYPE_A:
  199.                 if (cmd_form == FORM_N) {
  200.                     reply(200, "Type set to A.");
  201.                     type = cmd_type;
  202.                     form = cmd_form;
  203.                 } else
  204.                     reply(504, "Form must be N.");
  205.                 break;
  206.  
  207.             case TYPE_E:
  208.                 reply(504, "Type E not implemented.");
  209.                 break;
  210.  
  211.             case TYPE_I:
  212.                 reply(200, "Type set to I.");
  213.                 type = cmd_type;
  214.                 break;
  215.  
  216.             case TYPE_L:
  217. #if defined (NBBY) && NBBY == 8
  218.                 if (cmd_bytesz == 8) {
  219.                     reply(200,
  220.                         "Type set to L (byte size 8).");
  221.                     type = cmd_type;
  222.                 } else
  223.                     reply(504, "Byte size must be 8.");
  224. #else /* NBBY == 8 */
  225.                 UNIMPLEMENTED for NBBY != 8
  226. #endif /* NBBY == 8 */
  227.             }
  228.         }
  229.     | STRU SP struct_code CRLF
  230.         {
  231.             switch ($3) {
  232.  
  233.             case STRU_F:
  234.                 reply(200, "STRU F ok.");
  235.                 break;
  236.  
  237.             default:
  238.                 reply(504, "Unimplemented STRU type.");
  239.             }
  240.         }
  241.     | MODE SP mode_code CRLF
  242.         {
  243.             switch ($3) {
  244.  
  245.             case MODE_S:
  246.                 reply(200, "MODE S ok.");
  247.                 break;
  248.  
  249.             default:
  250.                 reply(502, "Unimplemented MODE type.");
  251.             }
  252.         }
  253.     | ALLO SP NUMBER CRLF
  254.         {
  255.             reply(202, "ALLO command ignored.");
  256.         }
  257.     | ALLO SP NUMBER SP R SP NUMBER CRLF
  258.         {
  259.             reply(202, "ALLO command ignored.");
  260.         }
  261.     | RETR check_login SP pathname CRLF
  262.         {
  263.             if ($2 && $4 != NULL)
  264.                 retrieve((char *) 0, $4);
  265.             if ($4 != NULL)
  266.                 free($4);
  267.         }
  268.     | STOR check_login SP pathname CRLF
  269.         {
  270.             if ($2 && $4 != NULL)
  271.                 store($4, "w", 0);
  272.             if ($4 != NULL)
  273.                 free($4);
  274.         }
  275.     | APPE check_login SP pathname CRLF
  276.         {
  277.             if ($2 && $4 != NULL)
  278.                 store($4, "a", 0);
  279.             if ($4 != NULL)
  280.                 free($4);
  281.         }
  282.     | NLST check_login CRLF
  283.         {
  284.             if ($2)
  285.                 send_file_list(".");
  286.         }
  287.     | NLST check_login SP STRING CRLF
  288.         {
  289.             if ($2 && $4 != NULL)
  290.                 send_file_list($4);
  291.             if ($4 != NULL)
  292.                 free($4);
  293.         }
  294.     | LIST check_login CRLF
  295.         {
  296.             if ($2)
  297.                 retrieve("/bin/ls -lgA", "");
  298.         }
  299.     | LIST check_login SP pathname CRLF
  300.         {
  301.             if ($2 && $4 != NULL)
  302.                 retrieve("/bin/ls -lgA %s", $4);
  303.             if ($4 != NULL)
  304.                 free($4);
  305.         }
  306.     | STAT check_login SP pathname CRLF
  307.         {
  308.             if ($2 && $4 != NULL)
  309.                 statfilecmd($4);
  310.             if ($4 != NULL)
  311.                 free($4);
  312.         }
  313.     | STAT CRLF
  314.         {
  315.             statcmd();
  316.         }
  317.     | DELE check_login SP pathname CRLF
  318.         {
  319.             if ($2 && $4 != NULL)
  320.                 delete($4);
  321.             if ($4 != NULL)
  322.                 free($4);
  323.         }
  324.     | RNTO SP pathname CRLF
  325.         {
  326.             if (fromname) {
  327.                 renamecmd(fromname, $3);
  328.                 free(fromname);
  329.                 fromname = (char *) 0;
  330.             } else {
  331.                 reply(503, "Bad sequence of commands.");
  332.             }
  333.             free($3);
  334.         }
  335.     | ABOR CRLF
  336.         {
  337.             reply(225, "ABOR command successful.");
  338.         }
  339.     | CWD check_login CRLF
  340.         {
  341.             if ($2)
  342.                 cwd(pw->pw_dir);
  343.         }
  344.     | CWD check_login SP pathname CRLF
  345.         {
  346.             if ($2 && $4 != NULL)
  347.                 cwd($4);
  348.             if ($4 != NULL)
  349.                 free($4);
  350.         }
  351.     | HELP CRLF
  352.         {
  353.             help(cmdtab, (char *) 0);
  354.         }
  355.     | HELP SP STRING CRLF
  356.         {
  357.             char *cp = $3;
  358.  
  359.             if (strncasecmp(cp, "SITE", 4) == 0) {
  360.                 cp = $3 + 4;
  361.                 if (*cp == ' ')
  362.                     cp++;
  363.                 if (*cp)
  364.                     help(sitetab, cp);
  365.                 else
  366.                     help(sitetab, (char *) 0);
  367.             } else
  368.                 help(cmdtab, $3);
  369.         }
  370.     | NOOP CRLF
  371.         {
  372.             reply(200, "NOOP command successful.");
  373.         }
  374.     | MKD check_login SP pathname CRLF
  375.         {
  376.             if ($2 && $4 != NULL)
  377.                 makedir($4);
  378.             if ($4 != NULL)
  379.                 free($4);
  380.         }
  381.     | RMD check_login SP pathname CRLF
  382.         {
  383.             if ($2 && $4 != NULL)
  384.                 removedir($4);
  385.             if ($4 != NULL)
  386.                 free($4);
  387.         }
  388.     | PWD check_login CRLF
  389.         {
  390.             if ($2)
  391.                 pwd();
  392.         }
  393.     | CDUP check_login CRLF
  394.         {
  395.             if ($2)
  396.                 cwd("..");
  397.         }
  398.     | SITE SP HELP CRLF
  399.         {
  400.             help(sitetab, (char *) 0);
  401.         }
  402.     | SITE SP HELP SP STRING CRLF
  403.         {
  404.             help(sitetab, $5);
  405.         }
  406.     | SITE SP UMASK check_login CRLF
  407.         {
  408.             int oldmask;
  409.  
  410.             if ($4) {
  411.                 oldmask = umask(0);
  412.                 (void) umask(oldmask);
  413.                 reply(200, "Current UMASK is %03o", oldmask);
  414.             }
  415.         }
  416.     | SITE SP UMASK check_login SP octal_number CRLF
  417.         {
  418.             int oldmask;
  419.  
  420.             if ($4) {
  421.                 if (($6 == -1) || ($6 > 0777)) {
  422.                     reply(501, "Bad UMASK value");
  423.                 } else {
  424.                     oldmask = umask($6);
  425.                     reply(200,
  426.                         "UMASK set to %03o (was %03o)",
  427.                         $6, oldmask);
  428.                 }
  429.             }
  430.         }
  431.     | SITE SP CHMOD check_login SP octal_number SP pathname CRLF
  432.         {
  433.             if ($4 && ($8 != NULL)) {
  434.                 if ($6 > 0777)
  435.                     reply(501,
  436.                 "CHMOD: Mode value must be between 0 and 0777");
  437.                 else if (chmod($8, $6) < 0)
  438.                     perror_reply(550, $8);
  439.                 else
  440.                     reply(200, "CHMOD command successful.");
  441.             }
  442.             if ($8 != NULL)
  443.                 free($8);
  444.         }
  445.     | SITE SP IDLE CRLF
  446.         {
  447.             reply(200,
  448.                 "Current IDLE time limit is %d seconds; max %d",
  449.                 timeout, maxtimeout);
  450.         }
  451.     | SITE SP IDLE SP NUMBER CRLF
  452.         {
  453.               if (!guest && $5 == 0) {
  454.               timeout = 0;
  455.               alarm (0);
  456.               reply (200, "IDLE time limit disabled");
  457.             }
  458.             if ($5 < 30 || $5 > maxtimeout) {
  459.                 reply(501,
  460.             "Maximum IDLE time must be between 30 and %d seconds",
  461.                     maxtimeout);
  462.             } else {
  463.                 timeout = $5;
  464.                 (void) alarm((unsigned) timeout);
  465.                 reply(200,
  466.                     "Maximum IDLE time set to %d seconds",
  467.                     timeout);
  468.             }
  469.         }
  470.     | STOU check_login SP pathname CRLF
  471.         {
  472.             if ($2 && $4 != NULL)
  473.                 store($4, "w", 1);
  474.             if ($4 != NULL)
  475.                 free($4);
  476.         }
  477.     | SYST CRLF
  478.         {
  479.                 char *type; /* The official rfc-defined os type.  */
  480.             char *version = 0; /* A more specific type. */
  481.  
  482. #ifdef HAVE_UNAME
  483.             struct utsname u;
  484.             if (uname (&u) == 0) {
  485.                 version =
  486.                   malloc (strlen (u.sysname)
  487.                       + 1 + strlen (u.release) + 1);
  488.                 if (version)
  489.                     sprintf (version, "%s %s",
  490.                          u.sysname, u.release);
  491.                 }
  492. #else
  493. #ifdef BSD
  494.             version = "BSD";
  495. #endif
  496. #endif
  497.  
  498. #ifdef unix
  499.             type = "UNIX";
  500. #else
  501.             type = "UNKNOWN";
  502. #endif
  503.  
  504.             if (version)
  505.                 reply(215, "%s Type: L%d Version: %s",
  506.                       type, NBBY, version);
  507.             else
  508.                 reply(215, "%s Type: L%d", type, NBBY);
  509.  
  510. #ifdef HAVE_UNAME
  511.             if (version)
  512.                 free (version);
  513. #endif
  514.         }
  515.  
  516.         /*
  517.          * SIZE is not in RFC959, but Postel has blessed it and
  518.          * it will be in the updated RFC.
  519.          *
  520.          * Return size of file in a format suitable for
  521.          * using with RESTART (we just count bytes).
  522.          */
  523.     | SIZE check_login SP pathname CRLF
  524.         {
  525.             if ($2 && $4 != NULL)
  526.                 sizecmd($4);
  527.             if ($4 != NULL)
  528.                 free($4);
  529.         }
  530.  
  531.         /*
  532.          * MDTM is not in RFC959, but Postel has blessed it and
  533.          * it will be in the updated RFC.
  534.          *
  535.          * Return modification time of file as an ISO 3307
  536.          * style time. E.g. YYYYMMDDHHMMSS or YYYYMMDDHHMMSS.xxx
  537.          * where xxx is the fractional second (of any precision,
  538.          * not necessarily 3 digits)
  539.          */
  540.     | MDTM check_login SP pathname CRLF
  541.         {
  542.             if ($2 && $4 != NULL) {
  543.                 struct stat stbuf;
  544.                 if (stat($4, &stbuf) < 0)
  545.                     reply(550, "%s: %s",
  546.                         $4, strerror(errno));
  547.                 else if (!S_ISREG(stbuf.st_mode)) {
  548.                     reply(550, "%s: not a plain file.", $4);
  549.                 } else {
  550.                     struct tm *t;
  551.                     t = gmtime(&stbuf.st_mtime);
  552.                     reply(213,
  553.                         "19%02d%02d%02d%02d%02d%02d",
  554.                         t->tm_year, t->tm_mon+1, t->tm_mday,
  555.                         t->tm_hour, t->tm_min, t->tm_sec);
  556.                 }
  557.             }
  558.             if ($4 != NULL)
  559.                 free($4);
  560.         }
  561.     | QUIT CRLF
  562.         {
  563.             reply(221, "Goodbye.");
  564.             dologout(0);
  565.         }
  566.     | error CRLF
  567.         {
  568.             yyerrok;
  569.         }
  570.     ;
  571. rcmd
  572.     : RNFR check_login SP pathname CRLF
  573.         {
  574.             char *renamefrom();
  575.  
  576.             restart_point = (off_t) 0;
  577.             if ($2 && $4) {
  578.                 fromname = renamefrom($4);
  579.                 if (fromname == (char *) 0 && $4) {
  580.                     free($4);
  581.                 }
  582.             }
  583.         }
  584.     | REST SP byte_size CRLF
  585.         {
  586.             fromname = (char *) 0;
  587.             restart_point = $3;    /* XXX $3 is only "int" */
  588.             reply(350, "Restarting at %qd. %s", restart_point,
  589.                 "Send STORE or RETRIEVE to initiate transfer.");
  590.         }
  591.     ;
  592.  
  593. username
  594.     : STRING
  595.     ;
  596.  
  597. password
  598.     : /* empty */
  599.         {
  600.             $$ = (char *)calloc(1, sizeof(char));
  601.         }
  602.     | STRING
  603.     ;
  604.  
  605. byte_size
  606.     : NUMBER
  607.     ;
  608.  
  609. host_port
  610.     : NUMBER COMMA NUMBER COMMA NUMBER COMMA NUMBER COMMA
  611.         NUMBER COMMA NUMBER
  612.         {
  613.             char *a, *p;
  614.  
  615.             a = (char *)&data_dest.sin_addr;
  616.             a[0] = $1; a[1] = $3; a[2] = $5; a[3] = $7;
  617.             p = (char *)&data_dest.sin_port;
  618.             p[0] = $9; p[1] = $11;
  619.             data_dest.sin_family = AF_INET;
  620.         }
  621.     ;
  622.  
  623. form_code
  624.     : N
  625.         {
  626.             $$ = FORM_N;
  627.         }
  628.     | T
  629.         {
  630.             $$ = FORM_T;
  631.         }
  632.     | C
  633.         {
  634.             $$ = FORM_C;
  635.         }
  636.     ;
  637.  
  638. type_code
  639.     : A
  640.         {
  641.             cmd_type = TYPE_A;
  642.             cmd_form = FORM_N;
  643.         }
  644.     | A SP form_code
  645.         {
  646.             cmd_type = TYPE_A;
  647.             cmd_form = $3;
  648.         }
  649.     | E
  650.         {
  651.             cmd_type = TYPE_E;
  652.             cmd_form = FORM_N;
  653.         }
  654.     | E SP form_code
  655.         {
  656.             cmd_type = TYPE_E;
  657.             cmd_form = $3;
  658.         }
  659.     | I
  660.         {
  661.             cmd_type = TYPE_I;
  662.         }
  663.     | L
  664.         {
  665.             cmd_type = TYPE_L;
  666.             cmd_bytesz = NBBY;
  667.         }
  668.     | L SP byte_size
  669.         {
  670.             cmd_type = TYPE_L;
  671.             cmd_bytesz = $3;
  672.         }
  673.         /* this is for a bug in the BBN ftp */
  674.     | L byte_size
  675.         {
  676.             cmd_type = TYPE_L;
  677.             cmd_bytesz = $2;
  678.         }
  679.     ;
  680.  
  681. struct_code
  682.     : F
  683.         {
  684.             $$ = STRU_F;
  685.         }
  686.     | R
  687.         {
  688.             $$ = STRU_R;
  689.         }
  690.     | P
  691.         {
  692.             $$ = STRU_P;
  693.         }
  694.     ;
  695.  
  696. mode_code
  697.     : S
  698.         {
  699.             $$ = MODE_S;
  700.         }
  701.     | B
  702.         {
  703.             $$ = MODE_B;
  704.         }
  705.     | C
  706.         {
  707.             $$ = MODE_C;
  708.         }
  709.     ;
  710.  
  711. pathname
  712.     : pathstring
  713.         {
  714.             /*
  715.              * Problem: this production is used for all pathname
  716.              * processing, but only gives a 550 error reply.
  717.              * This is a valid reply in some cases but not in others.
  718.              */
  719.             if (logged_in && $1 && *$1 == '~') {
  720.                 glob_t gl;
  721.                 int flags = GLOB_NOCHECK;
  722.  
  723. #ifdef GLOB_BRACE
  724.                 flags |= GLOB_BRACE;
  725. #endif
  726. #ifdef GLOB_QUOTE
  727.                 flags |= GLOB_QUOTE;
  728. #endif
  729. #ifdef GLOB_TILDE
  730.                 flags |= GLOB_TILDE;
  731. #endif
  732.  
  733.                 memset(&gl, 0, sizeof(gl));
  734.                 if (glob($1, flags, NULL, &gl) ||
  735.                     gl.gl_pathc == 0) {
  736.                     reply(550, "not found");
  737.                     $$ = NULL;
  738.                 } else {
  739.                     $$ = strdup(gl.gl_pathv[0]);
  740.                 }
  741.                 globfree(&gl);
  742.                 free($1);
  743.             } else
  744.                 $$ = $1;
  745.         }
  746.     ;
  747.  
  748. pathstring
  749.     : STRING
  750.     ;
  751.  
  752. octal_number
  753.     : NUMBER
  754.         {
  755.             int ret, dec, multby, digit;
  756.  
  757.             /*
  758.              * Convert a number that was read as decimal number
  759.              * to what it would be if it had been read as octal.
  760.              */
  761.             dec = $1;
  762.             multby = 1;
  763.             ret = 0;
  764.             while (dec) {
  765.                 digit = dec%10;
  766.                 if (digit > 7) {
  767.                     ret = -1;
  768.                     break;
  769.                 }
  770.                 ret += digit * multby;
  771.                 multby *= 8;
  772.                 dec /= 10;
  773.             }
  774.             $$ = ret;
  775.         }
  776.     ;
  777.  
  778.  
  779. check_login
  780.     : /* empty */
  781.         {
  782.             if (logged_in)
  783.                 $$ = 1;
  784.             else {
  785.                 reply(530, "Please login with USER and PASS.");
  786.                 $$ = 0;
  787.             }
  788.         }
  789.     ;
  790.  
  791. %%
  792.  
  793. extern jmp_buf errcatch;
  794.  
  795. #define    CMD    0    /* beginning of command */
  796. #define    ARGS    1    /* expect miscellaneous arguments */
  797. #define    STR1    2    /* expect SP followed by STRING */
  798. #define    STR2    3    /* expect STRING */
  799. #define    OSTR    4    /* optional SP then STRING */
  800. #define    ZSTR1    5    /* SP then optional STRING */
  801. #define    ZSTR2    6    /* optional STRING after SP */
  802. #define    SITECMD    7    /* SITE command */
  803. #define    NSTR    8    /* Number followed by a string */
  804.  
  805. struct tab cmdtab[] = {        /* In order defined in RFC 765 */
  806.     { "USER", USER, STR1, 1,    "<sp> username" },
  807.     { "PASS", PASS, ZSTR1, 1,    "<sp> password" },
  808.     { "ACCT", ACCT, STR1, 0,    "(specify account)" },
  809.     { "SMNT", SMNT, ARGS, 0,    "(structure mount)" },
  810.     { "REIN", REIN, ARGS, 0,    "(reinitialize server state)" },
  811.     { "QUIT", QUIT, ARGS, 1,    "(terminate service)", },
  812.     { "PORT", PORT, ARGS, 1,    "<sp> b0, b1, b2, b3, b4" },
  813.     { "PASV", PASV, ARGS, 1,    "(set server in passive mode)" },
  814.     { "TYPE", TYPE, ARGS, 1,    "<sp> [ A | E | I | L ]" },
  815.     { "STRU", STRU, ARGS, 1,    "(specify file structure)" },
  816.     { "MODE", MODE, ARGS, 1,    "(specify transfer mode)" },
  817.     { "RETR", RETR, STR1, 1,    "<sp> file-name" },
  818.     { "STOR", STOR, STR1, 1,    "<sp> file-name" },
  819.     { "APPE", APPE, STR1, 1,    "<sp> file-name" },
  820.     { "MLFL", MLFL, OSTR, 0,    "(mail file)" },
  821.     { "MAIL", MAIL, OSTR, 0,    "(mail to user)" },
  822.     { "MSND", MSND, OSTR, 0,    "(mail send to terminal)" },
  823.     { "MSOM", MSOM, OSTR, 0,    "(mail send to terminal or mailbox)" },
  824.     { "MSAM", MSAM, OSTR, 0,    "(mail send to terminal and mailbox)" },
  825.     { "MRSQ", MRSQ, OSTR, 0,    "(mail recipient scheme question)" },
  826.     { "MRCP", MRCP, STR1, 0,    "(mail recipient)" },
  827.     { "ALLO", ALLO, ARGS, 1,    "allocate storage (vacuously)" },
  828.     { "REST", REST, ARGS, 1,    "<sp> offset (restart command)" },
  829.     { "RNFR", RNFR, STR1, 1,    "<sp> file-name" },
  830.     { "RNTO", RNTO, STR1, 1,    "<sp> file-name" },
  831.     { "ABOR", ABOR, ARGS, 1,    "(abort operation)" },
  832.     { "DELE", DELE, STR1, 1,    "<sp> file-name" },
  833.     { "CWD",  CWD,  OSTR, 1,    "[ <sp> directory-name ]" },
  834.     { "XCWD", CWD,    OSTR, 1,    "[ <sp> directory-name ]" },
  835.     { "LIST", LIST, OSTR, 1,    "[ <sp> path-name ]" },
  836.     { "NLST", NLST, OSTR, 1,    "[ <sp> path-name ]" },
  837.     { "SITE", SITE, SITECMD, 1,    "site-cmd [ <sp> arguments ]" },
  838.     { "SYST", SYST, ARGS, 1,    "(get type of operating system)" },
  839.     { "STAT", STAT, OSTR, 1,    "[ <sp> path-name ]" },
  840.     { "HELP", HELP, OSTR, 1,    "[ <sp> <string> ]" },
  841.     { "NOOP", NOOP, ARGS, 1,    "" },
  842.     { "MKD",  MKD,  STR1, 1,    "<sp> path-name" },
  843.     { "XMKD", MKD,  STR1, 1,    "<sp> path-name" },
  844.     { "RMD",  RMD,  STR1, 1,    "<sp> path-name" },
  845.     { "XRMD", RMD,  STR1, 1,    "<sp> path-name" },
  846.     { "PWD",  PWD,  ARGS, 1,    "(return current directory)" },
  847.     { "XPWD", PWD,  ARGS, 1,    "(return current directory)" },
  848.     { "CDUP", CDUP, ARGS, 1,    "(change to parent directory)" },
  849.     { "XCUP", CDUP, ARGS, 1,    "(change to parent directory)" },
  850.     { "STOU", STOU, STR1, 1,    "<sp> file-name" },
  851.     { "SIZE", SIZE, OSTR, 1,    "<sp> path-name" },
  852.     { "MDTM", MDTM, OSTR, 1,    "<sp> path-name" },
  853.     { NULL,   0,    0,    0,    0 }
  854. };
  855.  
  856. struct tab sitetab[] = {
  857.     { "UMASK", UMASK, ARGS, 1,    "[ <sp> umask ]" },
  858.     { "IDLE", IDLE, ARGS, 1,    "[ <sp> maximum-idle-time ]" },
  859.     { "CHMOD", CHMOD, NSTR, 1,    "<sp> mode <sp> file-name" },
  860.     { "HELP", HELP, OSTR, 1,    "[ <sp> <string> ]" },
  861.     { NULL,   0,    0,    0,    0 }
  862. };
  863.  
  864. static struct tab *
  865. lookup(p, cmd)
  866.     struct tab *p;
  867.     char *cmd;
  868. {
  869.  
  870.     for (; p->name != NULL; p++)
  871.         if (strcmp(cmd, p->name) == 0)
  872.             return (p);
  873.     return (0);
  874. }
  875.  
  876. #include <arpa/telnet.h>
  877.  
  878. /*
  879.  * getline - a hacked up version of fgets to ignore TELNET escape codes.
  880.  */
  881. char *
  882. telnet_fgets(s, n, iop)
  883.     char *s;
  884.     int n;
  885.     FILE *iop;
  886. {
  887.     int c;
  888.     register char *cs;
  889.  
  890.     cs = s;
  891. /* tmpline may contain saved command from urgent mode interruption */
  892.     for (c = 0; tmpline[c] != '\0' && --n > 0; ++c) {
  893.         *cs++ = tmpline[c];
  894.         if (tmpline[c] == '\n') {
  895.             *cs++ = '\0';
  896.             if (debug)
  897.                 syslog(LOG_DEBUG, "command: %s", s);
  898.             tmpline[0] = '\0';
  899.             return(s);
  900.         }
  901.         if (c == 0)
  902.             tmpline[0] = '\0';
  903.     }
  904.     while ((c = getc(iop)) != EOF) {
  905.         c &= 0377;
  906.         if (c == IAC) {
  907.             if ((c = getc(iop)) != EOF) {
  908.             c &= 0377;
  909.             switch (c) {
  910.             case WILL:
  911.             case WONT:
  912.                 c = getc(iop);
  913.                 printf("%c%c%c", IAC, DONT, 0377&c);
  914.                 (void) fflush(stdout);
  915.                 continue;
  916.             case DO:
  917.             case DONT:
  918.                 c = getc(iop);
  919.                 printf("%c%c%c", IAC, WONT, 0377&c);
  920.                 (void) fflush(stdout);
  921.                 continue;
  922.             case IAC:
  923.                 break;
  924.             default:
  925.                 continue;    /* ignore command */
  926.             }
  927.             }
  928.         }
  929.         *cs++ = c;
  930.         if (--n <= 0 || c == '\n')
  931.             break;
  932.     }
  933.     if (c == EOF && cs == s)
  934.         return (NULL);
  935.     *cs++ = '\0';
  936.     if (debug) {
  937.         if (!guest && strncasecmp("pass ", s, 5) == 0) {
  938.             /* Don't syslog passwords */
  939.             syslog(LOG_DEBUG, "command: %.5s ???", s);
  940.         } else {
  941.             register char *cp;
  942.             register int len;
  943.  
  944.             /* Don't syslog trailing CR-LF */
  945.             len = strlen(s);
  946.             cp = s + len - 1;
  947.             while (cp >= s && (*cp == '\n' || *cp == '\r')) {
  948.                 --cp;
  949.                 --len;
  950.             }
  951.             syslog(LOG_DEBUG, "command: %.*s", len, s);
  952.         }
  953.     }
  954.     return (s);
  955. }
  956.  
  957. static void
  958. toolong(signo)
  959.     int signo;
  960. {
  961.  
  962.     reply(421,
  963.         "Timeout (%d seconds): closing control connection.", timeout);
  964.     if (logging)
  965.         syslog(LOG_INFO, "User %s timed out after %d seconds",
  966.             (pw ? pw -> pw_name : "unknown"), timeout);
  967.     dologout(1);
  968. }
  969.  
  970. static int
  971. yylex()
  972. {
  973.     static int cpos, state;
  974.     char *cp, *cp2;
  975.     struct tab *p;
  976.     int n;
  977.     char c;
  978.  
  979.     for (;;) {
  980.         switch (state) {
  981.  
  982.         case CMD:
  983.             (void) signal(SIGALRM, toolong);
  984.             (void) alarm((unsigned) timeout);
  985.             if (telnet_fgets(cbuf, sizeof(cbuf)-1, stdin) == NULL) {
  986.                 reply(221, "You could at least say goodbye.");
  987.                 dologout(0);
  988.             }
  989.             (void) alarm(0);
  990. #ifdef SETPROCTITLE
  991.             if (strncasecmp(cbuf, "PASS", 4) != NULL)
  992.                 setproctitle("%s: %s", proctitle, cbuf);
  993. #endif /* SETPROCTITLE */
  994.             if ((cp = strchr(cbuf, '\r'))) {
  995.                 *cp++ = '\n';
  996.                 *cp = '\0';
  997.             }
  998.             if ((cp = strpbrk(cbuf, " \n")))
  999.                 cpos = cp - cbuf;
  1000.             if (cpos == 0)
  1001.                 cpos = 4;
  1002.             c = cbuf[cpos];
  1003.             cbuf[cpos] = '\0';
  1004.             upper(cbuf);
  1005.             p = lookup(cmdtab, cbuf);
  1006.             cbuf[cpos] = c;
  1007.             if (p != 0) {
  1008.                 if (p->implemented == 0) {
  1009.                     nack(p->name);
  1010.                     longjmp(errcatch,0);
  1011.                     /* NOTREACHED */
  1012.                 }
  1013.                 state = p->state;
  1014.                 yylval.s = p->name;
  1015.                 return (p->token);
  1016.             }
  1017.             break;
  1018.  
  1019.         case SITECMD:
  1020.             if (cbuf[cpos] == ' ') {
  1021.                 cpos++;
  1022.                 return (SP);
  1023.             }
  1024.             cp = &cbuf[cpos];
  1025.             if ((cp2 = strpbrk(cp, " \n")))
  1026.                 cpos = cp2 - cbuf;
  1027.             c = cbuf[cpos];
  1028.             cbuf[cpos] = '\0';
  1029.             upper(cp);
  1030.             p = lookup(sitetab, cp);
  1031.             cbuf[cpos] = c;
  1032.             if (p != 0) {
  1033.                 if (p->implemented == 0) {
  1034.                     state = CMD;
  1035.                     nack(p->name);
  1036.                     longjmp(errcatch,0);
  1037.                     /* NOTREACHED */
  1038.                 }
  1039.                 state = p->state;
  1040.                 yylval.s = p->name;
  1041.                 return (p->token);
  1042.             }
  1043.             state = CMD;
  1044.             break;
  1045.  
  1046.         case OSTR:
  1047.             if (cbuf[cpos] == '\n') {
  1048.                 state = CMD;
  1049.                 return (CRLF);
  1050.             }
  1051.             /* FALLTHROUGH */
  1052.  
  1053.         case STR1:
  1054.         case ZSTR1:
  1055.         dostr1:
  1056.             if (cbuf[cpos] == ' ') {
  1057.                 cpos++;
  1058.                 state = state == OSTR ? STR2 : ++state;
  1059.                 return (SP);
  1060.             }
  1061.             break;
  1062.  
  1063.         case ZSTR2:
  1064.             if (cbuf[cpos] == '\n') {
  1065.                 state = CMD;
  1066.                 return (CRLF);
  1067.             }
  1068.             /* FALLTHROUGH */
  1069.  
  1070.         case STR2:
  1071.             cp = &cbuf[cpos];
  1072.             n = strlen(cp);
  1073.             cpos += n - 1;
  1074.             /*
  1075.              * Make sure the string is nonempty and \n terminated.
  1076.              */
  1077.             if (n > 1 && cbuf[cpos] == '\n') {
  1078.                 cbuf[cpos] = '\0';
  1079.                 yylval.s = copy(cp);
  1080.                 cbuf[cpos] = '\n';
  1081.                 state = ARGS;
  1082.                 return (STRING);
  1083.             }
  1084.             break;
  1085.  
  1086.         case NSTR:
  1087.             if (cbuf[cpos] == ' ') {
  1088.                 cpos++;
  1089.                 return (SP);
  1090.             }
  1091.             if (isdigit(cbuf[cpos])) {
  1092.                 cp = &cbuf[cpos];
  1093.                 while (isdigit(cbuf[++cpos]))
  1094.                     ;
  1095.                 c = cbuf[cpos];
  1096.                 cbuf[cpos] = '\0';
  1097.                 yylval.i = atoi(cp);
  1098.                 cbuf[cpos] = c;
  1099.                 state = STR1;
  1100.                 return (NUMBER);
  1101.             }
  1102.             state = STR1;
  1103.             goto dostr1;
  1104.  
  1105.         case ARGS:
  1106.             if (isdigit(cbuf[cpos])) {
  1107.                 cp = &cbuf[cpos];
  1108.                 while (isdigit(cbuf[++cpos]))
  1109.                     ;
  1110.                 c = cbuf[cpos];
  1111.                 cbuf[cpos] = '\0';
  1112.                 yylval.i = atoi(cp);
  1113.                 cbuf[cpos] = c;
  1114.                 return (NUMBER);
  1115.             }
  1116.             switch (cbuf[cpos++]) {
  1117.  
  1118.             case '\n':
  1119.                 state = CMD;
  1120.                 return (CRLF);
  1121.  
  1122.             case ' ':
  1123.                 return (SP);
  1124.  
  1125.             case ',':
  1126.                 return (COMMA);
  1127.  
  1128.             case 'A':
  1129.             case 'a':
  1130.                 return (A);
  1131.  
  1132.             case 'B':
  1133.             case 'b':
  1134.                 return (B);
  1135.  
  1136.             case 'C':
  1137.             case 'c':
  1138.                 return (C);
  1139.  
  1140.             case 'E':
  1141.             case 'e':
  1142.                 return (E);
  1143.  
  1144.             case 'F':
  1145.             case 'f':
  1146.                 return (F);
  1147.  
  1148.             case 'I':
  1149.             case 'i':
  1150.                 return (I);
  1151.  
  1152.             case 'L':
  1153.             case 'l':
  1154.                 return (L);
  1155.  
  1156.             case 'N':
  1157.             case 'n':
  1158.                 return (N);
  1159.  
  1160.             case 'P':
  1161.             case 'p':
  1162.                 return (P);
  1163.  
  1164.             case 'R':
  1165.             case 'r':
  1166.                 return (R);
  1167.  
  1168.             case 'S':
  1169.             case 's':
  1170.                 return (S);
  1171.  
  1172.             case 'T':
  1173.             case 't':
  1174.                 return (T);
  1175.  
  1176.             }
  1177.             break;
  1178.  
  1179.         default:
  1180.             fatal("Unknown state in scanner.");
  1181.         }
  1182.         yyerror((char *) 0);
  1183.         state = CMD;
  1184.         longjmp(errcatch,0);
  1185.     }
  1186. }
  1187.  
  1188. void
  1189. upper(s)
  1190.     char *s;
  1191. {
  1192.     while (*s != '\0') {
  1193.         if (islower(*s))
  1194.             *s = toupper(*s);
  1195.         s++;
  1196.     }
  1197. }
  1198.  
  1199. static char *
  1200. copy(s)
  1201.     char *s;
  1202. {
  1203.     char *p;
  1204.  
  1205.     p = malloc((unsigned) strlen(s) + 1);
  1206.     if (p == NULL)
  1207.         fatal("Ran out of memory.");
  1208.     (void) strcpy(p, s);
  1209.     return (p);
  1210. }
  1211.  
  1212. static void
  1213. help(ctab, s)
  1214.     struct tab *ctab;
  1215.     char *s;
  1216. {
  1217.     struct tab *c;
  1218.     int width, NCMDS;
  1219.     char *type;
  1220.  
  1221.     if (ctab == sitetab)
  1222.         type = "SITE ";
  1223.     else
  1224.         type = "";
  1225.     width = 0, NCMDS = 0;
  1226.     for (c = ctab; c->name != NULL; c++) {
  1227.         int len = strlen(c->name);
  1228.  
  1229.         if (len > width)
  1230.             width = len;
  1231.         NCMDS++;
  1232.     }
  1233.     width = (width + 8) &~ 7;
  1234.     if (s == 0) {
  1235.         int i, j, w;
  1236.         int columns, lines;
  1237.  
  1238.         lreply(214, "The following %scommands are recognized %s.",
  1239.             type, "(* =>'s unimplemented)");
  1240.         columns = 76 / width;
  1241.         if (columns == 0)
  1242.             columns = 1;
  1243.         lines = (NCMDS + columns - 1) / columns;
  1244.         for (i = 0; i < lines; i++) {
  1245.             printf("   ");
  1246.             for (j = 0; j < columns; j++) {
  1247.                 c = ctab + j * lines + i;
  1248.                 printf("%s%c", c->name,
  1249.                     c->implemented ? ' ' : '*');
  1250.                 if (c + lines >= &ctab[NCMDS])
  1251.                     break;
  1252.                 w = strlen(c->name) + 1;
  1253.                 while (w < width) {
  1254.                     putchar(' ');
  1255.                     w++;
  1256.                 }
  1257.             }
  1258.             printf("\r\n");
  1259.         }
  1260.         (void) fflush(stdout);
  1261.         reply(214, "Direct comments to ftp-bugs@%s.", hostname);
  1262.         return;
  1263.     }
  1264.     upper(s);
  1265.     c = lookup(ctab, s);
  1266.     if (c == (struct tab *)0) {
  1267.         reply(502, "Unknown command %s.", s);
  1268.         return;
  1269.     }
  1270.     if (c->implemented)
  1271.         reply(214, "Syntax: %s%s %s", type, c->name, c->help);
  1272.     else
  1273.         reply(214, "%s%-*s\t%s; unimplemented.", type, width,
  1274.             c->name, c->help);
  1275. }
  1276.  
  1277. static void
  1278. sizecmd(filename)
  1279.     char *filename;
  1280. {
  1281.     switch (type) {
  1282.     case TYPE_L:
  1283.     case TYPE_I: {
  1284.         struct stat stbuf;
  1285.         if (stat(filename, &stbuf) < 0 || !S_ISREG(stbuf.st_mode))
  1286.             reply(550, "%s: not a plain file.", filename);
  1287.         else
  1288.             reply(213, "%qu", stbuf.st_size);
  1289.         break; }
  1290.     case TYPE_A: {
  1291.         FILE *fin;
  1292.         int c;
  1293.         off_t count;
  1294.         struct stat stbuf;
  1295.         fin = fopen(filename, "r");
  1296.         if (fin == NULL) {
  1297.             perror_reply(550, filename);
  1298.             return;
  1299.         }
  1300.         if (fstat(fileno(fin), &stbuf) < 0 || !S_ISREG(stbuf.st_mode)) {
  1301.             reply(550, "%s: not a plain file.", filename);
  1302.             (void) fclose(fin);
  1303.             return;
  1304.         }
  1305.  
  1306.         count = 0;
  1307.         while((c=getc(fin)) != EOF) {
  1308.             if (c == '\n')    /* will get expanded to \r\n */
  1309.                 count++;
  1310.             count++;
  1311.         }
  1312.         (void) fclose(fin);
  1313.  
  1314.         reply(213, "%qd", count);
  1315.         break; }
  1316.     default:
  1317.         reply(504, "SIZE not implemented for Type %c.", "?AEIL"[type]);
  1318.     }
  1319. }
  1320.