Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #1676: Implement support for an OPTS REST command, that authe… #1682

Merged
merged 1 commit into from
Jun 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@
terminate the session abruptly.
- Issue 1640 - Support terminating connection after USER command when TLS is
required.
- Issue 1676 - Support OPTS commands for querying configured policy for resumed
uploads, downloads.

1.3.8 - Released 04-Dec-2022
--------------------------------
Expand Down
80 changes: 79 additions & 1 deletion modules/mod_xfer.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* ProFTPD - FTP server daemon
* Copyright (c) 1997, 1998 Public Flood Software
* Copyright (c) 1999, 2000 MacGyver aka Habeeb J. Dihu <macgyver@tos.net>
* Copyright (c) 2001-2022 The ProFTPD Project team
* Copyright (c) 2001-2023 The ProFTPD Project team
*
* 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
Expand Down Expand Up @@ -1309,6 +1309,83 @@ static int get_hidden_store_path(cmd_rec *cmd, const char *path,
return 0;
}

MODRET xfer_opts_rest(cmd_rec *cmd) {
register unsigned int i;
char *method, *xfer_cmd;
unsigned char *authenticated;

authenticated = get_param_ptr(cmd->server->conf, "authenticated", FALSE);
if (authenticated == NULL ||
*authenticated == FALSE) {
pr_response_add_err(R_501, _("Please login with USER and PASS"));

pr_cmd_set_errno(cmd, EPERM);
errno = EPERM;
return PR_ERROR(cmd);
}

method = pstrdup(cmd->tmp_pool, cmd->argv[0]);

/* Convert underscores to spaces in the method name, for prettier logging. */
for (i = 0; method[i]; i++) {
if (method[i] == '_') {
method[i] = ' ';
}
}

if (cmd->argc != 2) {
pr_response_add_err(R_501, _("'%s' not understood"), method);

pr_cmd_set_errno(cmd, EINVAL);
errno = EINVAL;
return PR_ERROR(cmd);
}

xfer_cmd = cmd->argv[1];
if (strcasecmp(xfer_cmd, C_RETR) == 0) {
unsigned char *allow_restart = NULL;

/* Do we allow resumed downloads? */
allow_restart = get_param_ptr(main_server->conf, "AllowRetrieveRestart",
FALSE);
if (allow_restart == NULL ||
*allow_restart == TRUE) {
pr_response_add(R_200, "%s", _("REST RETR allowed"));
return PR_HANDLED(cmd);
}

pr_response_add_err(R_451, "%s", _("REST RETR not allowed"));
pr_cmd_set_errno(cmd, EPERM);
errno = EPERM;
return PR_ERROR(cmd);
}

if (strcasecmp(xfer_cmd, C_STOR) == 0) {
unsigned char *allow_restart = NULL;

/* Do we allow resumed uploads? */
allow_restart = get_param_ptr(main_server->conf, "AllowStoreRestart",
FALSE);
if (allow_restart != NULL &&
*allow_restart == TRUE) {
pr_response_add(R_200, "%s", _("REST STOR allowed"));
return PR_HANDLED(cmd);
}

pr_response_add_err(R_451, "%s", _("REST STOR not allowed"));
pr_cmd_set_errno(cmd, EPERM);
errno = EPERM;
return PR_ERROR(cmd);
}

/* Otherwise, it's an OPTS REST query we do not support. */
pr_response_add_err(R_501, _("'%s' not understood"), method);

pr_cmd_set_errno(cmd, EINVAL);
errno = EINVAL;
return PR_ERROR(cmd);
}

MODRET xfer_post_prot(cmd_rec *cmd) {
CHECK_CMD_ARGS(cmd, 2);

Expand Down Expand Up @@ -4441,6 +4518,7 @@ static cmdtable xfer_cmdtab[] = {
{ LOG_CMD_ERR, C_APPE,G_NONE, xfer_err_cleanup, FALSE, FALSE },
{ CMD, C_ABOR, G_NONE, xfer_abor, TRUE, TRUE, CL_MISC },
{ LOG_CMD, C_ABOR, G_NONE, xfer_log_abor, TRUE, TRUE, CL_MISC },
{ CMD, C_OPTS "_REST", G_NONE, xfer_opts_rest, FALSE, FALSE },
{ CMD, C_REST, G_NONE, xfer_rest, TRUE, FALSE, CL_MISC },
{ CMD, C_RANG, G_NONE, xfer_rang, TRUE, FALSE, CL_MISC },
{ POST_CMD,C_PROT, G_NONE, xfer_post_prot, FALSE, FALSE },
Expand Down