blob: 0ad32150611ea6b26e7e7d1b36cec87d3a79758d [file] [log] [blame]
Thomas Gleixner328970d2019-05-24 12:04:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Masahiro Yamadafa60ce22021-05-06 18:06:44 -07002/*
Joel Becker7063fbf2005-12-15 14:29:43 -08003 * file.c - operations for regular (text) files.
4 *
Joel Becker7063fbf2005-12-15 14:29:43 -08005 * Based on sysfs:
6 * sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
7 *
8 * configfs Copyright (C) 2005 Oracle. All rights reserved.
9 */
10
11#include <linux/fs.h>
12#include <linux/module.h>
Joel Becker7063fbf2005-12-15 14:29:43 -080013#include <linux/slab.h>
Johannes Berg6d748922007-06-22 11:20:00 +020014#include <linux/mutex.h>
Pantelis Antoniou03607ac2015-10-22 23:30:04 +030015#include <linux/vmalloc.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080016#include <linux/uaccess.h>
Bart Van Assche7fe1e792021-05-25 10:30:21 +020017#include <linux/uio.h>
Joel Becker7063fbf2005-12-15 14:29:43 -080018#include <linux/configfs.h>
19#include "configfs_internal.h"
20
Joel Beckerb23cdde2007-06-22 13:07:02 -070021/*
22 * A simple attribute can only be 4096 characters. Why 4k? Because the
23 * original code limited it to PAGE_SIZE. That's a bad idea, though,
24 * because an attribute of 16k on ia64 won't work on x86. So we limit to
25 * 4k, our minimum common page size.
26 */
27#define SIMPLE_ATTR_SIZE 4096
Joel Becker7063fbf2005-12-15 14:29:43 -080028
29struct configfs_buffer {
30 size_t count;
31 loff_t pos;
32 char * page;
33 struct configfs_item_operations * ops;
Johannes Berg6d748922007-06-22 11:20:00 +020034 struct mutex mutex;
Joel Becker7063fbf2005-12-15 14:29:43 -080035 int needs_read_fill;
Pantelis Antoniou03607ac2015-10-22 23:30:04 +030036 bool read_in_progress;
37 bool write_in_progress;
38 char *bin_buffer;
39 int bin_buffer_size;
Al Viroff4dd082019-08-30 11:30:03 -040040 int cb_max_size;
41 struct config_item *item;
42 struct module *owner;
43 union {
44 struct configfs_attribute *attr;
45 struct configfs_bin_attribute *bin_attr;
46 };
Joel Becker7063fbf2005-12-15 14:29:43 -080047};
48
Al Virob0841ee2019-08-31 09:43:43 +020049static inline struct configfs_fragment *to_frag(struct file *file)
Joel Becker7063fbf2005-12-15 14:29:43 -080050{
Al Virob0841ee2019-08-31 09:43:43 +020051 struct configfs_dirent *sd = file->f_path.dentry->d_fsdata;
52
53 return sd->s_frag;
54}
55
56static int fill_read_buffer(struct file *file, struct configfs_buffer *buffer)
57{
58 struct configfs_fragment *frag = to_frag(file);
59 ssize_t count = -ENOENT;
Joel Becker7063fbf2005-12-15 14:29:43 -080060
61 if (!buffer->page)
62 buffer->page = (char *) get_zeroed_page(GFP_KERNEL);
63 if (!buffer->page)
64 return -ENOMEM;
65
Al Virob0841ee2019-08-31 09:43:43 +020066 down_read(&frag->frag_sem);
67 if (!frag->frag_dead)
68 count = buffer->attr->show(buffer->item, buffer->page);
69 up_read(&frag->frag_sem);
70
Al Viroff4dd082019-08-30 11:30:03 -040071 if (count < 0)
72 return count;
73 if (WARN_ON_ONCE(count > (ssize_t)SIMPLE_ATTR_SIZE))
74 return -EIO;
Al Viroff4dd082019-08-30 11:30:03 -040075 buffer->needs_read_fill = 0;
76 buffer->count = count;
77 return 0;
Joel Becker7063fbf2005-12-15 14:29:43 -080078}
79
Bart Van Assche7fe1e792021-05-25 10:30:21 +020080static ssize_t configfs_read_iter(struct kiocb *iocb, struct iov_iter *to)
Joel Becker7063fbf2005-12-15 14:29:43 -080081{
Bart Van Assche7fe1e792021-05-25 10:30:21 +020082 struct file *file = iocb->ki_filp;
Al Viroff4dd082019-08-30 11:30:03 -040083 struct configfs_buffer *buffer = file->private_data;
Joel Becker7063fbf2005-12-15 14:29:43 -080084 ssize_t retval = 0;
85
Johannes Berg6d748922007-06-22 11:20:00 +020086 mutex_lock(&buffer->mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -080087 if (buffer->needs_read_fill) {
Al Virob0841ee2019-08-31 09:43:43 +020088 retval = fill_read_buffer(file, buffer);
Al Viroff4dd082019-08-30 11:30:03 -040089 if (retval)
Joel Becker7063fbf2005-12-15 14:29:43 -080090 goto out;
91 }
Bart Van Assche7fe1e792021-05-25 10:30:21 +020092 pr_debug("%s: count = %zd, pos = %lld, buf = %s\n",
93 __func__, iov_iter_count(to), iocb->ki_pos, buffer->page);
Bart Van Assche420405e2021-07-13 10:49:26 -070094 if (iocb->ki_pos >= buffer->count)
95 goto out;
96 retval = copy_to_iter(buffer->page + iocb->ki_pos,
97 buffer->count - iocb->ki_pos, to);
Bart Van Assche7fe1e792021-05-25 10:30:21 +020098 iocb->ki_pos += retval;
99 if (retval == 0)
100 retval = -EFAULT;
Joel Becker7063fbf2005-12-15 14:29:43 -0800101out:
Johannes Berg6d748922007-06-22 11:20:00 +0200102 mutex_unlock(&buffer->mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -0800103 return retval;
104}
105
Bart Van Assche7fe1e792021-05-25 10:30:21 +0200106static ssize_t configfs_bin_read_iter(struct kiocb *iocb, struct iov_iter *to)
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300107{
Bart Van Assche7fe1e792021-05-25 10:30:21 +0200108 struct file *file = iocb->ki_filp;
Al Virob0841ee2019-08-31 09:43:43 +0200109 struct configfs_fragment *frag = to_frag(file);
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300110 struct configfs_buffer *buffer = file->private_data;
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300111 ssize_t retval = 0;
Bart Van Assche7fe1e792021-05-25 10:30:21 +0200112 ssize_t len;
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300113
114 mutex_lock(&buffer->mutex);
115
116 /* we don't support switching read/write modes */
117 if (buffer->write_in_progress) {
118 retval = -ETXTBSY;
119 goto out;
120 }
Thomas Meyer3f6928c2017-10-07 16:02:21 +0200121 buffer->read_in_progress = true;
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300122
123 if (buffer->needs_read_fill) {
124 /* perform first read with buf == NULL to get extent */
Al Virob0841ee2019-08-31 09:43:43 +0200125 down_read(&frag->frag_sem);
126 if (!frag->frag_dead)
127 len = buffer->bin_attr->read(buffer->item, NULL, 0);
128 else
129 len = -ENOENT;
130 up_read(&frag->frag_sem);
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300131 if (len <= 0) {
132 retval = len;
133 goto out;
134 }
135
136 /* do not exceed the maximum value */
Al Viroff4dd082019-08-30 11:30:03 -0400137 if (buffer->cb_max_size && len > buffer->cb_max_size) {
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300138 retval = -EFBIG;
139 goto out;
140 }
141
142 buffer->bin_buffer = vmalloc(len);
143 if (buffer->bin_buffer == NULL) {
144 retval = -ENOMEM;
145 goto out;
146 }
147 buffer->bin_buffer_size = len;
148
149 /* perform second read to fill buffer */
Al Virob0841ee2019-08-31 09:43:43 +0200150 down_read(&frag->frag_sem);
151 if (!frag->frag_dead)
152 len = buffer->bin_attr->read(buffer->item,
153 buffer->bin_buffer, len);
154 else
155 len = -ENOENT;
156 up_read(&frag->frag_sem);
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300157 if (len < 0) {
158 retval = len;
159 vfree(buffer->bin_buffer);
160 buffer->bin_buffer_size = 0;
161 buffer->bin_buffer = NULL;
162 goto out;
163 }
164
165 buffer->needs_read_fill = 0;
166 }
167
Bart Van Assche420405e2021-07-13 10:49:26 -0700168 if (iocb->ki_pos >= buffer->bin_buffer_size)
169 goto out;
170 retval = copy_to_iter(buffer->bin_buffer + iocb->ki_pos,
171 buffer->bin_buffer_size - iocb->ki_pos, to);
Bart Van Assche7fe1e792021-05-25 10:30:21 +0200172 iocb->ki_pos += retval;
173 if (retval == 0)
174 retval = -EFAULT;
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300175out:
176 mutex_unlock(&buffer->mutex);
177 return retval;
178}
179
Bart Van Assche769f5262021-08-04 21:35:01 -0700180/* Fill @buffer with data coming from @from. */
181static int fill_write_buffer(struct configfs_buffer *buffer,
Bart Van Assche7fe1e792021-05-25 10:30:21 +0200182 struct iov_iter *from)
Joel Becker7063fbf2005-12-15 14:29:43 -0800183{
Bart Van Assche7fe1e792021-05-25 10:30:21 +0200184 int copied;
Joel Becker7063fbf2005-12-15 14:29:43 -0800185
186 if (!buffer->page)
Joel Beckerff05d1c2007-01-23 17:00:45 -0800187 buffer->page = (char *)__get_free_pages(GFP_KERNEL, 0);
Joel Becker7063fbf2005-12-15 14:29:43 -0800188 if (!buffer->page)
189 return -ENOMEM;
190
Bart Van Assche769f5262021-08-04 21:35:01 -0700191 copied = copy_from_iter(buffer->page, SIMPLE_ATTR_SIZE - 1, from);
Joel Becker7063fbf2005-12-15 14:29:43 -0800192 buffer->needs_read_fill = 1;
Joel Beckerff05d1c2007-01-23 17:00:45 -0800193 /* if buf is assumed to contain a string, terminate it by \0,
194 * so e.g. sscanf() can scan the string easily */
Bart Van Assche769f5262021-08-04 21:35:01 -0700195 buffer->page[copied] = 0;
Bart Van Assche7fe1e792021-05-25 10:30:21 +0200196 return copied ? : -EFAULT;
Joel Becker7063fbf2005-12-15 14:29:43 -0800197}
198
Joel Becker7063fbf2005-12-15 14:29:43 -0800199static int
Al Virob0841ee2019-08-31 09:43:43 +0200200flush_write_buffer(struct file *file, struct configfs_buffer *buffer, size_t count)
Joel Becker7063fbf2005-12-15 14:29:43 -0800201{
Al Virob0841ee2019-08-31 09:43:43 +0200202 struct configfs_fragment *frag = to_frag(file);
203 int res = -ENOENT;
204
205 down_read(&frag->frag_sem);
206 if (!frag->frag_dead)
207 res = buffer->attr->store(buffer->item, buffer->page, count);
208 up_read(&frag->frag_sem);
209 return res;
Joel Becker7063fbf2005-12-15 14:29:43 -0800210}
211
212
Christoph Hellwig44b9a002021-05-25 10:28:54 +0200213/*
214 * There is no easy way for us to know if userspace is only doing a partial
215 * write, so we don't support them. We expect the entire buffer to come on the
216 * first write.
217 * Hint: if you're writing a value, first read the file, modify only the value
218 * you're changing, then write entire buffer back.
Joel Becker7063fbf2005-12-15 14:29:43 -0800219 */
Bart Van Assche7fe1e792021-05-25 10:30:21 +0200220static ssize_t configfs_write_iter(struct kiocb *iocb, struct iov_iter *from)
Joel Becker7063fbf2005-12-15 14:29:43 -0800221{
Bart Van Assche7fe1e792021-05-25 10:30:21 +0200222 struct file *file = iocb->ki_filp;
Al Viroff4dd082019-08-30 11:30:03 -0400223 struct configfs_buffer *buffer = file->private_data;
Bart Van Assche769f5262021-08-04 21:35:01 -0700224 int len;
Joel Becker7063fbf2005-12-15 14:29:43 -0800225
Johannes Berg6d748922007-06-22 11:20:00 +0200226 mutex_lock(&buffer->mutex);
Bart Van Assche769f5262021-08-04 21:35:01 -0700227 len = fill_write_buffer(buffer, from);
Joel Becker3d0f89b2006-01-25 13:31:07 -0800228 if (len > 0)
Al Virob0841ee2019-08-31 09:43:43 +0200229 len = flush_write_buffer(file, buffer, len);
Joel Becker3d0f89b2006-01-25 13:31:07 -0800230 if (len > 0)
Bart Van Assche7fe1e792021-05-25 10:30:21 +0200231 iocb->ki_pos += len;
Johannes Berg6d748922007-06-22 11:20:00 +0200232 mutex_unlock(&buffer->mutex);
Joel Becker3d0f89b2006-01-25 13:31:07 -0800233 return len;
Joel Becker7063fbf2005-12-15 14:29:43 -0800234}
235
Bart Van Assche7fe1e792021-05-25 10:30:21 +0200236static ssize_t configfs_bin_write_iter(struct kiocb *iocb,
237 struct iov_iter *from)
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300238{
Bart Van Assche7fe1e792021-05-25 10:30:21 +0200239 struct file *file = iocb->ki_filp;
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300240 struct configfs_buffer *buffer = file->private_data;
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300241 void *tbuf = NULL;
Bart Van Assche7fe1e792021-05-25 10:30:21 +0200242 size_t end_offset;
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300243 ssize_t len;
244
245 mutex_lock(&buffer->mutex);
246
247 /* we don't support switching read/write modes */
248 if (buffer->read_in_progress) {
249 len = -ETXTBSY;
250 goto out;
251 }
Thomas Meyer3f6928c2017-10-07 16:02:21 +0200252 buffer->write_in_progress = true;
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300253
254 /* buffer grows? */
Bart Van Assche7fe1e792021-05-25 10:30:21 +0200255 end_offset = iocb->ki_pos + iov_iter_count(from);
256 if (end_offset > buffer->bin_buffer_size) {
257 if (buffer->cb_max_size && end_offset > buffer->cb_max_size) {
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300258 len = -EFBIG;
Phil Turnbull42857cf2016-09-15 12:20:12 -0400259 goto out;
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300260 }
261
Bart Van Assche7fe1e792021-05-25 10:30:21 +0200262 tbuf = vmalloc(end_offset);
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300263 if (tbuf == NULL) {
264 len = -ENOMEM;
265 goto out;
266 }
267
268 /* copy old contents */
269 if (buffer->bin_buffer) {
270 memcpy(tbuf, buffer->bin_buffer,
271 buffer->bin_buffer_size);
272 vfree(buffer->bin_buffer);
273 }
274
275 /* clear the new area */
276 memset(tbuf + buffer->bin_buffer_size, 0,
Bart Van Assche7fe1e792021-05-25 10:30:21 +0200277 end_offset - buffer->bin_buffer_size);
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300278 buffer->bin_buffer = tbuf;
Bart Van Assche7fe1e792021-05-25 10:30:21 +0200279 buffer->bin_buffer_size = end_offset;
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300280 }
281
Bart Van Assche420405e2021-07-13 10:49:26 -0700282 len = copy_from_iter(buffer->bin_buffer + iocb->ki_pos,
283 buffer->bin_buffer_size - iocb->ki_pos, from);
284 iocb->ki_pos += len;
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300285out:
286 mutex_unlock(&buffer->mutex);
Bart Van Assche7fe1e792021-05-25 10:30:21 +0200287 return len ? : -EFAULT;
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300288}
289
Al Viroff4dd082019-08-30 11:30:03 -0400290static int __configfs_open_file(struct inode *inode, struct file *file, int type)
Joel Becker7063fbf2005-12-15 14:29:43 -0800291{
Al Viroff4dd082019-08-30 11:30:03 -0400292 struct dentry *dentry = file->f_path.dentry;
Al Virob0841ee2019-08-31 09:43:43 +0200293 struct configfs_fragment *frag = to_frag(file);
Al Viroff4dd082019-08-30 11:30:03 -0400294 struct configfs_attribute *attr;
295 struct configfs_buffer *buffer;
296 int error;
Joel Becker7063fbf2005-12-15 14:29:43 -0800297
Al Viroff4dd082019-08-30 11:30:03 -0400298 error = -ENOMEM;
299 buffer = kzalloc(sizeof(struct configfs_buffer), GFP_KERNEL);
300 if (!buffer)
301 goto out;
Joel Becker7063fbf2005-12-15 14:29:43 -0800302
Al Virob0841ee2019-08-31 09:43:43 +0200303 error = -ENOENT;
304 down_read(&frag->frag_sem);
305 if (unlikely(frag->frag_dead))
306 goto out_free_buffer;
307
Al Viroff4dd082019-08-30 11:30:03 -0400308 error = -EINVAL;
Al Virob0841ee2019-08-31 09:43:43 +0200309 buffer->item = to_item(dentry->d_parent);
Al Viroff4dd082019-08-30 11:30:03 -0400310 if (!buffer->item)
311 goto out_free_buffer;
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300312
Al Viroff4dd082019-08-30 11:30:03 -0400313 attr = to_attr(dentry);
314 if (!attr)
Daiyue Zhang14fbbc82021-03-01 14:10:53 +0800315 goto out_free_buffer;
Al Viroff4dd082019-08-30 11:30:03 -0400316
317 if (type & CONFIGFS_ITEM_BIN_ATTR) {
318 buffer->bin_attr = to_bin_attr(dentry);
319 buffer->cb_max_size = buffer->bin_attr->cb_max_size;
320 } else {
321 buffer->attr = attr;
Joel Becker7063fbf2005-12-15 14:29:43 -0800322 }
323
Al Viroff4dd082019-08-30 11:30:03 -0400324 buffer->owner = attr->ca_owner;
325 /* Grab the module reference for this attribute if we have one */
326 error = -ENODEV;
327 if (!try_module_get(buffer->owner))
Daiyue Zhang14fbbc82021-03-01 14:10:53 +0800328 goto out_free_buffer;
Al Viroff4dd082019-08-30 11:30:03 -0400329
330 error = -EACCES;
331 if (!buffer->item->ci_type)
332 goto out_put_module;
333
334 buffer->ops = buffer->item->ci_type->ct_item_ops;
Joel Becker7063fbf2005-12-15 14:29:43 -0800335
336 /* File needs write support.
337 * The inode's perms must say it's ok,
338 * and we must have a store method.
339 */
340 if (file->f_mode & FMODE_WRITE) {
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300341 if (!(inode->i_mode & S_IWUGO))
Al Viroff4dd082019-08-30 11:30:03 -0400342 goto out_put_module;
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300343 if ((type & CONFIGFS_ITEM_ATTR) && !attr->store)
Al Viroff4dd082019-08-30 11:30:03 -0400344 goto out_put_module;
345 if ((type & CONFIGFS_ITEM_BIN_ATTR) && !buffer->bin_attr->write)
346 goto out_put_module;
Joel Becker7063fbf2005-12-15 14:29:43 -0800347 }
348
349 /* File needs read support.
350 * The inode's perms must say it's ok, and we there
351 * must be a show method for it.
352 */
353 if (file->f_mode & FMODE_READ) {
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300354 if (!(inode->i_mode & S_IRUGO))
Al Viroff4dd082019-08-30 11:30:03 -0400355 goto out_put_module;
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300356 if ((type & CONFIGFS_ITEM_ATTR) && !attr->show)
Al Viroff4dd082019-08-30 11:30:03 -0400357 goto out_put_module;
358 if ((type & CONFIGFS_ITEM_BIN_ATTR) && !buffer->bin_attr->read)
359 goto out_put_module;
Joel Becker7063fbf2005-12-15 14:29:43 -0800360 }
361
Johannes Berg6d748922007-06-22 11:20:00 +0200362 mutex_init(&buffer->mutex);
Chandra Seetharaman559c9ac2006-10-10 15:15:55 -0700363 buffer->needs_read_fill = 1;
Thomas Meyer3f6928c2017-10-07 16:02:21 +0200364 buffer->read_in_progress = false;
365 buffer->write_in_progress = false;
Chandra Seetharaman559c9ac2006-10-10 15:15:55 -0700366 file->private_data = buffer;
Al Virob0841ee2019-08-31 09:43:43 +0200367 up_read(&frag->frag_sem);
Al Viroff4dd082019-08-30 11:30:03 -0400368 return 0;
Joel Becker7063fbf2005-12-15 14:29:43 -0800369
Al Viroff4dd082019-08-30 11:30:03 -0400370out_put_module:
371 module_put(buffer->owner);
Al Viroff4dd082019-08-30 11:30:03 -0400372out_free_buffer:
Al Virob0841ee2019-08-31 09:43:43 +0200373 up_read(&frag->frag_sem);
Al Viroff4dd082019-08-30 11:30:03 -0400374 kfree(buffer);
375out:
Joel Becker7063fbf2005-12-15 14:29:43 -0800376 return error;
377}
378
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300379static int configfs_release(struct inode *inode, struct file *filp)
Joel Becker7063fbf2005-12-15 14:29:43 -0800380{
Al Viroff4dd082019-08-30 11:30:03 -0400381 struct configfs_buffer *buffer = filp->private_data;
Joel Becker7063fbf2005-12-15 14:29:43 -0800382
Al Viroff4dd082019-08-30 11:30:03 -0400383 module_put(buffer->owner);
384 if (buffer->page)
385 free_page((unsigned long)buffer->page);
386 mutex_destroy(&buffer->mutex);
387 kfree(buffer);
Joel Becker7063fbf2005-12-15 14:29:43 -0800388 return 0;
389}
390
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300391static int configfs_open_file(struct inode *inode, struct file *filp)
392{
Al Viroff4dd082019-08-30 11:30:03 -0400393 return __configfs_open_file(inode, filp, CONFIGFS_ITEM_ATTR);
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300394}
395
396static int configfs_open_bin_file(struct inode *inode, struct file *filp)
397{
Al Viroff4dd082019-08-30 11:30:03 -0400398 return __configfs_open_file(inode, filp, CONFIGFS_ITEM_BIN_ATTR);
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300399}
400
Al Viroff4dd082019-08-30 11:30:03 -0400401static int configfs_release_bin_file(struct inode *inode, struct file *file)
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300402{
Al Viroff4dd082019-08-30 11:30:03 -0400403 struct configfs_buffer *buffer = file->private_data;
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300404
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300405 if (buffer->write_in_progress) {
Al Virob0841ee2019-08-31 09:43:43 +0200406 struct configfs_fragment *frag = to_frag(file);
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300407
Al Virob0841ee2019-08-31 09:43:43 +0200408 down_read(&frag->frag_sem);
409 if (!frag->frag_dead) {
410 /* result of ->release() is ignored */
411 buffer->bin_attr->write(buffer->item,
412 buffer->bin_buffer,
413 buffer->bin_buffer_size);
414 }
415 up_read(&frag->frag_sem);
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300416 }
417
Chung-Chiang Cheng3c252b02021-06-18 15:59:25 +0800418 vfree(buffer->bin_buffer);
Chung-Chiang Cheng3c252b02021-06-18 15:59:25 +0800419
Al Viroff4dd082019-08-30 11:30:03 -0400420 configfs_release(inode, file);
421 return 0;
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300422}
423
424
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800425const struct file_operations configfs_file_operations = {
Bart Van Assche7fe1e792021-05-25 10:30:21 +0200426 .read_iter = configfs_read_iter,
427 .write_iter = configfs_write_iter,
Joel Becker7063fbf2005-12-15 14:29:43 -0800428 .llseek = generic_file_llseek,
429 .open = configfs_open_file,
430 .release = configfs_release,
431};
432
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300433const struct file_operations configfs_bin_file_operations = {
Bart Van Assche7fe1e792021-05-25 10:30:21 +0200434 .read_iter = configfs_bin_read_iter,
435 .write_iter = configfs_bin_write_iter,
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300436 .llseek = NULL, /* bin file is not seekable */
437 .open = configfs_open_bin_file,
438 .release = configfs_release_bin_file,
439};
440
Joel Becker7063fbf2005-12-15 14:29:43 -0800441/**
442 * configfs_create_file - create an attribute file for an item.
443 * @item: item we're creating for.
444 * @attr: atrribute descriptor.
445 */
446
447int configfs_create_file(struct config_item * item, const struct configfs_attribute * attr)
448{
Al Viro28444a22015-01-29 00:27:57 -0500449 struct dentry *dir = item->ci_dentry;
450 struct configfs_dirent *parent_sd = dir->d_fsdata;
451 umode_t mode = (attr->ca_mode & S_IALLUGO) | S_IFREG;
452 int error = 0;
Joel Becker7063fbf2005-12-15 14:29:43 -0800453
Al Viro59551022016-01-22 15:40:57 -0500454 inode_lock_nested(d_inode(dir), I_MUTEX_NORMAL);
Al Viro28444a22015-01-29 00:27:57 -0500455 error = configfs_make_dirent(parent_sd, NULL, (void *) attr, mode,
Al Viro47320fb2019-08-25 19:56:13 -0400456 CONFIGFS_ITEM_ATTR, parent_sd->s_frag);
Al Viro59551022016-01-22 15:40:57 -0500457 inode_unlock(d_inode(dir));
Al Viro28444a22015-01-29 00:27:57 -0500458
459 return error;
Joel Becker7063fbf2005-12-15 14:29:43 -0800460}
461
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300462/**
463 * configfs_create_bin_file - create a binary attribute file for an item.
464 * @item: item we're creating for.
Bart Van Asschedd33f1f2021-05-25 10:24:23 +0200465 * @bin_attr: atrribute descriptor.
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300466 */
467
468int configfs_create_bin_file(struct config_item *item,
469 const struct configfs_bin_attribute *bin_attr)
470{
471 struct dentry *dir = item->ci_dentry;
472 struct configfs_dirent *parent_sd = dir->d_fsdata;
473 umode_t mode = (bin_attr->cb_attr.ca_mode & S_IALLUGO) | S_IFREG;
474 int error = 0;
475
Al Viro59551022016-01-22 15:40:57 -0500476 inode_lock_nested(dir->d_inode, I_MUTEX_NORMAL);
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300477 error = configfs_make_dirent(parent_sd, NULL, (void *) bin_attr, mode,
Al Viro47320fb2019-08-25 19:56:13 -0400478 CONFIGFS_ITEM_BIN_ATTR, parent_sd->s_frag);
Al Viro59551022016-01-22 15:40:57 -0500479 inode_unlock(dir->d_inode);
Pantelis Antoniou03607ac2015-10-22 23:30:04 +0300480
481 return error;
482}