1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2012 Red Hat, Inc.
4 * Copyright (C) 2012 Jeremy Kerr <jeremy.kerr@canonical.com>
8 #include <linux/delay.h>
10 #include <linux/slab.h>
11 #include <linux/mount.h>
15 static ssize_t
efivarfs_file_write(struct file
*file
,
16 const char __user
*userbuf
, size_t count
, loff_t
*ppos
)
18 struct efivar_entry
*var
= file
->private_data
;
21 struct inode
*inode
= file
->f_mapping
->host
;
22 unsigned long datasize
= count
- sizeof(attributes
);
26 if (count
< sizeof(attributes
))
29 if (copy_from_user(&attributes
, userbuf
, sizeof(attributes
)))
32 if (attributes
& ~(EFI_VARIABLE_MASK
))
35 data
= memdup_user(userbuf
+ sizeof(attributes
), datasize
);
39 bytes
= efivar_entry_set_get_size(var
, attributes
, &datasize
,
47 if (bytes
== -ENOENT
) {
49 d_delete(file
->f_path
.dentry
);
50 dput(file
->f_path
.dentry
);
53 i_size_write(inode
, datasize
+ sizeof(attributes
));
54 inode
->i_mtime
= current_time(inode
);
66 static ssize_t
efivarfs_file_read(struct file
*file
, char __user
*userbuf
,
67 size_t count
, loff_t
*ppos
)
69 struct efivar_entry
*var
= file
->private_data
;
70 unsigned long datasize
= 0;
76 while (!__ratelimit(&file
->f_cred
->user
->ratelimit
))
79 err
= efivar_entry_size(var
, &datasize
);
82 * efivarfs represents uncommitted variables with
83 * zero-length files. Reading them should return EOF.
90 data
= kmalloc(datasize
+ sizeof(attributes
), GFP_KERNEL
);
95 size
= efivar_entry_get(var
, &attributes
, &datasize
,
96 data
+ sizeof(attributes
));
100 memcpy(data
, &attributes
, sizeof(attributes
));
101 size
= simple_read_from_buffer(userbuf
, count
, ppos
,
102 data
, datasize
+ sizeof(attributes
));
109 static inline unsigned int efivarfs_getflags(struct inode
*inode
)
111 unsigned int i_flags
;
112 unsigned int flags
= 0;
114 i_flags
= inode
->i_flags
;
115 if (i_flags
& S_IMMUTABLE
)
116 flags
|= FS_IMMUTABLE_FL
;
121 efivarfs_ioc_getxflags(struct file
*file
, void __user
*arg
)
123 struct inode
*inode
= file
->f_mapping
->host
;
124 unsigned int flags
= efivarfs_getflags(inode
);
126 if (copy_to_user(arg
, &flags
, sizeof(flags
)))
132 efivarfs_ioc_setxflags(struct file
*file
, void __user
*arg
)
134 struct inode
*inode
= file
->f_mapping
->host
;
136 unsigned int i_flags
= 0;
137 unsigned int oldflags
= efivarfs_getflags(inode
);
140 if (!inode_owner_or_capable(inode
))
143 if (copy_from_user(&flags
, arg
, sizeof(flags
)))
146 if (flags
& ~FS_IMMUTABLE_FL
)
149 if (flags
& FS_IMMUTABLE_FL
)
150 i_flags
|= S_IMMUTABLE
;
153 error
= mnt_want_write_file(file
);
159 error
= vfs_ioc_setflags_prepare(inode
, oldflags
, flags
);
163 inode_set_flags(inode
, i_flags
, S_IMMUTABLE
);
166 mnt_drop_write_file(file
);
171 efivarfs_file_ioctl(struct file
*file
, unsigned int cmd
, unsigned long p
)
173 void __user
*arg
= (void __user
*)p
;
176 case FS_IOC_GETFLAGS
:
177 return efivarfs_ioc_getxflags(file
, arg
);
178 case FS_IOC_SETFLAGS
:
179 return efivarfs_ioc_setxflags(file
, arg
);
185 const struct file_operations efivarfs_file_operations
= {
187 .read
= efivarfs_file_read
,
188 .write
= efivarfs_file_write
,
190 .unlocked_ioctl
= efivarfs_file_ioctl
,