3 * Copyright (C) 2011 Novell Inc.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
11 #include <linux/slab.h>
12 #include <linux/xattr.h>
13 #include "overlayfs.h"
15 static int ovl_copy_up_truncate(struct dentry
*dentry
)
18 struct dentry
*parent
;
20 struct path lowerpath
;
22 parent
= dget_parent(dentry
);
23 err
= ovl_copy_up(parent
);
27 ovl_path_lower(dentry
, &lowerpath
);
28 err
= vfs_getattr(&lowerpath
, &stat
);
33 err
= ovl_copy_up_one(parent
, dentry
, &lowerpath
, &stat
);
40 int ovl_setattr(struct dentry
*dentry
, struct iattr
*attr
)
43 struct dentry
*upperdentry
;
45 err
= ovl_want_write(dentry
);
49 err
= ovl_copy_up(dentry
);
51 upperdentry
= ovl_dentry_upper(dentry
);
53 mutex_lock(&upperdentry
->d_inode
->i_mutex
);
54 err
= notify_change(upperdentry
, attr
, NULL
);
55 mutex_unlock(&upperdentry
->d_inode
->i_mutex
);
57 ovl_drop_write(dentry
);
62 static int ovl_getattr(struct vfsmount
*mnt
, struct dentry
*dentry
,
67 ovl_path_real(dentry
, &realpath
);
68 return vfs_getattr(&realpath
, stat
);
71 int ovl_permission(struct inode
*inode
, int mask
)
74 struct dentry
*alias
= NULL
;
75 struct inode
*realinode
;
76 struct dentry
*realdentry
;
80 if (S_ISDIR(inode
->i_mode
)) {
81 oe
= inode
->i_private
;
82 } else if (mask
& MAY_NOT_BLOCK
) {
86 * For non-directories find an alias and get the info
89 alias
= d_find_any_alias(inode
);
96 realdentry
= ovl_entry_real(oe
, &is_upper
);
98 /* Careful in RCU walk mode */
99 realinode
= ACCESS_ONCE(realdentry
->d_inode
);
101 WARN_ON(!(mask
& MAY_NOT_BLOCK
));
106 if (mask
& MAY_WRITE
) {
107 umode_t mode
= realinode
->i_mode
;
110 * Writes will always be redirected to upper layer, so
111 * ignore lower layer being read-only.
113 * If the overlay itself is read-only then proceed
114 * with the permission check, don't return EROFS.
115 * This will only happen if this is the lower layer of
118 * If upper fs becomes read-only after the overlay was
119 * constructed return EROFS to prevent modification of
123 if (is_upper
&& !IS_RDONLY(inode
) && IS_RDONLY(realinode
) &&
124 (S_ISREG(mode
) || S_ISDIR(mode
) || S_ISLNK(mode
)))
128 err
= __inode_permission(realinode
, mask
);
134 static const char *ovl_get_link(struct dentry
*dentry
,
136 struct delayed_call
*done
)
138 struct dentry
*realdentry
;
139 struct inode
*realinode
;
142 return ERR_PTR(-ECHILD
);
144 realdentry
= ovl_dentry_real(dentry
);
145 realinode
= realdentry
->d_inode
;
147 if (WARN_ON(!realinode
->i_op
->get_link
))
148 return ERR_PTR(-EPERM
);
150 return realinode
->i_op
->get_link(realdentry
, realinode
, done
);
153 static int ovl_readlink(struct dentry
*dentry
, char __user
*buf
, int bufsiz
)
155 struct path realpath
;
156 struct inode
*realinode
;
158 ovl_path_real(dentry
, &realpath
);
159 realinode
= realpath
.dentry
->d_inode
;
161 if (!realinode
->i_op
->readlink
)
164 touch_atime(&realpath
);
166 return realinode
->i_op
->readlink(realpath
.dentry
, buf
, bufsiz
);
170 static bool ovl_is_private_xattr(const char *name
)
172 return strncmp(name
, OVL_XATTR_PRE_NAME
, OVL_XATTR_PRE_LEN
) == 0;
175 int ovl_setxattr(struct dentry
*dentry
, const char *name
,
176 const void *value
, size_t size
, int flags
)
179 struct dentry
*upperdentry
;
181 err
= ovl_want_write(dentry
);
186 if (ovl_is_private_xattr(name
))
189 err
= ovl_copy_up(dentry
);
193 upperdentry
= ovl_dentry_upper(dentry
);
194 err
= vfs_setxattr(upperdentry
, name
, value
, size
, flags
);
197 ovl_drop_write(dentry
);
202 static bool ovl_need_xattr_filter(struct dentry
*dentry
,
203 enum ovl_path_type type
)
205 if ((type
& (__OVL_PATH_PURE
| __OVL_PATH_UPPER
)) == __OVL_PATH_UPPER
)
206 return S_ISDIR(dentry
->d_inode
->i_mode
);
211 ssize_t
ovl_getxattr(struct dentry
*dentry
, const char *name
,
212 void *value
, size_t size
)
214 struct path realpath
;
215 enum ovl_path_type type
= ovl_path_real(dentry
, &realpath
);
217 if (ovl_need_xattr_filter(dentry
, type
) && ovl_is_private_xattr(name
))
220 return vfs_getxattr(realpath
.dentry
, name
, value
, size
);
223 ssize_t
ovl_listxattr(struct dentry
*dentry
, char *list
, size_t size
)
225 struct path realpath
;
226 enum ovl_path_type type
= ovl_path_real(dentry
, &realpath
);
230 res
= vfs_listxattr(realpath
.dentry
, list
, size
);
231 if (res
<= 0 || size
== 0)
234 if (!ovl_need_xattr_filter(dentry
, type
))
237 /* filter out private xattrs */
238 for (off
= 0; off
< res
;) {
239 char *s
= list
+ off
;
240 size_t slen
= strlen(s
) + 1;
242 BUG_ON(off
+ slen
> res
);
244 if (ovl_is_private_xattr(s
)) {
246 memmove(s
, s
+ slen
, res
- off
);
255 int ovl_removexattr(struct dentry
*dentry
, const char *name
)
258 struct path realpath
;
259 enum ovl_path_type type
= ovl_path_real(dentry
, &realpath
);
261 err
= ovl_want_write(dentry
);
266 if (ovl_need_xattr_filter(dentry
, type
) && ovl_is_private_xattr(name
))
269 if (!OVL_TYPE_UPPER(type
)) {
270 err
= vfs_getxattr(realpath
.dentry
, name
, NULL
, 0);
274 err
= ovl_copy_up(dentry
);
278 ovl_path_upper(dentry
, &realpath
);
281 err
= vfs_removexattr(realpath
.dentry
, name
);
283 ovl_drop_write(dentry
);
288 static bool ovl_open_need_copy_up(int flags
, enum ovl_path_type type
,
289 struct dentry
*realdentry
)
291 if (OVL_TYPE_UPPER(type
))
294 if (special_file(realdentry
->d_inode
->i_mode
))
297 if (!(OPEN_FMODE(flags
) & FMODE_WRITE
) && !(flags
& O_TRUNC
))
303 struct inode
*ovl_d_select_inode(struct dentry
*dentry
, unsigned file_flags
)
306 struct path realpath
;
307 enum ovl_path_type type
;
309 if (d_is_dir(dentry
))
310 return d_backing_inode(dentry
);
312 type
= ovl_path_real(dentry
, &realpath
);
313 if (ovl_open_need_copy_up(file_flags
, type
, realpath
.dentry
)) {
314 err
= ovl_want_write(dentry
);
318 if (file_flags
& O_TRUNC
)
319 err
= ovl_copy_up_truncate(dentry
);
321 err
= ovl_copy_up(dentry
);
322 ovl_drop_write(dentry
);
326 ovl_path_upper(dentry
, &realpath
);
329 if (realpath
.dentry
->d_flags
& DCACHE_OP_SELECT_INODE
)
330 return realpath
.dentry
->d_op
->d_select_inode(realpath
.dentry
, file_flags
);
332 return d_backing_inode(realpath
.dentry
);
335 static const struct inode_operations ovl_file_inode_operations
= {
336 .setattr
= ovl_setattr
,
337 .permission
= ovl_permission
,
338 .getattr
= ovl_getattr
,
339 .setxattr
= ovl_setxattr
,
340 .getxattr
= ovl_getxattr
,
341 .listxattr
= ovl_listxattr
,
342 .removexattr
= ovl_removexattr
,
345 static const struct inode_operations ovl_symlink_inode_operations
= {
346 .setattr
= ovl_setattr
,
347 .get_link
= ovl_get_link
,
348 .readlink
= ovl_readlink
,
349 .getattr
= ovl_getattr
,
350 .setxattr
= ovl_setxattr
,
351 .getxattr
= ovl_getxattr
,
352 .listxattr
= ovl_listxattr
,
353 .removexattr
= ovl_removexattr
,
356 struct inode
*ovl_new_inode(struct super_block
*sb
, umode_t mode
,
357 struct ovl_entry
*oe
)
361 inode
= new_inode(sb
);
367 inode
->i_ino
= get_next_ino();
368 inode
->i_mode
= mode
;
369 inode
->i_flags
|= S_NOATIME
| S_NOCMTIME
;
373 inode
->i_private
= oe
;
374 inode
->i_op
= &ovl_dir_inode_operations
;
375 inode
->i_fop
= &ovl_dir_operations
;
379 inode
->i_op
= &ovl_symlink_inode_operations
;
387 inode
->i_op
= &ovl_file_inode_operations
;
391 WARN(1, "illegal file type: %i\n", mode
);