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
|
/*
* ProFTPD - FTP server daemon
* Copyright (c) 2001-2009 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
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*
* As a special exemption, Public Flood Software/MacGyver aka Habeeb J. Dihu
* 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.
*/
/* ProFTPD Controls command-line client
* $Id: ftpdctl.c,v 1.15 2009/04/07 15:42:47 castaglia Exp $
*/
#include "conf.h"
#include "privs.h"
#include <signal.h>
#ifdef HAVE_GETOPT_H
# include <getopt.h>
#endif
static const char *program = "ftpdctl";
/* NOTE: these empty stubs are needed for proper linking. What a mess. */
session_t session;
server_rec *main_server = NULL;
void *get_param_ptr(xaset_t *set, const char *name, int recurse) {
return NULL;
}
void pr_alarms_block(void) {
}
void pr_alarms_unblock(void) {
}
gid_t pr_auth_name2gid(pool *p, const char *name) {
return (gid_t) -1;
}
uid_t pr_auth_name2uid(pool *p, const char *name) {
return (uid_t) -1;
}
int pr_fs_get_usable_fd(int fd) {
return -1;
}
int pr_privs_root(const char *file, int lineno) {
return 0;
}
int pr_privs_relinquish(const char *file, int lineno) {
return 0;
}
void pr_signals_block(void) {
}
void pr_signals_unblock(void) {
}
void pr_signals_handle(void) {
}
pr_table_t *pr_table_alloc(pool *p, int flags) {
errno = EPERM;
return NULL;
}
int pr_table_add(pr_table_t *tab, const char *k, void *v, size_t sz) {
errno = EPERM;
return -1;
}
int pr_table_count(pr_table_t *tab) {
errno = EPERM;
return -1;
}
int pr_table_empty(pr_table_t *tab) {
errno = EPERM;
return -1;
}
int pr_table_exists(pr_table_t *tab, const char *k) {
errno = EPERM;
return -1;
}
int pr_table_free(pr_table_t *tab) {
errno = EPERM;
return -1;
}
void *pr_table_get(pr_table_t *tab, const char *k, size_t *sz) {
errno = EPERM;
return NULL;
}
int pr_table_set(pr_table_t *tab, const char *k, void *v, size_t sz) {
errno = EPERM;
return -1;
}
struct tm *pr_localtime(pool *p, const time_t *t) {
return localtime(t);
}
int pr_trace_msg(const char *channel, int level, const char *fmt, ...) {
errno = ENOSYS;
return -1;
}
char *sstrncpy(char *dest, const char *src, size_t n) {
register char *d = dest;
if (!dest)
return NULL;
if (n == 0)
return NULL;
if (src && *src) {
for (; *src && n > 1; n--)
*d++ = *src++;
}
*d = '\0';
return dest;
}
#ifdef PR_USE_CTRLS
/* need a SIGPIPE handler */
static RETSIGTYPE sig_pipe(int sig) {
signal(SIGPIPE, sig_pipe);
}
static void usage(void) {
fprintf(stdout, "usage: %s [options]\n", program);
fprintf(stdout, " -h\tdisplays this message\n");
fprintf(stdout, " -s\tspecify an alternate local socket\n");
fprintf(stdout, " -v\tdisplays more verbose information\n");
fprintf(stdout, "\n");
return;
}
int main(int argc, char *argv[]) {
unsigned char verbose = FALSE;
char **respargv = NULL;
const char *cmdopts = "hs:v";
register int i = 0;
char *socket_file = PR_RUN_DIR "/proftpd.sock";
int sockfd = -1, optc = 0, status = 0, respargc = 0;
unsigned int reqargc = 0;
pool *ctl_pool = NULL;
array_header *reqargv = NULL;
/* Make sure we were called with at least one argument. */
if (argc-1 < 1) {
fprintf(stdout, "%s: missing required arguments\n", program);
exit(1);
}
/* Set the POSIXLY_CORRECT environment variable, so that control handlers
* can themselves have optional flags.
*/
if (putenv("POSIXLY_CORRECT=1") < 0) {
fprintf(stderr, "%s: unable to set POSIXLY_CORRECT: %s\n", program,
strerror(errno));
exit(1);
}
opterr = 0;
while ((optc = getopt(argc, argv, cmdopts)) != -1) {
switch (optc) {
case 'h':
usage();
return 0;
case 's':
if (*optarg != '/') {
fprintf(stderr, "%s: alternate socket path must be an absolute "
"path\n", program);
return 1;
}
socket_file = optarg;
break;
case 'v':
verbose = TRUE;
break;
case '?':
fprintf(stdout, "%s: unknown option: %c\n", program, (char) optopt);
break;
}
}
signal(SIGPIPE, sig_pipe);
/* Allocate some memory for proftpd objects. */
ctl_pool = make_sub_pool(NULL);
reqargv = make_array(ctl_pool, 0, sizeof(char *));
/* Process the command-line args into an array_header. */
for (i = optind; i < argc; i++) {
if (verbose)
fprintf(stdout, "%s: adding \"%s\" to reqargv\n", program, argv[i]);
*((char **) push_array(reqargv)) = pstrdup(ctl_pool, argv[i]);
reqargc++;
}
/* Don't forget to NULL-terminate the array. */
*((char **) push_array(reqargv)) = NULL;
/* Open a connection to the socket maintained by mod_ctrls. */
if (verbose)
fprintf(stdout, "%s: contacting server using '%s'\n", program,
socket_file);
sockfd = pr_ctrls_connect(socket_file);
if (sockfd < 0) {
fprintf(stderr, "%s: error contacting server using '%s': %s\n", program,
socket_file, strerror(errno));
exit(1);
}
if (verbose)
fprintf(stdout, "%s: sending control request\n", program);
if (pr_ctrls_send_msg(sockfd, 0, reqargc, (char **) reqargv->elts) < 0) {
fprintf(stderr, "%s: error sending request: %s\n", program,
strerror(errno));
exit(1);
}
/* Read and display the responses. */
if (verbose)
fprintf(stdout, "%s: receiving control response\n", program);
/* Manually set errno to this value, so that if an error (like a segfault)
* occurs, the error string displayed to the user is more indicative of
* the cause of the lack of responses.
*/
errno = EPERM;
if ((respargc = pr_ctrls_recv_response(ctl_pool, sockfd, &status,
&respargv)) < 0) {
fprintf(stdout, "%s: error receiving response: %s\n", program,
strerror(errno));
exit(1);
}
if (respargv != NULL) {
for (i = 0; i < respargc; i++)
fprintf(stdout, "%s: %s\n", program, respargv[i]);
} else
fprintf(stdout, "%s: no response from server\n", program);
destroy_pool(ctl_pool);
ctl_pool = NULL;
return 0;
}
#else
int main(int argc, char *argv[]) {
printf("%s:\n", program);
printf(" Controls support disabled.\n");
printf(" Please recompile proftpd using --enable-ctrls\n");
return 1;
}
#endif /* PR_USE_CTRLS */
|