2010-12-27 12:18:32 -05:00
|
|
|
/*
|
2019-04-29 07:21:51 -06:00
|
|
|
* SPDX-License-Identifier: ISC
|
|
|
|
*
|
2017-12-03 17:53:40 -07:00
|
|
|
* Copyright (c) 2011-2015 Todd C. Miller <Todd.Miller@sudo.ws>
|
2010-12-27 12:18:32 -05:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2018-10-26 08:39:09 -06:00
|
|
|
/*
|
|
|
|
* This is an open source non-commercial project. Dear PVS-Studio, please check it.
|
|
|
|
* PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
|
|
|
|
*/
|
2018-10-21 08:46:05 -06:00
|
|
|
|
2010-12-27 12:18:32 -05:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdio.h>
|
2015-06-19 14:29:27 -06:00
|
|
|
#include <stdlib.h>
|
2019-10-24 20:04:31 -06:00
|
|
|
#ifdef HAVE_STDBOOL_H
|
|
|
|
# include <stdbool.h>
|
|
|
|
#else
|
|
|
|
# include "compat/stdbool.h"
|
|
|
|
#endif /* HAVE_STDBOOL_H */
|
2010-12-27 12:18:32 -05:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif /* HAVE_STRING_H */
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif /* HAVE_STRINGS_H */
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <grp.h>
|
2019-10-24 20:04:31 -06:00
|
|
|
#include <limits.h>
|
2010-12-27 12:18:32 -05:00
|
|
|
#include <time.h>
|
2019-10-24 20:04:31 -06:00
|
|
|
#include <unistd.h>
|
2010-12-27 12:18:32 -05:00
|
|
|
|
2019-10-24 20:04:31 -06:00
|
|
|
#include "sudo_gettext.h" /* must be included before sudo_compat.h */
|
2010-12-27 12:18:32 -05:00
|
|
|
|
2019-10-24 20:04:31 -06:00
|
|
|
#include "sudo_compat.h"
|
|
|
|
#include "sudo_fatal.h"
|
|
|
|
#include "sudo_debug.h"
|
|
|
|
#include "sudo_util.h"
|
|
|
|
#include "sudo_iolog.h"
|
2012-10-23 11:57:07 -04:00
|
|
|
|
2011-08-18 13:41:40 -04:00
|
|
|
/*
|
|
|
|
* Concatenate dir + file, expanding any escape sequences.
|
|
|
|
* Returns the concatenated path and sets slashp point to
|
|
|
|
* the path separator between the expanded dir and file.
|
2019-10-24 20:04:31 -06:00
|
|
|
* XXX - simplify by only expanding one thing and removing prefix
|
2011-08-18 13:41:40 -04:00
|
|
|
*/
|
2010-12-27 12:18:32 -05:00
|
|
|
char *
|
2010-12-31 09:55:40 -05:00
|
|
|
expand_iolog_path(const char *prefix, const char *dir, const char *file,
|
2019-10-24 20:04:31 -06:00
|
|
|
char **slashp, const struct iolog_path_escape *escapes, void *closure)
|
2010-12-27 12:18:32 -05:00
|
|
|
{
|
2011-08-18 13:41:40 -04:00
|
|
|
size_t len, prelen = 0;
|
|
|
|
char *dst, *dst0, *path, *pathend, tmpbuf[PATH_MAX];
|
2012-06-15 12:33:12 -04:00
|
|
|
char *slash = NULL;
|
2011-08-18 13:41:40 -04:00
|
|
|
const char *endbrace, *src = dir;
|
2019-10-24 20:04:31 -06:00
|
|
|
int pass;
|
2011-12-02 11:27:33 -05:00
|
|
|
bool strfit;
|
2019-10-24 20:04:31 -06:00
|
|
|
debug_decl(expand_iolog_path, SUDO_DEBUG_UTIL)
|
2010-12-27 12:18:32 -05:00
|
|
|
|
2011-08-18 13:41:40 -04:00
|
|
|
/* Expanded path must be <= PATH_MAX */
|
|
|
|
if (prefix != NULL)
|
|
|
|
prelen = strlen(prefix);
|
2018-10-19 13:35:20 -06:00
|
|
|
path = malloc(prelen + PATH_MAX);
|
2015-06-17 06:49:59 -06:00
|
|
|
if (path == NULL) {
|
2015-06-19 14:51:17 -06:00
|
|
|
sudo_warnx(U_("%s: %s"), __func__, U_("unable to allocate memory"));
|
2015-06-17 06:49:59 -06:00
|
|
|
goto bad;
|
|
|
|
}
|
2010-12-27 12:18:32 -05:00
|
|
|
*path = '\0';
|
2011-08-18 13:41:40 -04:00
|
|
|
pathend = path + prelen + PATH_MAX;
|
2018-10-19 13:35:20 -06:00
|
|
|
dst = path;
|
2011-08-18 13:41:40 -04:00
|
|
|
|
|
|
|
/* Copy prefix, if present. */
|
|
|
|
if (prefix != NULL) {
|
|
|
|
memcpy(path, prefix, prelen);
|
|
|
|
dst += prelen;
|
|
|
|
*dst = '\0';
|
|
|
|
}
|
2010-12-27 12:18:32 -05:00
|
|
|
|
2010-12-30 18:05:53 -05:00
|
|
|
/* Trim leading slashes from file component. */
|
|
|
|
while (*file == '/')
|
|
|
|
file++;
|
|
|
|
|
2010-12-30 17:09:01 -05:00
|
|
|
for (pass = 0; pass < 3; pass++) {
|
2011-12-02 11:27:33 -05:00
|
|
|
strfit = false;
|
2010-12-30 17:09:01 -05:00
|
|
|
switch (pass) {
|
|
|
|
case 0:
|
|
|
|
src = dir;
|
2019-10-24 20:04:31 -06:00
|
|
|
escapes++; /* skip "%{seq}" */
|
2010-12-30 17:09:01 -05:00
|
|
|
break;
|
|
|
|
case 1:
|
2010-12-31 09:55:40 -05:00
|
|
|
/* Trim trailing slashes from dir component. */
|
2013-10-23 15:03:31 -06:00
|
|
|
while (dst > path + prelen + 1 && dst[-1] == '/')
|
2010-12-31 09:55:40 -05:00
|
|
|
dst--;
|
2012-06-15 12:33:12 -04:00
|
|
|
/* The NUL will be replaced with a '/' at the end. */
|
|
|
|
if (dst + 1 >= pathend)
|
|
|
|
goto bad;
|
|
|
|
slash = dst++;
|
|
|
|
continue;
|
2010-12-30 17:09:01 -05:00
|
|
|
case 2:
|
|
|
|
src = file;
|
2019-10-24 20:04:31 -06:00
|
|
|
escapes--; /* restore "%{seq}" */
|
2010-12-30 17:09:01 -05:00
|
|
|
break;
|
|
|
|
}
|
2011-08-18 13:41:40 -04:00
|
|
|
dst0 = dst;
|
2010-12-30 17:09:01 -05:00
|
|
|
for (; *src != '\0'; src++) {
|
|
|
|
if (src[0] == '%') {
|
|
|
|
if (src[1] == '{') {
|
2011-08-18 13:41:40 -04:00
|
|
|
endbrace = strchr(src + 2, '}');
|
|
|
|
if (endbrace != NULL) {
|
2019-10-24 20:04:31 -06:00
|
|
|
const struct iolog_path_escape *esc;
|
2011-08-18 13:41:40 -04:00
|
|
|
len = (size_t)(endbrace - src - 2);
|
2010-12-30 17:09:01 -05:00
|
|
|
for (esc = escapes; esc->name != NULL; esc++) {
|
|
|
|
if (strncmp(src + 2, esc->name, len) == 0 &&
|
|
|
|
esc->name[len] == '\0')
|
|
|
|
break;
|
|
|
|
}
|
2011-03-28 12:54:41 -04:00
|
|
|
if (esc->name != NULL) {
|
2012-06-15 12:33:12 -04:00
|
|
|
len = esc->copy_fn(dst, (size_t)(pathend - dst),
|
2019-10-24 20:04:31 -06:00
|
|
|
path + prelen, closure);
|
2011-08-18 13:41:40 -04:00
|
|
|
if (len >= (size_t)(pathend - dst))
|
|
|
|
goto bad;
|
2011-03-28 12:54:41 -04:00
|
|
|
dst += len;
|
2011-08-18 13:41:40 -04:00
|
|
|
src = endbrace;
|
2011-03-28 12:54:41 -04:00
|
|
|
continue;
|
2010-12-30 17:09:01 -05:00
|
|
|
}
|
2010-12-27 12:18:32 -05:00
|
|
|
}
|
2011-03-28 12:54:41 -04:00
|
|
|
} else if (src[1] == '%') {
|
|
|
|
/* Collapse %% -> % */
|
|
|
|
src++;
|
2010-12-30 17:09:01 -05:00
|
|
|
} else {
|
|
|
|
/* May need strftime() */
|
2019-10-24 20:04:31 -06:00
|
|
|
strfit = true;
|
2010-12-27 12:18:32 -05:00
|
|
|
}
|
|
|
|
}
|
2010-12-30 17:09:01 -05:00
|
|
|
/* Need at least 2 chars, including the NUL terminator. */
|
2011-08-18 13:41:40 -04:00
|
|
|
if (dst + 1 >= pathend)
|
|
|
|
goto bad;
|
2010-12-30 17:09:01 -05:00
|
|
|
*dst++ = *src;
|
2010-12-27 12:18:32 -05:00
|
|
|
}
|
2011-08-18 13:41:40 -04:00
|
|
|
*dst = '\0';
|
2010-12-27 12:18:32 -05:00
|
|
|
|
2011-08-18 13:41:40 -04:00
|
|
|
/* Expand strftime escapes as needed. */
|
|
|
|
if (strfit) {
|
|
|
|
time_t now;
|
|
|
|
struct tm *timeptr;
|
2010-12-27 12:18:32 -05:00
|
|
|
|
2011-08-18 13:41:40 -04:00
|
|
|
time(&now);
|
2014-01-21 16:32:00 -07:00
|
|
|
if ((timeptr = localtime(&now)) == NULL)
|
|
|
|
goto bad;
|
2010-12-27 12:18:32 -05:00
|
|
|
|
2013-08-19 09:19:52 -06:00
|
|
|
/* We only call strftime() on the current part of the buffer. */
|
2011-08-19 09:32:25 -04:00
|
|
|
tmpbuf[sizeof(tmpbuf) - 1] = '\0';
|
2011-08-18 13:41:40 -04:00
|
|
|
len = strftime(tmpbuf, sizeof(tmpbuf), dst0, timeptr);
|
|
|
|
|
|
|
|
if (len == 0 || tmpbuf[sizeof(tmpbuf) - 1] != '\0')
|
|
|
|
goto bad; /* strftime() failed, buf too small? */
|
|
|
|
|
|
|
|
if (len >= (size_t)(pathend - dst0))
|
|
|
|
goto bad; /* expanded buffer too big to fit. */
|
|
|
|
memcpy(dst0, tmpbuf, len);
|
|
|
|
dst = dst0 + len;
|
|
|
|
*dst = '\0';
|
|
|
|
}
|
2010-12-27 12:18:32 -05:00
|
|
|
}
|
2014-11-14 16:31:56 -07:00
|
|
|
if (slash != NULL)
|
|
|
|
*slash = '/';
|
|
|
|
if (slashp != NULL)
|
2012-06-15 12:33:12 -04:00
|
|
|
*slashp = slash;
|
2010-12-27 12:18:32 -05:00
|
|
|
|
2011-10-22 14:40:21 -04:00
|
|
|
debug_return_str(path);
|
2011-08-18 13:41:40 -04:00
|
|
|
bad:
|
2015-06-17 06:49:59 -06:00
|
|
|
free(path);
|
2011-10-22 14:40:21 -04:00
|
|
|
debug_return_str(NULL);
|
2010-12-27 12:18:32 -05:00
|
|
|
}
|