policy_ns.c 7.0 KB
Newer Older
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
/*
 * AppArmor security module
 *
 * This file contains AppArmor policy manipulation functions
 *
 * Copyright (C) 1998-2008 Novell/SUSE
 * Copyright 2009-2017 Canonical Ltd.
 *
 * 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, version 2 of the
 * License.
 *
 * AppArmor policy namespaces, allow for different sets of policies
 * to be loaded for tasks within the namespace.
 */

#include <linux/list.h>
#include <linux/mutex.h>
#include <linux/slab.h>
#include <linux/string.h>

#include "include/apparmor.h"
#include "include/context.h"
#include "include/policy_ns.h"
#include "include/policy.h"

/* root profile namespace */
29
struct aa_ns *root_ns;
30 31 32 33 34 35 36 37 38
const char *aa_hidden_ns_name = "---";

/**
 * aa_ns_visible - test if @view is visible from @curr
 * @curr: namespace to treat as the parent (NOT NULL)
 * @view: namespace to test if visible from @curr (NOT NULL)
 *
 * Returns: true if @view is visible from @curr else false
 */
39
bool aa_ns_visible(struct aa_ns *curr, struct aa_ns *view)
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
{
	if (curr == view)
		return true;

	for ( ; view; view = view->parent) {
		if (view->parent == curr)
			return true;
	}
	return false;
}

/**
 * aa_na_name - Find the ns name to display for @view from @curr
 * @curr - current namespace (NOT NULL)
 * @view - namespace attempting to view (NOT NULL)
 *
 * Returns: name of @view visible from @curr
 */
58
const char *aa_ns_name(struct aa_ns *curr, struct aa_ns *view)
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
{
	/* if view == curr then the namespace name isn't displayed */
	if (curr == view)
		return "";

	if (aa_ns_visible(curr, view)) {
		/* at this point if a ns is visible it is in a view ns
		 * thus the curr ns.hname is a prefix of its name.
		 * Only output the virtualized portion of the name
		 * Add + 2 to skip over // separating curr hname prefix
		 * from the visible tail of the views hname
		 */
		return view->base.hname + strlen(curr->base.hname) + 2;
	}

	return aa_hidden_ns_name;
}

/**
78
 * alloc_ns - allocate, initialize and return a new namespace
79 80 81 82 83
 * @prefix: parent namespace name (MAYBE NULL)
 * @name: a preallocated name  (NOT NULL)
 *
 * Returns: refcounted namespace or NULL on failure.
 */
84
static struct aa_ns *alloc_ns(const char *prefix, const char *name)
85
{
86
	struct aa_ns *ns;
87 88 89 90 91 92 93 94 95 96 97

	ns = kzalloc(sizeof(*ns), GFP_KERNEL);
	AA_DEBUG("%s(%p)\n", __func__, ns);
	if (!ns)
		return NULL;
	if (!aa_policy_init(&ns->base, prefix, name))
		goto fail_ns;

	INIT_LIST_HEAD(&ns->sub_ns);
	mutex_init(&ns->lock);

98
	/* released by aa_free_ns() */
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
	ns->unconfined = aa_alloc_profile("unconfined");
	if (!ns->unconfined)
		goto fail_unconfined;

	ns->unconfined->flags = PFLAG_IX_ON_NAME_ERROR |
		PFLAG_IMMUTABLE | PFLAG_NS_COUNT;
	ns->unconfined->mode = APPARMOR_UNCONFINED;

	/* ns and ns->unconfined share ns->unconfined refcount */
	ns->unconfined->ns = ns;

	atomic_set(&ns->uniq_null, 0);

	return ns;

fail_unconfined:
	kzfree(ns->base.hname);
fail_ns:
	kzfree(ns);
	return NULL;
}

/**
122
 * aa_free_ns - free a profile namespace
123 124 125 126 127
 * @ns: the namespace to free  (MAYBE NULL)
 *
 * Requires: All references to the namespace must have been put, if the
 *           namespace was referenced by a profile confining a task,
 */
128
void aa_free_ns(struct aa_ns *ns)
129 130 131 132 133
{
	if (!ns)
		return;

	aa_policy_destroy(&ns->base);
134
	aa_put_ns(ns->parent);
135 136 137 138 139 140 141

	ns->unconfined->ns = NULL;
	aa_free_profile(ns->unconfined);
	kzfree(ns);
}

/**
142
 * aa_findn_ns  -  look up a profile namespace on the namespace list
143 144
 * @root: namespace to search in  (NOT NULL)
 * @name: name of namespace to find  (NOT NULL)
145
 * @n: length of @name
146 147 148 149 150 151
 *
 * Returns: a refcounted namespace on the list, or NULL if no namespace
 *          called @name exists.
 *
 * refcount released by caller
 */
