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
|
/**
* @file
*
* Search a fclist (either the disk, a database generated by indexcon
* or apol, or a file_contexts file for entries that match a given
* SELinux file context.
*
* @author Jeremy A. Mowery jmowery@tresys.com
* @author Jason Tang jtang@tresys.com
*
* Copyright (C) 2003-2007 Tresys Technology, LLC
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <config.h>
#include <sefs/db.hh>
#include <sefs/fcfile.hh>
#include <sefs/filesystem.hh>
#include <sefs/entry.hh>
#include <sefs/query.hh>
using namespace std;
#include <errno.h>
#include <getopt.h>
#include <iostream>
#include <string>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#define COPYRIGHT_INFO "Copyright (C) 2003-2007 Tresys Technology, LLC"
enum OPTIONS
{
OPTION_CONTEXT = 256
};
static struct option const longopts[] = {
{"class", required_argument, NULL, 'c'},
{"type", required_argument, NULL, 't'},
{"user", required_argument, NULL, 'u'},
{"role", required_argument, NULL, 'r'},
{"mls-range", required_argument, NULL, 'm'},
{"path", required_argument, NULL, 'p'},
{"regex", no_argument, NULL, 'R'},
{"context", required_argument, NULL, OPTION_CONTEXT},
{"help", no_argument, NULL, 'h'},
{"version", no_argument, NULL, 'V'},
{NULL, 0, NULL, 0}
};
static void usage(const char *program_name, bool brief)
{
cout << "Usage: " << program_name << " FCLIST [OPTIONS] [EXPRESSION]" << endl << endl;
if (brief)
{
cout << "\tTry " << program_name << " --help for more help." << endl << endl;
return;
}
cout << "Find files matching the given SELinux context." << endl << endl;
cout << "FCLIST is a directory name, a file_contexts file, or a database" << endl;
cout << "created by a previous run of indexcon." << endl;
cout << endl;
cout << "EXPRESSION:" << endl;
cout << " -t TYPE, --type=TYPE find contexts with type TYPE" << endl;
cout << " -u USER, --user=USER find contexts with user USER" << endl;
cout << " -r ROLE, --role=ROLE find contexts with role ROLE" << endl;
cout << " -m RANGE, --mls-range=RANGE find contexts with MLS range RANGE" << endl;
cout << " --context=CONTEXT partial or full context to find" << endl;
cout << " (overrides expression options above)" << endl;
cout << " -p PATH, --path=PATH find files in PATH" << endl;
cout << " -c CLASS, --class=CLASS find files of object class CLASS" << endl;
cout << endl;
cout << "OPTIONS:" << endl;
cout << " -R, --regex enable regular expressions" << endl;
cout << " -h, --help print this help text and exit" << endl;
cout << " -V, --version print version information and exit" << endl;
cout << endl;
cout << "If the fclist does not contain MLS ranges and -m was given," << endl;
cout << "then the search will return nothing." << endl;
}
static int print_entry(sefs_fclist * fclist, const sefs_entry * e, void *arg __attribute__ ((unused)))
{
char *str = e->toString();
cout << str << endl;
free(str);
return 0;
}
int main(int argc, char *argv[])
{
int optc;
sefs_query *query = new sefs_query();
apol_context_t *context = NULL;
try
{
while ((optc = getopt_long(argc, argv, "t:u:r:m:p:c:RhV", longopts, NULL)) != -1)
{
switch (optc)
{
case 't':
if (context == NULL)
{
query->type(optarg, false);
}
break;
case 'u':
if (context == NULL)
{
query->user(optarg);
}
break;
case 'r':
if (context == NULL)
{
query->role(optarg);
}
break;
case 'm':
if (context == NULL)
{
query->range(optarg, APOL_QUERY_EXACT);
}
break;
case OPTION_CONTEXT:
if ((context = apol_context_create_from_literal(optarg)) == NULL)
{
cerr << "Could not create a context." << endl;
throw runtime_error(strerror(errno));
}
break;
case 'p':
query->path(optarg);
break;
case 'c':
query->objectClass(optarg);
break;
case 'R':
query->regex(true);
break;
case 'h': // help
usage(argv[0], false);
exit(0);
case 'V': // version
cout << "findcon " << VERSION << endl << COPYRIGHT_INFO << endl;
exit(0);
default:
usage(argv[0], true);
exit(1);
}
}
if (context != NULL)
{
query->user(apol_context_get_user(context));
query->role(apol_context_get_role(context));
query->type(apol_context_get_type(context), false);
if (apol_context_get_range(context) != NULL)
{
char *r = apol_mls_range_render(NULL, apol_context_get_range(context));
query->range(r, APOL_QUERY_EXACT);
free(r);
}
else
{
query->range(NULL, APOL_QUERY_EXACT);
}
}
}
catch(...)
{
cerr << strerror(errno) << endl;
apol_context_destroy(&context);
delete query;
exit(-1);
}
apol_context_destroy(&context);
if (optind + 1 != argc)
{
usage(argv[0], 1);
delete query;
exit(-1);
}
// try to autodetect the type of thing being searched
struct stat sb;
if (stat(argv[optind], &sb) != 0)
{
cerr << "Could not open " << argv[optind] << ": " << strerror(errno) << endl;
delete query;
exit(-1);
}
sefs_fclist *fclist = NULL;
try
{
if (S_ISDIR(sb.st_mode))
{
fclist = new sefs_filesystem(argv[optind], NULL, NULL);
}
else if (sefs_db::isDB(argv[optind]))
{
fclist = new sefs_db(argv[optind], NULL, NULL);
}
else
{
fclist = new sefs_fcfile(argv[optind], NULL, NULL);
}
if (fclist->runQueryMap(query, print_entry, NULL) < 0)
{
throw runtime_error(strerror(errno));
}
}
catch(...)
{
delete query;
delete fclist;
exit(-1);
}
delete query;
delete fclist;
return 0;
}
|