AppArmor: Add const qualifiers to generated string tables
[linux-block.git] / security / apparmor / path.c
CommitLineData
cdff2642
JJ
1/*
2 * AppArmor security module
3 *
4 * This file contains AppArmor function for pathnames
5 *
6 * Copyright (C) 1998-2008 Novell/SUSE
7 * Copyright 2009-2010 Canonical Ltd.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation, version 2 of the
12 * License.
13 */
14
15#include <linux/magic.h>
cdff2642
JJ
16#include <linux/mount.h>
17#include <linux/namei.h>
18#include <linux/nsproxy.h>
19#include <linux/path.h>
20#include <linux/sched.h>
21#include <linux/slab.h>
22#include <linux/fs_struct.h>
23
24#include "include/apparmor.h"
25#include "include/path.h"
26#include "include/policy.h"
27
28
29/* modified from dcache.c */
30static int prepend(char **buffer, int buflen, const char *str, int namelen)
31{
32 buflen -= namelen;
33 if (buflen < 0)
34 return -ENAMETOOLONG;
35 *buffer -= namelen;
36 memcpy(*buffer, str, namelen);
37 return 0;
38}
39
40#define CHROOT_NSCONNECT (PATH_CHROOT_REL | PATH_CHROOT_NSCONNECT)
41
42/**
43 * d_namespace_path - lookup a name associated with a given path
44 * @path: path to lookup (NOT NULL)
45 * @buf: buffer to store path to (NOT NULL)
46 * @buflen: length of @buf
47 * @name: Returns - pointer for start of path name with in @buf (NOT NULL)
48 * @flags: flags controlling path lookup
49 *
50 * Handle path name lookup.
51 *
52 * Returns: %0 else error code if path lookup fails
53 * When no error the path name is returned in @name which points to
54 * to a position in @buf
55 */
56static int d_namespace_path(struct path *path, char *buf, int buflen,
57 char **name, int flags)
58{
cdff2642 59 char *res;
02125a82
AV
60 int error = 0;
61 int connected = 1;
cdff2642 62
02125a82
AV
63 if (path->mnt->mnt_flags & MNT_INTERNAL) {
64 /* it's not mounted anywhere */
65 res = dentry_path(path->dentry, buf, buflen);
66 *name = res;
67 if (IS_ERR(res)) {
68 *name = buf;
69 return PTR_ERR(res);
70 }
71 if (path->dentry->d_sb->s_magic == PROC_SUPER_MAGIC &&
72 strncmp(*name, "/sys/", 5) == 0) {
73 /* TODO: convert over to using a per namespace
74 * control instead of hard coded /proc
75 */
76 return prepend(name, *name - buf, "/proc", 5);
77 }
78 return 0;
79 }
80
81 /* resolve paths relative to chroot?*/
cdff2642 82 if (flags & PATH_CHROOT_REL) {
02125a82 83 struct path root;
44672e4f 84 get_fs_root(current->fs, &root);
02125a82
AV
85 res = __d_path(path, &root, buf, buflen);
86 if (res && !IS_ERR(res)) {
87 /* everything's fine */
88 *name = res;
89 path_put(&root);
90 goto ok;
91 }
92 path_put(&root);
93 connected = 0;
28042fab
JJ
94 } else
95 res = d_absolute_path(path, buf, buflen);
cdff2642
JJ
96
97 *name = res;
98 /* handle error conditions - and still allow a partial path to
99 * be returned.
100 */
101 if (IS_ERR(res)) {
102 error = PTR_ERR(res);
103 *name = buf;
104 goto out;
105 }
02125a82
AV
106 if (!our_mnt(path->mnt))
107 connected = 0;
cdff2642 108
02125a82 109ok:
e819ff51
JJ
110 /* Handle two cases:
111 * 1. A deleted dentry && profile is not allowing mediation of deleted
112 * 2. On some filesystems, newly allocated dentries appear to the
113 * security_path hooks as a deleted dentry except without an inode
114 * allocated.
115 */
116 if (d_unlinked(path->dentry) && path->dentry->d_inode &&
117 !(flags & PATH_MEDIATE_DELETED)) {
cdff2642
JJ
118 error = -ENOENT;
119 goto out;
cdff2642
JJ
120 }
121
02125a82 122 /* If the path is not connected to the expected root,
cdff2642
JJ
123 * check if it is a sysctl and handle specially else remove any
124 * leading / that __d_path may have returned.
125 * Unless
126 * specifically directed to connect the path,
127 * OR
128 * if in a chroot and doing chroot relative paths and the path
129 * resolves to the namespace root (would be connected outside
130 * of chroot) and specifically directed to connect paths to
131 * namespace root.
132 */
133 if (!connected) {
02125a82 134 if (!(flags & PATH_CONNECT_PATH) &&
cdff2642 135 !(((flags & CHROOT_NSCONNECT) == CHROOT_NSCONNECT) &&
02125a82 136 our_mnt(path->mnt))) {
cdff2642
JJ
137 /* disconnected path, don't return pathname starting
138 * with '/'
139 */
ef9a7622 140 error = -EACCES;
cdff2642
JJ
141 if (*res == '/')
142 *name = res + 1;
143 }
144 }
145
146out:
cdff2642
JJ
147 return error;
148}
149
150/**
151 * get_name_to_buffer - get the pathname to a buffer ensure dir / is appended
152 * @path: path to get name for (NOT NULL)
153 * @flags: flags controlling path lookup
154 * @buffer: buffer to put name in (NOT NULL)
155 * @size: size of buffer
156 * @name: Returns - contains position of path name in @buffer (NOT NULL)
157 *
158 * Returns: %0 else error on failure
159 */
160static int get_name_to_buffer(struct path *path, int flags, char *buffer,
161 int size, char **name)
162{
163 int adjust = (flags & PATH_IS_DIR) ? 1 : 0;
164 int error = d_namespace_path(path, buffer, size - adjust, name, flags);
165
166 if (!error && (flags & PATH_IS_DIR) && (*name)[1] != '\0')
167 /*
168 * Append "/" to the pathname. The root directory is a special
169 * case; it already ends in slash.
170 */
171 strcpy(&buffer[size - 2], "/");
172
173 return error;
174}
175
176/**
177 * aa_get_name - compute the pathname of a file
178 * @path: path the file (NOT NULL)
179 * @flags: flags controlling path name generation
180 * @buffer: buffer that aa_get_name() allocated (NOT NULL)
181 * @name: Returns - the generated path name if !error (NOT NULL)
182 *
183 * @name is a pointer to the beginning of the pathname (which usually differs
184 * from the beginning of the buffer), or NULL. If there is an error @name
185 * may contain a partial or invalid name that can be used for audit purposes,
186 * but it can not be used for mediation.
187 *
188 * We need PATH_IS_DIR to indicate whether the file is a directory or not
189 * because the file may not yet exist, and so we cannot check the inode's
190 * file type.
191 *
192 * Returns: %0 else error code if could retrieve name
193 */
194int aa_get_name(struct path *path, int flags, char **buffer, const char **name)
195{
196 char *buf, *str = NULL;
197 int size = 256;
198 int error;
199
200 *name = NULL;
201 *buffer = NULL;
202 for (;;) {
203 /* freed by caller */
204 buf = kmalloc(size, GFP_KERNEL);
205 if (!buf)
206 return -ENOMEM;
207
208 error = get_name_to_buffer(path, flags, buf, size, &str);
209 if (error != -ENAMETOOLONG)
210 break;
211
212 kfree(buf);
213 size <<= 1;
214 if (size > aa_g_path_max)
215 return -ENAMETOOLONG;
216 }
217 *buffer = buf;
218 *name = str;
219
220 return error;
221}