blob: 59dffd5ca51781331a89e33e355bf7e3af160fc0 [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 *
Mauro Carvalho Chehab0c1bc6b2020-04-14 18:48:37 +02009 * Please see Documentation/filesystems/sysfs.rst 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;
Dmitry Torokhov5f818802018-07-20 21:56:48 +000043 kuid_t uid;
44 kgid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Greg Kroah-Hartmande96e9f2019-01-03 10:23:47 +010046 if (WARN_ON(!kobj))
47 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Eric W. Biederman90bc6132007-07-31 19:15:08 +090049 if (kobj->parent)
Tejun Heo324a56e2013-12-11 14:11:53 -050050 parent = kobj->parent->sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 else
Tejun Heo324a56e2013-12-11 14:11:53 -050052 parent = sysfs_root_kn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Tejun Heo324a56e2013-12-11 14:11:53 -050054 if (!parent)
Dan Williams3a198882012-04-06 13:41:06 -070055 return -ENOENT;
56
Dmitry Torokhov5f818802018-07-20 21:56:48 +000057 kobject_get_ownership(kobj, &uid, &gid);
58
Tejun Heobb8b9d02013-12-11 16:02:55 -050059 kn = kernfs_create_dir_ns(parent, kobject_name(kobj),
Dmitry Torokhov5f818802018-07-20 21:56:48 +000060 S_IRWXU | S_IRUGO | S_IXUGO, uid, gid,
Dmitry Torokhov488dee92018-07-20 21:56:47 +000061 kobj, ns);
Tejun Heo324a56e2013-12-11 14:11:53 -050062 if (IS_ERR(kn)) {
63 if (PTR_ERR(kn) == -EEXIST)
64 sysfs_warn_dup(parent, kobject_name(kobj));
65 return PTR_ERR(kn);
Tejun Heo93b2b8e2013-11-28 14:54:15 -050066 }
67
Tejun Heo324a56e2013-12-11 14:11:53 -050068 kobj->sd = kn;
Tejun Heo93b2b8e2013-11-28 14:54:15 -050069 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070}
71
Tejun Heo7eed6ec2013-10-24 11:49:10 -040072/**
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -070073 * sysfs_remove_dir - remove an object's directory.
74 * @kobj: object.
75 *
76 * The only thing special about this is that we remove any files in
77 * the directory before we remove the directory, and we've inlined
78 * what used to be sysfs_rmdir() below, instead of calling separately.
79 */
Greg Kroah-Hartman1b18dc22013-08-21 16:28:26 -070080void sysfs_remove_dir(struct kobject *kobj)
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -070081{
Tejun Heo324a56e2013-12-11 14:11:53 -050082 struct kernfs_node *kn = kobj->sd;
Tejun Heoaecdced2007-06-14 03:45:15 +090083
Tejun Heo0cae60f2013-10-30 10:28:36 -040084 /*
85 * In general, kboject owner is responsible for ensuring removal
86 * doesn't race with other operations and sysfs doesn't provide any
87 * protection; however, when @kobj is used as a symlink target, the
88 * symlinking entity usually doesn't own @kobj and thus has no
Tejun Heo324a56e2013-12-11 14:11:53 -050089 * control over removal. @kobj->sd may be removed anytime
90 * and symlink code may end up dereferencing an already freed node.
Tejun Heo0cae60f2013-10-30 10:28:36 -040091 *
Tejun Heo324a56e2013-12-11 14:11:53 -050092 * sysfs_symlink_target_lock synchronizes @kobj->sd
93 * disassociation against symlink operations so that symlink code
94 * can safely dereference @kobj->sd.
Tejun Heo0cae60f2013-10-30 10:28:36 -040095 */
96 spin_lock(&sysfs_symlink_target_lock);
Tejun Heo608e2662007-06-14 04:27:22 +090097 kobj->sd = NULL;
Tejun Heo0cae60f2013-10-30 10:28:36 -040098 spin_unlock(&sysfs_symlink_target_lock);
Tejun Heoaecdced2007-06-14 03:45:15 +090099
Tejun Heo324a56e2013-12-11 14:11:53 -0500100 if (kn) {
Tejun Heodf23fc32013-12-11 14:11:56 -0500101 WARN_ON_ONCE(kernfs_type(kn) != KERNFS_DIR);
Tejun Heo324a56e2013-12-11 14:11:53 -0500102 kernfs_remove(kn);
Tejun Heo250f7c32013-09-18 17:15:38 -0400103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Tejun Heoe34ff492013-09-11 22:29:05 -0400106int sysfs_rename_dir_ns(struct kobject *kobj, const char *new_name,
107 const void *new_ns)
Eric W. Biedermanca1bab32009-11-20 16:08:57 -0800108{
Tejun Heo3eef34a2014-02-07 13:32:07 -0500109 struct kernfs_node *parent;
110 int ret;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700111
Tejun Heo3eef34a2014-02-07 13:32:07 -0500112 parent = kernfs_get_parent(kobj->sd);
113 ret = kernfs_rename_ns(kobj->sd, parent, new_name, new_ns);
114 kernfs_put(parent);
115 return ret;
Eric W. Biedermanca1bab32009-11-20 16:08:57 -0800116}
117
Tejun Heoe34ff492013-09-11 22:29:05 -0400118int sysfs_move_dir_ns(struct kobject *kobj, struct kobject *new_parent_kobj,
119 const void *new_ns)
Cornelia Huck8a824722006-11-20 17:07:51 +0100120{
Tejun Heo324a56e2013-12-11 14:11:53 -0500121 struct kernfs_node *kn = kobj->sd;
122 struct kernfs_node *new_parent;
Cornelia Huck8a824722006-11-20 17:07:51 +0100123
Tejun Heo324a56e2013-12-11 14:11:53 -0500124 new_parent = new_parent_kobj && new_parent_kobj->sd ?
125 new_parent_kobj->sd : sysfs_root_kn;
Cornelia Huck8a824722006-11-20 17:07:51 +0100126
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500127 return kernfs_rename_ns(kn, new_parent, kn->name, new_ns);
Cornelia Huck8a824722006-11-20 17:07:51 +0100128}
Eric W. Biederman87d28462015-05-13 16:31:40 -0500129
130/**
131 * sysfs_create_mount_point - create an always empty directory
132 * @parent_kobj: kobject that will contain this always empty directory
133 * @name: The name of the always empty directory to add
134 */
135int sysfs_create_mount_point(struct kobject *parent_kobj, const char *name)
136{
137 struct kernfs_node *kn, *parent = parent_kobj->sd;
138
139 kn = kernfs_create_empty_dir(parent, name);
140 if (IS_ERR(kn)) {
141 if (PTR_ERR(kn) == -EEXIST)
142 sysfs_warn_dup(parent, name);
143 return PTR_ERR(kn);
144 }
145
146 return 0;
147}
148EXPORT_SYMBOL_GPL(sysfs_create_mount_point);
149
150/**
151 * sysfs_remove_mount_point - remove an always empty directory.
152 * @parent_kobj: kobject that will contain this always empty directory
153 * @name: The name of the always empty directory to remove
154 *
155 */
156void sysfs_remove_mount_point(struct kobject *parent_kobj, const char *name)
157{
158 struct kernfs_node *parent = parent_kobj->sd;
159
160 kernfs_remove_by_name_ns(parent, name, NULL);
161}
162EXPORT_SYMBOL_GPL(sysfs_remove_mount_point);