2005-04-17 06:20:36 +08:00
|
|
|
/*
|
2007-09-20 16:31:38 +08:00
|
|
|
* fs/sysfs/symlink.c - sysfs symlink implementation
|
|
|
|
*
|
|
|
|
* Copyright (c) 2001-3 Patrick Mochel
|
|
|
|
* Copyright (c) 2007 SUSE Linux Products GmbH
|
|
|
|
* Copyright (c) 2007 Tejun Heo <teheo@suse.de>
|
|
|
|
*
|
|
|
|
* This file is released under the GPLv2.
|
|
|
|
*
|
|
|
|
* Please see Documentation/filesystems/sysfs.txt for more information.
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/kobject.h>
|
2007-07-26 22:53:53 +08:00
|
|
|
#include <linux/mutex.h>
|
2009-09-10 02:25:37 +08:00
|
|
|
#include <linux/security.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#include "sysfs.h"
|
|
|
|
|
2013-01-26 04:51:13 +08:00
|
|
|
static int sysfs_do_create_link_sd(struct sysfs_dirent *parent_sd,
|
|
|
|
struct kobject *target,
|
|
|
|
const char *name, int warn)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2013-11-24 06:21:50 +08:00
|
|
|
struct sysfs_dirent *sd, *target_sd = NULL;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-01-26 04:51:13 +08:00
|
|
|
BUG_ON(!name || !parent_sd);
|
2007-06-14 02:45:15 +08:00
|
|
|
|
2013-10-30 22:28:36 +08:00
|
|
|
/*
|
|
|
|
* We don't own @target and it may be removed at any time.
|
|
|
|
* Synchronize using sysfs_symlink_target_lock. See
|
|
|
|
* sysfs_remove_dir() for details.
|
2007-06-14 02:45:15 +08:00
|
|
|
*/
|
2013-10-30 22:28:36 +08:00
|
|
|
spin_lock(&sysfs_symlink_target_lock);
|
2013-11-29 03:54:30 +08:00
|
|
|
if (target->sd) {
|
|
|
|
target_sd = target->sd;
|
|
|
|
kernfs_get(target_sd);
|
|
|
|
}
|
2013-10-30 22:28:36 +08:00
|
|
|
spin_unlock(&sysfs_symlink_target_lock);
|
2007-06-14 02:45:15 +08:00
|
|
|
|
|
|
|
if (!target_sd)
|
2013-11-24 06:21:50 +08:00
|
|
|
return -ENOENT;
|
2007-07-18 15:14:45 +08:00
|
|
|
|
2013-11-24 06:21:50 +08:00
|
|
|
sd = kernfs_create_link(parent_sd, name, target_sd);
|
2013-11-29 03:54:30 +08:00
|
|
|
kernfs_put(target_sd);
|
2007-07-18 15:38:11 +08:00
|
|
|
|
2013-11-24 06:21:50 +08:00
|
|
|
if (!IS_ERR(sd))
|
|
|
|
return 0;
|
2007-06-14 03:27:24 +08:00
|
|
|
|
2013-11-24 06:21:50 +08:00
|
|
|
if (warn && PTR_ERR(sd) == -EEXIST)
|
|
|
|
sysfs_warn_dup(parent_sd, name);
|
|
|
|
return PTR_ERR(sd);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2013-01-26 04:51:13 +08:00
|
|
|
/**
|
|
|
|
* sysfs_create_link_sd - create symlink to a given object.
|
|
|
|
* @sd: directory we're creating the link in.
|
|
|
|
* @target: object we're pointing to.
|
|
|
|
* @name: name of the symlink.
|
|
|
|
*/
|
|
|
|
int sysfs_create_link_sd(struct sysfs_dirent *sd, struct kobject *target,
|
|
|
|
const char *name)
|
|
|
|
{
|
|
|
|
return sysfs_do_create_link_sd(sd, target, name, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sysfs_do_create_link(struct kobject *kobj, struct kobject *target,
|
|
|
|
const char *name, int warn)
|
|
|
|
{
|
|
|
|
struct sysfs_dirent *parent_sd = NULL;
|
|
|
|
|
|
|
|
if (!kobj)
|
2013-11-29 03:54:39 +08:00
|
|
|
parent_sd = sysfs_root_sd;
|
2013-01-26 04:51:13 +08:00
|
|
|
else
|
|
|
|
parent_sd = kobj->sd;
|
|
|
|
|
|
|
|
if (!parent_sd)
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
return sysfs_do_create_link_sd(parent_sd, target, name, warn);
|
|
|
|
}
|
|
|
|
|
2008-06-10 17:09:08 +08:00
|
|
|
/**
|
|
|
|
* sysfs_create_link - create symlink between two objects.
|
|
|
|
* @kobj: object whose directory we're creating the link in.
|
|
|
|
* @target: object we're pointing to.
|
|
|
|
* @name: name of the symlink.
|
|
|
|
*/
|
|
|
|
int sysfs_create_link(struct kobject *kobj, struct kobject *target,
|
|
|
|
const char *name)
|
|
|
|
{
|
|
|
|
return sysfs_do_create_link(kobj, target, name, 1);
|
|
|
|
}
|
2013-08-22 07:17:47 +08:00
|
|
|
EXPORT_SYMBOL_GPL(sysfs_create_link);
|
2008-06-10 17:09:08 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* sysfs_create_link_nowarn - create symlink between two objects.
|
|
|
|
* @kobj: object whose directory we're creating the link in.
|
|
|
|
* @target: object we're pointing to.
|
|
|
|
* @name: name of the symlink.
|
|
|
|
*
|
2012-09-04 19:23:35 +08:00
|
|
|
* This function does the same as sysfs_create_link(), but it
|
2008-06-10 17:09:08 +08:00
|
|
|
* doesn't warn if the link already exists.
|
|
|
|
*/
|
|
|
|
int sysfs_create_link_nowarn(struct kobject *kobj, struct kobject *target,
|
|
|
|
const char *name)
|
|
|
|
{
|
|
|
|
return sysfs_do_create_link(kobj, target, name, 0);
|
|
|
|
}
|
|
|
|
|
2010-03-31 02:31:28 +08:00
|
|
|
/**
|
|
|
|
* sysfs_delete_link - remove symlink in object's directory.
|
|
|
|
* @kobj: object we're acting for.
|
|
|
|
* @targ: object we're pointing to.
|
|
|
|
* @name: name of the symlink to remove.
|
|
|
|
*
|
|
|
|
* Unlike sysfs_remove_link sysfs_delete_link has enough information
|
|
|
|
* to successfully delete symlinks in tagged directories.
|
|
|
|
*/
|
|
|
|
void sysfs_delete_link(struct kobject *kobj, struct kobject *targ,
|
|
|
|
const char *name)
|
|
|
|
{
|
|
|
|
const void *ns = NULL;
|
2013-10-30 22:28:36 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We don't own @target and it may be removed at any time.
|
|
|
|
* Synchronize using sysfs_symlink_target_lock. See
|
|
|
|
* sysfs_remove_dir() for details.
|
|
|
|
*/
|
|
|
|
spin_lock(&sysfs_symlink_target_lock);
|
2013-11-30 06:19:09 +08:00
|
|
|
if (targ->sd && kernfs_ns_enabled(kobj->sd))
|
2010-03-31 02:31:28 +08:00
|
|
|
ns = targ->sd->s_ns;
|
2013-10-30 22:28:36 +08:00
|
|
|
spin_unlock(&sysfs_symlink_target_lock);
|
2013-11-24 06:21:49 +08:00
|
|
|
kernfs_remove_by_name_ns(kobj->sd, name, ns);
|
2010-03-31 02:31:28 +08:00
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/**
|
|
|
|
* sysfs_remove_link - remove symlink in object's directory.
|
|
|
|
* @kobj: object we're acting for.
|
|
|
|
* @name: name of the symlink to remove.
|
|
|
|
*/
|
2013-08-22 07:28:26 +08:00
|
|
|
void sysfs_remove_link(struct kobject *kobj, const char *name)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2008-01-30 06:35:18 +08:00
|
|
|
struct sysfs_dirent *parent_sd = NULL;
|
|
|
|
|
|
|
|
if (!kobj)
|
2013-11-29 03:54:39 +08:00
|
|
|
parent_sd = sysfs_root_sd;
|
2008-01-30 06:35:18 +08:00
|
|
|
else
|
|
|
|
parent_sd = kobj->sd;
|
|
|
|
|
2013-11-24 06:21:49 +08:00
|
|
|
kernfs_remove_by_name(parent_sd, name);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2013-08-22 07:17:47 +08:00
|
|
|
EXPORT_SYMBOL_GPL(sysfs_remove_link);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2010-02-13 11:22:25 +08:00
|
|
|
/**
|
2013-09-12 10:29:06 +08:00
|
|
|
* sysfs_rename_link_ns - rename symlink in object's directory.
|
2010-02-13 11:22:25 +08:00
|
|
|
* @kobj: object we're acting for.
|
|
|
|
* @targ: object we're pointing to.
|
|
|
|
* @old: previous name of the symlink.
|
|
|
|
* @new: new name of the symlink.
|
2013-09-12 10:29:06 +08:00
|
|
|
* @new_ns: new namespace of the symlink.
|
2010-02-13 11:22:25 +08:00
|
|
|
*
|
|
|
|
* A helper function for the common rename symlink idiom.
|
|
|
|
*/
|
2013-09-12 10:29:06 +08:00
|
|
|
int sysfs_rename_link_ns(struct kobject *kobj, struct kobject *targ,
|
|
|
|
const char *old, const char *new, const void *new_ns)
|
2010-02-13 11:22:25 +08:00
|
|
|
{
|
|
|
|
struct sysfs_dirent *parent_sd, *sd = NULL;
|
2013-09-12 10:29:06 +08:00
|
|
|
const void *old_ns = NULL;
|
2010-02-13 11:22:25 +08:00
|
|
|
int result;
|
|
|
|
|
|
|
|
if (!kobj)
|
2013-11-29 03:54:39 +08:00
|
|
|
parent_sd = sysfs_root_sd;
|
2010-02-13 11:22:25 +08:00
|
|
|
else
|
|
|
|
parent_sd = kobj->sd;
|
|
|
|
|
2010-03-31 02:31:26 +08:00
|
|
|
if (targ->sd)
|
|
|
|
old_ns = targ->sd->s_ns;
|
|
|
|
|
2010-02-13 11:22:25 +08:00
|
|
|
result = -ENOENT;
|
2013-11-29 03:54:30 +08:00
|
|
|
sd = kernfs_find_and_get_ns(parent_sd, old, old_ns);
|
2010-02-13 11:22:25 +08:00
|
|
|
if (!sd)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
result = -EINVAL;
|
|
|
|
if (sysfs_type(sd) != SYSFS_KOBJ_LINK)
|
|
|
|
goto out;
|
2013-11-29 03:54:14 +08:00
|
|
|
if (sd->s_symlink.target_sd->priv != targ)
|
2010-02-13 11:22:25 +08:00
|
|
|
goto out;
|
|
|
|
|
2013-11-24 06:21:51 +08:00
|
|
|
result = kernfs_rename_ns(sd, parent_sd, new, new_ns);
|
2010-02-13 11:22:25 +08:00
|
|
|
|
|
|
|
out:
|
2013-11-29 03:54:30 +08:00
|
|
|
kernfs_put(sd);
|
2010-02-13 11:22:25 +08:00
|
|
|
return result;
|
|
|
|
}
|
2013-09-12 10:29:06 +08:00
|
|
|
EXPORT_SYMBOL_GPL(sysfs_rename_link_ns);
|