blob: c4deecc80f6745977bc48d7c1ed93cfe1409bce1 [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/symlink.c - sysfs symlink 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
12#include <linux/fs.h>
13#include <linux/module.h>
14#include <linux/kobject.h>
Dave Young869512a2007-07-26 14:53:53 +000015#include <linux/mutex.h>
David P. Quigleyddd29ec2009-09-09 14:25:37 -040016#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include "sysfs.h"
19
Tejun Heo324a56e2013-12-11 14:11:53 -050020static int sysfs_do_create_link_sd(struct kernfs_node *parent,
21 struct kobject *target_kobj,
Rafael J. Wysocki0bb8f3d2013-01-25 21:51:13 +010022 const char *name, int warn)
Linus Torvalds1da177e2005-04-16 15:20:36 -070023{
Tejun Heo324a56e2013-12-11 14:11:53 -050024 struct kernfs_node *kn, *target = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Greg Kroah-Hartmande96e9f2019-01-03 10:23:47 +010026 if (WARN_ON(!name || !parent))
27 return -EINVAL;
Tejun Heo2b29ac22007-06-14 03:45:15 +090028
Tejun Heo0cae60f2013-10-30 10:28:36 -040029 /*
Tejun Heo324a56e2013-12-11 14:11:53 -050030 * We don't own @target_kobj and it may be removed at any time.
Tejun Heo0cae60f2013-10-30 10:28:36 -040031 * Synchronize using sysfs_symlink_target_lock. See
32 * sysfs_remove_dir() for details.
Tejun Heo2b29ac22007-06-14 03:45:15 +090033 */
Tejun Heo0cae60f2013-10-30 10:28:36 -040034 spin_lock(&sysfs_symlink_target_lock);
Tejun Heo324a56e2013-12-11 14:11:53 -050035 if (target_kobj->sd) {
36 target = target_kobj->sd;
37 kernfs_get(target);
Tejun Heoccf73cf2013-11-28 14:54:30 -050038 }
Tejun Heo0cae60f2013-10-30 10:28:36 -040039 spin_unlock(&sysfs_symlink_target_lock);
Tejun Heo2b29ac22007-06-14 03:45:15 +090040
Tejun Heo324a56e2013-12-11 14:11:53 -050041 if (!target)
Tejun Heo5d0e26b2013-11-23 17:21:50 -050042 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Tejun Heo324a56e2013-12-11 14:11:53 -050044 kn = kernfs_create_link(parent, name, target);
45 kernfs_put(target);
Tejun Heo5d0e26b2013-11-23 17:21:50 -050046
Tejun Heo324a56e2013-12-11 14:11:53 -050047 if (!IS_ERR(kn))
Tejun Heo5d0e26b2013-11-23 17:21:50 -050048 return 0;
49
Tejun Heo324a56e2013-12-11 14:11:53 -050050 if (warn && PTR_ERR(kn) == -EEXIST)
51 sysfs_warn_dup(parent, name);
52 return PTR_ERR(kn);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053}
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/**
Rafael J. Wysocki0bb8f3d2013-01-25 21:51:13 +010056 * sysfs_create_link_sd - create symlink to a given object.
Tejun Heo324a56e2013-12-11 14:11:53 -050057 * @kn: directory we're creating the link in.
Rafael J. Wysocki0bb8f3d2013-01-25 21:51:13 +010058 * @target: object we're pointing to.
59 * @name: name of the symlink.
60 */
Tejun Heo324a56e2013-12-11 14:11:53 -050061int sysfs_create_link_sd(struct kernfs_node *kn, struct kobject *target,
Rafael J. Wysocki0bb8f3d2013-01-25 21:51:13 +010062 const char *name)
63{
Tejun Heo324a56e2013-12-11 14:11:53 -050064 return sysfs_do_create_link_sd(kn, target, name, 1);
Rafael J. Wysocki0bb8f3d2013-01-25 21:51:13 +010065}
66
67static int sysfs_do_create_link(struct kobject *kobj, struct kobject *target,
68 const char *name, int warn)
69{
Tejun Heo324a56e2013-12-11 14:11:53 -050070 struct kernfs_node *parent = NULL;
Rafael J. Wysocki0bb8f3d2013-01-25 21:51:13 +010071
72 if (!kobj)
Tejun Heo324a56e2013-12-11 14:11:53 -050073 parent = sysfs_root_kn;
Rafael J. Wysocki0bb8f3d2013-01-25 21:51:13 +010074 else
Tejun Heo324a56e2013-12-11 14:11:53 -050075 parent = kobj->sd;
Rafael J. Wysocki0bb8f3d2013-01-25 21:51:13 +010076
Tejun Heo324a56e2013-12-11 14:11:53 -050077 if (!parent)
Rafael J. Wysocki0bb8f3d2013-01-25 21:51:13 +010078 return -EFAULT;
79
Tejun Heo324a56e2013-12-11 14:11:53 -050080 return sysfs_do_create_link_sd(parent, target, name, warn);
Rafael J. Wysocki0bb8f3d2013-01-25 21:51:13 +010081}
82
83/**
Cornelia Huck36ce6da2008-06-10 11:09:08 +020084 * sysfs_create_link - create symlink between two objects.
85 * @kobj: object whose directory we're creating the link in.
86 * @target: object we're pointing to.
87 * @name: name of the symlink.
88 */
89int sysfs_create_link(struct kobject *kobj, struct kobject *target,
90 const char *name)
91{
92 return sysfs_do_create_link(kobj, target, name, 1);
93}
Greg Kroah-Hartman1b866752013-08-21 16:17:47 -070094EXPORT_SYMBOL_GPL(sysfs_create_link);
Cornelia Huck36ce6da2008-06-10 11:09:08 +020095
96/**
97 * sysfs_create_link_nowarn - create symlink between two objects.
98 * @kobj: object whose directory we're creating the link in.
99 * @target: object we're pointing to.
100 * @name: name of the symlink.
101 *
Robert P. J. Day6f1cbd42012-09-04 07:23:35 -0400102 * This function does the same as sysfs_create_link(), but it
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200103 * doesn't warn if the link already exists.
104 */
105int sysfs_create_link_nowarn(struct kobject *kobj, struct kobject *target,
106 const char *name)
107{
108 return sysfs_do_create_link(kobj, target, name, 0);
109}
Grygorii Strashko2399ac42018-03-16 17:08:34 -0500110EXPORT_SYMBOL_GPL(sysfs_create_link_nowarn);
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200111
112/**
Eric W. Biederman746edb72010-03-30 11:31:28 -0700113 * sysfs_delete_link - remove symlink in object's directory.
114 * @kobj: object we're acting for.
115 * @targ: object we're pointing to.
116 * @name: name of the symlink to remove.
117 *
118 * Unlike sysfs_remove_link sysfs_delete_link has enough information
119 * to successfully delete symlinks in tagged directories.
120 */
121void sysfs_delete_link(struct kobject *kobj, struct kobject *targ,
122 const char *name)
123{
124 const void *ns = NULL;
Tejun Heo0cae60f2013-10-30 10:28:36 -0400125
126 /*
127 * We don't own @target and it may be removed at any time.
128 * Synchronize using sysfs_symlink_target_lock. See
129 * sysfs_remove_dir() for details.
130 */
131 spin_lock(&sysfs_symlink_target_lock);
Tejun Heoac9bba02013-11-29 17:19:09 -0500132 if (targ->sd && kernfs_ns_enabled(kobj->sd))
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500133 ns = targ->sd->ns;
Tejun Heo0cae60f2013-10-30 10:28:36 -0400134 spin_unlock(&sysfs_symlink_target_lock);
Tejun Heo879f40d2013-11-23 17:21:49 -0500135 kernfs_remove_by_name_ns(kobj->sd, name, ns);
Eric W. Biederman746edb72010-03-30 11:31:28 -0700136}
137
138/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 * sysfs_remove_link - remove symlink in object's directory.
140 * @kobj: object we're acting for.
141 * @name: name of the symlink to remove.
142 */
Greg Kroah-Hartman1b18dc22013-08-21 16:28:26 -0700143void sysfs_remove_link(struct kobject *kobj, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Tejun Heo324a56e2013-12-11 14:11:53 -0500145 struct kernfs_node *parent = NULL;
Mark Fasheha839c5a2008-01-29 14:35:18 -0800146
147 if (!kobj)
Tejun Heo324a56e2013-12-11 14:11:53 -0500148 parent = sysfs_root_kn;
Mark Fasheha839c5a2008-01-29 14:35:18 -0800149 else
Tejun Heo324a56e2013-12-11 14:11:53 -0500150 parent = kobj->sd;
Mark Fasheha839c5a2008-01-29 14:35:18 -0800151
Tejun Heo324a56e2013-12-11 14:11:53 -0500152 kernfs_remove_by_name(parent, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
Greg Kroah-Hartman1b866752013-08-21 16:17:47 -0700154EXPORT_SYMBOL_GPL(sysfs_remove_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800156/**
Tejun Heo4b30ee52013-09-11 22:29:06 -0400157 * sysfs_rename_link_ns - rename symlink in object's directory.
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800158 * @kobj: object we're acting for.
159 * @targ: object we're pointing to.
160 * @old: previous name of the symlink.
161 * @new: new name of the symlink.
Tejun Heo4b30ee52013-09-11 22:29:06 -0400162 * @new_ns: new namespace of the symlink.
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800163 *
164 * A helper function for the common rename symlink idiom.
165 */
Tejun Heo4b30ee52013-09-11 22:29:06 -0400166int sysfs_rename_link_ns(struct kobject *kobj, struct kobject *targ,
167 const char *old, const char *new, const void *new_ns)
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800168{
Tejun Heo324a56e2013-12-11 14:11:53 -0500169 struct kernfs_node *parent, *kn = NULL;
Tejun Heo4b30ee52013-09-11 22:29:06 -0400170 const void *old_ns = NULL;
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800171 int result;
172
173 if (!kobj)
Tejun Heo324a56e2013-12-11 14:11:53 -0500174 parent = sysfs_root_kn;
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800175 else
Tejun Heo324a56e2013-12-11 14:11:53 -0500176 parent = kobj->sd;
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800177
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700178 if (targ->sd)
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500179 old_ns = targ->sd->ns;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700180
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800181 result = -ENOENT;
Tejun Heo324a56e2013-12-11 14:11:53 -0500182 kn = kernfs_find_and_get_ns(parent, old, old_ns);
183 if (!kn)
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800184 goto out;
185
186 result = -EINVAL;
Tejun Heodf23fc32013-12-11 14:11:56 -0500187 if (kernfs_type(kn) != KERNFS_LINK)
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800188 goto out;
Tejun Heoadc5e8b2013-12-11 14:11:54 -0500189 if (kn->symlink.target_kn->priv != targ)
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800190 goto out;
191
Tejun Heo324a56e2013-12-11 14:11:53 -0500192 result = kernfs_rename_ns(kn, parent, new, new_ns);
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800193
194out:
Tejun Heo324a56e2013-12-11 14:11:53 -0500195 kernfs_put(kn);
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800196 return result;
197}
Tejun Heo4b30ee52013-09-11 22:29:06 -0400198EXPORT_SYMBOL_GPL(sysfs_rename_link_ns);