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
|
/**
* @file
* Main program for running sediffx in a GTK+ environment.
*
* @author Jeremy A. Mowery jmowery@tresys.com
* @author Jason Tang jtang@tresys.com
* @author Brandon Whalen bwhalen@tresys.com
* @author Randy Wicks rwicks@tresys.com
*
* Copyright (C) 2005-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 "sediffx.h"
#include "toplevel.h"
#include <errno.h>
#include <getopt.h>
#include <stdio.h>
#include <stdlib.h>
#include <glade/glade.h>
#include <gtk/gtk.h>
struct sediffx
{
apol_policy_path_t *paths[SEDIFFX_POLICY_NUM];
apol_policy_t *policies[SEDIFFX_POLICY_NUM];
toplevel_t *top;
poldiff_t *poldiff;
uint32_t flags;
};
static struct option const longopts[] = {
{"run-diff", no_argument, NULL, 'd'},
{"help", no_argument, NULL, 'h'},
{"version", no_argument, NULL, 'V'},
{NULL, 0, NULL, 0}
};
void sediffx_set_policy(sediffx_t * s, sediffx_policy_e which, apol_policy_t * policy, apol_policy_path_t * path)
{
poldiff_destroy(&s->poldiff);
if (policy != NULL) {
apol_policy_destroy(&s->policies[which]);
s->policies[which] = policy;
if (path != s->paths[which]) {
apol_policy_path_destroy(&s->paths[which]);
}
s->paths[which] = path;
} else {
apol_policy_destroy(&s->policies[which]);
apol_policy_path_destroy(&s->paths[which]);
}
}
const apol_policy_path_t *sediffx_get_policy_path(sediffx_t * sediffx, const sediffx_policy_e which)
{
return sediffx->paths[which];
}
poldiff_t *sediffx_get_poldiff(sediffx_t * s, poldiff_handle_fn_t fn, void *arg)
{
if (s->poldiff != NULL) {
return s->poldiff;
}
if (s->policies[SEDIFFX_POLICY_ORIG] == NULL || s->policies[SEDIFFX_POLICY_MOD] == NULL) {
return NULL;
}
s->poldiff = poldiff_create(s->policies[SEDIFFX_POLICY_ORIG], s->policies[SEDIFFX_POLICY_MOD], fn, arg);
if (s->poldiff != NULL) {
/* poldiff_create() took ownership of the policies */
s->policies[SEDIFFX_POLICY_ORIG] = NULL;
s->policies[SEDIFFX_POLICY_MOD] = NULL;
}
return s->poldiff;
}
void sediffx_set_poldiff_run_flags(sediffx_t * s, uint32_t flags)
{
s->flags = flags;
}
uint32_t sediffx_get_poldiff_run_flags(sediffx_t * s)
{
return s->flags;
}
static void print_version_info(void)
{
printf("sediffx %s\n%s\n", VERSION, COPYRIGHT_INFO);
}
static void usage(const char *program_name, int brief)
{
printf("Usage: %s [-d] [ORIGINAL_POLICY ; MODIFIED_POLICY]\n\n", program_name);
if (brief) {
printf("\tTry %s --help for more help.\n\n", program_name);
return;
}
printf("Semantically differentiate two policies. All supported policy elements\n");
printf("are examined. The following options are available:\n");
printf("\n");
printf(" -d, --diff-now load policies and diff immediately\n");
printf(" -h, --help print this help text and exit\n");
printf(" -V, --version print version information and exit\n\n");
}
struct delayed_main_data
{
apol_policy_path_t *orig_path, *mod_path;
int run_diff;
toplevel_t *top;
};
/*
* We don't want to do the heavy work of loading and displaying
* the diff before the main loop has started because it will freeze
* the gui for too long. To solve this, the function is called from an
* idle callback set-up in main.
*/
static gboolean delayed_main(gpointer data)
{
struct delayed_main_data *dmd = (struct delayed_main_data *)data;
if (toplevel_open_policies(dmd->top, dmd->orig_path, dmd->mod_path) == 0 && dmd->run_diff) {
toplevel_run_diff(dmd->top);
}
return FALSE;
}
static void sediffx_destroy(sediffx_t ** sediffx)
{
if (sediffx != NULL && *sediffx != NULL) {
int i;
for (i = SEDIFFX_POLICY_ORIG; i < SEDIFFX_POLICY_NUM; i++) {
apol_policy_path_destroy(&((*sediffx)->paths[i]));
apol_policy_destroy(&((*sediffx)->policies[i]));
}
poldiff_destroy(&((*sediffx)->poldiff));
free(*sediffx);
*sediffx = NULL;
}
}
static void sediffx_parse_command_line(int argc, char **argv, apol_policy_path_t ** orig_path, apol_policy_path_t ** mod_path,
int *run_diff)
{
int optc;
*orig_path = NULL;
*mod_path = NULL;
*run_diff = 0;
while ((optc = getopt_long(argc, argv, "dhV", longopts, NULL)) != -1) {
switch (optc) {
case 0:
break;
case 'd': /* run the diff only for gui */
*run_diff = 1;
break;
case 'h': /* help */
usage(argv[0], 0);
exit(EXIT_SUCCESS);
case 'V': /* version */
print_version_info();
exit(EXIT_SUCCESS);
default:
usage(argv[0], 1);
exit(EXIT_FAILURE);
}
}
if (argc - optind == 0) {
/* here we have found no missing arguments, but
* perhaps the user specified -d with no files */
if (*run_diff) {
usage(argv[0], 0);
exit(EXIT_FAILURE);
}
return;
} else if (argc - optind == 1) {
usage(argv[0], 1);
exit(EXIT_FAILURE);
}
if (argc - optind == 2) {
/* sediffx with file names, old syntax */
if (strcmp(argv[optind], ";") == 0 || strcmp(argv[optind + 1], ";") == 0) {
usage(argv[0], 1);
exit(EXIT_FAILURE);
}
*orig_path = apol_policy_path_create(APOL_POLICY_PATH_TYPE_MONOLITHIC, argv[optind], NULL);
*mod_path = apol_policy_path_create(APOL_POLICY_PATH_TYPE_MONOLITHIC, argv[optind + 1], NULL);
if (*orig_path == NULL || *mod_path == NULL) {
ERR(NULL, "%s", strerror(errno));
exit(EXIT_FAILURE);
}
return;
}
/* module lists */
char *orig_base_path = NULL;
apol_vector_t *orig_module_paths = NULL;
char *mod_base_path = NULL;
apol_vector_t *mod_module_paths = NULL;
apol_policy_path_type_e orig_path_type = APOL_POLICY_PATH_TYPE_MONOLITHIC;
apol_policy_path_type_e mod_path_type = APOL_POLICY_PATH_TYPE_MONOLITHIC;
orig_base_path = argv[optind++];
if (!(orig_module_paths = apol_vector_create(NULL))) {
ERR(NULL, "%s", strerror(errno));
goto err;
}
for (; argc - optind; optind++) {
if (!strcmp(";", argv[optind])) {
optind++;
break;
}
if (apol_vector_append(orig_module_paths, (void *)argv[optind])) {
ERR(NULL, "Error loading module %s", argv[optind]);
goto err;
}
orig_path_type = APOL_POLICY_PATH_TYPE_MODULAR;
}
if (apol_file_is_policy_path_list(orig_base_path) > 0) {
*orig_path = apol_policy_path_create_from_file(orig_base_path);
if (*orig_path == NULL) {
ERR(NULL, "%s", "invalid policy list");
goto err;
}
} else {
*orig_path = apol_policy_path_create(orig_path_type, orig_base_path, orig_module_paths);
if (*orig_path == NULL) {
ERR(NULL, "%s", strerror(errno));
goto err;
}
}
apol_vector_destroy(&orig_module_paths);
if (argc - optind == 0) {
ERR(NULL, "%s", "Missing path to modified policy.");
goto err;
}
mod_base_path = argv[optind++];
if (!(mod_module_paths = apol_vector_create(NULL))) {
ERR(NULL, "%s", strerror(errno));
goto err;
}
for (; argc - optind; optind++) {
if (apol_vector_append(mod_module_paths, (void *)argv[optind])) {
ERR(NULL, "Error loading module %s", argv[optind]);
goto err;
}
mod_path_type = APOL_POLICY_PATH_TYPE_MODULAR;
}
if (apol_file_is_policy_path_list(mod_base_path) > 0) {
*mod_path = apol_policy_path_create_from_file(mod_base_path);
if (*mod_path == NULL) {
ERR(NULL, "%s", "invalid policy list");
goto err;
}
} else {
*mod_path = apol_policy_path_create(mod_path_type, mod_base_path, mod_module_paths);
if (*mod_path == NULL) {
ERR(NULL, "%s", strerror(errno));
goto err;
}
}
apol_vector_destroy(&mod_module_paths);
return;
err:
apol_policy_path_destroy(orig_path);
apol_policy_path_destroy(mod_path);
apol_vector_destroy(&orig_module_paths);
apol_vector_destroy(&mod_module_paths);
}
int main(int argc, char **argv)
{
sediffx_t *app;
apol_policy_path_t *orig_path, *mod_path;
int run_diff;
if (!g_thread_supported())
g_thread_init(NULL);
gtk_init(&argc, &argv);
sediffx_parse_command_line(argc, argv, &orig_path, &mod_path, &run_diff);
glade_init();
if (!g_thread_supported())
g_thread_init(NULL);
if ((app = calloc(1, sizeof(*app))) == NULL || (app->top = toplevel_create(app)) == NULL) {
ERR(NULL, "%s", strerror(errno));
sediffx_destroy(&app);
exit(EXIT_FAILURE);
}
if (orig_path != NULL && mod_path != NULL) {
struct delayed_main_data dmd = { orig_path, mod_path, run_diff, app->top };
g_idle_add(&delayed_main, &dmd);
}
gtk_main();
sediffx_destroy(&app);
exit(EXIT_SUCCESS);
}
|