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
|
/*
* ProFTPD: mod_site_misc -- a module implementing miscellaneous SITE commands
* Copyright (c) 2004-2020 The ProFTPD Project
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
*
* As a special exemption, The ProFTPD Project team and other respective
* copyright holders give permission to link this program with OpenSSL, and
* distribute the resulting executable, without including the source code for
* OpenSSL in the source distribution.
*/
#include "conf.h"
#define MOD_SITE_MISC_VERSION "mod_site_misc/1.6"
extern pr_response_t *resp_list, *resp_err_list;
module site_misc_module;
static unsigned int site_misc_engine = TRUE;
/* Necessary prototypes */
static int site_misc_sess_init(void);
static int site_misc_check_filters(cmd_rec *cmd, const char *path) {
#ifdef PR_USE_REGEX
pr_regex_t *pre = get_param_ptr(CURRENT_CONF, "PathAllowFilter", FALSE);
if (pre != NULL &&
pr_regexp_exec(pre, path, 0, NULL, 0, 0, 0) != 0) {
pr_log_pri(PR_LOG_NOTICE, MOD_SITE_MISC_VERSION
": 'SITE %s' denied by PathAllowFilter", cmd->arg);
return -1;
}
pre = get_param_ptr(CURRENT_CONF, "PathDenyFilter", FALSE);
if (pre != NULL &&
pr_regexp_exec(pre, path, 0, NULL, 0, 0, 0) == 0) {
pr_log_pri(PR_LOG_NOTICE, MOD_SITE_MISC_VERSION
": 'SITE %s' denied by PathDenyFilter", cmd->arg);
return -1;
}
#endif
return 0;
}
static int site_misc_create_dir(const char *dir) {
struct stat st;
int res;
pr_fs_clear_cache2(dir);
res = pr_fsio_stat(dir, &st);
if (res < 0 &&
errno != ENOENT) {
int xerrno = errno;
pr_log_debug(DEBUG2, MOD_SITE_MISC_VERSION ": error checking '%s': %s",
dir, strerror(xerrno));
errno = xerrno;
return -1;
}
if (res == 0) {
/* Directory already exists */
return 1;
}
if (pr_fsio_mkdir(dir, 0777) < 0) {
int xerrno = errno;
pr_log_debug(DEBUG2, MOD_SITE_MISC_VERSION ": error creating '%s': %s",
dir, strerror(xerrno));
errno = xerrno;
return -1;
}
return 0;
}
static int site_misc_create_path(pool *p, const char *path) {
struct stat st;
char *curr_path, *tmp_path;
pr_fs_clear_cache2(path);
if (pr_fsio_stat(path, &st) == 0) {
return 0;
}
/* The given path should already be canonicalized; we do not need to worry
* if it is relative to the current working directory or not.
*/
tmp_path = pstrdup(p, path);
curr_path = "/";
while (tmp_path &&
*tmp_path) {
char *curr_dir;
int res;
cmd_rec *cmd;
pool *sub_pool;
pr_signals_handle();
curr_dir = strsep(&tmp_path, "/");
curr_path = pdircat(p, curr_path, curr_dir, NULL);
/* Dispatch the fake C_MKD command, e.g. for mod_quotatab. */
sub_pool = pr_pool_create_sz(p, 64);
cmd = pr_cmd_alloc(sub_pool, 2, pstrdup(sub_pool, C_MKD),
pstrdup(sub_pool, curr_path));
cmd->arg = pstrdup(cmd->pool, curr_path);
cmd->cmd_class = CL_DIRS|CL_WRITE;
res = pr_cmd_dispatch_phase(cmd, PRE_CMD, 0);
if (res < 0) {
int xerrno = errno;
pr_log_debug(DEBUG3, MOD_SITE_MISC_VERSION
": creating directory '%s' blocked by MKD handler: %s", curr_path,
strerror(xerrno));
pr_cmd_dispatch_phase(cmd, POST_CMD_ERR, 0);
pr_cmd_dispatch_phase(cmd, LOG_CMD_ERR, 0);
pr_response_clear(&resp_err_list);
destroy_pool(sub_pool);
sub_pool = NULL;
cmd = NULL;
errno = xerrno;
return -1;
}
res = site_misc_create_dir(curr_path);
if (res < 0) {
int xerrno = errno;
pr_cmd_dispatch_phase(cmd, POST_CMD_ERR, 0);
pr_cmd_dispatch_phase(cmd, LOG_CMD_ERR, 0);
pr_response_clear(&resp_err_list);
destroy_pool(sub_pool);
sub_pool = NULL;
cmd = NULL;
errno = xerrno;
return -1;
}
pr_cmd_dispatch_phase(cmd, POST_CMD, 0);
pr_cmd_dispatch_phase(cmd, LOG_CMD, 0);
pr_response_clear(&resp_list);
destroy_pool(sub_pool);
sub_pool = NULL;
cmd = NULL;
}
return 0;
}
static int site_misc_delete_dir(pool *p, const char *dir) {
void *dirh;
struct dirent *dent;
int res, xerrno;
cmd_rec *cmd;
pool *sub_pool;
dirh = pr_fsio_opendir(dir);
xerrno = errno;
if (dirh == NULL) {
pr_log_debug(DEBUG2, MOD_SITE_MISC_VERSION
": error reading directory '%s': %s", dir, strerror(xerrno));
errno = xerrno;
return -1;
}
while ((dent = pr_fsio_readdir(dirh)) != NULL) {
struct stat st;
char *file;
pr_signals_handle();
if (strcmp(dent->d_name, ".") == 0 ||
strcmp(dent->d_name, "..") == 0) {
continue;
}
file = pdircat(p, dir, dent->d_name, NULL);
if (pr_fsio_stat(file, &st) < 0) {
continue;
}
if (S_ISDIR(st.st_mode)) {
res = site_misc_delete_dir(p, file);
xerrno = errno;
if (res < 0) {
pr_fsio_closedir(dirh);
errno = xerrno;
return -1;
}
} else {
/* Dispatch fake C_DELE command, e.g. for mod_quotatab */
sub_pool = pr_pool_create_sz(p, 64);
cmd = pr_cmd_alloc(sub_pool, 2, pstrdup(sub_pool, C_DELE),
pstrdup(sub_pool, file));
cmd->arg = pstrdup(cmd->pool, file);
cmd->cmd_class = CL_WRITE;
pr_response_block(TRUE);
res = pr_cmd_dispatch_phase(cmd, PRE_CMD, 0);
xerrno = errno;
if (res < 0) {
pr_log_debug(DEBUG3, MOD_SITE_MISC_VERSION
": deleting file '%s' blocked by DELE handler: %s", file,
strerror(xerrno));
pr_cmd_dispatch_phase(cmd, POST_CMD_ERR, 0);
pr_cmd_dispatch_phase(cmd, LOG_CMD_ERR, 0);
pr_response_clear(&resp_err_list);
pr_response_block(FALSE);
destroy_pool(sub_pool);
pr_fsio_closedir(dirh);
errno = xerrno;
return -1;
}
res = pr_fsio_unlink(file);
xerrno = errno;
if (res < 0) {
pr_fsio_closedir(dirh);
pr_cmd_dispatch_phase(cmd, POST_CMD_ERR, 0);
pr_cmd_dispatch_phase(cmd, LOG_CMD_ERR, 0);
pr_response_clear(&resp_err_list);
pr_response_block(FALSE);
destroy_pool(sub_pool);
pr_fsio_closedir(dirh);
errno = xerrno;
return -1;
}
pr_response_add(R_250, _("%s command successful"), (char *) cmd->argv[0]);
pr_cmd_dispatch_phase(cmd, POST_CMD, 0);
pr_cmd_dispatch_phase(cmd, LOG_CMD, 0);
pr_response_clear(&resp_list);
destroy_pool(sub_pool);
pr_response_block(FALSE);
}
}
pr_fsio_closedir(dirh);
/* Dispatch fake C_RMD command, e.g. for mod_quotatab */
sub_pool = pr_pool_create_sz(p, 64);
cmd = pr_cmd_alloc(sub_pool, 2, pstrdup(sub_pool, C_RMD),
pstrdup(sub_pool, dir));
cmd->arg = pstrdup(cmd->pool, dir);
cmd->cmd_class = CL_DIRS|CL_WRITE;
pr_response_block(TRUE);
res = pr_cmd_dispatch_phase(cmd, PRE_CMD, 0);
xerrno = errno;
if (res < 0) {
pr_log_debug(DEBUG3, MOD_SITE_MISC_VERSION
": removing directory '%s' blocked by RMD handler: %s", dir,
strerror(xerrno));
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
pr_cmd_dispatch_phase(cmd, POST_CMD_ERR, 0);
pr_cmd_dispatch_phase(cmd, LOG_CMD_ERR, 0);
pr_response_clear(&resp_err_list);
pr_response_block(FALSE);
destroy_pool(sub_pool);
errno = xerrno;
return -1;
}
res = pr_fsio_rmdir(dir);
xerrno = errno;
if (res < 0) {
pr_log_debug(DEBUG3, MOD_SITE_MISC_VERSION
": error removing directory '%s': %s", dir,
strerror(xerrno));
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
pr_cmd_dispatch_phase(cmd, POST_CMD_ERR, 0);
pr_cmd_dispatch_phase(cmd, LOG_CMD_ERR, 0);
pr_response_clear(&resp_err_list);
pr_response_block(FALSE);
destroy_pool(sub_pool);
errno = xerrno;
return -1;
}
pr_response_add(R_257, _("\"%s\" - Directory successfully created"),
quote_dir(cmd->tmp_pool, (char *) dir));
pr_cmd_dispatch_phase(cmd, POST_CMD, 0);
pr_cmd_dispatch_phase(cmd, LOG_CMD, 0);
pr_response_clear(&resp_list);
pr_response_block(FALSE);
destroy_pool(sub_pool);
return 0;
}
static int site_misc_delete_path(pool *p, const char *path) {
struct stat st;
pr_fs_clear_cache2(path);
if (pr_fsio_stat(path, &st) < 0) {
pr_log_debug(DEBUG4, MOD_SITE_MISC_VERSION
": error checking path %s", path);
return -1;
}
if (!S_ISDIR(st.st_mode)) {
errno = EINVAL;
return -1;
}
return site_misc_delete_dir(p, path);
}
/* Parse a timestamp string of the form "YYYYMMDDhhmm[ss]" into its
* individual components.
*
* We assume that the caller has already ensured that the given timestamp
* string is long enough, i.e. 12 or 14 characters long.
*/
static int site_misc_parsetime(char *timestamp, size_t timestamp_len,
unsigned int *year, unsigned int *month, unsigned int *day,
unsigned int *hour, unsigned int *min, unsigned int *sec) {
register unsigned int i;
char c, *ptr;
int have_secs = FALSE, valid_timestamp = TRUE;
/* Make sure the timestamp is comprised of all digits. */
for (i = 0; i < timestamp_len; i++) {
if (PR_ISDIGIT((int) timestamp[i]) == 0) {
valid_timestamp = FALSE;
break;
}
}
if (!valid_timestamp) {
pr_log_debug(DEBUG7, MOD_SITE_MISC_VERSION
": timestamp '%s' contains non-digits", timestamp);
errno = EINVAL;
return -1;
}
if (timestamp_len == 14) {
have_secs = TRUE;
}
ptr = timestamp;
c = timestamp[4];
timestamp[4] = '\0';
*year = atoi(ptr);
timestamp[4] = c;
ptr = &(timestamp[4]);
c = timestamp[6];
timestamp[6] = '\0';
*month = atoi(ptr);
timestamp[6] = c;
if (*month > 12) {
pr_log_debug(DEBUG7, MOD_SITE_MISC_VERSION
": bad number of months in '%s' (%u)", timestamp, *month);
errno = EINVAL;
return -1;
}
ptr = &(timestamp[6]);
c = timestamp[8];
timestamp[8] = '\0';
*day = atoi(ptr);
timestamp[8] = c;
if (*day > 31) {
pr_log_debug(DEBUG7, MOD_SITE_MISC_VERSION
": bad number of days in '%s' (%u)", timestamp, *day);
errno = EINVAL;
return -1;
}
ptr = &(timestamp[8]);
c = timestamp[10];
timestamp[10] = '\0';
*hour = atoi(ptr);
timestamp[10] = c;
if (*hour > 24) {
pr_log_debug(DEBUG7, MOD_SITE_MISC_VERSION
": bad number of hours in '%s' (%u)", timestamp, *hour);
errno = EINVAL;
return -1;
}
ptr = &(timestamp[10]);
/* Handle optional seconds. */
if (have_secs) {
c = timestamp[12];
timestamp[12] = '\0';
}
*min = atoi(ptr);
if (have_secs) {
timestamp[12] = c;
}
if (*min > 60) {
pr_log_debug(DEBUG7, MOD_SITE_MISC_VERSION
": bad number of minutes in '%s' (%u)", timestamp, *min);
errno = EINVAL;
return -1;
}
if (have_secs) {
ptr = &(timestamp[12]);
*sec = atoi(ptr);
if (*sec > 60) {
pr_log_debug(DEBUG7, MOD_SITE_MISC_VERSION
": bad number of seconds in '%s' (%u)", timestamp, *sec);
errno = EINVAL;
return -1;
}
}
return 0;
}
static time_t site_misc_mktime(unsigned int year, unsigned int month,
unsigned int mday, unsigned int hour, unsigned int min, unsigned int sec) {
struct tm tm;
time_t res;
char *env;
#ifdef HAVE_TZNAME
char *tzname_dup[2];
/* The mktime(3) function has a nasty habit of changing the tzname global
* variable as a side-effect. This can cause problems, as when the process
* has become chrooted, and mktime(3) sets/changes tzname wrong. (For more
* information on the tzname global variable, see the tzset(3) man page.)
*
* The best way to deal with this issue (which is especially prominent
* on systems running glibc-2.3 or later, which is particularly ill-behaved
* in a chrooted environment, as it assumes the ability to find system
* timezone files at paths which are no longer valid within the chroot)
* is to set the TZ environment variable explicitly, before starting
* proftpd. You can also use the SetEnv configuration directive within
* the proftpd.conf to set the TZ environment variable, e.g.:
*
* SetEnv TZ PST
*
* To try to help sites which fail to do this, the tzname global variable
* will be copied prior to the mktime(3) call, and the copy restored after
* the call. (Note that calling the ctime(3) and localtime(3) functions also
* causes a similar overwriting/setting of the tzname environment variable.)
*/
memcpy(&tzname_dup, tzname, sizeof(tzname_dup));
#endif /* HAVE_TZNAME */
env = pr_env_get(session.pool, "TZ");
/* Set the TZ environment to be GMT, so that mktime(3) treats the timestamp
* provided by the client as being in GMT/UTC.
*/
if (pr_env_set(session.pool, "TZ", "GMT") < 0) {
pr_log_debug(DEBUG8, MOD_SITE_MISC_VERSION
": error setting TZ environment variable to 'GMT': %s", strerror(errno));
}
tm.tm_sec = sec;
tm.tm_min = min;
tm.tm_hour = hour;
tm.tm_mday = mday;
tm.tm_mon = (month - 1);
tm.tm_year = (year - 1900);
tm.tm_wday = 0;
tm.tm_yday = 0;
tm.tm_isdst = -1;
res = mktime(&tm);
/* Restore the old TZ setting, if any. */
if (env) {
if (pr_env_set(session.pool, "TZ", env) < 0) {
pr_log_debug(DEBUG8, MOD_SITE_MISC_VERSION
": error setting TZ environment variable to '%s': %s", env,
strerror(errno));
}
}
#ifdef HAVE_TZNAME
/* Restore the old tzname values prior to returning. */
memcpy(tzname, tzname_dup, sizeof(tzname_dup));
#endif /* HAVE_TZNAME */
return res;
}
/* Configuration handlers
*/
/* usage: SiteMiscEngine on|off */
MODRET set_sitemiscengine(cmd_rec *cmd) {
config_rec *c;
int bool;
CHECK_ARGS(cmd, 1);
CHECK_CONF(cmd, CONF_ROOT|CONF_VIRTUAL|CONF_GLOBAL);
bool = get_boolean(cmd, 1);
if (bool == -1)
CONF_ERROR(cmd, "expected Boolean parameter");
c = add_config_param(cmd->argv[0], 1, NULL);
c->argv[0] = pcalloc(c->pool, sizeof(unsigned int));
*((unsigned int *) c->argv[0]) = bool;
return PR_HANDLED(cmd);
}
/* Command handlers
*/
MODRET site_misc_mkdir(cmd_rec *cmd) {
if (!site_misc_engine) {
return PR_DECLINED(cmd);
}
if (cmd->argc < 2) {
pr_log_debug(DEBUG5, MOD_SITE_MISC_VERSION
"%s : wrong number of parameters (%d)", (char *) cmd->argv[0], cmd->argc);
return PR_DECLINED(cmd);
}
if (strncasecmp(cmd->argv[1], "MKDIR", 6) == 0) {
register unsigned int i;
char *cmd_name, *decoded_path, *path = "";
unsigned char *authenticated;
if (cmd->argc < 3) {
return PR_DECLINED(cmd);
}
authenticated = get_param_ptr(cmd->server->conf, "authenticated", FALSE);
if (authenticated == NULL ||
*authenticated == FALSE) {
pr_response_add_err(R_530, _("Please login with USER and PASS"));
pr_cmd_set_errno(cmd, EPERM);
errno = EPERM;
return PR_ERROR(cmd);
}
for (i = 2; i < cmd->argc; i++) {
path = pstrcat(cmd->tmp_pool, path, *path ? " " : "", cmd->argv[i], NULL);
}
decoded_path = pr_fs_decode_path2(cmd->tmp_pool, path,
FSIO_DECODE_FL_TELL_ERRORS);
if (decoded_path == NULL) {
int xerrno = errno;
pr_log_debug(DEBUG8, "'%s' failed to decode properly: %s", path,
strerror(xerrno));
pr_response_add_err(R_550,
_("%s: Illegal character sequence in filename"), path);
pr_cmd_set_errno(cmd, xerrno);
errno = xerrno;
return PR_ERROR(cmd);
}
path = decoded_path;
if (site_misc_check_filters(cmd, path) < 0) {
int xerrno = EPERM;
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
pr_cmd_set_errno(cmd, xerrno);
errno = xerrno;
return PR_ERROR(cmd);
}
path = dir_canonical_path(cmd->tmp_pool, path);
if (path == NULL) {
int xerrno = EINVAL;
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
pr_cmd_set_errno(cmd, xerrno);
errno = xerrno;
return PR_ERROR(cmd);
}
cmd_name = cmd->argv[0];
cmd->argv[0] = "SITE_MKDIR";
if (!dir_check_canon(cmd->tmp_pool, cmd, G_WRITE, path, NULL)) {
int xerrno = EPERM;
cmd->argv[0] = cmd_name;
pr_log_debug(DEBUG4, MOD_SITE_MISC_VERSION
": %s command denied by <Limit>", (char *) cmd->argv[0]);
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
pr_cmd_set_errno(cmd, xerrno);
errno = xerrno;
return PR_ERROR(cmd);
}
cmd->argv[0] = cmd_name;
if (site_misc_create_path(cmd->tmp_pool, path) < 0) {
int xerrno = errno;
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
pr_cmd_set_errno(cmd, xerrno);
errno = xerrno;
return PR_ERROR(cmd);
}
pr_response_add(R_200, _("SITE %s command successful"),
(char *) cmd->argv[1]);
return PR_HANDLED(cmd);
}
if (strncasecmp(cmd->argv[1], "HELP", 5) == 0) {
pr_response_add(R_214, "MKDIR <sp> path");
}
return PR_DECLINED(cmd);
}
MODRET site_misc_rmdir(cmd_rec *cmd) {
if (!site_misc_engine) {
return PR_DECLINED(cmd);
}
if (cmd->argc < 2) {
pr_log_debug(DEBUG5, MOD_SITE_MISC_VERSION
"%s : wrong number of parameters (%d)", (char *) cmd->argv[0], cmd->argc);
return PR_DECLINED(cmd);
}
if (strncasecmp(cmd->argv[1], "RMDIR", 6) == 0) {
register unsigned int i;
char *cmd_name, *decoded_path, *path = "";
unsigned char *authenticated;
if (cmd->argc < 3)
return PR_DECLINED(cmd);
authenticated = get_param_ptr(cmd->server->conf, "authenticated", FALSE);
if (!authenticated ||
*authenticated == FALSE) {
pr_response_add_err(R_530, _("Please login with USER and PASS"));
pr_cmd_set_errno(cmd, EPERM);
errno = EPERM;
return PR_ERROR(cmd);
}
for (i = 2; i < cmd->argc; i++) {
path = pstrcat(cmd->tmp_pool, path, *path ? " " : "", cmd->argv[i], NULL);
}
decoded_path = pr_fs_decode_path2(cmd->tmp_pool, path,
FSIO_DECODE_FL_TELL_ERRORS);
if (decoded_path == NULL) {
int xerrno = errno;
pr_log_debug(DEBUG8, "'%s' failed to decode properly: %s", path,
strerror(xerrno));
pr_response_add_err(R_550,
_("%s: Illegal character sequence in filename"), path);
pr_cmd_set_errno(cmd, xerrno);
errno = xerrno;
return PR_ERROR(cmd);
}
path = dir_canonical_path(cmd->tmp_pool, decoded_path);
if (path == NULL) {
int xerrno = EINVAL;
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
pr_cmd_set_errno(cmd, xerrno);
errno = xerrno;
return PR_ERROR(cmd);
}
cmd_name = cmd->argv[0];
cmd->argv[0] = "SITE_RMDIR";
if (!dir_check_canon(cmd->tmp_pool, cmd, G_WRITE, path, NULL)) {
int xerrno = EPERM;
cmd->argv[0] = cmd_name;
pr_log_debug(DEBUG4, MOD_SITE_MISC_VERSION
": %s command denied by <Limit>", (char *) cmd->argv[0]);
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
pr_cmd_set_errno(cmd, xerrno);
errno = xerrno;
return PR_ERROR(cmd);
}
cmd->argv[0] = cmd_name;
if (site_misc_delete_path(cmd->tmp_pool, path) < 0) {
int xerrno = errno;
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
pr_cmd_set_errno(cmd, xerrno);
errno = xerrno;
return PR_ERROR(cmd);
}
pr_response_add(R_200, _("SITE %s command successful"),
(char *) cmd->argv[1]);
return PR_HANDLED(cmd);
}
if (strncasecmp(cmd->argv[1], "HELP", 5) == 0) {
pr_response_add(R_214, "RMDIR <sp> path");
}
return PR_DECLINED(cmd);
}
MODRET site_misc_symlink(cmd_rec *cmd) {
if (!site_misc_engine) {
return PR_DECLINED(cmd);
}
if (cmd->argc < 2) {
pr_log_debug(DEBUG5, MOD_SITE_MISC_VERSION
"%s : wrong number of parameters (%d)", (char *) cmd->argv[0], cmd->argc);
return PR_DECLINED(cmd);
}
if (strncasecmp(cmd->argv[1], "SYMLINK", 8) == 0) {
struct stat st;
int res;
char *cmd_name, *decoded_path, *src, *dst;
unsigned char *authenticated;
if (cmd->argc < 4)
return PR_DECLINED(cmd);
authenticated = get_param_ptr(cmd->server->conf, "authenticated", FALSE);
if (!authenticated ||
*authenticated == FALSE) {
pr_response_add_err(R_530, _("Please login with USER and PASS"));
pr_cmd_set_errno(cmd, EPERM);
errno = EPERM;
return PR_ERROR(cmd);
}
decoded_path = pr_fs_decode_path2(cmd->tmp_pool, cmd->argv[2],
FSIO_DECODE_FL_TELL_ERRORS);
if (decoded_path == NULL) {
int xerrno = errno;
pr_log_debug(DEBUG8, "'%s' failed to decode properly: %s",
(char *) cmd->argv[2], strerror(xerrno));
pr_response_add_err(R_550,
_("%s: Illegal character sequence in filename"), (char *) cmd->argv[2]);
pr_cmd_set_errno(cmd, xerrno);
errno = xerrno;
return PR_ERROR(cmd);
}
src = dir_canonical_path(cmd->tmp_pool, decoded_path);
if (src == NULL) {
int xerrno = EINVAL;
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
cmd_name = cmd->argv[0];
cmd->argv[0] = "SITE_SYMLINK";
if (!dir_check_canon(cmd->tmp_pool, cmd, G_READ, src, NULL)) {
int xerrno = EPERM;
cmd->argv[0] = cmd_name;
pr_log_debug(DEBUG4, MOD_SITE_MISC_VERSION
": %s command denied by <Limit>", (char *) cmd->argv[0]);
pr_response_add_err(R_550, "%s: %s", (char *) cmd->argv[2],
strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
decoded_path = pr_fs_decode_path2(cmd->tmp_pool, cmd->argv[3],
FSIO_DECODE_FL_TELL_ERRORS);
if (decoded_path == NULL) {
int xerrno = errno;
pr_log_debug(DEBUG8, "'%s' failed to decode properly: %s",
(char *) cmd->argv[3], strerror(xerrno));
pr_response_add_err(R_550,
_("%s: Illegal character sequence in filename"), (char *) cmd->argv[3]);
pr_cmd_set_errno(cmd, xerrno);
errno = xerrno;
return PR_ERROR(cmd);
}
dst = dir_canonical_path(cmd->tmp_pool, decoded_path);
if (dst == NULL) {
int xerrno = EINVAL;
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
if (!dir_check_canon(cmd->tmp_pool, cmd, G_WRITE, dst, NULL)) {
int xerrno = EPERM;
cmd->argv[0] = cmd_name;
pr_log_debug(DEBUG4, MOD_SITE_MISC_VERSION
": %s command denied by <Limit>", (char *) cmd->argv[0]);
pr_response_add_err(R_550, "%s: %s", (char *) cmd->argv[3],
strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
cmd->argv[0] = cmd_name;
if (site_misc_check_filters(cmd, dst) < 0) {
int xerrno = EPERM;
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
/* Make sure the source path exists. The symlink(2) man page suggests
* that the system call will do this, but experimentally (Mac OSX 10.4)
* I've seen symlink(2) happily link two names, neither of which exist
* in the filesystem.
*/
pr_fs_clear_cache2(src);
res = pr_fsio_stat(src, &st);
if (res < 0) {
int xerrno = errno;
pr_log_debug(DEBUG7, MOD_SITE_MISC_VERSION
": error checking '%s': %s", src, strerror(xerrno));
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
if (pr_fsio_symlink(src, dst) < 0) {
int xerrno = errno;
pr_log_debug(DEBUG2, MOD_SITE_MISC_VERSION
": error symlinking '%s' to '%s': %s", src, dst, strerror(xerrno));
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
pr_response_add(R_200, _("SITE %s command successful"),
(char *) cmd->argv[1]);
return PR_HANDLED(cmd);
}
if (strncasecmp(cmd->argv[1], "HELP", 5) == 0) {
pr_response_add(R_214, "SYMLINK <sp> source <sp> destination");
}
return PR_DECLINED(cmd);
}
/* Handle: SITE UTIME mtime path-with-spaces */
MODRET site_misc_utime_mtime(cmd_rec *cmd) {
register unsigned int i;
char *cmd_name, *decoded_path, *path = "";
size_t timestamp_len;
unsigned int year, month, day, hour, min, sec = 0;
struct timeval tvs[2];
struct stat st;
/* Accept both 'YYYYMMDDhhmm' and 'YYYYMMDDhhmmss' formats. */
timestamp_len = strlen(cmd->argv[2]);
if (timestamp_len != 12 &&
timestamp_len != 14) {
int xerrno = EINVAL;
pr_log_debug(DEBUG7, MOD_SITE_MISC_VERSION
": wrong number of digits in timestamp argument '%s' (%lu)",
(char *) cmd->argv[2], (unsigned long) timestamp_len);
pr_response_add_err(R_500, "%s: %s", cmd->arg, strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
for (i = 3; i < cmd->argc; i++) {
path = pstrcat(cmd->tmp_pool, path, *path ? " " : "", cmd->argv[i], NULL);
}
decoded_path = pr_fs_decode_path2(cmd->tmp_pool, path,
FSIO_DECODE_FL_TELL_ERRORS);
if (decoded_path == NULL) {
int xerrno = errno;
pr_log_debug(DEBUG8, "'%s' failed to decode properly: %s", path,
strerror(xerrno));
pr_response_add_err(R_550, _("%s: Illegal character sequence in filename"),
path);
pr_cmd_set_errno(cmd, xerrno);
errno = xerrno;
return PR_ERROR(cmd);
}
if (pr_fsio_lstat(decoded_path, &st) == 0) {
if (S_ISLNK(st.st_mode)) {
char link_path[PR_TUNABLE_PATH_MAX];
int len;
memset(link_path, '\0', sizeof(link_path));
len = dir_readlink(cmd->tmp_pool, decoded_path, link_path,
sizeof(link_path)-1, PR_DIR_READLINK_FL_HANDLE_REL_PATH);
if (len > 0) {
link_path[len] = '\0';
decoded_path = pstrdup(cmd->tmp_pool, link_path);
}
}
}
path = dir_canonical_path(cmd->tmp_pool, decoded_path);
if (path == NULL) {
int xerrno = EINVAL;
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
cmd_name = cmd->argv[0];
cmd->argv[0] = "SITE_UTIME";
if (!dir_check_canon(cmd->tmp_pool, cmd, G_WRITE, path, NULL)) {
int xerrno = EPERM;
cmd->argv[0] = cmd_name;
pr_log_debug(DEBUG4, MOD_SITE_MISC_VERSION
": %s command denied by <Limit>", (char *) cmd->argv[0]);
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
cmd->argv[0] = cmd_name;
if (site_misc_check_filters(cmd, path) < 0) {
int xerrno = EPERM;
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
if (site_misc_parsetime(cmd->argv[2], timestamp_len, &year, &month, &day,
&hour, &min, &sec) < 0) {
int xerrno = errno;
pr_response_add_err(R_500, "%s: %s", cmd->arg, strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
tvs[0].tv_usec = tvs[1].tv_usec = 0;
tvs[0].tv_sec = tvs[1].tv_sec = site_misc_mktime(year, month, day, hour,
min, sec);
if (pr_fsio_utimes_with_root(path, tvs) < 0) {
int xerrno = errno;
pr_log_debug(DEBUG2, MOD_SITE_MISC_VERSION
": error modifying timestamps for '%s': %s", path, strerror(xerrno));
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
pr_response_add(R_200, _("SITE %s command successful"),
(char *) cmd->argv[1]);
return PR_HANDLED(cmd);
}
/* Handle: SITE UTIME path-with-spaces atime mtime ctime UTC */
MODRET site_misc_utime_atime_mtime_ctime(cmd_rec *cmd) {
register unsigned int i;
char *cmd_name, *decoded_path, *path = "", *timestamp;
size_t timestamp_len;
unsigned int year, month, day, hour, min, sec = 0;
time_t parsed_atime, parsed_mtime, parsed_ctime;
struct timeval tvs[2];
for (i = 2; i < cmd->argc-4; i++) {
path = pstrcat(cmd->tmp_pool, path, *path ? " " : "", cmd->argv[i], NULL);
}
decoded_path = pr_fs_decode_path2(cmd->tmp_pool, path,
FSIO_DECODE_FL_TELL_ERRORS);
if (decoded_path == NULL) {
int xerrno = errno;
pr_log_debug(DEBUG8, "'%s' failed to decode properly: %s", path,
strerror(xerrno));
pr_response_add_err(R_550, _("%s: Illegal character sequence in filename"),
path);
pr_cmd_set_errno(cmd, xerrno);
errno = xerrno;
return PR_ERROR(cmd);
}
path = dir_canonical_path(cmd->tmp_pool, decoded_path);
if (path == NULL) {
int xerrno = EINVAL;
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
cmd_name = cmd->argv[0];
cmd->argv[0] = "SITE_UTIME";
if (!dir_check_canon(cmd->tmp_pool, cmd, G_WRITE, path, NULL)) {
int xerrno = EPERM;
cmd->argv[0] = cmd_name;
pr_log_debug(DEBUG4, MOD_SITE_MISC_VERSION
": %s command denied by <Limit>", (char *) cmd->argv[0]);
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
cmd->argv[0] = cmd_name;
if (site_misc_check_filters(cmd, path) < 0) {
int xerrno = EPERM;
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
/* Handle the atime. Accept both 'YYYYMMDDhhmm' and 'YYYYMMDDhhmmss'
* formats.
*/
timestamp = cmd->argv[cmd->argc-4];
timestamp_len = strlen(timestamp);
if (timestamp_len != 12 &&
timestamp_len != 14) {
int xerrno = EINVAL;
pr_log_debug(DEBUG7, MOD_SITE_MISC_VERSION
": wrong number of digits in timestamp argument '%s' (%lu)",
timestamp, (unsigned long) timestamp_len);
pr_response_add_err(R_500, "%s: %s", cmd->arg, strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
if (site_misc_parsetime(timestamp, timestamp_len, &year, &month, &day,
&hour, &min, &sec) < 0) {
int xerrno = errno;
pr_response_add_err(R_500, "%s: %s", cmd->arg, strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
parsed_atime = site_misc_mktime(year, month, day, hour, min, sec);
/* Handle the mtime. Accept both 'YYYYMMDDhhmm' and 'YYYYMMDDhhmmss'
* formats.
*/
sec = 0;
timestamp = cmd->argv[cmd->argc-3];
timestamp_len = strlen(timestamp);
if (timestamp_len != 12 &&
timestamp_len != 14) {
int xerrno = EINVAL;
pr_log_debug(DEBUG7, MOD_SITE_MISC_VERSION
": wrong number of digits in timestamp argument '%s' (%lu)",
timestamp, (unsigned long) timestamp_len);
pr_response_add_err(R_500, "%s: %s", cmd->arg, strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
if (site_misc_parsetime(timestamp, timestamp_len, &year, &month, &day,
&hour, &min, &sec) < 0) {
int xerrno = errno;
pr_response_add_err(R_500, "%s: %s", cmd->arg, strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
parsed_mtime = site_misc_mktime(year, month, day, hour, min, sec);
/* Handle the ctime. Accept both 'YYYYMMDDhhmm' and 'YYYYMMDDhhmmss'
* formats.
*/
sec = 0;
timestamp = cmd->argv[cmd->argc-2];
timestamp_len = strlen(timestamp);
if (timestamp_len != 12 &&
timestamp_len != 14) {
int xerrno = EINVAL;
pr_log_debug(DEBUG7, MOD_SITE_MISC_VERSION
": wrong number of digits in timestamp argument '%s' (%lu)",
timestamp, (unsigned long) timestamp_len);
pr_response_add_err(R_500, "%s: %s", cmd->arg, strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
if (site_misc_parsetime(timestamp, timestamp_len, &year, &month, &day,
&hour, &min, &sec) < 0) {
int xerrno = errno;
pr_response_add_err(R_500, "%s: %s", cmd->arg, strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
/* Unix filesystems typically do not allow changing/setting the creation
* timestamp. Thus we parse the timestamp provided by the client, but
* do nothing but log it.
*/
parsed_ctime = site_misc_mktime(year, month, day, hour, min, sec);
pr_trace_msg("command", 9,
"SITE UTIME command sent ctime timestamp of %lu secs",
(unsigned long) parsed_ctime);
tvs[0].tv_usec = tvs[1].tv_usec = 0;
tvs[0].tv_sec = parsed_atime;
tvs[1].tv_sec = parsed_mtime;
if (pr_fsio_utimes_with_root(path, tvs) < 0) {
int xerrno = errno;
pr_log_debug(DEBUG2, MOD_SITE_MISC_VERSION
": error modifying timestamps for '%s': %s", path, strerror(xerrno));
pr_response_add_err(R_550, "%s: %s", cmd->arg, strerror(xerrno));
errno = xerrno;
return PR_ERROR(cmd);
}
pr_response_add(R_200, _("SITE %s command successful"),
(char *) cmd->argv[1]);
return PR_HANDLED(cmd);
}
MODRET site_misc_utime(cmd_rec *cmd) {
if (!site_misc_engine) {
return PR_DECLINED(cmd);
}
if (cmd->argc < 2) {
pr_log_debug(DEBUG5, MOD_SITE_MISC_VERSION
"%s : wrong number of parameters (%d)", (char *) cmd->argv[0], cmd->argc);
return PR_DECLINED(cmd);
}
if (strncasecmp(cmd->argv[1], "UTIME", 6) == 0) {
unsigned char *authenticated;
authenticated = get_param_ptr(cmd->server->conf, "authenticated", FALSE);
if (authenticated == NULL ||
*authenticated == FALSE) {
pr_response_add_err(R_530, _("Please login with USER and PASS"));
errno = EACCES;
return PR_ERROR(cmd);
}
/* Now try to determine whether we are dealing with the mtime-only
* SITE UTIME variant (one timestamp only), or with the atime/mtime/ctime
* variant (three timestamps). What makes this trickier is making sure
* to handle filenames that contain spaces.
*/
if (cmd->argc < 4) {
/* Not enough arguments for any SITE UTIME variant. */
pr_log_debug(DEBUG9, MOD_SITE_MISC_VERSION
": SITE UTIME command has wrong number of parameters (%d), ignoring",
cmd->argc);
return PR_DECLINED(cmd);
}
/* If we have at least 7 parameters, AND the last parameter is "UTC"
* (case-insensitive), then it's a candidate for the atime/mtime/ctime
* variant.
*/
if (cmd->argc >= 7 &&
strncasecmp(cmd->argv[cmd->argc-1], "UTC", 4) == 0) {
return site_misc_utime_atime_mtime_ctime(cmd);
}
return site_misc_utime_mtime(cmd);
}
if (strncasecmp(cmd->argv[1], "HELP", 5) == 0) {
pr_response_add(R_214, "UTIME <sp> YYYYMMDDhhmm[ss] <sp> path");
}
return PR_DECLINED(cmd);
}
/* Event listeners
*/
static void site_misc_sess_reinit_ev(const void *event_data, void *user_data) {
int res;
/* A HOST command changed the main_server pointer, reinitialize ourselves. */
pr_event_unregister(&site_misc_module, "core.session-reinit",
site_misc_sess_reinit_ev);
site_misc_engine = TRUE;
pr_feat_remove("SITE MKDIR");
pr_feat_remove("SITE RMDIR");
pr_feat_remove("SITE SYMLINK");
pr_feat_remove("SITE UTIME");
res = site_misc_sess_init();
if (res < 0) {
pr_session_disconnect(&site_misc_module,
PR_SESS_DISCONNECT_SESSION_INIT_FAILED, NULL);
}
}
/* Initialization functions
*/
static int site_misc_sess_init(void) {
config_rec *c;
pr_event_register(&site_misc_module, "core.session-reinit",
site_misc_sess_reinit_ev, NULL);
c = find_config(main_server->conf, CONF_PARAM, "SiteMiscEngine", FALSE);
if (c) {
site_misc_engine = *((unsigned int *) c->argv[0]);
}
if (!site_misc_engine) {
return 0;
}
/* Advertise support for these SITE commands */
pr_feat_add("SITE MKDIR");
pr_feat_add("SITE RMDIR");
pr_feat_add("SITE SYMLINK");
pr_feat_add("SITE UTIME");
return 0;
}
/* Module API tables
*/
static conftable site_misc_conftab[] = {
{ "SiteMiscEngine", set_sitemiscengine, NULL },
{ NULL }
};
static cmdtable site_misc_cmdtab[] = {
{ CMD, C_SITE, G_WRITE, site_misc_mkdir, FALSE, FALSE, CL_MISC },
{ CMD, C_SITE, G_WRITE, site_misc_rmdir, FALSE, FALSE, CL_MISC },
{ CMD, C_SITE, G_WRITE, site_misc_symlink, FALSE, FALSE, CL_MISC },
{ CMD, C_SITE, G_WRITE, site_misc_utime, FALSE, FALSE, CL_MISC },
{ 0, NULL }
};
module site_misc_module = {
NULL, NULL,
/* Module API version 2.0 */
0x20,
/* Module name */
"site_misc",
/* Module configuration handler table */
site_misc_conftab,
/* Module command handler table */
site_misc_cmdtab,
/* Module authentication handler table */
NULL,
/* Module initialization function */
NULL,
/* Session initialization function */
site_misc_sess_init,
/* Module version */
MOD_SITE_MISC_VERSION
};
|