summaryrefslogtreecommitdiffstats
path: root/libseaudit/src/load_message.c
blob: 7951eb229e59b1f752f68c4a3c52c684d39943ed (plain)
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
/**
 *  @file
 *  Implementation of a single policy load log message.
 *
 *  @author Jeremy A. Mowery jmowery@tresys.com
 *  @author Jason Tang jtang@tresys.com
 *
 *  Copyright (C) 2006-2007 Tresys Technology, LLC
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 *
 *  This library 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
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include "seaudit_internal.h"

#include <errno.h>
#include <stdio.h>
#include <stdlib.h>

/******************** protected functions below ********************/

seaudit_load_message_t *load_message_create(void)
{
	return calloc(1, sizeof(seaudit_load_message_t));
}

void load_message_free(seaudit_load_message_t * msg)
{
	if (msg != NULL) {
		free(msg->binary);
		free(msg);
	}
}

char *load_message_to_string(const seaudit_message_t * msg, const char *date)
{
	seaudit_load_message_t *load = msg->data.load;
	const char *host = msg->host;
	const char *manager = msg->manager;
	char *s = NULL;
	if (asprintf(&s,
		     "%s %s %s: security: %d users, %d roles, %d types, %d bools\n"
		     "%s %s %s: security: %d classes, %d rules",
		     date, host, manager, load->users, load->roles, load->types, load->bools, date, host, manager, load->classes,
		     load->rules) < 0) {
		return NULL;
	}
	return s;
}

char *load_message_to_string_html(const seaudit_message_t * msg, const char *date)
{
	seaudit_load_message_t *load = msg->data.load;
	const char *host = msg->host;
	const char *manager = msg->manager;
	char *s = NULL;
	if (asprintf(&s,
		     "<font class=\"message_date\">%s</font> "
		     "<font class=\"host_name\">%s</font> "
		     "%s: security: %d users, %d roles, %d types, %d bools<br>\n"
		     "<font class=\"message_date\">%s</font> "
		     "<font class=\"host_name\">%s</font> "
		     "%s: security: %d classes, %d rules<br>",
		     date, host, manager, load->users, load->roles, load->types, load->bools, date, host, manager, load->classes,
		     load->rules) < 0) {
		return NULL;
	}
	return s;
}

char *load_message_to_misc_string(const seaudit_load_message_t * load)
{
	char *s = NULL;
	if (asprintf(&s,
		     "users=%d roles=%d types=%d bools=%d classes=%d rules=%d",
		     load->users, load->roles, load->types, load->bools, load->classes, load->rules) < 0) {
		return NULL;
	}
	return s;
}