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/file.h>
13 #include <linux/splice.h>
14 #include <linux/xattr.h>
15 #include <linux/security.h>
16 #include <linux/uaccess.h>
17 #include <linux/sched.h>
18 #include <linux/namei.h>
19 #include "overlayfs.h"
21 #define OVL_COPY_UP_CHUNK_SIZE (1 << 20)
23 int ovl_copy_xattr(struct dentry
*old
, struct dentry
*new)
25 ssize_t list_size
, size
;
26 char *buf
, *name
, *value
;
29 if (!old
->d_inode
->i_op
->getxattr
||
30 !new->d_inode
->i_op
->getxattr
)
33 list_size
= vfs_listxattr(old
, NULL
, 0);
35 if (list_size
== -EOPNOTSUPP
)
40 buf
= kzalloc(list_size
, GFP_KERNEL
);
45 value
= kmalloc(XATTR_SIZE_MAX
, GFP_KERNEL
);
49 list_size
= vfs_listxattr(old
, buf
, list_size
);
55 for (name
= buf
; name
< (buf
+ list_size
); name
+= strlen(name
) + 1) {
56 size
= vfs_getxattr(old
, name
, value
, XATTR_SIZE_MAX
);
61 error
= vfs_setxattr(new, name
, value
, size
, 0);
73 static int ovl_copy_up_data(struct path
*old
, struct path
*new, loff_t len
)
75 struct file
*old_file
;
76 struct file
*new_file
;
84 old_file
= ovl_path_open(old
, O_RDONLY
);
86 return PTR_ERR(old_file
);
88 new_file
= ovl_path_open(new, O_WRONLY
);
89 if (IS_ERR(new_file
)) {
90 error
= PTR_ERR(new_file
);
94 /* FIXME: copy up sparse files efficiently */
96 size_t this_len
= OVL_COPY_UP_CHUNK_SIZE
;
102 if (signal_pending_state(TASK_KILLABLE
, current
)) {
107 bytes
= do_splice_direct(old_file
, &old_pos
,
109 this_len
, SPLICE_F_MOVE
);
114 WARN_ON(old_pos
!= new_pos
);
125 static char *ovl_read_symlink(struct dentry
*realdentry
)
129 struct inode
*inode
= realdentry
->d_inode
;
133 if (!inode
->i_op
->readlink
)
137 buf
= (char *) __get_free_page(GFP_KERNEL
);
143 /* The cast to a user pointer is valid due to the set_fs() */
144 res
= inode
->i_op
->readlink(realdentry
,
145 (char __user
*)buf
, PAGE_SIZE
- 1);
148 free_page((unsigned long) buf
);
159 static int ovl_set_timestamps(struct dentry
*upperdentry
, struct kstat
*stat
)
161 struct iattr attr
= {
163 ATTR_ATIME
| ATTR_MTIME
| ATTR_ATIME_SET
| ATTR_MTIME_SET
,
164 .ia_atime
= stat
->atime
,
165 .ia_mtime
= stat
->mtime
,
168 return notify_change(upperdentry
, &attr
, NULL
);
171 int ovl_set_attr(struct dentry
*upperdentry
, struct kstat
*stat
)
175 if (!S_ISLNK(stat
->mode
)) {
176 struct iattr attr
= {
177 .ia_valid
= ATTR_MODE
,
178 .ia_mode
= stat
->mode
,
180 err
= notify_change(upperdentry
, &attr
, NULL
);
183 struct iattr attr
= {
184 .ia_valid
= ATTR_UID
| ATTR_GID
,
188 err
= notify_change(upperdentry
, &attr
, NULL
);
191 ovl_set_timestamps(upperdentry
, stat
);
197 static int ovl_copy_up_locked(struct dentry
*workdir
, struct dentry
*upperdir
,
198 struct dentry
*dentry
, struct path
*lowerpath
,
199 struct kstat
*stat
, struct iattr
*attr
,
202 struct inode
*wdir
= workdir
->d_inode
;
203 struct inode
*udir
= upperdir
->d_inode
;
204 struct dentry
*newdentry
= NULL
;
205 struct dentry
*upper
= NULL
;
206 umode_t mode
= stat
->mode
;
209 newdentry
= ovl_lookup_temp(workdir
, dentry
);
210 err
= PTR_ERR(newdentry
);
211 if (IS_ERR(newdentry
))
214 upper
= lookup_one_len(dentry
->d_name
.name
, upperdir
,
216 err
= PTR_ERR(upper
);
220 /* Can't properly set mode on creation because of the umask */
221 stat
->mode
&= S_IFMT
;
222 err
= ovl_create_real(wdir
, newdentry
, stat
, link
, NULL
, true);
227 if (S_ISREG(stat
->mode
)) {
228 struct path upperpath
;
229 ovl_path_upper(dentry
, &upperpath
);
230 BUG_ON(upperpath
.dentry
!= NULL
);
231 upperpath
.dentry
= newdentry
;
233 err
= ovl_copy_up_data(lowerpath
, &upperpath
, stat
->size
);
238 err
= ovl_copy_xattr(lowerpath
->dentry
, newdentry
);
242 mutex_lock(&newdentry
->d_inode
->i_mutex
);
243 err
= ovl_set_attr(newdentry
, stat
);
245 err
= notify_change(newdentry
, attr
, NULL
);
246 mutex_unlock(&newdentry
->d_inode
->i_mutex
);
250 err
= ovl_do_rename(wdir
, newdentry
, udir
, upper
, 0);
254 ovl_dentry_update(dentry
, newdentry
);
258 * Non-directores become opaque when copied up.
260 if (!S_ISDIR(stat
->mode
))
261 ovl_dentry_set_opaque(dentry
, true);
270 ovl_cleanup(wdir
, newdentry
);
275 * Copy up a single dentry
277 * Directory renames only allowed on "pure upper" (already created on
278 * upper filesystem, never copied up). Directories which are on lower or
279 * are merged may not be renamed. For these -EXDEV is returned and
280 * userspace has to deal with it. This means, when copying up a
281 * directory we can rely on it and ancestors being stable.
283 * Non-directory renames start with copy up of source if necessary. The
284 * actual rename will only proceed once the copy up was successful. Copy
285 * up uses upper parent i_mutex for exclusion. Since rename can change
286 * d_parent it is possible that the copy up will lock the old parent. At
287 * that point the file will have already been copied up anyway.
289 int ovl_copy_up_one(struct dentry
*parent
, struct dentry
*dentry
,
290 struct path
*lowerpath
, struct kstat
*stat
,
293 struct dentry
*workdir
= ovl_workdir(dentry
);
296 struct path parentpath
;
297 struct dentry
*upperdir
;
298 struct dentry
*upperdentry
;
299 const struct cred
*old_cred
;
300 struct cred
*override_cred
;
303 ovl_path_upper(parent
, &parentpath
);
304 upperdir
= parentpath
.dentry
;
306 err
= vfs_getattr(&parentpath
, &pstat
);
310 if (S_ISLNK(stat
->mode
)) {
311 link
= ovl_read_symlink(lowerpath
->dentry
);
313 return PTR_ERR(link
);
317 override_cred
= prepare_creds();
321 override_cred
->fsuid
= stat
->uid
;
322 override_cred
->fsgid
= stat
->gid
;
324 * CAP_SYS_ADMIN for copying up extended attributes
325 * CAP_DAC_OVERRIDE for create
326 * CAP_FOWNER for chmod, timestamp update
327 * CAP_FSETID for chmod
328 * CAP_CHOWN for chown
329 * CAP_MKNOD for mknod
331 cap_raise(override_cred
->cap_effective
, CAP_SYS_ADMIN
);
332 cap_raise(override_cred
->cap_effective
, CAP_DAC_OVERRIDE
);
333 cap_raise(override_cred
->cap_effective
, CAP_FOWNER
);
334 cap_raise(override_cred
->cap_effective
, CAP_FSETID
);
335 cap_raise(override_cred
->cap_effective
, CAP_CHOWN
);
336 cap_raise(override_cred
->cap_effective
, CAP_MKNOD
);
337 old_cred
= override_creds(override_cred
);
340 if (lock_rename(workdir
, upperdir
) != NULL
) {
341 pr_err("overlayfs: failed to lock workdir+upperdir\n");
344 upperdentry
= ovl_dentry_upper(dentry
);
346 unlock_rename(workdir
, upperdir
);
348 /* Raced with another copy-up? Do the setattr here */
350 mutex_lock(&upperdentry
->d_inode
->i_mutex
);
351 err
= notify_change(upperdentry
, attr
, NULL
);
352 mutex_unlock(&upperdentry
->d_inode
->i_mutex
);
357 err
= ovl_copy_up_locked(workdir
, upperdir
, dentry
, lowerpath
,
360 /* Restore timestamps on parent (best effort) */
361 ovl_set_timestamps(upperdir
, &pstat
);
364 unlock_rename(workdir
, upperdir
);
366 revert_creds(old_cred
);
367 put_cred(override_cred
);
371 free_page((unsigned long) link
);
376 int ovl_copy_up(struct dentry
*dentry
)
383 struct dentry
*parent
;
384 struct path lowerpath
;
386 enum ovl_path_type type
= ovl_path_type(dentry
);
388 if (type
!= OVL_PATH_LOWER
)
392 /* find the topmost dentry not yet copied up */
394 parent
= dget_parent(next
);
396 type
= ovl_path_type(parent
);
397 if (type
!= OVL_PATH_LOWER
)
404 ovl_path_lower(next
, &lowerpath
);
405 err
= vfs_getattr(&lowerpath
, &stat
);
407 err
= ovl_copy_up_one(parent
, next
, &lowerpath
, &stat
, NULL
);