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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
*
* Copyright (c) 2015, Eric Koegel <eric.koegel@gmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include <pwd.h>
#include <errno.h>
#include <libintl.h>
#include <locale.h>
#include <ftw.h>
#include <glib.h>
#include <glib/gi18n.h>
#include "ck-sysdeps.h"
static void
become_user (uid_t uid)
{
int res;
struct passwd *pwent;
errno = 0;
pwent = getpwuid (uid);
if (pwent == NULL) {
g_warning ("Unable to lookup UID: %s", g_strerror (errno));
exit (1);
}
/* set the group */
errno = 0;
res = setegid (pwent->pw_gid);
if (res == -1) {
g_warning ("Error performing setegid: %s", g_strerror (errno));
exit (1);
}
/* become the user */
errno = 0;
res = seteuid (uid);
if (res == -1) {
g_warning ("Error performing seteuid: %s", g_strerror (errno));
exit (1);
}
}
static int
unlink_cb (const char *fpath,
const struct stat *sb,
int typeflag,
struct FTW *ftwbuf)
{
int ret = ftwbuf->level > 0 ? remove (fpath) : 0;
if (ret) {
g_error ("Failed to remove %s, reason was: %s", fpath, strerror(errno));
errno = 0;
}
return ret;
}
static int
remove_dest_dir (const gchar *dest)
{
int ret;
if ((ret = nftw(dest, unlink_cb, 64, FTW_DEPTH | FTW_PHYS))) {
return ret;
}
errno = 0;
ret = seteuid (getuid ());
if (ret == -1) {
g_warning ("Error performing seteuid: %s", g_strerror (errno));
exit (1);
}
ret = remove (dest);
if (ret) {
g_error ("Failed to remove %s, reason was: %s", dest, strerror (errno));
errno = 0;
}
return ret;
}
int
main (int argc,
char **argv)
{
GOptionContext *context;
gboolean ret;
GError *error;
static int user_id = -1;
static gchar *dest = NULL;
static GOptionEntry entries [] = {
{ "uid", 0, 0, G_OPTION_ARG_INT, &user_id, N_("User ID"), NULL },
{ "dest", 0, 0, G_OPTION_ARG_STRING, &dest, N_("Destination to remove"), NULL },
{ NULL }
};
/* Setup for i18n */
setlocale(LC_ALL, "");
#ifdef ENABLE_NLS
bindtextdomain(PACKAGE, LOCALEDIR);
textdomain(PACKAGE);
#endif
/* For now at least restrict this to root */
if (getuid () != 0) {
g_warning (_("You must be root to run this program"));
exit (1);
}
context = g_option_context_new (NULL);
g_option_context_add_main_entries (context, entries, NULL);
error = NULL;
ret = g_option_context_parse (context, &argc, &argv, &error);
g_option_context_free (context);
if (! ret) {
g_warning ("%s", error->message);
g_error_free (error);
exit (1);
}
/* Ensure we have a dest and that it starts with the correct prefix
* so we don't remove something important.
*/
if (dest == NULL || !g_str_has_prefix (dest, RUNDIR "/user/")) {
g_warning ("Invalid Dest");
exit (1);
}
become_user (user_id);
return remove_dest_dir (dest) == 0 ? 0 : 1;
}
|