ce5d7dfaf7693736ec08464677b78e0f40da26fb
[cascardo/linux.git] / fs / overlayfs / inode.c
1 /*
2  *
3  * Copyright (C) 2011 Novell Inc.
4  *
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.
8  */
9
10 #include <linux/fs.h>
11 #include <linux/slab.h>
12 #include <linux/xattr.h>
13 #include <linux/posix_acl.h>
14 #include "overlayfs.h"
15
16 static int ovl_copy_up_truncate(struct dentry *dentry)
17 {
18         int err;
19         struct dentry *parent;
20         struct kstat stat;
21         struct path lowerpath;
22         const struct cred *old_cred;
23
24         parent = dget_parent(dentry);
25         err = ovl_copy_up(parent);
26         if (err)
27                 goto out_dput_parent;
28
29         ovl_path_lower(dentry, &lowerpath);
30
31         old_cred = ovl_override_creds(dentry->d_sb);
32         err = vfs_getattr(&lowerpath, &stat);
33         if (!err) {
34                 stat.size = 0;
35                 err = ovl_copy_up_one(parent, dentry, &lowerpath, &stat);
36         }
37         revert_creds(old_cred);
38
39 out_dput_parent:
40         dput(parent);
41         return err;
42 }
43
44 int ovl_setattr(struct dentry *dentry, struct iattr *attr)
45 {
46         int err;
47         struct dentry *upperdentry;
48         const struct cred *old_cred;
49
50         /*
51          * Check for permissions before trying to copy-up.  This is redundant
52          * since it will be rechecked later by ->setattr() on upper dentry.  But
53          * without this, copy-up can be triggered by just about anybody.
54          *
55          * We don't initialize inode->size, which just means that
56          * inode_newsize_ok() will always check against MAX_LFS_FILESIZE and not
57          * check for a swapfile (which this won't be anyway).
58          */
59         err = inode_change_ok(dentry->d_inode, attr);
60         if (err)
61                 return err;
62
63         err = ovl_want_write(dentry);
64         if (err)
65                 goto out;
66
67         if (attr->ia_valid & ATTR_SIZE) {
68                 struct inode *realinode = d_inode(ovl_dentry_real(dentry));
69
70                 err = -ETXTBSY;
71                 if (atomic_read(&realinode->i_writecount) < 0)
72                         goto out_drop_write;
73         }
74
75         err = ovl_copy_up(dentry);
76         if (!err) {
77                 struct inode *winode = NULL;
78
79                 upperdentry = ovl_dentry_upper(dentry);
80
81                 if (attr->ia_valid & ATTR_SIZE) {
82                         winode = d_inode(upperdentry);
83                         err = get_write_access(winode);
84                         if (err)
85                                 goto out_drop_write;
86                 }
87
88                 if (attr->ia_valid & (ATTR_KILL_SUID|ATTR_KILL_SGID))
89                         attr->ia_valid &= ~ATTR_MODE;
90
91                 inode_lock(upperdentry->d_inode);
92                 old_cred = ovl_override_creds(dentry->d_sb);
93                 err = notify_change(upperdentry, attr, NULL);
94                 revert_creds(old_cred);
95                 if (!err)
96                         ovl_copyattr(upperdentry->d_inode, dentry->d_inode);
97                 inode_unlock(upperdentry->d_inode);
98
99                 if (winode)
100                         put_write_access(winode);
101         }
102 out_drop_write:
103         ovl_drop_write(dentry);
104 out:
105         return err;
106 }
107
108 static int ovl_getattr(struct vfsmount *mnt, struct dentry *dentry,
109                          struct kstat *stat)
110 {
111         struct path realpath;
112         const struct cred *old_cred;
113         int err;
114
115         ovl_path_real(dentry, &realpath);
116         old_cred = ovl_override_creds(dentry->d_sb);
117         err = vfs_getattr(&realpath, stat);
118         revert_creds(old_cred);
119         return err;
120 }
121
122 int ovl_permission(struct inode *inode, int mask)
123 {
124         bool is_upper;
125         struct inode *realinode = ovl_inode_real(inode, &is_upper);
126         const struct cred *old_cred;
127         int err;
128
129         /* Careful in RCU walk mode */
130         if (!realinode) {
131                 WARN_ON(!(mask & MAY_NOT_BLOCK));
132                 return -ECHILD;
133         }
134
135         /*
136          * Check overlay inode with the creds of task and underlying inode
137          * with creds of mounter
138          */
139         err = generic_permission(inode, mask);
140         if (err)
141                 return err;
142
143         old_cred = ovl_override_creds(inode->i_sb);
144         if (!is_upper && !special_file(realinode->i_mode) && mask & MAY_WRITE) {
145                 mask &= ~(MAY_WRITE | MAY_APPEND);
146                 /* Make sure mounter can read file for copy up later */
147                 mask |= MAY_READ;
148         }
149         err = inode_permission(realinode, mask);
150         revert_creds(old_cred);
151
152         return err;
153 }
154
155 static const char *ovl_get_link(struct dentry *dentry,
156                                 struct inode *inode,
157                                 struct delayed_call *done)
158 {
159         struct dentry *realdentry;
160         struct inode *realinode;
161         const struct cred *old_cred;
162         const char *p;
163
164         if (!dentry)
165                 return ERR_PTR(-ECHILD);
166
167         realdentry = ovl_dentry_real(dentry);
168         realinode = realdentry->d_inode;
169
170         if (WARN_ON(!realinode->i_op->get_link))
171                 return ERR_PTR(-EPERM);
172
173         old_cred = ovl_override_creds(dentry->d_sb);
174         p = realinode->i_op->get_link(realdentry, realinode, done);
175         revert_creds(old_cred);
176         return p;
177 }
178
179 static int ovl_readlink(struct dentry *dentry, char __user *buf, int bufsiz)
180 {
181         struct path realpath;
182         struct inode *realinode;
183         const struct cred *old_cred;
184         int err;
185
186         ovl_path_real(dentry, &realpath);
187         realinode = realpath.dentry->d_inode;
188
189         if (!realinode->i_op->readlink)
190                 return -EINVAL;
191
192         old_cred = ovl_override_creds(dentry->d_sb);
193         err = realinode->i_op->readlink(realpath.dentry, buf, bufsiz);
194         revert_creds(old_cred);
195         return err;
196 }
197
198 bool ovl_is_private_xattr(const char *name)
199 {
200         return strncmp(name, OVL_XATTR_PREFIX,
201                        sizeof(OVL_XATTR_PREFIX) - 1) == 0;
202 }
203
204 int ovl_xattr_set(struct dentry *dentry, const char *name, const void *value,
205                   size_t size, int flags)
206 {
207         int err;
208         struct path realpath;
209         enum ovl_path_type type = ovl_path_real(dentry, &realpath);
210         const struct cred *old_cred;
211
212         err = ovl_want_write(dentry);
213         if (err)
214                 goto out;
215
216         if (!value && !OVL_TYPE_UPPER(type)) {
217                 err = vfs_getxattr(realpath.dentry, name, NULL, 0);
218                 if (err < 0)
219                         goto out_drop_write;
220         }
221
222         err = ovl_copy_up(dentry);
223         if (err)
224                 goto out_drop_write;
225
226         if (!OVL_TYPE_UPPER(type))
227                 ovl_path_upper(dentry, &realpath);
228
229         old_cred = ovl_override_creds(dentry->d_sb);
230         if (value)
231                 err = vfs_setxattr(realpath.dentry, name, value, size, flags);
232         else {
233                 WARN_ON(flags != XATTR_REPLACE);
234                 err = vfs_removexattr(realpath.dentry, name);
235         }
236         revert_creds(old_cred);
237
238 out_drop_write:
239         ovl_drop_write(dentry);
240 out:
241         return err;
242 }
243
244 int ovl_xattr_get(struct dentry *dentry, const char *name,
245                   void *value, size_t size)
246 {
247         struct dentry *realdentry = ovl_dentry_real(dentry);
248         ssize_t res;
249         const struct cred *old_cred;
250
251         old_cred = ovl_override_creds(dentry->d_sb);
252         res = vfs_getxattr(realdentry, name, value, size);
253         revert_creds(old_cred);
254         return res;
255 }
256
257 ssize_t ovl_listxattr(struct dentry *dentry, char *list, size_t size)
258 {
259         struct dentry *realdentry = ovl_dentry_real(dentry);
260         ssize_t res;
261         size_t len;
262         char *s;
263         const struct cred *old_cred;
264
265         old_cred = ovl_override_creds(dentry->d_sb);
266         res = vfs_listxattr(realdentry, list, size);
267         revert_creds(old_cred);
268         if (res <= 0 || size == 0)
269                 return res;
270
271         /* filter out private xattrs */
272         for (s = list, len = res; len;) {
273                 size_t slen = strnlen(s, len) + 1;
274
275                 /* underlying fs providing us with an broken xattr list? */
276                 if (WARN_ON(slen > len))
277                         return -EIO;
278
279                 len -= slen;
280                 if (ovl_is_private_xattr(s)) {
281                         res -= slen;
282                         memmove(s, s + slen, len);
283                 } else {
284                         s += slen;
285                 }
286         }
287
288         return res;
289 }
290
291 struct posix_acl *ovl_get_acl(struct inode *inode, int type)
292 {
293         struct inode *realinode = ovl_inode_real(inode, NULL);
294         const struct cred *old_cred;
295         struct posix_acl *acl;
296
297         if (!IS_ENABLED(CONFIG_FS_POSIX_ACL) || !IS_POSIXACL(realinode))
298                 return NULL;
299
300         if (!realinode->i_op->get_acl)
301                 return NULL;
302
303         old_cred = ovl_override_creds(inode->i_sb);
304         acl = get_acl(realinode, type);
305         revert_creds(old_cred);
306
307         return acl;
308 }
309
310 static bool ovl_open_need_copy_up(int flags, enum ovl_path_type type,
311                                   struct dentry *realdentry)
312 {
313         if (OVL_TYPE_UPPER(type))
314                 return false;
315
316         if (special_file(realdentry->d_inode->i_mode))
317                 return false;
318
319         if (!(OPEN_FMODE(flags) & FMODE_WRITE) && !(flags & O_TRUNC))
320                 return false;
321
322         return true;
323 }
324
325 int ovl_open_maybe_copy_up(struct dentry *dentry, unsigned int file_flags)
326 {
327         int err = 0;
328         struct path realpath;
329         enum ovl_path_type type;
330
331         type = ovl_path_real(dentry, &realpath);
332         if (ovl_open_need_copy_up(file_flags, type, realpath.dentry)) {
333                 err = ovl_want_write(dentry);
334                 if (!err) {
335                         if (file_flags & O_TRUNC)
336                                 err = ovl_copy_up_truncate(dentry);
337                         else
338                                 err = ovl_copy_up(dentry);
339                         ovl_drop_write(dentry);
340                 }
341         }
342
343         return err;
344 }
345
346 int ovl_update_time(struct inode *inode, struct timespec *ts, int flags)
347 {
348         struct dentry *alias;
349         struct path upperpath;
350
351         if (!(flags & S_ATIME))
352                 return 0;
353
354         alias = d_find_any_alias(inode);
355         if (!alias)
356                 return 0;
357
358         ovl_path_upper(alias, &upperpath);
359         if (upperpath.dentry) {
360                 touch_atime(&upperpath);
361                 inode->i_atime = d_inode(upperpath.dentry)->i_atime;
362         }
363
364         dput(alias);
365
366         return 0;
367 }
368
369 static const struct inode_operations ovl_file_inode_operations = {
370         .setattr        = ovl_setattr,
371         .permission     = ovl_permission,
372         .getattr        = ovl_getattr,
373         .setxattr       = generic_setxattr,
374         .getxattr       = generic_getxattr,
375         .listxattr      = ovl_listxattr,
376         .removexattr    = generic_removexattr,
377         .get_acl        = ovl_get_acl,
378         .update_time    = ovl_update_time,
379 };
380
381 static const struct inode_operations ovl_symlink_inode_operations = {
382         .setattr        = ovl_setattr,
383         .get_link       = ovl_get_link,
384         .readlink       = ovl_readlink,
385         .getattr        = ovl_getattr,
386         .setxattr       = generic_setxattr,
387         .getxattr       = generic_getxattr,
388         .listxattr      = ovl_listxattr,
389         .removexattr    = generic_removexattr,
390         .update_time    = ovl_update_time,
391 };
392
393 static void ovl_fill_inode(struct inode *inode, umode_t mode)
394 {
395         inode->i_ino = get_next_ino();
396         inode->i_mode = mode;
397         inode->i_flags |= S_NOCMTIME;
398 #ifdef CONFIG_FS_POSIX_ACL
399         inode->i_acl = inode->i_default_acl = ACL_DONT_CACHE;
400 #endif
401
402         mode &= S_IFMT;
403         switch (mode) {
404         case S_IFDIR:
405                 inode->i_op = &ovl_dir_inode_operations;
406                 inode->i_fop = &ovl_dir_operations;
407                 break;
408
409         case S_IFLNK:
410                 inode->i_op = &ovl_symlink_inode_operations;
411                 break;
412
413         default:
414                 WARN(1, "illegal file type: %i\n", mode);
415                 /* Fall through */
416
417         case S_IFREG:
418         case S_IFSOCK:
419         case S_IFBLK:
420         case S_IFCHR:
421         case S_IFIFO:
422                 inode->i_op = &ovl_file_inode_operations;
423                 break;
424         }
425 }
426
427 struct inode *ovl_new_inode(struct super_block *sb, umode_t mode)
428 {
429         struct inode *inode;
430
431         inode = new_inode(sb);
432         if (inode)
433                 ovl_fill_inode(inode, mode);
434
435         return inode;
436 }
437
438 static int ovl_inode_test(struct inode *inode, void *data)
439 {
440         return ovl_inode_real(inode, NULL) == data;
441 }
442
443 static int ovl_inode_set(struct inode *inode, void *data)
444 {
445         inode->i_private = (void *) (((unsigned long) data) | OVL_ISUPPER_MASK);
446         return 0;
447 }
448
449 struct inode *ovl_get_inode(struct super_block *sb, struct inode *realinode)
450
451 {
452         struct inode *inode;
453
454         inode = iget5_locked(sb, (unsigned long) realinode,
455                              ovl_inode_test, ovl_inode_set, realinode);
456         if (inode && inode->i_state & I_NEW) {
457                 ovl_fill_inode(inode, realinode->i_mode);
458                 set_nlink(inode, realinode->i_nlink);
459                 unlock_new_inode(inode);
460         }
461
462         return inode;
463 }