]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
[apparmor] constify struct path * in a bunch of helpers
authorAl Viro <viro@zeniv.linux.org.uk>
Fri, 25 Mar 2016 18:18:14 +0000 (14:18 -0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Mon, 28 Mar 2016 03:48:14 +0000 (23:48 -0400)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
security/apparmor/file.c
security/apparmor/include/file.h
security/apparmor/include/path.h
security/apparmor/lsm.c
security/apparmor/path.c

index 913f377a038a672f8cdc07c0aaa23721b47321b2..4dfc5d0d8413e2e87b5ebb81b39553c084303d8d 100644 (file)
@@ -275,7 +275,7 @@ static inline bool is_deleted(struct dentry *dentry)
  *
  * Returns: %0 else error if access denied or other error
  */
-int aa_path_perm(int op, struct aa_profile *profile, struct path *path,
+int aa_path_perm(int op, struct aa_profile *profile, const struct path *path,
                 int flags, u32 request, struct path_cond *cond)
 {
        char *buffer = NULL;
index 2c922b86bd44f5ba7e4b519df43c663b21c34ad3..afc5b294e0d538b8dc4d0ad4c263d35ec8a73f3d 100644 (file)
@@ -171,7 +171,7 @@ unsigned int aa_str_perms(struct aa_dfa *dfa, unsigned int start,
                          const char *name, struct path_cond *cond,
                          struct file_perms *perms);
 
-int aa_path_perm(int op, struct aa_profile *profile, struct path *path,
+int aa_path_perm(int op, struct aa_profile *profile, const struct path *path,
                 int flags, u32 request, struct path_cond *cond);
 
 int aa_path_link(struct aa_profile *profile, struct dentry *old_dentry,
index 286ac75dc88b62aa36db2501c52a0355e9679710..73560f258784fc3256878f953ad8d194c086106d 100644 (file)
@@ -26,7 +26,7 @@ enum path_flags {
        PATH_MEDIATE_DELETED = 0x10000, /* mediate deleted paths */
 };
 
-int aa_path_name(struct path *path, int flags, char **buffer,
+int aa_path_name(const struct path *path, int flags, char **buffer,
                 const char **name, const char **info);
 
 #endif /* __AA_PATH_H */
index dec607c17b6434d6b8e5416060a0202bc4cb52f4..9713037e52575b98054db66dd14ab808018060a7 100644 (file)
@@ -149,7 +149,7 @@ static int apparmor_capable(const struct cred *cred, struct user_namespace *ns,
  *
  * Returns: %0 else error code if error or permission denied
  */
-static int common_perm(int op, struct path *path, u32 mask,
+static int common_perm(int op, const struct path *path, u32 mask,
                       struct path_cond *cond)
 {
        struct aa_profile *profile;
index 71e0e3a15b9dc3bbae6b73cd1d8134768f67d2c5..edddc026406b4ef47b53e163e039d1d83f741fe2 100644 (file)
@@ -53,7 +53,7 @@ static int prepend(char **buffer, int buflen, const char *str, int namelen)
  *          When no error the path name is returned in @name which points to
  *          to a position in @buf
  */
-static int d_namespace_path(struct path *path, char *buf, int buflen,
+static int d_namespace_path(const struct path *path, char *buf, int buflen,
                            char **name, int flags)
 {
        char *res;
@@ -158,7 +158,7 @@ out:
  *
  * Returns: %0 else error on failure
  */
-static int get_name_to_buffer(struct path *path, int flags, char *buffer,
+static int get_name_to_buffer(const struct path *path, int flags, char *buffer,
                              int size, char **name, const char **info)
 {
        int adjust = (flags & PATH_IS_DIR) ? 1 : 0;
@@ -204,8 +204,8 @@ static int get_name_to_buffer(struct path *path, int flags, char *buffer,
  *
  * Returns: %0 else error code if could retrieve name
  */
-int aa_path_name(struct path *path, int flags, char **buffer, const char **name,
-                const char **info)
+int aa_path_name(const struct path *path, int flags, char **buffer,
+                const char **name, const char **info)
 {
        char *buf, *str = NULL;
        int size = 256;