blob: 58eba92a0e41fed0d5da68345be1c452815afb09 [file] [log] [blame]
Greg Kroah-Hartman619daee2018-01-22 16:18:13 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Tejun Heo6d66f5c2007-09-20 17:31:38 +09003 * fs/sysfs/dir.c - sysfs core and dir operation implementation
4 *
5 * Copyright (c) 2001-3 Patrick Mochel
6 * Copyright (c) 2007 SUSE Linux Products GmbH
7 * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
8 *
Tejun Heo6d66f5c2007-09-20 17:31:38 +09009 * Please see Documentation/filesystems/sysfs.txt for more information.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
Greg Kroah-Hartman5d54f942018-01-22 15:57:59 +010012#define pr_fmt(fmt) "sysfs: " fmt
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/kobject.h>
Robert P. J. Dayc6f87732008-03-13 22:41:52 -040016#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include "sysfs.h"
18
Tejun Heo0cae60f2013-10-30 10:28:36 -040019DEFINE_SPINLOCK(sysfs_symlink_target_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Tejun Heo324a56e2013-12-11 14:11:53 -050021void sysfs_warn_dup(struct kernfs_node *parent, const char *name)
Tejun Heod1c14592013-10-24 11:49:11 -040022{
Tejun Heo3abb1d92016-08-10 11:23:44 -040023 char *buf;
Tejun Heod1c14592013-10-24 11:49:11 -040024
Tejun Heo3eef34a2014-02-07 13:32:07 -050025 buf = kzalloc(PATH_MAX, GFP_KERNEL);
26 if (buf)
Tejun Heo3abb1d92016-08-10 11:23:44 -040027 kernfs_path(parent, buf, PATH_MAX);
Tejun Heod1c14592013-10-24 11:49:11 -040028
Greg Kroah-Hartman5d54f942018-01-22 15:57:59 +010029 pr_warn("cannot create duplicate filename '%s/%s'\n", buf, name);
30 dump_stack();
Tejun Heod1c14592013-10-24 11:49:11 -040031
Tejun Heo3eef34a2014-02-07 13:32:07 -050032 kfree(buf);
Tejun Heod1c14592013-10-24 11:49:11 -040033}
34
Alex Chiang425cb022009-02-12 10:56:59 -070035/**
Tejun Heoe34ff492013-09-11 22:29:05 -040036 * sysfs_create_dir_ns - create a directory for an object with a namespace tag
37 * @kobj: object we're creating directory for
38 * @ns: the namespace tag to use
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 */
Tejun Heoe34ff492013-09-11 22:29:05 -040040int sysfs_create_dir_ns(struct kobject *kobj, const void *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
Tejun Heo324a56e2013-12-11 14:11:53 -050042 struct kernfs_node *parent, *kn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44 BUG_ON(!kobj);
45
Eric W. Biederman90bc6132007-07-31 19:15:08 +090046 if (kobj->parent)
Tejun Heo324a56e2013-12-11 14:11:53 -050047 parent = kobj->parent->sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 else
Tejun Heo324a56e2013-12-11 14:11:53 -050049 parent = sysfs_root_kn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Tejun Heo324a56e2013-12-11 14:11:53 -050051 if (!parent)
Dan Williams3a198882012-04-06 13:41:06 -070052 return -ENOENT;
53
Tejun Heobb8b9d02013-12-11 16:02:55 -050054 kn = kernfs_create_dir_ns(parent, kobject_name(kobj),
55 S_IRWXU | S_IRUGO | S_IXUGO, kobj, ns);
Tejun Heo324a56e2013-12-11 14:11:53 -050056 if (IS_ERR(kn)) {
57 if (PTR_ERR(kn) == -EEXIST)
58 sysfs_warn_dup(parent, kobject_name(kobj));
59 return PTR_ERR(kn);
Tejun Heo93b2b8e2013-11-28 14:54:15 -050060 }
61
Tejun Heo324a56e2013-12-11 14:11:53 -050062 kobj->sd = kn;
Tejun Heo93b2b8e2013-11-28 14:54:15 -050063 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064}
65
Tejun Heo7eed6ec2013-10-24 11:49:10 -040066/**
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -070067 * sysfs_remove_dir - remove an object's directory.
68 * @kobj: object.
69 *
70 * The only thing special about this is that we remove any files in
71 * the directory before we remove the directory, and we've inlined
72 * what used to be sysfs_rmdir() below, instead of calling separately.
73 */
Greg Kroah-Hartman1b18dc22013-08-21 16:28:26 -070074void sysfs_remove_dir(struct kobject *kobj)
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -070075{
Tejun Heo324a56e2013-12-11 14:11:53 -050076 struct kernfs_node *kn = kobj->sd;
Tejun Heoaecdced2007-06-14 03:45:15 +090077
Tejun Heo0cae60f2013-10-30 10:28:36 -040078 /*
79 * In general, kboject owner is responsible for ensuring removal
80 * doesn't race with other operations and sysfs doesn't provide any
81 * protection; however, when @kobj is used as a symlink target, the
82 * symlinking entity usually doesn't own @kobj and thus has no
Tejun Heo324a56e2013-12-11 14:11:53 -050083 * control over removal. @kobj->sd may be removed anytime
84 * and symlink code may end up dereferencing an already freed node.
Tejun Heo0cae60f2013-10-30 10:28:36 -040085 *
Tejun Heo324a56e2013-12-11 14:11:53 -050086 * sysfs_symlink_target_lock synchronizes @kobj->sd
87 * disassociation against symlink operations so that symlink code
88 * can safely dereference @kobj->sd.
Tejun Heo0cae60f2013-10-30 10:28:36 -040089 */
90 spin_lock(&sysfs_symlink_target_lock);
Tejun Heo608e2662007-06-14 04:27:22 +090091 kobj->sd = NULL;
Tejun Heo0cae60f2013-10-30 10:28:36 -040092 spin_unlock(&sysfs_symlink_target_lock);
Tejun Heoaecdced2007-06-14 03:45:15 +090093
Tejun Heo324a56e2013-12-11 14:11:53 -050094 if (kn) {
Tejun Heodf23fc32013-12-11 14:11:56 -050095 WARN_ON_ONCE(kernfs_type(kn) != KERNFS_DIR);
Tejun Heo324a56e2013-12-11 14:11:53 -050096 kernfs_remove(kn);
Tejun Heo250f7c32013-09-18 17:15:38 -040097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
Tejun Heoe34ff492013-09-11 22:29:05 -0400100int sysfs_rename_dir_ns(struct kobject *kobj, const char *new_name,
101 const void *new_ns)
Eric W. Biedermanca1bab32009-11-20 16:08:57 -0800102{
Tejun Heo3eef34a2014-02-07 13:32:07 -0500103 struct kernfs_node *parent;
104 int ret;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700105
Tejun Heo3eef34a2014-02-07 13:32:07 -0500106 parent = kernfs_get_parent(kobj->sd);
107 ret = kernfs_rename_ns(kobj->sd, parent, new_name, new_ns);
108 kernfs_put(parent);
109 return ret;
Eric W. Biedermanca1bab32009-11-20 16:08:57 -0800110}
111
Tejun Heoe34ff492013-09-11 22:29:05 -0400112int sysfs_move_dir_ns(struct kobject *kobj, struct kobject *new_parent_kobj,
113 const void *new_ns)
Cornelia Huck8a824722006-11-20 17:07:51 +0100114{
Tejun Heo324a56e2013-12-11 14:11:53 -0500115 struct kernfs_node *kn = kobj->sd;
116 struct kernfs_node *new_parent;
Cornelia Huck8a824722006-11-20 17:07:51 +0100117
Tejun Heo324a56e2013-12-11 14:11:53 -0500118 new_parent = new_parent_kobj && new_parent_kobj->sd ?
119 new_parent_kobj->sd : sysfs_root_kn;
Cornelia Huck8a824722006-11-20 17:07:51 +0100120
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500121 return kernfs_rename_ns(kn, new_parent, kn->name, new_ns);
Cornelia Huck8a824722006-11-20 17:07:51 +0100122}
Eric W. Biederman87d28462015-05-13 16:31:40 -0500123
124/**
125 * sysfs_create_mount_point - create an always empty directory
126 * @parent_kobj: kobject that will contain this always empty directory
127 * @name: The name of the always empty directory to add
128 */
129int sysfs_create_mount_point(struct kobject *parent_kobj, const char *name)
130{
131 struct kernfs_node *kn, *parent = parent_kobj->sd;
132
133 kn = kernfs_create_empty_dir(parent, name);
134 if (IS_ERR(kn)) {
135 if (PTR_ERR(kn) == -EEXIST)
136 sysfs_warn_dup(parent, name);
137 return PTR_ERR(kn);
138 }
139
140 return 0;
141}
142EXPORT_SYMBOL_GPL(sysfs_create_mount_point);
143
144/**
145 * sysfs_remove_mount_point - remove an always empty directory.
146 * @parent_kobj: kobject that will contain this always empty directory
147 * @name: The name of the always empty directory to remove
148 *
149 */
150void sysfs_remove_mount_point(struct kobject *parent_kobj, const char *name)
151{
152 struct kernfs_node *parent = parent_kobj->sd;
153
154 kernfs_remove_by_name_ns(parent, name, NULL);
155}
156EXPORT_SYMBOL_GPL(sysfs_remove_mount_point);