1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739
|
#ifndef lint
static char ftpsccsid[] = "@(#)yaccpar 1.8 (Berkeley) 01/20/91";
#endif
#define FTPBYACC 1
#line 26 "ftp.y"
#ifndef lint
static char sccsid[] = "@(#)ftpcmd.y 5.20.1.1 (Berkeley) 3/2/89";
#endif /* not lint */
#include <sys/param.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/ftp.h>
#include <stdio.h>
#include <signal.h>
#include <ctype.h>
#include <pwd.h>
#include <setjmp.h>
#include <syslog.h>
#include <sys/stat.h>
#include <time.h>
extern struct sockaddr_in data_dest;
extern int logged_in;
extern struct passwd *pw;
extern int guest;
extern int logging;
extern int type;
extern int form;
extern int debug;
extern int timeout;
extern int maxtimeout;
extern int pdata;
extern char hostname[], remotehost[];
extern char proctitle[];
extern char *globerr;
extern int usedefault;
extern int transflag;
extern char tmpline[];
char **glob();
static int cmd_type;
static int cmd_form;
static int cmd_bytesz;
char cbuf[512];
char *fromname;
char *index();
#line 54 "ftp.tab.c"
#define A 257
#define B 258
#define C 259
#define E 260
#define F 261
#define I 262
#define L 263
#define N 264
#define P 265
#define R 266
#define S 267
#define T 268
#define SP 269
#define CRLF 270
#define COMMA 271
#define STRING 272
#define NUMBER 273
#define USER 274
#define PASS 275
#define ACCT 276
#define REIN 277
#define QUIT 278
#define PORT 279
#define PASV 280
#define TYPE 281
#define STRU 282
#define MODE 283
#define RETR 284
#define STOR 285
#define APPE 286
#define MLFL 287
#define MAIL 288
#define MSND 289
#define MSOM 290
#define MSAM 291
#define MRSQ 292
#define MRCP 293
#define ALLO 294
#define REST 295
#define RNFR 296
#define RNTO 297
#define ABOR 298
#define DELE 299
#define CWD 300
#define LIST 301
#define NLST 302
#define SITE 303
#define STAT 304
#define HELP 305
#define NOOP 306
#define MKD 307
#define RMD 308
#define PWD 309
#define CDUP 310
#define STOU 311
#define SMNT 312
#define SYST 313
#define SIZE 314
#define MDTM 315
#define UMASK 316
#define IDLE 317
#define CHMOD 318
#define LEXERR 319
#define FTPERRCODE 256
short ftplhs[] = { -1,
0, 0, 0, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 2, 3, 4, 4,
12, 5, 13, 13, 13, 6, 6, 6, 6, 6,
6, 6, 6, 7, 7, 7, 8, 8, 8, 10,
14, 11, 9,
};
short ftplen[] = { 2,
0, 2, 2, 4, 4, 4, 2, 4, 4, 4,
4, 8, 5, 5, 5, 3, 5, 3, 5, 5,
2, 5, 4, 2, 3, 5, 2, 4, 2, 5,
5, 3, 3, 4, 6, 5, 7, 9, 4, 6,
5, 2, 5, 5, 2, 2, 5, 1, 0, 1,
1, 11, 1, 1, 1, 1, 3, 1, 3, 1,
1, 3, 2, 1, 1, 1, 1, 1, 1, 1,
1, 1, 0,
};
short ftpdefred[] = { 1,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
73, 73, 73, 0, 73, 0, 0, 73, 73, 73,
73, 0, 0, 0, 0, 73, 73, 73, 73, 73,
0, 73, 73, 2, 3, 46, 0, 0, 45, 0,
7, 0, 0, 0, 0, 0, 0, 0, 0, 0,
24, 0, 0, 0, 0, 0, 21, 0, 0, 27,
29, 0, 0, 0, 0, 0, 42, 0, 0, 48,
0, 50, 0, 0, 0, 0, 0, 60, 0, 0,
64, 66, 65, 0, 68, 69, 67, 0, 0, 0,
0, 0, 0, 71, 0, 70, 0, 0, 25, 0,
18, 0, 16, 0, 73, 0, 73, 0, 0, 0,
0, 32, 33, 0, 0, 0, 4, 5, 0, 6,
0, 0, 0, 51, 63, 8, 9, 10, 0, 0,
0, 0, 11, 0, 23, 0, 0, 0, 0, 0,
34, 0, 0, 39, 0, 0, 28, 0, 0, 0,
0, 0, 0, 55, 53, 54, 57, 59, 62, 13,
14, 15, 0, 47, 22, 26, 19, 17, 0, 0,
36, 0, 0, 20, 30, 31, 41, 43, 44, 0,
0, 35, 72, 0, 40, 0, 0, 0, 37, 0,
0, 12, 0, 0, 38, 0, 0, 0, 52,
};
short ftpdgoto[] = { 1,
34, 35, 71, 73, 75, 80, 84, 88, 45, 95,
184, 125, 157, 96,
};
short ftpsindex[] = { 0,
-224, -247, -239, -236, -232, -222, -204, -200, -181, -177,
0, 0, 0, -166, 0, -161, -199, 0, 0, 0,
0, -160, -159, -264, -158, 0, 0, 0, 0, 0,
-157, 0, 0, 0, 0, 0, -167, -162, 0, -156,
0, -250, -198, -165, -155, -154, -153, -151, -150, -152,
0, -145, -252, -229, -217, -302, 0, -144, -146, 0,
0, -142, -141, -140, -139, -137, 0, -136, -135, 0,
-134, 0, -133, -132, -130, -131, -128, 0, -249, -127,
0, 0, 0, -126, 0, 0, 0, -125, -152, -152,
-152, -205, -152, 0, -124, 0, -152, -152, 0, -152,
0, -143, 0, -173, 0, -171, 0, -152, -123, -152,
-152, 0, 0, -152, -152, -152, 0, 0, -138, 0,
-164, -164, -122, 0, 0, 0, 0, 0, -121, -120,
-118, -148, 0, -117, 0, -116, -115, -114, -113, -112,
0, -163, -111, 0, -110, -109, 0, -107, -106, -105,
-104, -103, -129, 0, 0, 0, 0, 0, 0, 0,
0, 0, -101, 0, 0, 0, 0, 0, -100, -102,
0, -98, -102, 0, 0, 0, 0, 0, 0, -99,
-97, 0, 0, -95, 0, -96, -94, -92, 0, -152,
-93, 0, -91, -90, 0, -88, -87, -86, 0,
};
short ftprindex[] = { 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, -83, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, -82, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, -81, -80, 0, -158, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,
};
short ftpgindex[] = { 0,
0, 0, 0, 0, 0, 0, 0, 0, 16, -89,
-25, 35, 47, 0,
};
#define FTPTABLESIZE 190
short ftptable[] = { 129,
130, 131, 104, 134, 59, 60, 76, 136, 137, 77,
138, 78, 79, 105, 106, 107, 98, 99, 146, 123,
148, 149, 36, 124, 150, 151, 152, 46, 47, 37,
49, 2, 38, 52, 53, 54, 55, 39, 58, 100,
101, 62, 63, 64, 65, 66, 40, 68, 69, 3,
4, 102, 103, 5, 6, 7, 8, 9, 10, 11,
12, 13, 81, 132, 133, 41, 82, 83, 42, 14,
51, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 25, 26, 27, 28, 29, 30, 43, 31, 32,
33, 44, 85, 86, 154, 140, 141, 143, 144, 155,
193, 87, 48, 156, 70, 170, 171, 50, 56, 72,
57, 61, 67, 89, 90, 91, 74, 163, 93, 94,
142, 92, 145, 97, 108, 109, 110, 111, 139, 112,
113, 114, 115, 116, 153, 117, 118, 121, 119, 120,
122, 180, 126, 127, 128, 135, 147, 186, 160, 161,
124, 162, 164, 165, 166, 167, 168, 159, 173, 169,
174, 172, 175, 176, 177, 178, 179, 181, 158, 182,
183, 185, 190, 187, 189, 188, 191, 192, 195, 194,
196, 0, 0, 198, 197, 73, 199, 49, 56, 58,
};
short ftpcheck[] = { 89,
90, 91, 305, 93, 269, 270, 257, 97, 98, 260,
100, 262, 263, 316, 317, 318, 269, 270, 108, 269,
110, 111, 270, 273, 114, 115, 116, 12, 13, 269,
15, 256, 269, 18, 19, 20, 21, 270, 23, 269,
270, 26, 27, 28, 29, 30, 269, 32, 33, 274,
275, 269, 270, 278, 279, 280, 281, 282, 283, 284,
285, 286, 261, 269, 270, 270, 265, 266, 269, 294,
270, 296, 297, 298, 299, 300, 301, 302, 303, 304,
305, 306, 307, 308, 309, 310, 311, 269, 313, 314,
315, 269, 258, 259, 259, 269, 270, 269, 270, 264,
190, 267, 269, 268, 272, 269, 270, 269, 269, 272,
270, 270, 270, 269, 269, 269, 273, 266, 269, 272,
105, 273, 107, 269, 269, 272, 269, 269, 272, 270,
270, 269, 269, 269, 273, 270, 270, 269, 271, 270,
269, 271, 270, 270, 270, 270, 270, 173, 270, 270,
273, 270, 270, 270, 270, 270, 270, 123, 269, 272,
270, 273, 270, 270, 270, 270, 270, 269, 122, 270,
273, 270, 269, 273, 270, 273, 271, 270, 270, 273,
271, -1, -1, 271, 273, 269, 273, 270, 270, 270,
};
#define FTPFINAL 1
#ifndef FTPDEBUG
#define FTPDEBUG 0
#endif
#define FTPMAXTOKEN 319
#if FTPDEBUG
char *ftpname[] = {
"end-of-file",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A","B","C","E","F","I","L","N",
"P","R","S","T","SP","CRLF","COMMA","STRING","NUMBER","USER","PASS","ACCT",
"REIN","QUIT","PORT","PASV","TYPE","STRU","MODE","RETR","STOR","APPE","MLFL",
"MAIL","MSND","MSOM","MSAM","MRSQ","MRCP","ALLO","REST","RNFR","RNTO","ABOR",
"DELE","CWD","LIST","NLST","SITE","STAT","HELP","NOOP","MKD","RMD","PWD","CDUP",
"STOU","SMNT","SYST","SIZE","MDTM","UMASK","IDLE","CHMOD","LEXERR",
};
char *ftprule[] = {
"$accept : cmd_list",
"cmd_list :",
"cmd_list : cmd_list cmd",
"cmd_list : cmd_list rcmd",
"cmd : USER SP username CRLF",
"cmd : PASS SP password CRLF",
"cmd : PORT SP host_port CRLF",
"cmd : PASV CRLF",
"cmd : TYPE SP type_code CRLF",
"cmd : STRU SP struct_code CRLF",
"cmd : MODE SP mode_code CRLF",
"cmd : ALLO SP NUMBER CRLF",
"cmd : ALLO SP NUMBER SP R SP NUMBER CRLF",
"cmd : RETR check_login SP pathname CRLF",
"cmd : STOR check_login SP pathname CRLF",
"cmd : APPE check_login SP pathname CRLF",
"cmd : NLST check_login CRLF",
"cmd : NLST check_login SP STRING CRLF",
"cmd : LIST check_login CRLF",
"cmd : LIST check_login SP pathname CRLF",
"cmd : STAT check_login SP pathname CRLF",
"cmd : STAT CRLF",
"cmd : DELE check_login SP pathname CRLF",
"cmd : RNTO SP pathname CRLF",
"cmd : ABOR CRLF",
"cmd : CWD check_login CRLF",
"cmd : CWD check_login SP pathname CRLF",
"cmd : HELP CRLF",
"cmd : HELP SP STRING CRLF",
"cmd : NOOP CRLF",
"cmd : MKD check_login SP pathname CRLF",
"cmd : RMD check_login SP pathname CRLF",
"cmd : PWD check_login CRLF",
"cmd : CDUP check_login CRLF",
"cmd : SITE SP HELP CRLF",
"cmd : SITE SP HELP SP STRING CRLF",
"cmd : SITE SP UMASK check_login CRLF",
"cmd : SITE SP UMASK check_login SP octal_number CRLF",
"cmd : SITE SP CHMOD check_login SP octal_number SP pathname CRLF",
"cmd : SITE SP IDLE CRLF",
"cmd : SITE SP IDLE SP NUMBER CRLF",
"cmd : STOU check_login SP pathname CRLF",
"cmd : SYST CRLF",
"cmd : SIZE check_login SP pathname CRLF",
"cmd : MDTM check_login SP pathname CRLF",
"cmd : QUIT CRLF",
"cmd : error CRLF",
"rcmd : RNFR check_login SP pathname CRLF",
"username : STRING",
"password :",
"password : STRING",
"byte_size : NUMBER",
"host_port : NUMBER COMMA NUMBER COMMA NUMBER COMMA NUMBER COMMA NUMBER COMMA NUMBER",
"form_code : N",
"form_code : T",
"form_code : C",
"type_code : A",
"type_code : A SP form_code",
"type_code : E",
"type_code : E SP form_code",
"type_code : I",
"type_code : L",
"type_code : L SP byte_size",
"type_code : L byte_size",
"struct_code : F",
"struct_code : R",
"struct_code : P",
"mode_code : S",
"mode_code : B",
"mode_code : C",
"pathname : pathstring",
"pathstring : STRING",
"octal_number : NUMBER",
"check_login :",
};
#endif
#ifndef FTPSTYPE
typedef int FTPSTYPE;
#endif
#define ftpclearin (ftpchar=(-1))
#define ftperrok (ftperrflag=0)
#ifdef FTPSTACKSIZE
#ifndef FTPMAXDEPTH
#define FTPMAXDEPTH FTPSTACKSIZE
#endif
#else
#ifdef FTPMAXDEPTH
#define FTPSTACKSIZE FTPMAXDEPTH
#else
#define FTPSTACKSIZE 500
#define FTPMAXDEPTH 500
#endif
#endif
int ftpdebug;
int ftpnerrs;
int ftperrflag;
int ftpchar;
short *ftpssp;
FTPSTYPE *ftpvsp;
FTPSTYPE ftpval;
FTPSTYPE ftplval;
short ftpss[FTPSTACKSIZE];
FTPSTYPE ftpvs[FTPSTACKSIZE];
#define ftpstacksize FTPSTACKSIZE
#line 658 "ftp.y"
extern jmp_buf errcatch;
#define CMD 0 /* beginning of command */
#define ARGS 1 /* expect miscellaneous arguments */
#define STR1 2 /* expect SP followed by STRING */
#define STR2 3 /* expect STRING */
#define OSTR 4 /* optional SP then STRING */
#define ZSTR1 5 /* SP then optional STRING */
#define ZSTR2 6 /* optional STRING after SP */
#define SITECMD 7 /* SITE command */
#define NSTR 8 /* Number followed by a string */
struct tab {
char *name;
short token;
short state;
short implemented; /* 1 if command is implemented */
char *help;
};
struct tab cmdtab[] = { /* In order defined in RFC 765 */
{ "USER", USER, STR1, 1, "<sp> username" },
{ "PASS", PASS, ZSTR1, 1, "<sp> password" },
{ "ACCT", ACCT, STR1, 0, "(specify account)" },
{ "SMNT", SMNT, ARGS, 0, "(structure mount)" },
{ "REIN", REIN, ARGS, 0, "(reinitialize server state)" },
{ "QUIT", QUIT, ARGS, 1, "(terminate service)", },
{ "PORT", PORT, ARGS, 1, "<sp> b0, b1, b2, b3, b4" },
{ "PASV", PASV, ARGS, 1, "(set server in passive mode)" },
{ "TYPE", TYPE, ARGS, 1, "<sp> [ A | E | I | L ]" },
{ "STRU", STRU, ARGS, 1, "(specify file structure)" },
{ "MODE", MODE, ARGS, 1, "(specify transfer mode)" },
{ "RETR", RETR, STR1, 1, "<sp> file-name" },
{ "STOR", STOR, STR1, 1, "<sp> file-name" },
{ "APPE", APPE, STR1, 1, "<sp> file-name" },
{ "MLFL", MLFL, OSTR, 0, "(mail file)" },
{ "MAIL", MAIL, OSTR, 0, "(mail to user)" },
{ "MSND", MSND, OSTR, 0, "(mail send to terminal)" },
{ "MSOM", MSOM, OSTR, 0, "(mail send to terminal or mailbox)" },
{ "MSAM", MSAM, OSTR, 0, "(mail send to terminal and mailbox)" },
{ "MRSQ", MRSQ, OSTR, 0, "(mail recipient scheme question)" },
{ "MRCP", MRCP, STR1, 0, "(mail recipient)" },
{ "ALLO", ALLO, ARGS, 1, "allocate storage (vacuously)" },
{ "REST", REST, ARGS, 0, "(restart command)" },
{ "RNFR", RNFR, STR1, 1, "<sp> file-name" },
{ "RNTO", RNTO, STR1, 1, "<sp> file-name" },
{ "ABOR", ABOR, ARGS, 1, "(abort operation)" },
{ "DELE", DELE, STR1, 1, "<sp> file-name" },
{ "CWD", CWD, OSTR, 1, "[ <sp> directory-name ]" },
{ "XCWD", CWD, OSTR, 1, "[ <sp> directory-name ]" },
{ "LIST", LIST, OSTR, 1, "[ <sp> path-name ]" },
{ "NLST", NLST, OSTR, 1, "[ <sp> path-name ]" },
{ "SITE", SITE, SITECMD, 1, "site-cmd [ <sp> arguments ]" },
{ "SYST", SYST, ARGS, 1, "(get type of operating system)" },
{ "STAT", STAT, OSTR, 1, "[ <sp> path-name ]" },
{ "HELP", HELP, OSTR, 1, "[ <sp> <string> ]" },
{ "NOOP", NOOP, ARGS, 1, "" },
{ "MKD", MKD, STR1, 1, "<sp> path-name" },
{ "XMKD", MKD, STR1, 1, "<sp> path-name" },
{ "RMD", RMD, STR1, 1, "<sp> path-name" },
{ "XRMD", RMD, STR1, 1, "<sp> path-name" },
{ "PWD", PWD, ARGS, 1, "(return current directory)" },
{ "XPWD", PWD, ARGS, 1, "(return current directory)" },
{ "CDUP", CDUP, ARGS, 1, "(change to parent directory)" },
{ "XCUP", CDUP, ARGS, 1, "(change to parent directory)" },
{ "STOU", STOU, STR1, 1, "<sp> file-name" },
{ "SIZE", SIZE, OSTR, 1, "<sp> path-name" },
{ "MDTM", MDTM, OSTR, 1, "<sp> path-name" },
{ NULL, 0, 0, 0, 0 }
};
struct tab sitetab[] = {
{ "UMASK", UMASK, ARGS, 1, "[ <sp> umask ]" },
{ "IDLE", IDLE, ARGS, 1, "[ <sp> maximum-idle-time ]" },
{ "CHMOD", CHMOD, NSTR, 1, "<sp> mode <sp> file-name" },
{ "HELP", HELP, OSTR, 1, "[ <sp> <string> ]" },
{ NULL, 0, 0, 0, 0 }
};
struct tab *
lookup(p, cmd)
register struct tab *p;
char *cmd;
{
for (; p->name != NULL; p++)
if (strcmp(cmd, p->name) == 0)
return (p);
return (0);
}
#include <arpa/telnet.h>
/*
* getline - a hacked up version of fgets to ignore TELNET escape codes.
*/
char *
getline(s, n, iop)
char *s;
register FILE *iop;
{
register c;
register char *cs;
cs = s;
/* tmpline may contain saved command from urgent mode interruption */
for (c = 0; tmpline[c] != '\0' && --n > 0; ++c) {
*cs++ = tmpline[c];
if (tmpline[c] == '\n') {
*cs++ = '\0';
if (debug)
syslog(LOG_DEBUG, "command: %s", s);
tmpline[0] = '\0';
return(s);
}
if (c == 0)
tmpline[0] = '\0';
}
while ((c = getc(iop)) != EOF) {
c &= 0377;
if (c == IAC) {
if ((c = getc(iop)) != EOF) {
c &= 0377;
switch (c) {
case WILL:
case WONT:
c = getc(iop);
printf("%c%c%c", IAC, DONT, 0377&c);
(void) fflush(stdout);
continue;
case DO:
case DONT:
c = getc(iop);
printf("%c%c%c", IAC, WONT, 0377&c);
(void) fflush(stdout);
continue;
case IAC:
break;
default:
continue; /* ignore command */
}
}
}
*cs++ = c;
if (--n <= 0 || c == '\n')
break;
}
if (c == EOF && cs == s)
return (NULL);
*cs++ = '\0';
if (debug)
syslog(LOG_DEBUG, "command: %s", s);
return (s);
}
static int
toolong()
{
time_t now;
extern char *ctime();
extern time_t time();
reply(421,
"Timeout (%d seconds): closing control connection.", timeout);
(void) time(&now);
if (logging) {
syslog(LOG_INFO,
"User %s timed out after %d seconds at %s",
(pw ? pw -> pw_name : "unknown"), timeout, ctime(&now));
}
dologout(1);
}
ftplex()
{
static int cpos, state;
register char *cp, *cp2;
register struct tab *p;
int n;
char c, *strpbrk();
char *copy();
for (;;) {
switch (state) {
case CMD:
(void) signal(SIGALRM, toolong);
(void) alarm((unsigned) timeout);
if (getline(cbuf, sizeof(cbuf)-1, stdin) == NULL) {
reply(221, "You could at least say goodbye.");
dologout(0);
}
(void) alarm(0);
#ifdef SETPROCTITLE
if (strncasecmp(cbuf, "PASS", 4) != NULL)
setproctitle("%s: %s", proctitle, cbuf);
#endif /* SETPROCTITLE */
if ((cp = index(cbuf, '\r'))) {
*cp++ = '\n';
*cp = '\0';
}
if ((cp = strpbrk(cbuf, " \n")))
cpos = cp - cbuf;
if (cpos == 0)
cpos = 4;
c = cbuf[cpos];
cbuf[cpos] = '\0';
upper(cbuf);
p = lookup(cmdtab, cbuf);
cbuf[cpos] = c;
if (p != 0) {
if (p->implemented == 0) {
nack(p->name);
longjmp(errcatch,0);
/* NOTREACHED */
}
state = p->state;
*(char **)&ftplval = p->name;
return (p->token);
}
break;
case SITECMD:
if (cbuf[cpos] == ' ') {
cpos++;
return (SP);
}
cp = &cbuf[cpos];
if ((cp2 = strpbrk(cp, " \n")))
cpos = cp2 - cbuf;
c = cbuf[cpos];
cbuf[cpos] = '\0';
upper(cp);
p = lookup(sitetab, cp);
cbuf[cpos] = c;
if (p != 0) {
if (p->implemented == 0) {
state = CMD;
nack(p->name);
longjmp(errcatch,0);
/* NOTREACHED */
}
state = p->state;
*(char **)&ftplval = p->name;
return (p->token);
}
state = CMD;
break;
case OSTR:
if (cbuf[cpos] == '\n') {
state = CMD;
return (CRLF);
}
/* FALLTHROUGH */
case STR1:
case ZSTR1:
dostr1:
if (cbuf[cpos] == ' ') {
cpos++;
state = state == OSTR ? STR2 : ++state;
return (SP);
}
break;
case ZSTR2:
if (cbuf[cpos] == '\n') {
state = CMD;
return (CRLF);
}
/* FALLTHROUGH */
case STR2:
cp = &cbuf[cpos];
n = strlen(cp);
cpos += n - 1;
/*
* Make sure the string is nonempty and \n terminated.
*/
if (n > 1 && cbuf[cpos] == '\n') {
cbuf[cpos] = '\0';
*(char **)&ftplval = copy(cp);
cbuf[cpos] = '\n';
state = ARGS;
return (STRING);
}
break;
case NSTR:
if (cbuf[cpos] == ' ') {
cpos++;
return (SP);
}
if (isdigit(cbuf[cpos])) {
cp = &cbuf[cpos];
while (isdigit(cbuf[++cpos]))
;
c = cbuf[cpos];
cbuf[cpos] = '\0';
ftplval = atoi(cp);
cbuf[cpos] = c;
state = STR1;
return (NUMBER);
}
state = STR1;
goto dostr1;
case ARGS:
if (isdigit(cbuf[cpos])) {
cp = &cbuf[cpos];
while (isdigit(cbuf[++cpos]))
;
c = cbuf[cpos];
cbuf[cpos] = '\0';
ftplval = atoi(cp);
cbuf[cpos] = c;
return (NUMBER);
}
switch (cbuf[cpos++]) {
case '\n':
state = CMD;
return (CRLF);
case ' ':
return (SP);
case ',':
return (COMMA);
case 'A':
case 'a':
return (A);
case 'B':
case 'b':
return (B);
case 'C':
case 'c':
return (C);
case 'E':
case 'e':
return (E);
case 'F':
case 'f':
return (F);
case 'I':
case 'i':
return (I);
case 'L':
case 'l':
return (L);
case 'N':
case 'n':
return (N);
case 'P':
case 'p':
return (P);
case 'R':
case 'r':
return (R);
case 'S':
case 's':
return (S);
case 'T':
case 't':
return (T);
}
break;
default:
fatal("Unknown state in scanner.");
}
ftperror((char *) 0);
state = CMD;
longjmp(errcatch,0);
}
}
upper(s)
register char *s;
{
while (*s != '\0') {
if (islower(*s))
*s = toupper(*s);
s++;
}
}
char *
copy(s)
char *s;
{
char *p;
extern char *malloc(), *strcpy();
p = malloc((unsigned) strlen(s) + 1);
if (p == NULL)
fatal("Ran out of memory.");
(void) strcpy(p, s);
return (p);
}
help(ctab, s)
struct tab *ctab;
char *s;
{
register struct tab *c;
register int width, NCMDS;
char *type;
if (ctab == sitetab)
type = "SITE ";
else
type = "";
width = 0, NCMDS = 0;
for (c = ctab; c->name != NULL; c++) {
int len = strlen(c->name);
if (len > width)
width = len;
NCMDS++;
}
width = (width + 8) &~ 7;
if (s == 0) {
register int i, j, w;
int columns, lines;
lreply(214, "The following %scommands are recognized %s.",
type, "(* =>'s unimplemented)");
columns = 76 / width;
if (columns == 0)
columns = 1;
lines = (NCMDS + columns - 1) / columns;
for (i = 0; i < lines; i++) {
printf(" ");
for (j = 0; j < columns; j++) {
c = ctab + j * lines + i;
printf("%s%c", c->name,
c->implemented ? ' ' : '*');
if (c + lines >= &ctab[NCMDS])
break;
w = strlen(c->name) + 1;
while (w < width) {
putchar(' ');
w++;
}
}
printf("\r\n");
}
(void) fflush(stdout);
reply(214, "Direct comments to ftp-bugs@%s.", hostname);
return;
}
upper(s);
c = lookup(ctab, s);
if (c == (struct tab *)0) {
reply(502, "Unknown command %s.", s);
return;
}
if (c->implemented)
reply(214, "Syntax: %s%s %s", type, c->name, c->help);
else
reply(214, "%s%-*s\t%s; unimplemented.", type, width,
c->name, c->help);
}
sizecmd(filename)
char *filename;
{
switch (type) {
case TYPE_L:
case TYPE_I: {
struct stat stbuf;
if (stat(filename, &stbuf) < 0 ||
(stbuf.st_mode&S_IFMT) != S_IFREG)
reply(550, "%s: not a plain file.", filename);
else
reply(213, "%lu", stbuf.st_size);
break;}
case TYPE_A: {
FILE *fin;
register int c, count;
struct stat stbuf;
fin = fopen(filename, "r");
if (fin == NULL) {
perror_reply(550, filename);
return;
}
if (fstat(fileno(fin), &stbuf) < 0 ||
(stbuf.st_mode&S_IFMT) != S_IFREG) {
reply(550, "%s: not a plain file.", filename);
(void) fclose(fin);
return;
}
count = 0;
while((c=getc(fin)) != EOF) {
if (c == '\n') /* will get expanded to \r\n */
count++;
count++;
}
(void) fclose(fin);
reply(213, "%ld", count);
break;}
default:
reply(504, "SIZE not implemented for Type %c.", "?AEIL"[type]);
}
}
#line 905 "ftp.tab.c"
#define FTPABORT goto ftpabort
#define FTPACCEPT goto ftpaccept
#define FTPERROR goto ftperrlab
int
ftpparse()
{
register int ftpm, ftpn, ftpstate;
#if FTPDEBUG
register char *ftps;
extern char *getenv();
if (ftps = getenv("FTPDEBUG"))
{
ftpn = *ftps;
if (ftpn >= '0' && ftpn <= '9')
ftpdebug = ftpn - '0';
}
#endif
ftpnerrs = 0;
ftperrflag = 0;
ftpchar = (-1);
ftpssp = ftpss;
ftpvsp = ftpvs;
*ftpssp = ftpstate = 0;
ftploop:
if (ftpn = ftpdefred[ftpstate]) goto ftpreduce;
if (ftpchar < 0)
{
if ((ftpchar = ftplex()) < 0) ftpchar = 0;
#if FTPDEBUG
if (ftpdebug)
{
ftps = 0;
if (ftpchar <= FTPMAXTOKEN) ftps = ftpname[ftpchar];
if (!ftps) ftps = "illegal-symbol";
printf("ftpdebug: state %d, reading %d (%s)\n", ftpstate,
ftpchar, ftps);
}
#endif
}
if ((ftpn = ftpsindex[ftpstate]) && (ftpn += ftpchar) >= 0 &&
ftpn <= FTPTABLESIZE && ftpcheck[ftpn] == ftpchar)
{
#if FTPDEBUG
if (ftpdebug)
printf("ftpdebug: state %d, shifting to state %d\n",
ftpstate, ftptable[ftpn]);
#endif
if (ftpssp >= ftpss + ftpstacksize - 1)
{
goto ftpoverflow;
}
*++ftpssp = ftpstate = ftptable[ftpn];
*++ftpvsp = ftplval;
ftpchar = (-1);
if (ftperrflag > 0) --ftperrflag;
goto ftploop;
}
if ((ftpn = ftprindex[ftpstate]) && (ftpn += ftpchar) >= 0 &&
ftpn <= FTPTABLESIZE && ftpcheck[ftpn] == ftpchar)
{
ftpn = ftptable[ftpn];
goto ftpreduce;
}
if (ftperrflag) goto ftpinrecovery;
#ifdef lint
goto ftpnewerror;
#endif
ftpnewerror:
ftperror("syntax error");
#ifdef lint
goto ftperrlab;
#endif
ftperrlab:
++ftpnerrs;
ftpinrecovery:
if (ftperrflag < 3)
{
ftperrflag = 3;
for (;;)
{
if ((ftpn = ftpsindex[*ftpssp]) && (ftpn += FTPERRCODE) >= 0 &&
ftpn <= FTPTABLESIZE && ftpcheck[ftpn] == FTPERRCODE)
{
#if FTPDEBUG
if (ftpdebug)
printf("ftpdebug: state %d, error recovery shifting\
to state %d\n", *ftpssp, ftptable[ftpn]);
#endif
if (ftpssp >= ftpss + ftpstacksize - 1)
{
goto ftpoverflow;
}
*++ftpssp = ftpstate = ftptable[ftpn];
*++ftpvsp = ftplval;
goto ftploop;
}
else
{
#if FTPDEBUG
if (ftpdebug)
printf("ftpdebug: error recovery discarding state %d\n",
*ftpssp);
#endif
if (ftpssp <= ftpss) goto ftpabort;
--ftpssp;
--ftpvsp;
}
}
}
else
{
if (ftpchar == 0) goto ftpabort;
#if FTPDEBUG
if (ftpdebug)
{
ftps = 0;
if (ftpchar <= FTPMAXTOKEN) ftps = ftpname[ftpchar];
if (!ftps) ftps = "illegal-symbol";
printf("ftpdebug: state %d, error recovery discards token %d (%s)\n",
ftpstate, ftpchar, ftps);
}
#endif
ftpchar = (-1);
goto ftploop;
}
ftpreduce:
#if FTPDEBUG
if (ftpdebug)
printf("ftpdebug: state %d, reducing by rule %d (%s)\n",
ftpstate, ftpn, ftprule[ftpn]);
#endif
ftpm = ftplen[ftpn];
ftpval = ftpvsp[1-ftpm];
switch (ftpn)
{
case 2:
#line 99 "ftp.y"
{
fromname = (char *) 0;
}
break;
case 4:
#line 106 "ftp.y"
{
user((char *) ftpvsp[-1]);
free((char *) ftpvsp[-1]);
}
break;
case 5:
#line 111 "ftp.y"
{
pass((char *) ftpvsp[-1]);
free((char *) ftpvsp[-1]);
}
break;
case 6:
#line 116 "ftp.y"
{
usedefault = 0;
if (pdata >= 0) {
(void) close(pdata);
pdata = -1;
}
reply(200, "PORT command successful.");
}
break;
case 7:
#line 125 "ftp.y"
{
passive();
}
break;
case 8:
#line 129 "ftp.y"
{
switch (cmd_type) {
case TYPE_A:
if (cmd_form == FORM_N) {
reply(200, "Type set to A.");
type = cmd_type;
form = cmd_form;
} else
reply(504, "Form must be N.");
break;
case TYPE_E:
reply(504, "Type E not implemented.");
break;
case TYPE_I:
reply(200, "Type set to I.");
type = cmd_type;
break;
case TYPE_L:
#if NBBY == 8
if (cmd_bytesz == 8) {
reply(200,
"Type set to L (byte size 8).");
type = cmd_type;
} else
reply(504, "Byte size must be 8.");
#else /* NBBY == 8 */
UNIMPLEMENTED for NBBY != 8
#endif /* NBBY == 8 */
}
}
break;
case 9:
#line 164 "ftp.y"
{
switch (ftpvsp[-1]) {
case STRU_F:
reply(200, "STRU F ok.");
break;
default:
reply(504, "Unimplemented STRU type.");
}
}
break;
case 10:
#line 176 "ftp.y"
{
switch (ftpvsp[-1]) {
case MODE_S:
reply(200, "MODE S ok.");
break;
default:
reply(502, "Unimplemented MODE type.");
}
}
break;
case 11:
#line 188 "ftp.y"
{
reply(202, "ALLO command ignored.");
}
break;
case 12:
#line 192 "ftp.y"
{
reply(202, "ALLO command ignored.");
}
break;
case 13:
#line 196 "ftp.y"
{
if (ftpvsp[-3] && ftpvsp[-1] != NULL)
retrieve((char *) 0, (char *) ftpvsp[-1]);
if (ftpvsp[-1] != NULL)
free((char *) ftpvsp[-1]);
}
break;
case 14:
#line 203 "ftp.y"
{
if (ftpvsp[-3] && ftpvsp[-1] != NULL)
store((char *) ftpvsp[-1], "w", 0);
if (ftpvsp[-1] != NULL)
free((char *) ftpvsp[-1]);
}
break;
case 15:
#line 210 "ftp.y"
{
if (ftpvsp[-3] && ftpvsp[-1] != NULL)
store((char *) ftpvsp[-1], "a", 0);
if (ftpvsp[-1] != NULL)
free((char *) ftpvsp[-1]);
}
break;
case 16:
#line 217 "ftp.y"
{
if (ftpvsp[-1])
send_file_list(".");
}
break;
case 17:
#line 222 "ftp.y"
{
if (ftpvsp[-3] && ftpvsp[-1] != NULL)
send_file_list((char *) ftpvsp[-1]);
if (ftpvsp[-1] != NULL)
free((char *) ftpvsp[-1]);
}
break;
case 18:
#line 229 "ftp.y"
{
if (ftpvsp[-1])
retrieve("/bin/ls -lgA", "");
}
break;
case 19:
#line 234 "ftp.y"
{
if (ftpvsp[-3] && ftpvsp[-1] != NULL)
retrieve("/bin/ls -lgA %s", (char *) ftpvsp[-1]);
if (ftpvsp[-1] != NULL)
free((char *) ftpvsp[-1]);
}
break;
case 20:
#line 241 "ftp.y"
{
if (ftpvsp[-3] && ftpvsp[-1] != NULL)
statfilecmd((char *) ftpvsp[-1]);
if (ftpvsp[-1] != NULL)
free((char *) ftpvsp[-1]);
}
break;
case 21:
#line 248 "ftp.y"
{
statcmd();
}
break;
case 22:
#line 252 "ftp.y"
{
if (ftpvsp[-3] && ftpvsp[-1] != NULL)
delete((char *) ftpvsp[-1]);
if (ftpvsp[-1] != NULL)
free((char *) ftpvsp[-1]);
}
break;
case 23:
#line 259 "ftp.y"
{
if (fromname) {
renamecmd(fromname, (char *) ftpvsp[-1]);
free(fromname);
fromname = (char *) 0;
} else {
reply(503, "Bad sequence of commands.");
}
free((char *) ftpvsp[-1]);
}
break;
case 24:
#line 270 "ftp.y"
{
reply(225, "ABOR command successful.");
}
break;
case 25:
#line 274 "ftp.y"
{
if (ftpvsp[-1])
cwd(pw->pw_dir);
}
break;
case 26:
#line 279 "ftp.y"
{
if (ftpvsp[-3] && ftpvsp[-1] != NULL)
cwd((char *) ftpvsp[-1]);
if (ftpvsp[-1] != NULL)
free((char *) ftpvsp[-1]);
}
break;
case 27:
#line 286 "ftp.y"
{
help(cmdtab, (char *) 0);
}
break;
case 28:
#line 290 "ftp.y"
{
register char *cp = (char *)ftpvsp[-1];
if (strncasecmp(cp, "SITE", 4) == 0) {
cp = (char *)ftpvsp[-1] + 4;
if (*cp == ' ')
cp++;
if (*cp)
help(sitetab, cp);
else
help(sitetab, (char *) 0);
} else
help(cmdtab, (char *) ftpvsp[-1]);
}
break;
case 29:
#line 305 "ftp.y"
{
reply(200, "NOOP command successful.");
}
break;
case 30:
#line 309 "ftp.y"
{
if (ftpvsp[-3] && ftpvsp[-1] != NULL)
makedir((char *) ftpvsp[-1]);
if (ftpvsp[-1] != NULL)
free((char *) ftpvsp[-1]);
}
break;
case 31:
#line 316 "ftp.y"
{
if (ftpvsp[-3] && ftpvsp[-1] != NULL)
removedir((char *) ftpvsp[-1]);
if (ftpvsp[-1] != NULL)
free((char *) ftpvsp[-1]);
}
break;
case 32:
#line 323 "ftp.y"
{
if (ftpvsp[-1])
pwd();
}
break;
case 33:
#line 328 "ftp.y"
{
if (ftpvsp[-1])
cwd("..");
}
break;
case 34:
#line 333 "ftp.y"
{
help(sitetab, (char *) 0);
}
break;
case 35:
#line 337 "ftp.y"
{
help(sitetab, (char *) ftpvsp[-1]);
}
break;
case 36:
#line 341 "ftp.y"
{
int oldmask;
if (ftpvsp[-1]) {
oldmask = umask(0);
(void) umask(oldmask);
reply(200, "Current UMASK is %03o", oldmask);
}
}
break;
case 37:
#line 351 "ftp.y"
{
int oldmask;
if (ftpvsp[-3]) {
if ((ftpvsp[-1] == -1) || (ftpvsp[-1] > 0777)) {
reply(501, "Bad UMASK value");
} else {
oldmask = umask(ftpvsp[-1]);
reply(200,
"UMASK set to %03o (was %03o)",
ftpvsp[-1], oldmask);
}
}
}
break;
case 38:
#line 366 "ftp.y"
{
if (ftpvsp[-5] && (ftpvsp[-1] != NULL)) {
if (ftpvsp[-3] > 0777)
reply(501,
"CHMOD: Mode value must be between 0 and 0777");
else if (chmod((char *) ftpvsp[-1], ftpvsp[-3]) < 0)
perror_reply(550, (char *) ftpvsp[-1]);
else
reply(200, "CHMOD command successful.");
}
if (ftpvsp[-1] != NULL)
free((char *) ftpvsp[-1]);
}
break;
case 39:
#line 380 "ftp.y"
{
reply(200,
"Current IDLE time limit is %d seconds; max %d",
timeout, maxtimeout);
}
break;
case 40:
#line 386 "ftp.y"
{
if (ftpvsp[-1] < 30 || ftpvsp[-1] > maxtimeout) {
reply(501,
"Maximum IDLE time must be between 30 and %d seconds",
maxtimeout);
} else {
timeout = ftpvsp[-1];
(void) alarm((unsigned) timeout);
reply(200,
"Maximum IDLE time set to %d seconds",
timeout);
}
}
break;
case 41:
#line 400 "ftp.y"
{
if (ftpvsp[-3] && ftpvsp[-1] != NULL)
store((char *) ftpvsp[-1], "w", 1);
if (ftpvsp[-1] != NULL)
free((char *) ftpvsp[-1]);
}
break;
case 42:
#line 407 "ftp.y"
{
#ifdef unix
#ifdef BSD
reply(215, "UNIX Type: L%d Version: BSD-%d",
NBBY, BSD);
#else /* BSD */
reply(215, "UNIX Type: L%d", NBBY);
#endif /* BSD */
#else /* unix */
reply(215, "UNKNOWN Type: L%d", NBBY);
#endif /* unix */
}
break;
case 43:
#line 428 "ftp.y"
{
if (ftpvsp[-3] && ftpvsp[-1] != NULL)
sizecmd((char *) ftpvsp[-1]);
if (ftpvsp[-1] != NULL)
free((char *) ftpvsp[-1]);
}
break;
case 44:
#line 445 "ftp.y"
{
if (ftpvsp[-3] && ftpvsp[-1] != NULL) {
struct stat stbuf;
if (stat((char *) ftpvsp[-1], &stbuf) < 0)
perror_reply(550, "%s", (char *) ftpvsp[-1]);
else if ((stbuf.st_mode&S_IFMT) != S_IFREG) {
reply(550, "%s: not a plain file.",
(char *) ftpvsp[-1]);
} else {
register struct tm *t;
struct tm *gmtime();
t = gmtime(&stbuf.st_mtime);
reply(213,
"19%02d%02d%02d%02d%02d%02d",
t->tm_year, t->tm_mon+1, t->tm_mday,
t->tm_hour, t->tm_min, t->tm_sec);
}
}
if (ftpvsp[-1] != NULL)
free((char *) ftpvsp[-1]);
}
break;
case 45:
#line 467 "ftp.y"
{
reply(221, "Goodbye.");
dologout(0);
}
break;
case 46:
#line 472 "ftp.y"
{
ftperrok;
}
break;
case 47:
#line 477 "ftp.y"
{
char *renamefrom();
if (ftpvsp[-3] && ftpvsp[-1]) {
fromname = renamefrom((char *) ftpvsp[-1]);
if (fromname == (char *) 0 && ftpvsp[-1]) {
free((char *) ftpvsp[-1]);
}
}
}
break;
case 49:
#line 493 "ftp.y"
{
*(char **)&(ftpval) = "";
}
break;
case 52:
#line 504 "ftp.y"
{
register char *a, *p;
a = (char *)&data_dest.sin_addr;
a[0] = ftpvsp[-10]; a[1] = ftpvsp[-8]; a[2] = ftpvsp[-6]; a[3] = ftpvsp[-4];
p = (char *)&data_dest.sin_port;
p[0] = ftpvsp[-2]; p[1] = ftpvsp[0];
data_dest.sin_family = AF_INET;
}
break;
case 53:
#line 516 "ftp.y"
{
ftpval = FORM_N;
}
break;
case 54:
#line 520 "ftp.y"
{
ftpval = FORM_T;
}
break;
case 55:
#line 524 "ftp.y"
{
ftpval = FORM_C;
}
break;
case 56:
#line 530 "ftp.y"
{
cmd_type = TYPE_A;
cmd_form = FORM_N;
}
break;
case 57:
#line 535 "ftp.y"
{
cmd_type = TYPE_A;
cmd_form = ftpvsp[0];
}
break;
case 58:
#line 540 "ftp.y"
{
cmd_type = TYPE_E;
cmd_form = FORM_N;
}
break;
case 59:
#line 545 "ftp.y"
{
cmd_type = TYPE_E;
cmd_form = ftpvsp[0];
}
break;
case 60:
#line 550 "ftp.y"
{
cmd_type = TYPE_I;
}
break;
case 61:
#line 554 "ftp.y"
{
cmd_type = TYPE_L;
cmd_bytesz = NBBY;
}
break;
case 62:
#line 559 "ftp.y"
{
cmd_type = TYPE_L;
cmd_bytesz = ftpvsp[0];
}
break;
case 63:
#line 565 "ftp.y"
{
cmd_type = TYPE_L;
cmd_bytesz = ftpvsp[0];
}
break;
case 64:
#line 572 "ftp.y"
{
ftpval = STRU_F;
}
break;
case 65:
#line 576 "ftp.y"
{
ftpval = STRU_R;
}
break;
case 66:
#line 580 "ftp.y"
{
ftpval = STRU_P;
}
break;
case 67:
#line 586 "ftp.y"
{
ftpval = MODE_S;
}
break;
case 68:
#line 590 "ftp.y"
{
ftpval = MODE_B;
}
break;
case 69:
#line 594 "ftp.y"
{
ftpval = MODE_C;
}
break;
case 70:
#line 600 "ftp.y"
{
/*
* Problem: this production is used for all pathname
* processing, but only gives a 550 error reply.
* This is a valid reply in some cases but not in others.
*/
if (logged_in && ftpvsp[0] && strncmp((char *) ftpvsp[0], "~", 1) == 0) {
*(char **)&(ftpval) = *glob((char *) ftpvsp[0]);
if (globerr != NULL) {
reply(550, globerr);
ftpval = NULL;
}
free((char *) ftpvsp[0]);
} else
ftpval = ftpvsp[0];
}
break;
case 72:
#line 622 "ftp.y"
{
register int ret, dec, multby, digit;
/*
* Convert a number that was read as decimal number
* to what it would be if it had been read as octal.
*/
dec = ftpvsp[0];
multby = 1;
ret = 0;
while (dec) {
digit = dec%10;
if (digit > 7) {
ret = -1;
break;
}
ret += digit * multby;
multby *= 8;
dec /= 10;
}
ftpval = ret;
}
break;
case 73:
#line 647 "ftp.y"
{
if (logged_in)
ftpval = 1;
else {
reply(530, "Please login with USER and PASS.");
ftpval = 0;
}
}
break;
#line 1684 "ftp.tab.c"
}
ftpssp -= ftpm;
ftpstate = *ftpssp;
ftpvsp -= ftpm;
ftpm = ftplhs[ftpn];
if (ftpstate == 0 && ftpm == 0)
{
#if FTPDEBUG
if (ftpdebug)
printf("ftpdebug: after reduction, shifting from state 0 to\
state %d\n", FTPFINAL);
#endif
ftpstate = FTPFINAL;
*++ftpssp = FTPFINAL;
*++ftpvsp = ftpval;
if (ftpchar < 0)
{
if ((ftpchar = ftplex()) < 0) ftpchar = 0;
#if FTPDEBUG
if (ftpdebug)
{
ftps = 0;
if (ftpchar <= FTPMAXTOKEN) ftps = ftpname[ftpchar];
if (!ftps) ftps = "illegal-symbol";
printf("ftpdebug: state %d, reading %d (%s)\n",
FTPFINAL, ftpchar, ftps);
}
#endif
}
if (ftpchar == 0) goto ftpaccept;
goto ftploop;
}
if ((ftpn = ftpgindex[ftpm]) && (ftpn += ftpstate) >= 0 &&
ftpn <= FTPTABLESIZE && ftpcheck[ftpn] == ftpstate)
ftpstate = ftptable[ftpn];
else
ftpstate = ftpdgoto[ftpm];
#if FTPDEBUG
if (ftpdebug)
printf("ftpdebug: after reduction, shifting from state %d \
to state %d\n", *ftpssp, ftpstate);
#endif
if (ftpssp >= ftpss + ftpstacksize - 1)
{
goto ftpoverflow;
}
*++ftpssp = ftpstate;
*++ftpvsp = ftpval;
goto ftploop;
ftpoverflow:
ftperror("yacc stack overflow");
ftpabort:
return (1);
ftpaccept:
return (0);
}
|