/* * AppArmor security module * * This file contains AppArmor contexts used to associate "labels" to objects. * * Copyright (C) 1998-2008 Novell/SUSE * Copyright 2009-2010 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. */ #ifndef __AA_CONTEXT_H #define __AA_CONTEXT_H #include <linux/cred.h> #include <linux/slab.h> #include <linux/sched.h> #include "label.h" #include "policy_ns.h" #include "task.h" #define cred_label(X) ((X)->security) /** * aa_cred_raw_label - obtain cred's label * @cred: cred to obtain label from (NOT NULL) * * Returns: confining label * * does NOT increment reference count */
static inline struct aa_label *aa_cred_raw_label(const struct cred *cred) { struct aa_label *label = cred_label(cred); AA_BUG(!label); return label; }Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| John Johansen | 34 | 100.00% | 6 | 100.00% |
| Total | 34 | 100.00% | 6 | 100.00% |
| Person | Tokens | Prop | Commits | CommitProp |
| John Johansen | 24 | 100.00% | 3 | 100.00% |
| Total | 24 | 100.00% | 3 | 100.00% |
| Person | Tokens | Prop | Commits | CommitProp |
| John Johansen | 23 | 100.00% | 4 | 100.00% |
| Total | 23 | 100.00% | 4 | 100.00% |
| Person | Tokens | Prop | Commits | CommitProp |
| John Johansen | 18 | 100.00% | 2 | 100.00% |
| Total | 18 | 100.00% | 2 | 100.00% |
| Person | Tokens | Prop | Commits | CommitProp |
| John Johansen | 38 | 100.00% | 3 | 100.00% |
| Total | 38 | 100.00% | 3 | 100.00% |
| Person | Tokens | Prop | Commits | CommitProp |
| John Johansen | 24 | 100.00% | 2 | 100.00% |
| Total | 24 | 100.00% | 2 | 100.00% |
| Person | Tokens | Prop | Commits | CommitProp |
| John Johansen | 36 | 100.00% | 3 | 100.00% |
| Total | 36 | 100.00% | 3 | 100.00% |
| Person | Tokens | Prop | Commits | CommitProp |
| John Johansen | 53 | 100.00% | 4 | 100.00% |
| Total | 53 | 100.00% | 4 | 100.00% |
| Person | Tokens | Prop | Commits | CommitProp |
| John Johansen | 44 | 100.00% | 3 | 100.00% |
| Total | 44 | 100.00% | 3 | 100.00% |
| Person | Tokens | Prop | Commits | CommitProp |
| John Johansen | 344 | 100.00% | 11 | 100.00% |
| Total | 344 | 100.00% | 11 | 100.00% |