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
|
/*
* helper functions for scponly
*/
#include <stdio.h> /* io */
#include <string.h> /* for str* */
#include <sys/types.h> /* for stat, getpwuid */
#include <sys/stat.h> /* for stat */
#include <unistd.h> /* for exit, access, getpwuid, execve, getopt */
#ifdef HAVE_GETOPT_H
#include <getopt.h> /* for getopt */
#endif
#include <errno.h> /* for debugging */
#include <pwd.h> /* to get username for config parsing */
#include <time.h> /* time */
#include <libgen.h> /* basename */
#include <stdlib.h> /* realloc */
#include <syslog.h>
#include "scponly.h"
#include "config.h"
#ifdef HAVE_GLOB
#include <glob.h> /* for glob() */
#else
#ifdef HAVE_WORDEXP
#include <wordexp.h> /* for wordexp() */
#endif
#endif
#define MAX(x,y) ( ( x > y ) ? x : y )
#define MIN(x,y) ( ( x < y ) ? x : y )
extern int debuglevel;
extern char username[MAX_USERNAME];
extern char homedir[FILENAME_MAX];
extern cmd_t commands[];
extern cmd_arg_t dangerous_args[];
extern char * allowed_env_vars[];
extern char * safeenv[MAX_ENV];
#ifdef HAVE_GETOPT
extern char *optarg;
extern int optind;
#ifdef HAVE_OPTRESET
extern int optreset;
#endif
#endif
#ifdef UNIX_COMPAT
char* solaris_needs_strsep(char** str, char* delims)
{
char* tmpstr;
if (*str==NULL) {
return NULL;
}
tmpstr=*str;
while (**str!='\0') {
if (strchr(delims,**str)!=NULL) {
**str='\0';
(*str)++;
return tmpstr;
}
(*str)++;
}
*str=NULL;
return tmpstr;
}
#endif
void discard_vector(char **av)
{
char **tmpptr=av;
while (*tmpptr!=NULL)
free(*tmpptr++);
free(av);
}
char *flatten_vector(char **av)
{
char **tmpptr=av;
char *temp=NULL;
char *crptr=NULL;
char *outbuf=NULL;
int len=0,newlen=0;
while (*tmpptr!=NULL)
{
if (NULL != (crptr=strchr(*tmpptr, '\n')))
{
*crptr='\0';
}
if (outbuf!=NULL)
{
len = strlen(outbuf);
newlen=len + strlen(*tmpptr)+1;
}
else
{
len = 0;
newlen=strlen(*tmpptr);
}
if (NULL == (temp = realloc (outbuf, newlen + 1)))
{
perror("realloc");
if (outbuf)
free(outbuf);
exit(EXIT_FAILURE);
}
outbuf=temp;
temp=NULL;
if (len)
{
outbuf[len]=' ';
strcpy(&outbuf[len+1],*tmpptr);
}
else
strcpy(outbuf,*tmpptr);
*tmpptr++;
}
return (outbuf);
}
/*
* since some programs support invoking other programs for their encryption
* (dropins to replace ssh), we must refuse to support these arguments
*
* RETURN: 1 means reject this command, 0 means it is safe.
*/
int check_dangerous_args(char **av)
{
cmd_arg_t *cmdarg=dangerous_args;
char **tmpptr=av;
int ch;
int ac=0;
while (cmdarg != NULL)
{
if (cmdarg->name == NULL)
return 0;
if (exact_match(cmdarg->name,av[0]))
{
/*
* the command matches one of our dangerous commands
* check the rest of the vector for dangerous command
* line arguments
*
* if the "getoptflag" is set for this command, use getopt
* to determine if the flag is present, otherwise
* to a string match on each element of the argument vector
*/
if (1 == cmdarg->getoptflag)
{
/*
* first count the arguments in the vector
*/
tmpptr=av;
while (*tmpptr!=NULL)
{
*tmpptr++;
ac++;
}
/*
* now use getopt to look for our problem option
*/
#ifdef HAVE_GETOPT
#ifdef HAVE_OPTRESET
/*
* if we have optreset, use it to reset the global variables
*/
optreset=1;
optind=1;
#else
/*
* otherwise, try a glibc-style reset of the global getopt vars
*/
optind=0;
#endif
/*
* tell getopt to only be strict if the 'opts' is well defined
*/
opterr=cmdarg->strict;
while ((ch = getopt(ac, av, cmdarg->opts)) != -1)
if (strchr(cmdarg->badarg, ch) || (cmdarg->strict && ch == '?'))
{
syslog(LOG_ERR, "option -%c is not permitted for use with %s (arg was %s)(%s))",
ch, cmdarg->name, optarg, logstamp());
return 1;
}
#elif
syslog(LOG_ERR, "a getopt() argument check could not be performed for %s, recompile scponly without support for %s or rebuild scponly with getopt", av[0], av[0]);
#endif
}
else
{
tmpptr=av;
*tmpptr++;
while (*tmpptr!=NULL)
{
if(strbeg(*tmpptr, cmdarg->badarg))
{
syslog(LOG_ERR, "%s is not permitted for use with %s (%s))",
cmdarg->badarg, cmdarg->name, logstamp());
return 1;
}
*tmpptr++;
}
}
}
cmdarg++;
}
return 0;
}
int valid_arg_vector(char **av)
{
cmd_t *cmd=commands;
while (cmd != NULL)
{
if (cmd->name == NULL)
return 0;
if (exact_match(cmd->name,av[0]))
{
if ((cmd->argflag == 0) && (av[1]!=NULL))
{
return 0;
}
return 1;
}
cmd++;
}
return 0;
}
char *substitute_known_path(char *request)
{
cmd_t *cmd=commands;
char *stripped_req=strdup(basename(request));
while (cmd != NULL)
{
if (cmd->name == NULL)
break;
if (exact_match(basename(cmd->name),stripped_req))
{
free(stripped_req); /* discard old pathname */
return (strdup(cmd->name));
}
cmd++;
}
return (stripped_req);
}
char **build_arg_vector(char *request)
{
/*
* i strdup vector elements so i know they are
* mine to free later.
*/
char **ap, *argv[MAX_ARGC], *inputstring, *tmpstring, *freeme;
char **ap2,**av=(char **)malloc(MAX_ARGC * (sizeof(char *)));
ap=argv;
freeme=inputstring=strdup(request); /* make a local copy */
while (ap < &argv[(MAX_ARGC-1)])
{
if (inputstring && (*inputstring=='"'))
{
if (NULL != (tmpstring=strchr((inputstring+1),'"')))
{
*tmpstring++='\0';
*ap=(inputstring+1);
#ifdef UNIX_COMPAT
if (solaris_needs_strsep(&tmpstring, WHITE) == NULL)
#else
if (strsep(&tmpstring, WHITE) == NULL)
#endif
break;
inputstring=tmpstring;
if (**ap != '\0')
ap++;
continue;
}
}
#ifdef UNIX_COMPAT
if ((*ap = solaris_needs_strsep(&inputstring, WHITE)) == NULL)
#else
if ((*ap = strsep(&inputstring, WHITE)) == NULL)
#endif
break;
if (**ap != '\0')
ap++;
}
*ap = NULL;
ap=argv;
ap2=av;
while (*ap != NULL)
{
*ap2=strdup(*ap);
ap2++;
ap++;
}
*ap2 = NULL;
free(freeme);
return (av);
}
char **expand_wildcards(char **av_old)
#ifdef HAVE_GLOB
{
char **av_new=(char **)malloc(MAX_ARGC * (sizeof(char *)));
glob_t g;
int c_old,c_new,c; /* argument counters */
#ifdef UNIX_COMPAT
int flags = GLOB_NOCHECK;
#else
int flags = GLOB_NOCHECK | GLOB_TILDE;
#endif
g.gl_offs = c_new = c_old = 0;
while(av_old[c_old] != NULL )
{
if (0 == glob(av_old[c_old++],flags,NULL,&g))
{
c=0;
while((g.gl_pathv[c] != NULL) && (c_new < (MAX_ARGC-1)))
av_new[c_new++]=strdup(g.gl_pathv[c++]);
globfree(&g);
}
}
av_new[c_new]=NULL;
discard_vector(av_old);
return av_new;
}
#else
#ifdef HAVE_WORDEXP
{
return NULL;
}
#endif
#endif
int cntchr(char *buf, char x)
{
int count=0;
while (*buf!=0)
if (*buf++==x)
count++;
return count;
}
char *logstamp ()
{
/* Time and pid are handled for us by syslog(3). */
static char ret_buf[255];
static const char bad_ip[10] = "no ip?!";
char *ipstring = NULL;
ipstring = (char *)getenv("SSH_CLIENT");
if (!ipstring)
ipstring = (char *)getenv("SSH2_CLIENT");
if (!ipstring)
ipstring = (char *)bad_ip;
snprintf(ret_buf, sizeof(ret_buf)-1,
"username: %s(%d), IP/port: %s", username, getuid(), ipstring);
return ret_buf;
}
/*
* if big ends with small, return big without
* small in a new buf, else NULL
*/
inline char *strend (char *big, char *small)
{
int blen,slen;
slen=strlen(small);
blen=strlen(big);
if ((blen==0) || (slen==0) || (blen < slen))
{
return NULL;
}
if (0 == strcmp(&big[(blen-slen)],small))
{
char *tempbuf=NULL;
tempbuf=(char *)malloc(blen-slen+1);
if (tempbuf==NULL)
{
perror("malloc");
exit(EXIT_FAILURE);
}
bzero(tempbuf,(blen-slen+1));
strncpy(tempbuf, big, blen-slen);
return tempbuf;
}
return NULL;
}
/*
* if big starts with small, return the char after
* the last char in small from big. ahem.
*/
inline char *strbeg (char *big, char *small)
{
if (strlen(big) <= strlen(small))
return NULL;
if (0==strncmp(big,small,strlen(small)))
return (big+strlen(small));
return NULL;
}
/*
* if any chars in string dont appear in ALLOWABLE
* then fail (return 0)
*/
int valid_chars(char *string)
{
int count;
if ((count=strspn(string,ALLOWABLE))==strlen(string))
return 1;
else
{
fprintf (stderr, "invalid characters in scp command!\n");
fprintf (stderr, "here:%s\n",string+count);
fprintf (stderr, "try using a wildcard to match this file/directory\n");
return 0;
}
}
/*
* retrieves username and home directory from passwd database
*/
int get_uservar(void)
{
struct passwd *userinfo;
if (NULL==(userinfo=getpwuid(getuid())))
{
syslog (LOG_WARNING, "no knowledge of uid %d [%s]", getuid(), logstamp());
if (debuglevel)
{
fprintf (stderr, "no knowledge of uid %d\n", getuid());
perror ("getpwuid");
}
return 0;
}
if (debuglevel)
syslog(LOG_DEBUG, "retrieved home directory of \"%s\" for user \"%s\"",
userinfo->pw_dir, userinfo->pw_name);
strncpy(username,userinfo->pw_name,MAX_USERNAME);
strncpy(homedir,userinfo->pw_dir,FILENAME_MAX);
return 1;
}
int mysetenv(const char *name, const char *value) {
/* from: http://www.onlamp.com/pub/a/onlamp/excerpt/PUIS3_chap16/index3.html */
static char count = 0;
char buff[255];
if (count == 0)
/* in case nothing ever gets put in here... */
safeenv[0] = NULL;
if (count == MAX_ENV)
return 0;
if (!name || !value)
return 0;
if (snprintf(buff, sizeof(buff), "%s=%s", name, value) < 0)
return 0;
if (safeenv[count] = strdup(buff)) {
safeenv[++count] = NULL;
return 1;
}
return 0;
}
void filter_allowed_env_vars() {
int slen = 0;
char *p_env, *p_str;
char **p_valid = allowed_env_vars;
/* check each allowed variable */
while (NULL != *p_valid) {
p_env = (char*)getenv(*p_valid);
if (NULL != p_env) {
if (debuglevel)
syslog(LOG_DEBUG, "Found \"%s\" and setting it to \"%s\"", *p_valid, p_env);
if (!mysetenv(*p_valid, p_env))
syslog(LOG_ERR, "Unable to set environment var \"%s\" to \"%s\"", *p_valid, p_env);
} else if (debuglevel) {
syslog(LOG_DEBUG, "Unable to find \"%s\" in the environment", *p_valid);
}
p_valid++;
}
}
|