blob: f35523d4fa3a6d657260e7b04d5273db2dcd53b1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Tejun Heo6d66f5c2007-09-20 17:31:38 +09002 * fs/sysfs/file.c - sysfs regular (text) file implementation
3 *
4 * Copyright (c) 2001-3 Patrick Mochel
5 * Copyright (c) 2007 SUSE Linux Products GmbH
6 * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
7 *
8 * This file is released under the GPLv2.
9 *
10 * Please see Documentation/filesystems/sysfs.txt for more information.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
13#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kobject.h>
Andrew Morton815d2d52008-03-04 15:09:07 -080015#include <linux/kallsyms.h>
Robert P. J. Dayc6f87732008-03-13 22:41:52 -040016#include <linux/slab.h>
Oliver Neukum94bebf42006-12-20 10:52:44 +010017#include <linux/list.h>
Dave Young52e8c202007-07-26 11:03:54 +000018#include <linux/mutex.h>
Tejun Heo13c589d2013-10-01 17:42:02 -040019#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include "sysfs.h"
Tejun Heo414985a2013-11-28 14:54:34 -050022#include "../kernfs/kernfs-internal.h"
Tejun Heof6acf8b2013-11-28 14:54:21 -050023
24/*
Tejun Heo324a56e2013-12-11 14:11:53 -050025 * Determine ktype->sysfs_ops for the given kernfs_node. This function
Tejun Heo375b6112013-10-01 17:41:57 -040026 * must be called while holding an active reference.
27 */
Tejun Heo324a56e2013-12-11 14:11:53 -050028static const struct sysfs_ops *sysfs_file_ops(struct kernfs_node *kn)
Tejun Heo375b6112013-10-01 17:41:57 -040029{
Tejun Heoadc5e8b2013-12-11 14:11:54 -050030 struct kobject *kobj = kn->parent->priv;
Tejun Heo375b6112013-10-01 17:41:57 -040031
Tejun Heodf23fc32013-12-11 14:11:56 -050032 if (kn->flags & KERNFS_LOCKDEP)
Tejun Heo324a56e2013-12-11 14:11:53 -050033 lockdep_assert_held(kn);
Tejun Heo375b6112013-10-01 17:41:57 -040034 return kobj->ktype ? kobj->ktype->sysfs_ops : NULL;
35}
36
Tejun Heo13c589d2013-10-01 17:42:02 -040037/*
38 * Reads on sysfs are handled through seq_file, which takes care of hairy
39 * details like buffering and seeking. The following function pipes
40 * sysfs_ops->show() result through seq_file.
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 */
Tejun Heoc2b19da2013-11-28 14:54:16 -050042static int sysfs_kf_seq_show(struct seq_file *sf, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
Tejun Heoc525aad2013-12-11 14:11:55 -050044 struct kernfs_open_file *of = sf->private;
Tejun Heoadc5e8b2013-12-11 14:11:54 -050045 struct kobject *kobj = of->kn->parent->priv;
Tejun Heo324a56e2013-12-11 14:11:53 -050046 const struct sysfs_ops *ops = sysfs_file_ops(of->kn);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 ssize_t count;
Tejun Heoc2b19da2013-11-28 14:54:16 -050048 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Tejun Heof5c16f22014-05-19 15:52:10 -040050 /* acquire buffer and ensure that it's >= PAGE_SIZE and clear */
Tejun Heo13c589d2013-10-01 17:42:02 -040051 count = seq_get_buf(sf, &buf);
52 if (count < PAGE_SIZE) {
53 seq_commit(sf, -1);
54 return 0;
55 }
Tejun Heof5c16f22014-05-19 15:52:10 -040056 memset(buf, 0, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Tejun Heo13c589d2013-10-01 17:42:02 -040058 /*
Tejun Heoc2b19da2013-11-28 14:54:16 -050059 * Invoke show(). Control may reach here via seq file lseek even
60 * if @ops->show() isn't implemented.
Tejun Heo13c589d2013-10-01 17:42:02 -040061 */
Tejun Heoc2b19da2013-11-28 14:54:16 -050062 if (ops->show) {
Tejun Heo324a56e2013-12-11 14:11:53 -050063 count = ops->show(kobj, of->kn->priv, buf);
Tejun Heoc2b19da2013-11-28 14:54:16 -050064 if (count < 0)
65 return count;
66 }
Tejun Heo0ab66082007-06-14 03:45:16 +090067
Miao Xie8118a852007-11-21 14:55:19 -080068 /*
69 * The code works fine with PAGE_SIZE return but it's likely to
70 * indicate truncated result or overflow in normal use cases.
71 */
Andrew Morton815d2d52008-03-04 15:09:07 -080072 if (count >= (ssize_t)PAGE_SIZE) {
73 print_symbol("fill_read_buffer: %s returned bad count\n",
74 (unsigned long)ops->show);
75 /* Try to struggle along */
76 count = PAGE_SIZE - 1;
77 }
Tejun Heo13c589d2013-10-01 17:42:02 -040078 seq_commit(sf, count);
79 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080}
81
Tejun Heoc525aad2013-12-11 14:11:55 -050082static ssize_t sysfs_kf_bin_read(struct kernfs_open_file *of, char *buf,
Tejun Heoc2b19da2013-11-28 14:54:16 -050083 size_t count, loff_t pos)
Tejun Heo2f0c6b72013-10-01 17:42:06 -040084{
Tejun Heo324a56e2013-12-11 14:11:53 -050085 struct bin_attribute *battr = of->kn->priv;
Tejun Heoadc5e8b2013-12-11 14:11:54 -050086 struct kobject *kobj = of->kn->parent->priv;
Tejun Heoc2b19da2013-11-28 14:54:16 -050087 loff_t size = file_inode(of->file)->i_size;
Tejun Heo2f0c6b72013-10-01 17:42:06 -040088
Tejun Heoc2b19da2013-11-28 14:54:16 -050089 if (!count)
Tejun Heo2f0c6b72013-10-01 17:42:06 -040090 return 0;
91
92 if (size) {
Vladimir Zapolskiyeaa5cd92015-05-22 00:21:16 +030093 if (pos >= size)
Tejun Heo2f0c6b72013-10-01 17:42:06 -040094 return 0;
Tejun Heoc2b19da2013-11-28 14:54:16 -050095 if (pos + count > size)
96 count = size - pos;
Tejun Heo2f0c6b72013-10-01 17:42:06 -040097 }
98
Tejun Heoc2b19da2013-11-28 14:54:16 -050099 if (!battr->read)
100 return -EIO;
101
102 return battr->read(of->file, kobj, battr, buf, pos, count);
103}
104
NeilBrown4ef67a82014-10-14 16:57:26 +1100105/* kernfs read callback for regular sysfs files with pre-alloc */
106static ssize_t sysfs_kf_read(struct kernfs_open_file *of, char *buf,
107 size_t count, loff_t pos)
108{
109 const struct sysfs_ops *ops = sysfs_file_ops(of->kn);
110 struct kobject *kobj = of->kn->parent->priv;
NeilBrown65da3482015-08-06 08:27:55 +1000111 size_t len;
NeilBrown4ef67a82014-10-14 16:57:26 +1100112
113 /*
114 * If buf != of->prealloc_buf, we don't know how
115 * large it is, so cannot safely pass it to ->show
116 */
117 if (pos || WARN_ON_ONCE(buf != of->prealloc_buf))
118 return 0;
NeilBrown65da3482015-08-06 08:27:55 +1000119 len = ops->show(kobj, of->kn->priv, buf);
120 return min(count, len);
NeilBrown4ef67a82014-10-14 16:57:26 +1100121}
122
Tejun Heo50b38ca2013-11-28 14:54:17 -0500123/* kernfs write callback for regular sysfs files */
Tejun Heoc525aad2013-12-11 14:11:55 -0500124static ssize_t sysfs_kf_write(struct kernfs_open_file *of, char *buf,
Tejun Heo50b38ca2013-11-28 14:54:17 -0500125 size_t count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
Tejun Heo324a56e2013-12-11 14:11:53 -0500127 const struct sysfs_ops *ops = sysfs_file_ops(of->kn);
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500128 struct kobject *kobj = of->kn->parent->priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Tejun Heo50b38ca2013-11-28 14:54:17 -0500130 if (!count)
131 return 0;
132
Tejun Heo324a56e2013-12-11 14:11:53 -0500133 return ops->store(kobj, of->kn->priv, buf, count);
Tejun Heo50b38ca2013-11-28 14:54:17 -0500134}
135
136/* kernfs write callback for bin sysfs files */
Tejun Heoc525aad2013-12-11 14:11:55 -0500137static ssize_t sysfs_kf_bin_write(struct kernfs_open_file *of, char *buf,
Tejun Heo50b38ca2013-11-28 14:54:17 -0500138 size_t count, loff_t pos)
139{
Tejun Heo324a56e2013-12-11 14:11:53 -0500140 struct bin_attribute *battr = of->kn->priv;
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500141 struct kobject *kobj = of->kn->parent->priv;
Tejun Heo50b38ca2013-11-28 14:54:17 -0500142 loff_t size = file_inode(of->file)->i_size;
143
144 if (size) {
145 if (size <= pos)
Vladimir Zapolskiy09368962014-09-24 18:21:04 +0300146 return -EFBIG;
Tejun Heo50b38ca2013-11-28 14:54:17 -0500147 count = min_t(ssize_t, count, size - pos);
Tejun Heo8ef445f2013-10-01 17:42:01 -0400148 }
Tejun Heo50b38ca2013-11-28 14:54:17 -0500149 if (!count)
150 return 0;
Tejun Heo0ab66082007-06-14 03:45:16 +0900151
Tejun Heo50b38ca2013-11-28 14:54:17 -0500152 if (!battr->write)
153 return -EIO;
Tejun Heof9b9a622013-10-01 17:42:05 -0400154
Tejun Heo50b38ca2013-11-28 14:54:17 -0500155 return battr->write(of->file, kobj, battr, buf, pos, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
Tejun Heoc525aad2013-12-11 14:11:55 -0500158static int sysfs_kf_bin_mmap(struct kernfs_open_file *of,
Tejun Heofdbffaa2013-11-28 14:54:18 -0500159 struct vm_area_struct *vma)
160{
Tejun Heo324a56e2013-12-11 14:11:53 -0500161 struct bin_attribute *battr = of->kn->priv;
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500162 struct kobject *kobj = of->kn->parent->priv;
Tejun Heofdbffaa2013-11-28 14:54:18 -0500163
Tejun Heofdbffaa2013-11-28 14:54:18 -0500164 return battr->mmap(of->file, kobj, battr, vma);
165}
166
Tejun Heo324a56e2013-12-11 14:11:53 -0500167void sysfs_notify(struct kobject *kobj, const char *dir, const char *attr)
NeilBrown4508a7a2006-03-20 17:53:53 +1100168{
Tejun Heo324a56e2013-12-11 14:11:53 -0500169 struct kernfs_node *kn = kobj->sd, *tmp;
NeilBrown4508a7a2006-03-20 17:53:53 +1100170
Tejun Heo324a56e2013-12-11 14:11:53 -0500171 if (kn && dir)
172 kn = kernfs_find_and_get(kn, dir);
Tejun Heo024f6472013-11-28 14:54:27 -0500173 else
Tejun Heo324a56e2013-12-11 14:11:53 -0500174 kernfs_get(kn);
Tejun Heo51225032007-06-14 04:27:25 +0900175
Tejun Heo324a56e2013-12-11 14:11:53 -0500176 if (kn && attr) {
177 tmp = kernfs_find_and_get(kn, attr);
178 kernfs_put(kn);
179 kn = tmp;
Tejun Heo024f6472013-11-28 14:54:27 -0500180 }
181
Tejun Heo324a56e2013-12-11 14:11:53 -0500182 if (kn) {
183 kernfs_notify(kn);
184 kernfs_put(kn);
Tejun Heo024f6472013-11-28 14:54:27 -0500185 }
NeilBrown4508a7a2006-03-20 17:53:53 +1100186}
187EXPORT_SYMBOL_GPL(sysfs_notify);
188
Tejun Heof6acf8b2013-11-28 14:54:21 -0500189static const struct kernfs_ops sysfs_file_kfops_empty = {
190};
191
192static const struct kernfs_ops sysfs_file_kfops_ro = {
193 .seq_show = sysfs_kf_seq_show,
194};
195
196static const struct kernfs_ops sysfs_file_kfops_wo = {
197 .write = sysfs_kf_write,
198};
199
200static const struct kernfs_ops sysfs_file_kfops_rw = {
201 .seq_show = sysfs_kf_seq_show,
202 .write = sysfs_kf_write,
203};
204
NeilBrown4ef67a82014-10-14 16:57:26 +1100205static const struct kernfs_ops sysfs_prealloc_kfops_ro = {
206 .read = sysfs_kf_read,
207 .prealloc = true,
208};
209
NeilBrown2b758692014-10-13 16:41:28 +1100210static const struct kernfs_ops sysfs_prealloc_kfops_wo = {
211 .write = sysfs_kf_write,
212 .prealloc = true,
213};
214
215static const struct kernfs_ops sysfs_prealloc_kfops_rw = {
NeilBrown4ef67a82014-10-14 16:57:26 +1100216 .read = sysfs_kf_read,
NeilBrown2b758692014-10-13 16:41:28 +1100217 .write = sysfs_kf_write,
218 .prealloc = true,
219};
220
Tejun Heof6acf8b2013-11-28 14:54:21 -0500221static const struct kernfs_ops sysfs_bin_kfops_ro = {
222 .read = sysfs_kf_bin_read,
223};
224
225static const struct kernfs_ops sysfs_bin_kfops_wo = {
226 .write = sysfs_kf_bin_write,
227};
228
229static const struct kernfs_ops sysfs_bin_kfops_rw = {
230 .read = sysfs_kf_bin_read,
231 .write = sysfs_kf_bin_write,
Tejun Heo9b2db6e2013-12-10 09:29:17 -0500232};
233
234static const struct kernfs_ops sysfs_bin_kfops_mmap = {
235 .read = sysfs_kf_bin_read,
236 .write = sysfs_kf_bin_write,
Tejun Heof6acf8b2013-11-28 14:54:21 -0500237 .mmap = sysfs_kf_bin_mmap,
238};
239
Tejun Heo324a56e2013-12-11 14:11:53 -0500240int sysfs_add_file_mode_ns(struct kernfs_node *parent,
Tejun Heoa7dc66d2013-11-28 14:54:23 -0500241 const struct attribute *attr, bool is_bin,
Tejun Heo496f7392013-11-28 14:54:24 -0500242 umode_t mode, const void *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
Tejun Heo517e64f2013-11-28 14:54:29 -0500244 struct lock_class_key *key = NULL;
Tejun Heof6acf8b2013-11-28 14:54:21 -0500245 const struct kernfs_ops *ops;
Tejun Heo324a56e2013-12-11 14:11:53 -0500246 struct kernfs_node *kn;
Tejun Heo471bd7b2013-11-28 14:54:22 -0500247 loff_t size;
Tejun Heoa26cd722007-06-14 03:45:14 +0900248
Tejun Heoa7dc66d2013-11-28 14:54:23 -0500249 if (!is_bin) {
Tejun Heo324a56e2013-12-11 14:11:53 -0500250 struct kobject *kobj = parent->priv;
Tejun Heof6acf8b2013-11-28 14:54:21 -0500251 const struct sysfs_ops *sysfs_ops = kobj->ktype->sysfs_ops;
252
253 /* every kobject with an attribute needs a ktype assigned */
254 if (WARN(!sysfs_ops, KERN_ERR
255 "missing sysfs attribute operations for kobject: %s\n",
256 kobject_name(kobj)))
257 return -EINVAL;
258
NeilBrown2b758692014-10-13 16:41:28 +1100259 if (sysfs_ops->show && sysfs_ops->store) {
260 if (mode & SYSFS_PREALLOC)
261 ops = &sysfs_prealloc_kfops_rw;
262 else
263 ops = &sysfs_file_kfops_rw;
NeilBrown4ef67a82014-10-14 16:57:26 +1100264 } else if (sysfs_ops->show) {
265 if (mode & SYSFS_PREALLOC)
266 ops = &sysfs_prealloc_kfops_ro;
267 else
268 ops = &sysfs_file_kfops_ro;
269 } else if (sysfs_ops->store) {
NeilBrown2b758692014-10-13 16:41:28 +1100270 if (mode & SYSFS_PREALLOC)
271 ops = &sysfs_prealloc_kfops_wo;
272 else
273 ops = &sysfs_file_kfops_wo;
274 } else
Tejun Heof6acf8b2013-11-28 14:54:21 -0500275 ops = &sysfs_file_kfops_empty;
Tejun Heo471bd7b2013-11-28 14:54:22 -0500276
277 size = PAGE_SIZE;
Tejun Heof6acf8b2013-11-28 14:54:21 -0500278 } else {
279 struct bin_attribute *battr = (void *)attr;
280
Tejun Heo9b2db6e2013-12-10 09:29:17 -0500281 if (battr->mmap)
282 ops = &sysfs_bin_kfops_mmap;
283 else if (battr->read && battr->write)
Tejun Heof6acf8b2013-11-28 14:54:21 -0500284 ops = &sysfs_bin_kfops_rw;
285 else if (battr->read)
286 ops = &sysfs_bin_kfops_ro;
287 else if (battr->write)
288 ops = &sysfs_bin_kfops_wo;
289 else
290 ops = &sysfs_file_kfops_empty;
Tejun Heo471bd7b2013-11-28 14:54:22 -0500291
292 size = battr->size;
Tejun Heof6acf8b2013-11-28 14:54:21 -0500293 }
294
Tejun Heo517e64f2013-11-28 14:54:29 -0500295#ifdef CONFIG_DEBUG_LOCK_ALLOC
296 if (!attr->ignore_lockdep)
297 key = attr->key ?: (struct lock_class_key *)&attr->skey;
298#endif
NeilBrown2b758692014-10-13 16:41:28 +1100299 kn = __kernfs_create_file(parent, attr->name, mode & 0777, size, ops,
Tejun Heodfeb07502015-02-13 14:36:31 -0800300 (void *)attr, ns, key);
Tejun Heo324a56e2013-12-11 14:11:53 -0500301 if (IS_ERR(kn)) {
302 if (PTR_ERR(kn) == -EEXIST)
303 sysfs_warn_dup(parent, attr->name);
304 return PTR_ERR(kn);
Tejun Heo496f7392013-11-28 14:54:24 -0500305 }
306 return 0;
307}
308
Tejun Heo324a56e2013-12-11 14:11:53 -0500309int sysfs_add_file(struct kernfs_node *parent, const struct attribute *attr,
Tejun Heoa7dc66d2013-11-28 14:54:23 -0500310 bool is_bin)
James Bottomley0f423892008-03-20 20:47:52 -0500311{
Tejun Heo324a56e2013-12-11 14:11:53 -0500312 return sysfs_add_file_mode_ns(parent, attr, is_bin, attr->mode, NULL);
James Bottomley0f423892008-03-20 20:47:52 -0500313}
314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315/**
Tejun Heo58292cbe2013-09-11 22:29:04 -0400316 * sysfs_create_file_ns - create an attribute file for an object with custom ns
317 * @kobj: object we're creating for
318 * @attr: attribute descriptor
319 * @ns: namespace the new file should belong to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 */
Tejun Heo58292cbe2013-09-11 22:29:04 -0400321int sysfs_create_file_ns(struct kobject *kobj, const struct attribute *attr,
322 const void *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
Tejun Heo608e2662007-06-14 04:27:22 +0900324 BUG_ON(!kobj || !kobj->sd || !attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Tejun Heoa7dc66d2013-11-28 14:54:23 -0500326 return sysfs_add_file_mode_ns(kobj->sd, attr, false, attr->mode, ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328}
Tejun Heo58292cbe2013-09-11 22:29:04 -0400329EXPORT_SYMBOL_GPL(sysfs_create_file_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Andi Kleen1c205ae2010-01-05 12:48:01 +0100331int sysfs_create_files(struct kobject *kobj, const struct attribute **ptr)
332{
333 int err = 0;
334 int i;
335
336 for (i = 0; ptr[i] && !err; i++)
337 err = sysfs_create_file(kobj, ptr[i]);
338 if (err)
339 while (--i >= 0)
340 sysfs_remove_file(kobj, ptr[i]);
341 return err;
342}
Greg Kroah-Hartman1b866752013-08-21 16:17:47 -0700343EXPORT_SYMBOL_GPL(sysfs_create_files);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345/**
Alan Sterndfa87c82007-02-20 15:02:44 -0500346 * sysfs_add_file_to_group - add an attribute file to a pre-existing group.
347 * @kobj: object we're acting for.
348 * @attr: attribute descriptor.
349 * @group: group name.
350 */
351int sysfs_add_file_to_group(struct kobject *kobj,
352 const struct attribute *attr, const char *group)
353{
Tejun Heo324a56e2013-12-11 14:11:53 -0500354 struct kernfs_node *parent;
Alan Sterndfa87c82007-02-20 15:02:44 -0500355 int error;
356
Tejun Heoccf73cf2013-11-28 14:54:30 -0500357 if (group) {
Tejun Heo324a56e2013-12-11 14:11:53 -0500358 parent = kernfs_find_and_get(kobj->sd, group);
Tejun Heoccf73cf2013-11-28 14:54:30 -0500359 } else {
Tejun Heo324a56e2013-12-11 14:11:53 -0500360 parent = kobj->sd;
361 kernfs_get(parent);
Tejun Heoccf73cf2013-11-28 14:54:30 -0500362 }
James Bottomley11f24fb2008-01-02 18:44:05 -0600363
Tejun Heo324a56e2013-12-11 14:11:53 -0500364 if (!parent)
Tejun Heo608e2662007-06-14 04:27:22 +0900365 return -ENOENT;
366
Tejun Heo324a56e2013-12-11 14:11:53 -0500367 error = sysfs_add_file(parent, attr, false);
368 kernfs_put(parent);
Tejun Heo608e2662007-06-14 04:27:22 +0900369
Alan Sterndfa87c82007-02-20 15:02:44 -0500370 return error;
371}
372EXPORT_SYMBOL_GPL(sysfs_add_file_to_group);
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374/**
Kay Sievers31e5abe2005-04-18 21:57:32 -0700375 * sysfs_chmod_file - update the modified mode value on an object attribute.
376 * @kobj: object we're acting for.
377 * @attr: attribute descriptor.
378 * @mode: file permissions.
379 *
380 */
Jean Delvare49c19402010-07-02 16:54:05 +0200381int sysfs_chmod_file(struct kobject *kobj, const struct attribute *attr,
Al Viro48176a92011-07-24 03:40:40 -0400382 umode_t mode)
Kay Sievers31e5abe2005-04-18 21:57:32 -0700383{
Tejun Heo324a56e2013-12-11 14:11:53 -0500384 struct kernfs_node *kn;
Maneesh Sonibc062b12005-07-29 12:13:35 -0700385 struct iattr newattrs;
Tejun Heo51225032007-06-14 04:27:25 +0900386 int rc;
Kay Sievers31e5abe2005-04-18 21:57:32 -0700387
Tejun Heo324a56e2013-12-11 14:11:53 -0500388 kn = kernfs_find_and_get(kobj->sd, attr->name);
389 if (!kn)
Tejun Heo5d604182013-11-23 17:21:52 -0500390 return -ENOENT;
Tejun Heo51225032007-06-14 04:27:25 +0900391
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500392 newattrs.ia_mode = (mode & S_IALLUGO) | (kn->mode & ~S_IALLUGO);
Eric W. Biederman4c6974f2009-11-07 23:27:02 -0800393 newattrs.ia_valid = ATTR_MODE;
Tejun Heof88123e2007-09-20 16:05:10 +0900394
Tejun Heo324a56e2013-12-11 14:11:53 -0500395 rc = kernfs_setattr(kn, &newattrs);
Tejun Heo5d604182013-11-23 17:21:52 -0500396
Tejun Heo324a56e2013-12-11 14:11:53 -0500397 kernfs_put(kn);
Tejun Heo51225032007-06-14 04:27:25 +0900398 return rc;
Kay Sievers31e5abe2005-04-18 21:57:32 -0700399}
400EXPORT_SYMBOL_GPL(sysfs_chmod_file);
401
Kay Sievers31e5abe2005-04-18 21:57:32 -0700402/**
Tejun Heo58292cbe2013-09-11 22:29:04 -0400403 * sysfs_remove_file_ns - remove an object attribute with a custom ns tag
404 * @kobj: object we're acting for
405 * @attr: attribute descriptor
406 * @ns: namespace tag of the file to remove
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 *
Tejun Heo58292cbe2013-09-11 22:29:04 -0400408 * Hash the attribute name and namespace tag and kill the victim.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 */
Tejun Heo58292cbe2013-09-11 22:29:04 -0400410void sysfs_remove_file_ns(struct kobject *kobj, const struct attribute *attr,
411 const void *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
Tejun Heo324a56e2013-12-11 14:11:53 -0500413 struct kernfs_node *parent = kobj->sd;
Eric W. Biederman487505c2011-10-12 21:53:38 +0000414
Tejun Heo324a56e2013-12-11 14:11:53 -0500415 kernfs_remove_by_name_ns(parent, attr->name, ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
Tejun Heo58292cbe2013-09-11 22:29:04 -0400417EXPORT_SYMBOL_GPL(sysfs_remove_file_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Tejun Heo6b0afc22014-02-03 14:03:01 -0500419/**
420 * sysfs_remove_file_self - remove an object attribute from its own method
421 * @kobj: object we're acting for
422 * @attr: attribute descriptor
423 *
424 * See kernfs_remove_self() for details.
425 */
426bool sysfs_remove_file_self(struct kobject *kobj, const struct attribute *attr)
427{
428 struct kernfs_node *parent = kobj->sd;
429 struct kernfs_node *kn;
430 bool ret;
431
432 kn = kernfs_find_and_get(parent, attr->name);
433 if (WARN_ON_ONCE(!kn))
434 return false;
435
436 ret = kernfs_remove_self(kn);
437
438 kernfs_put(kn);
439 return ret;
440}
441
Greg Kroah-Hartman1b18dc22013-08-21 16:28:26 -0700442void sysfs_remove_files(struct kobject *kobj, const struct attribute **ptr)
Andi Kleen1c205ae2010-01-05 12:48:01 +0100443{
444 int i;
445 for (i = 0; ptr[i]; i++)
446 sysfs_remove_file(kobj, ptr[i]);
447}
Greg Kroah-Hartman1b866752013-08-21 16:17:47 -0700448EXPORT_SYMBOL_GPL(sysfs_remove_files);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Alan Sterndfa87c82007-02-20 15:02:44 -0500450/**
451 * sysfs_remove_file_from_group - remove an attribute file from a group.
452 * @kobj: object we're acting for.
453 * @attr: attribute descriptor.
454 * @group: group name.
455 */
456void sysfs_remove_file_from_group(struct kobject *kobj,
457 const struct attribute *attr, const char *group)
458{
Tejun Heo324a56e2013-12-11 14:11:53 -0500459 struct kernfs_node *parent;
Alan Sterndfa87c82007-02-20 15:02:44 -0500460
Tejun Heoccf73cf2013-11-28 14:54:30 -0500461 if (group) {
Tejun Heo324a56e2013-12-11 14:11:53 -0500462 parent = kernfs_find_and_get(kobj->sd, group);
Tejun Heoccf73cf2013-11-28 14:54:30 -0500463 } else {
Tejun Heo324a56e2013-12-11 14:11:53 -0500464 parent = kobj->sd;
465 kernfs_get(parent);
Tejun Heoccf73cf2013-11-28 14:54:30 -0500466 }
467
Tejun Heo324a56e2013-12-11 14:11:53 -0500468 if (parent) {
469 kernfs_remove_by_name(parent, attr->name);
470 kernfs_put(parent);
Alan Sterndfa87c82007-02-20 15:02:44 -0500471 }
472}
473EXPORT_SYMBOL_GPL(sysfs_remove_file_from_group);
474
Tejun Heo3124eb12013-10-01 17:42:09 -0400475/**
476 * sysfs_create_bin_file - create binary file for object.
477 * @kobj: object.
478 * @attr: attribute descriptor.
479 */
480int sysfs_create_bin_file(struct kobject *kobj,
481 const struct bin_attribute *attr)
482{
483 BUG_ON(!kobj || !kobj->sd || !attr);
484
Tejun Heoa7dc66d2013-11-28 14:54:23 -0500485 return sysfs_add_file(kobj->sd, &attr->attr, true);
Tejun Heo3124eb12013-10-01 17:42:09 -0400486}
487EXPORT_SYMBOL_GPL(sysfs_create_bin_file);
488
489/**
490 * sysfs_remove_bin_file - remove binary file for object.
491 * @kobj: object.
492 * @attr: attribute descriptor.
493 */
494void sysfs_remove_bin_file(struct kobject *kobj,
495 const struct bin_attribute *attr)
496{
Tejun Heo879f40d2013-11-23 17:21:49 -0500497 kernfs_remove_by_name(kobj->sd, attr->attr.name);
Tejun Heo3124eb12013-10-01 17:42:09 -0400498}
499EXPORT_SYMBOL_GPL(sysfs_remove_bin_file);