2 * AppArmor security module
4 * This file contains AppArmor function for pathnames
6 * Copyright (C) 1998-2008 Novell/SUSE
7 * Copyright 2009-2010 Canonical Ltd.
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
15 #include <linux/magic.h>
16 #include <linux/mnt_namespace.h>
17 #include <linux/mount.h>
18 #include <linux/namei.h>
19 #include <linux/nsproxy.h>
20 #include <linux/path.h>
21 #include <linux/sched.h>
22 #include <linux/slab.h>
23 #include <linux/fs_struct.h>
25 #include "include/apparmor.h"
26 #include "include/path.h"
27 #include "include/policy.h"
30 /* modified from dcache.c */
31 static int prepend(char **buffer
, int buflen
, const char *str
, int namelen
)
37 memcpy(*buffer
, str
, namelen
);
41 #define CHROOT_NSCONNECT (PATH_CHROOT_REL | PATH_CHROOT_NSCONNECT)
44 * d_namespace_path - lookup a name associated with a given path
45 * @path: path to lookup (NOT NULL)
46 * @buf: buffer to store path to (NOT NULL)
47 * @buflen: length of @buf
48 * @name: Returns - pointer for start of path name with in @buf (NOT NULL)
49 * @flags: flags controlling path lookup
51 * Handle path name lookup.
53 * Returns: %0 else error code if path lookup fails
54 * When no error the path name is returned in @name which points to
55 * to a position in @buf
57 static int d_namespace_path(struct path
*path
, char *buf
, int buflen
,
58 char **name
, int flags
)
64 if (path
->mnt
->mnt_flags
& MNT_INTERNAL
) {
65 /* it's not mounted anywhere */
66 res
= dentry_path(path
->dentry
, buf
, buflen
);
72 if (path
->dentry
->d_sb
->s_magic
== PROC_SUPER_MAGIC
&&
73 strncmp(*name
, "/sys/", 5) == 0) {
74 /* TODO: convert over to using a per namespace
75 * control instead of hard coded /proc
77 return prepend(name
, *name
- buf
, "/proc", 5);
82 /* resolve paths relative to chroot?*/
83 if (flags
& PATH_CHROOT_REL
) {
85 get_fs_root(current
->fs
, &root
);
86 res
= __d_path(path
, &root
, buf
, buflen
);
87 if (res
&& !IS_ERR(res
)) {
88 /* everything's fine */
97 res
= d_absolute_path(path
, buf
, buflen
);
100 /* handle error conditions - and still allow a partial path to
104 error
= PTR_ERR(res
);
108 if (!our_mnt(path
->mnt
))
113 * 1. A deleted dentry && profile is not allowing mediation of deleted
114 * 2. On some filesystems, newly allocated dentries appear to the
115 * security_path hooks as a deleted dentry except without an inode
118 if (d_unlinked(path
->dentry
) && path
->dentry
->d_inode
&&
119 !(flags
& PATH_MEDIATE_DELETED
)) {
124 /* If the path is not connected to the expected root,
125 * check if it is a sysctl and handle specially else remove any
126 * leading / that __d_path may have returned.
128 * specifically directed to connect the path,
130 * if in a chroot and doing chroot relative paths and the path
131 * resolves to the namespace root (would be connected outside
132 * of chroot) and specifically directed to connect paths to
136 if (!(flags
& PATH_CONNECT_PATH
) &&
137 !(((flags
& CHROOT_NSCONNECT
) == CHROOT_NSCONNECT
) &&
138 our_mnt(path
->mnt
))) {
139 /* disconnected path, don't return pathname starting
153 * get_name_to_buffer - get the pathname to a buffer ensure dir / is appended
154 * @path: path to get name for (NOT NULL)
155 * @flags: flags controlling path lookup
156 * @buffer: buffer to put name in (NOT NULL)
157 * @size: size of buffer
158 * @name: Returns - contains position of path name in @buffer (NOT NULL)
160 * Returns: %0 else error on failure
162 static int get_name_to_buffer(struct path
*path
, int flags
, char *buffer
,
163 int size
, char **name
)
165 int adjust
= (flags
& PATH_IS_DIR
) ? 1 : 0;
166 int error
= d_namespace_path(path
, buffer
, size
- adjust
, name
, flags
);
168 if (!error
&& (flags
& PATH_IS_DIR
) && (*name
)[1] != '\0')
170 * Append "/" to the pathname. The root directory is a special
171 * case; it already ends in slash.
173 strcpy(&buffer
[size
- 2], "/");
179 * aa_get_name - compute the pathname of a file
180 * @path: path the file (NOT NULL)
181 * @flags: flags controlling path name generation
182 * @buffer: buffer that aa_get_name() allocated (NOT NULL)
183 * @name: Returns - the generated path name if !error (NOT NULL)
185 * @name is a pointer to the beginning of the pathname (which usually differs
186 * from the beginning of the buffer), or NULL. If there is an error @name
187 * may contain a partial or invalid name that can be used for audit purposes,
188 * but it can not be used for mediation.
190 * We need PATH_IS_DIR to indicate whether the file is a directory or not
191 * because the file may not yet exist, and so we cannot check the inode's
194 * Returns: %0 else error code if could retrieve name
196 int aa_get_name(struct path
*path
, int flags
, char **buffer
, const char **name
)
198 char *buf
, *str
= NULL
;
205 /* freed by caller */
206 buf
= kmalloc(size
, GFP_KERNEL
);
210 error
= get_name_to_buffer(path
, flags
, buf
, size
, &str
);
211 if (error
!= -ENAMETOOLONG
)
216 if (size
> aa_g_path_max
)
217 return -ENAMETOOLONG
;