Merge tag 'vfs-fix-ioctl-checking-3' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux
[linux-2.6-block.git] / fs / efivarfs / file.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
d68772b7
MF
2/*
3 * Copyright (C) 2012 Red Hat, Inc.
4 * Copyright (C) 2012 Jeremy Kerr <jeremy.kerr@canonical.com>
d68772b7
MF
5 */
6
7#include <linux/efi.h>
bef3efbe 8#include <linux/delay.h>
d68772b7 9#include <linux/fs.h>
20b4fb48 10#include <linux/slab.h>
ed8b0de5 11#include <linux/mount.h>
d68772b7
MF
12
13#include "internal.h"
14
d68772b7
MF
15static ssize_t efivarfs_file_write(struct file *file,
16 const char __user *userbuf, size_t count, loff_t *ppos)
17{
18 struct efivar_entry *var = file->private_data;
19 void *data;
20 u32 attributes;
21 struct inode *inode = file->f_mapping->host;
22 unsigned long datasize = count - sizeof(attributes);
aca32b57 23 ssize_t bytes;
d68772b7
MF
24 bool set = false;
25
26 if (count < sizeof(attributes))
27 return -EINVAL;
28
29 if (copy_from_user(&attributes, userbuf, sizeof(attributes)))
30 return -EFAULT;
31
32 if (attributes & ~(EFI_VARIABLE_MASK))
33 return -EINVAL;
34
aca32b57
GB
35 data = memdup_user(userbuf + sizeof(attributes), datasize);
36 if (IS_ERR(data))
37 return PTR_ERR(data);
d68772b7
MF
38
39 bytes = efivar_entry_set_get_size(var, attributes, &datasize,
40 data, &set);
3fab70c1
LX
41 if (!set && bytes) {
42 if (bytes == -ENOENT)
43 bytes = -EIO;
d68772b7 44 goto out;
3fab70c1 45 }
d68772b7
MF
46
47 if (bytes == -ENOENT) {
48 drop_nlink(inode);
b583043e
AV
49 d_delete(file->f_path.dentry);
50 dput(file->f_path.dentry);
d68772b7 51 } else {
5955102c 52 inode_lock(inode);
d68772b7 53 i_size_write(inode, datasize + sizeof(attributes));
5955102c 54 inode_unlock(inode);
d68772b7
MF
55 }
56
57 bytes = count;
58
59out:
60 kfree(data);
61
62 return bytes;
63}
64
65static ssize_t efivarfs_file_read(struct file *file, char __user *userbuf,
66 size_t count, loff_t *ppos)
67{
68 struct efivar_entry *var = file->private_data;
69 unsigned long datasize = 0;
70 u32 attributes;
71 void *data;
72 ssize_t size = 0;
73 int err;
74
bef3efbe
LT
75 while (!__ratelimit(&file->f_cred->user->ratelimit)) {
76 if (!msleep_interruptible(50))
77 return -EINTR;
78 }
79
d68772b7 80 err = efivar_entry_size(var, &datasize);
3fab70c1
LX
81
82 /*
83 * efivarfs represents uncommitted variables with
84 * zero-length files. Reading them should return EOF.
85 */
86 if (err == -ENOENT)
87 return 0;
88 else if (err)
d68772b7
MF
89 return err;
90
91 data = kmalloc(datasize + sizeof(attributes), GFP_KERNEL);
92
93 if (!data)
94 return -ENOMEM;
95
96 size = efivar_entry_get(var, &attributes, &datasize,
97 data + sizeof(attributes));
98 if (size)
99 goto out_free;
100
101 memcpy(data, &attributes, sizeof(attributes));
102 size = simple_read_from_buffer(userbuf, count, ppos,
103 data, datasize + sizeof(attributes));
104out_free:
105 kfree(data);
106
107 return size;
108}
109
5aca2842 110static inline unsigned int efivarfs_getflags(struct inode *inode)
ed8b0de5 111{
ed8b0de5
PJ
112 unsigned int i_flags;
113 unsigned int flags = 0;
114
115 i_flags = inode->i_flags;
116 if (i_flags & S_IMMUTABLE)
117 flags |= FS_IMMUTABLE_FL;
5aca2842
DW
118 return flags;
119}
120
121static int
122efivarfs_ioc_getxflags(struct file *file, void __user *arg)
123{
124 struct inode *inode = file->f_mapping->host;
125 unsigned int flags = efivarfs_getflags(inode);
ed8b0de5
PJ
126
127 if (copy_to_user(arg, &flags, sizeof(flags)))
128 return -EFAULT;
129 return 0;
130}
131
132static int
133efivarfs_ioc_setxflags(struct file *file, void __user *arg)
134{
135 struct inode *inode = file->f_mapping->host;
136 unsigned int flags;
137 unsigned int i_flags = 0;
5aca2842 138 unsigned int oldflags = efivarfs_getflags(inode);
ed8b0de5
PJ
139 int error;
140
141 if (!inode_owner_or_capable(inode))
142 return -EACCES;
143
144 if (copy_from_user(&flags, arg, sizeof(flags)))
145 return -EFAULT;
146
147 if (flags & ~FS_IMMUTABLE_FL)
148 return -EOPNOTSUPP;
149
ed8b0de5
PJ
150 if (flags & FS_IMMUTABLE_FL)
151 i_flags |= S_IMMUTABLE;
152
153
154 error = mnt_want_write_file(file);
155 if (error)
156 return error;
157
158 inode_lock(inode);
5aca2842
DW
159
160 error = vfs_ioc_setflags_prepare(inode, oldflags, flags);
161 if (error)
162 goto out;
163
ed8b0de5 164 inode_set_flags(inode, i_flags, S_IMMUTABLE);
5aca2842 165out:
ed8b0de5 166 inode_unlock(inode);
ed8b0de5 167 mnt_drop_write_file(file);
5aca2842 168 return error;
ed8b0de5
PJ
169}
170
6c5450ef 171static long
ed8b0de5
PJ
172efivarfs_file_ioctl(struct file *file, unsigned int cmd, unsigned long p)
173{
174 void __user *arg = (void __user *)p;
175
176 switch (cmd) {
177 case FS_IOC_GETFLAGS:
178 return efivarfs_ioc_getxflags(file, arg);
179 case FS_IOC_SETFLAGS:
180 return efivarfs_ioc_setxflags(file, arg);
181 }
182
183 return -ENOTTY;
184}
185
d68772b7 186const struct file_operations efivarfs_file_operations = {
f53f292e 187 .open = simple_open,
d68772b7
MF
188 .read = efivarfs_file_read,
189 .write = efivarfs_file_write,
190 .llseek = no_llseek,
ed8b0de5 191 .unlocked_ioctl = efivarfs_file_ioctl,
d68772b7 192};