2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2007-09-20 08:31:38 +00:00
|
|
|
* fs/sysfs/dir.c - sysfs core and dir operation 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-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#undef DEBUG
|
|
|
|
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/kobject.h>
|
2008-03-14 02:41:52 +00:00
|
|
|
#include <linux/slab.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include "sysfs.h"
|
|
|
|
|
2013-10-30 14:28:36 +00:00
|
|
|
DEFINE_SPINLOCK(sysfs_symlink_target_lock);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-02-12 17:56:59 +00:00
|
|
|
/**
|
|
|
|
* sysfs_pathname - return full path to sysfs dirent
|
|
|
|
* @sd: sysfs_dirent whose path we want
|
2012-09-29 20:23:19 +00:00
|
|
|
* @path: caller allocated buffer of size PATH_MAX
|
2009-02-12 17:56:59 +00:00
|
|
|
*
|
|
|
|
* Gives the name "/" to the sysfs_root entry; any path returned
|
|
|
|
* is relative to wherever sysfs is mounted.
|
|
|
|
*/
|
|
|
|
static char *sysfs_pathname(struct sysfs_dirent *sd, char *path)
|
|
|
|
{
|
|
|
|
if (sd->s_parent) {
|
|
|
|
sysfs_pathname(sd->s_parent, path);
|
2012-09-29 20:23:19 +00:00
|
|
|
strlcat(path, "/", PATH_MAX);
|
2009-02-12 17:56:59 +00:00
|
|
|
}
|
2012-09-29 20:23:19 +00:00
|
|
|
strlcat(path, sd->s_name, PATH_MAX);
|
2009-02-12 17:56:59 +00:00
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2013-10-24 15:49:11 +00:00
|
|
|
void sysfs_warn_dup(struct sysfs_dirent *parent, const char *name)
|
|
|
|
{
|
|
|
|
char *path;
|
|
|
|
|
|
|
|
path = kzalloc(PATH_MAX, GFP_KERNEL);
|
|
|
|
if (path) {
|
|
|
|
sysfs_pathname(parent, path);
|
|
|
|
strlcat(path, "/", PATH_MAX);
|
|
|
|
strlcat(path, name, PATH_MAX);
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN(1, KERN_WARNING "sysfs: cannot create duplicate filename '%s'\n",
|
|
|
|
path ? path : name);
|
|
|
|
|
|
|
|
kfree(path);
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/**
|
2013-09-12 02:29:05 +00:00
|
|
|
* sysfs_create_dir_ns - create a directory for an object with a namespace tag
|
|
|
|
* @kobj: object we're creating directory for
|
|
|
|
* @ns: the namespace tag to use
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2013-09-12 02:29:05 +00:00
|
|
|
int sysfs_create_dir_ns(struct kobject *kobj, const void *ns)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2007-06-13 19:27:22 +00:00
|
|
|
struct sysfs_dirent *parent_sd, *sd;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
BUG_ON(!kobj);
|
|
|
|
|
2007-07-31 10:15:08 +00:00
|
|
|
if (kobj->parent)
|
2007-06-13 19:27:22 +00:00
|
|
|
parent_sd = kobj->parent->sd;
|
2005-04-16 22:20:36 +00:00
|
|
|
else
|
2013-11-28 19:54:39 +00:00
|
|
|
parent_sd = sysfs_root_sd;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-04-06 20:41:06 +00:00
|
|
|
if (!parent_sd)
|
|
|
|
return -ENOENT;
|
|
|
|
|
2013-11-28 19:54:15 +00:00
|
|
|
sd = kernfs_create_dir_ns(parent_sd, kobject_name(kobj), kobj, ns);
|
|
|
|
if (IS_ERR(sd)) {
|
|
|
|
if (PTR_ERR(sd) == -EEXIST)
|
|
|
|
sysfs_warn_dup(parent_sd, kobject_name(kobj));
|
|
|
|
return PTR_ERR(sd);
|
|
|
|
}
|
|
|
|
|
|
|
|
kobj->sd = sd;
|
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2007-01-24 19:35:52 +00:00
|
|
|
/**
|
|
|
|
* sysfs_remove_dir - remove an object's directory.
|
|
|
|
* @kobj: object.
|
|
|
|
*
|
|
|
|
* The only thing special about this is that we remove any files in
|
|
|
|
* the directory before we remove the directory, and we've inlined
|
|
|
|
* what used to be sysfs_rmdir() below, instead of calling separately.
|
|
|
|
*/
|
2013-08-21 23:28:26 +00:00
|
|
|
void sysfs_remove_dir(struct kobject *kobj)
|
2007-01-24 19:35:52 +00:00
|
|
|
{
|
2007-06-13 19:27:22 +00:00
|
|
|
struct sysfs_dirent *sd = kobj->sd;
|
2007-06-13 18:45:15 +00:00
|
|
|
|
2013-10-30 14:28:36 +00:00
|
|
|
/*
|
|
|
|
* In general, kboject owner is responsible for ensuring removal
|
|
|
|
* doesn't race with other operations and sysfs doesn't provide any
|
|
|
|
* protection; however, when @kobj is used as a symlink target, the
|
|
|
|
* symlinking entity usually doesn't own @kobj and thus has no
|
|
|
|
* control over removal. @kobj->sd may be removed anytime and
|
|
|
|
* symlink code may end up dereferencing an already freed sd.
|
|
|
|
*
|
|
|
|
* sysfs_symlink_target_lock synchronizes @kobj->sd disassociation
|
|
|
|
* against symlink operations so that symlink code can safely
|
|
|
|
* dereference @kobj->sd.
|
|
|
|
*/
|
|
|
|
spin_lock(&sysfs_symlink_target_lock);
|
2007-06-13 19:27:22 +00:00
|
|
|
kobj->sd = NULL;
|
2013-10-30 14:28:36 +00:00
|
|
|
spin_unlock(&sysfs_symlink_target_lock);
|
2007-06-13 18:45:15 +00:00
|
|
|
|
2013-09-18 21:15:38 +00:00
|
|
|
if (sd) {
|
|
|
|
WARN_ON_ONCE(sysfs_type(sd) != SYSFS_DIR);
|
2013-11-23 22:21:49 +00:00
|
|
|
kernfs_remove(sd);
|
2013-09-18 21:15:38 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2013-09-12 02:29:05 +00:00
|
|
|
int sysfs_rename_dir_ns(struct kobject *kobj, const char *new_name,
|
|
|
|
const void *new_ns)
|
2009-11-21 00:08:57 +00:00
|
|
|
{
|
2010-03-30 18:31:26 +00:00
|
|
|
struct sysfs_dirent *parent_sd = kobj->sd->s_parent;
|
|
|
|
|
2013-11-23 22:21:51 +00:00
|
|
|
return kernfs_rename_ns(kobj->sd, parent_sd, new_name, new_ns);
|
2009-11-21 00:08:57 +00:00
|
|
|
}
|
|
|
|
|
2013-09-12 02:29:05 +00:00
|
|
|
int sysfs_move_dir_ns(struct kobject *kobj, struct kobject *new_parent_kobj,
|
|
|
|
const void *new_ns)
|
2006-11-20 16:07:51 +00:00
|
|
|
{
|
2007-06-13 19:27:25 +00:00
|
|
|
struct sysfs_dirent *sd = kobj->sd;
|
|
|
|
struct sysfs_dirent *new_parent_sd;
|
2006-11-20 16:07:51 +00:00
|
|
|
|
2007-06-13 19:27:25 +00:00
|
|
|
BUG_ON(!sd->s_parent);
|
2009-11-21 00:08:57 +00:00
|
|
|
new_parent_sd = new_parent_kobj && new_parent_kobj->sd ?
|
2013-11-28 19:54:39 +00:00
|
|
|
new_parent_kobj->sd : sysfs_root_sd;
|
2007-06-13 19:27:25 +00:00
|
|
|
|
2013-11-23 22:21:51 +00:00
|
|
|
return kernfs_rename_ns(sd, new_parent_sd, sd->s_name, new_ns);
|
2006-11-20 16:07:51 +00:00
|
|
|
}
|