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
|
/*
* editpolicy_offline.c
*
* TOMOYO Linux's utilities.
*
* Copyright (C) 2005-2010 NTT DATA CORPORATION
*
* Version: 1.7.2 2010/04/01
*
*/
#include "ccstools.h"
struct misc_policy {
const struct path_info **list;
int list_len;
};
/* Prototypes */
static void handle_misc_policy(struct misc_policy *mp, FILE *fp,
_Bool is_write);
/* Utility functions */
static void handle_misc_policy(struct misc_policy *mp, FILE *fp, _Bool is_write)
{
int i;
if (!is_write)
goto read_policy;
while (true) {
char *line = freadline(fp);
const struct path_info *cp;
_Bool is_delete;
if (!line)
break;
if (!line[0])
continue;
is_delete = str_starts(line, "delete ");
cp = savename(line);
if (!cp)
out_of_memory();
if (!is_delete)
goto append_policy;
for (i = 0; i < mp->list_len; i++)
/* Faster comparison, for they are savename'd. */
if (mp->list[i] == cp)
break;
if (i < mp->list_len)
for (mp->list_len--; i < mp->list_len; i++)
mp->list[i] = mp->list[i + 1];
continue;
append_policy:
for (i = 0; i < mp->list_len; i++)
/* Faster comparison, for they are savename'd. */
if (mp->list[i] == cp)
break;
if (i < mp->list_len)
continue;
mp->list = realloc(mp->list, (mp->list_len + 1)
* sizeof(const struct path_info *));
if (!mp->list)
out_of_memory();
mp->list[mp->list_len++] = cp;
}
return;
read_policy:
for (i = 0; i < mp->list_len; i++)
fprintf(fp, "%s\n", mp->list[i]->name);
}
/* Variables */
int persistent_fd = EOF;
/* Main functions */
void send_fd(char *data, int *fd)
{
struct msghdr msg;
struct iovec iov = { data, strlen(data) };
char cmsg_buf[CMSG_SPACE(sizeof(int))];
struct cmsghdr *cmsg = (struct cmsghdr *) cmsg_buf;
memset(&msg, 0, sizeof(msg));
msg.msg_iov = &iov;
msg.msg_iovlen = 1;
msg.msg_control = cmsg_buf;
msg.msg_controllen = sizeof(cmsg_buf);
cmsg->cmsg_level = SOL_SOCKET;
cmsg->cmsg_type = SCM_RIGHTS;
cmsg->cmsg_len = CMSG_LEN(sizeof(int));
msg.msg_controllen = cmsg->cmsg_len;
memmove(CMSG_DATA(cmsg), fd, sizeof(int));
sendmsg(persistent_fd, &msg, 0);
close(*fd);
}
void editpolicy_offline_daemon(void)
{
struct misc_policy mp[3];
struct domain_policy dp;
static const int buffer_len = 8192;
char *buffer = malloc(buffer_len);
if (!buffer)
out_of_memory();
memset(&dp, 0, sizeof(dp));
memset(&mp, 0, sizeof(mp));
get();
find_or_assign_new_domain(&dp, ROOT_NAME, false, false);
while (true) {
FILE *fp;
struct msghdr msg;
struct iovec iov = { buffer, buffer_len - 1 };
char cmsg_buf[CMSG_SPACE(sizeof(int))];
struct cmsghdr *cmsg = (struct cmsghdr *) cmsg_buf;
memset(&msg, 0, sizeof(msg));
msg.msg_iov = &iov;
msg.msg_iovlen = 1;
msg.msg_control = cmsg_buf;
msg.msg_controllen = sizeof(cmsg_buf);
memset(buffer, 0, buffer_len);
errno = 0;
if (recvmsg(persistent_fd, &msg, 0) <= 0)
break;
cmsg = CMSG_FIRSTHDR(&msg);
if (!cmsg)
break;
if (cmsg->cmsg_level == SOL_SOCKET &&
cmsg->cmsg_type == SCM_RIGHTS &&
cmsg->cmsg_len == CMSG_LEN(sizeof(int))) {
const int *fdp = (int *) CMSG_DATA(cmsg);
const int fd = *fdp;
fp = fdopen(fd, "w+");
if (!fp) {
close(fd);
continue;
}
} else {
break;
}
if (str_starts(buffer, "POST ")) {
if (!strcmp(buffer, proc_policy_domain_policy))
handle_domain_policy(&dp, fp, true);
else if (!strcmp(buffer, proc_policy_exception_policy))
handle_misc_policy(&mp[0], fp, true);
else if (!strcmp(buffer, proc_policy_profile))
handle_misc_policy(&mp[1], fp, true);
else if (!strcmp(buffer, proc_policy_manager))
handle_misc_policy(&mp[2], fp, true);
} else if (str_starts(buffer, "GET ")) {
if (!strcmp(buffer, proc_policy_domain_policy))
handle_domain_policy(&dp, fp, false);
else if (!strcmp(buffer, proc_policy_exception_policy))
handle_misc_policy(&mp[0], fp, false);
else if (!strcmp(buffer, proc_policy_profile))
handle_misc_policy(&mp[1], fp, false);
else if (!strcmp(buffer, proc_policy_manager))
handle_misc_policy(&mp[2], fp, false);
}
fclose(fp);
}
put();
clear_domain_policy(&dp);
{
int i;
for (i = 0; i < 3; i++) {
free(mp[i].list);
mp[i].list = NULL;
mp[i].list_len = 0;
}
}
free(buffer);
_exit(0);
}
|