152
struct aa_ns *aa_findn_ns(struct aa_ns *root, const char *name, size_t n)
153
{
154
	struct aa_ns *ns = NULL;
155 156

	rcu_read_lock();
157
	ns = aa_get_ns(__aa_findn_ns(&root->sub_ns, name, n));
158 159 160 161 162
	rcu_read_unlock();

	return ns;
}

163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
/**
 * aa_find_ns  -  look up a profile namespace on the namespace list
 * @root: namespace to search in  (NOT NULL)
 * @name: name of namespace to find  (NOT NULL)
 *
 * Returns: a refcounted namespace on the list, or NULL if no namespace
 *          called @name exists.
 *
 * refcount released by caller
 */
struct aa_ns *aa_find_ns(struct aa_ns *root, const char *name)
{
	return aa_findn_ns(root, name, strlen(name));
}

178
/**
179
 * aa_prepare_ns - find an existing or create a new namespace of @name
180 181
 * @name: the namespace to find or add  (MAYBE NULL)
 *
182
 * Returns: refcounted ns or NULL if failed to create one
183
 */
184
struct aa_ns *aa_prepare_ns(const char *name)
185
{
186
	struct aa_ns *ns, *root;
187 188 189 190 191 192 193 194

	root = aa_current_profile()->ns;

	mutex_lock(&root->lock);

	/* if name isn't specified the profile is loaded to the current ns */
	if (!name) {
		/* released by caller */
195
		ns = aa_get_ns(root);
196 197 198 199 200
		goto out;
	}

	/* try and find the specified ns and if it doesn't exist create it */
	/* released by caller */
201
	ns = aa_get_ns(__aa_find_ns(&root->sub_ns, name));
202
	if (!ns) {
203
		ns = alloc_ns(root->base.hname, name);
204 205
		if (!ns)
			goto out;
206
		if (__aa_fs_ns_mkdir(ns, ns_subns_dir(root), name)) {
207 208
			AA_ERROR("Failed to create interface for ns %s\n",
				 ns->base.name);
209
			aa_free_ns(ns);
210 211 212
			ns = NULL;
			goto out;
		}
213
		ns->parent = aa_get_ns(root);
214 215
		list_add_rcu(&ns->base.list, &root->sub_ns);
		/* add list ref */
216
		aa_get_ns(ns);
217 218 219 220 221 222 223 224 225 226 227
	}
out:
	mutex_unlock(&root->lock);

	/* return ref */
	return ns;
}

static void __ns_list_release(struct list_head *head);

/**
228 229
 * destroy_ns - remove everything contained by @ns
 * @ns: ns to have it contents removed  (NOT NULL)
230
 */
231
static void destroy_ns(struct aa_ns *ns)
232 233 234 235 236 237 238 239 240 241 242 243
{
	if (!ns)
		return;

	mutex_lock(&ns->lock);
	/* release all profiles in this namespace */
	__aa_profile_list_release(&ns->base.profiles);

	/* release all sub namespaces */
	__ns_list_release(&ns->sub_ns);

	if (ns->parent)
244
		__aa_update_proxy(ns->unconfined, ns->parent->unconfined);
245
	__aa_fs_ns_rmdir(ns);
246 247 248 249
	mutex_unlock(&ns->lock);
}

/**
250
 * __aa_remove_ns - remove a namespace and all its children
251 252 253 254
 * @ns: namespace to be removed  (NOT NULL)
 *
 * Requires: ns->parent->lock be held and ns removed from parent.
 */
255
void __aa_remove_ns(struct aa_ns *ns)
256 257 258
{
	/* remove ns from namespace list */
	list_del_rcu(&ns->base.list);
259 260
	destroy_ns(ns);
	aa_put_ns(ns);
261 262 263 264 265 266 267 268 269 270
}

/**
 * __ns_list_release - remove all profile namespaces on the list put refs
 * @head: list of profile namespaces  (NOT NULL)
 *
 * Requires: namespace lock be held
 */
static void __ns_list_release(struct list_head *head)
{
271
	struct aa_ns *ns, *tmp;
272 273

	list_for_each_entry_safe(ns, tmp, head, base.list)
274
		__aa_remove_ns(ns);
275 276 277 278

}

/**
279
 * aa_alloc_root_ns - allocate the root profile namespcae
280 281 282 283 284 285 286
 *
 * Returns: %0 on success else error
 *
 */
int __init aa_alloc_root_ns(void)
{
	/* released by aa_free_root_ns - used as list ref*/
287
	root_ns = alloc_ns(NULL, "root");
288 289 290 291 292 293 294 295 296 297 298
	if (!root_ns)
		return -ENOMEM;

	return 0;
}

 /**
  * aa_free_root_ns - free the root profile namespace
  */
void __init aa_free_root_ns(void)
{
299
	 struct aa_ns *ns = root_ns;
300 301 302

	 root_ns = NULL;

303 304
	 destroy_ns(ns);
	 aa_put_ns(ns);
305
}