ceph: fix mds sync() race with completing requests
[deliverable/linux.git] / fs / sysfs / symlink.c
CommitLineData
1da177e4 1/*
6d66f5cd
TH
2 * fs/sysfs/symlink.c - sysfs symlink implementation
3 *
4 * Copyright (c) 2001-3 Patrick Mochel
5 * Copyright (c) 2007 SUSE Linux Products GmbH
6 * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
7 *
8 * This file is released under the GPLv2.
9 *
10 * Please see Documentation/filesystems/sysfs.txt for more information.
1da177e4
LT
11 */
12
13#include <linux/fs.h>
ceeee1fb 14#include <linux/mount.h>
1da177e4
LT
15#include <linux/module.h>
16#include <linux/kobject.h>
17#include <linux/namei.h>
869512ab 18#include <linux/mutex.h>
ddd29ec6 19#include <linux/security.h>
1da177e4
LT
20
21#include "sysfs.h"
22
36ce6dad
CH
23static int sysfs_do_create_link(struct kobject *kobj, struct kobject *target,
24 const char *name, int warn)
1da177e4 25{
2b29ac25
TH
26 struct sysfs_dirent *parent_sd = NULL;
27 struct sysfs_dirent *target_sd = NULL;
3007e997 28 struct sysfs_dirent *sd = NULL;
fb6896da 29 struct sysfs_addrm_cxt acxt;
3007e997 30 int error;
1da177e4 31
ceeee1fb
GKH
32 BUG_ON(!name);
33
7d0c7d67
EB
34 if (!kobj)
35 parent_sd = &sysfs_root;
36 else
608e266a 37 parent_sd = kobj->sd;
ceeee1fb 38
3007e997 39 error = -EFAULT;
608e266a 40 if (!parent_sd)
3007e997 41 goto out_put;
2b29ac25 42
608e266a 43 /* target->sd can go away beneath us but is protected with
5f995323 44 * sysfs_assoc_lock. Fetch target_sd from it.
2b29ac25 45 */
5f995323 46 spin_lock(&sysfs_assoc_lock);
608e266a
TH
47 if (target->sd)
48 target_sd = sysfs_get(target->sd);
5f995323 49 spin_unlock(&sysfs_assoc_lock);
2b29ac25 50
3007e997 51 error = -ENOENT;
2b29ac25 52 if (!target_sd)
3007e997
TH
53 goto out_put;
54
55 error = -ENOMEM;
56 sd = sysfs_new_dirent(name, S_IFLNK|S_IRWXUGO, SYSFS_KOBJ_LINK);
57 if (!sd)
58 goto out_put;
a1da4dfe 59
b1fc3d61 60 sd->s_symlink.target_sd = target_sd;
a1da4dfe 61 target_sd = NULL; /* reference is now owned by the symlink */
1da177e4 62
fb6896da 63 sysfs_addrm_start(&acxt, parent_sd);
36ce6dad
CH
64 if (warn)
65 error = sysfs_add_one(&acxt, sd);
66 else
67 error = __sysfs_add_one(&acxt, sd);
23dc2799 68 sysfs_addrm_finish(&acxt);
2b29ac25 69
23dc2799 70 if (error)
967e35dc 71 goto out_put;
967e35dc
TH
72
73 return 0;
fb6896da 74
3007e997
TH
75 out_put:
76 sysfs_put(target_sd);
77 sysfs_put(sd);
1da177e4
LT
78 return error;
79}
80
36ce6dad
CH
81/**
82 * sysfs_create_link - create symlink between two objects.
83 * @kobj: object whose directory we're creating the link in.
84 * @target: object we're pointing to.
85 * @name: name of the symlink.
86 */
87int sysfs_create_link(struct kobject *kobj, struct kobject *target,
88 const char *name)
89{
90 return sysfs_do_create_link(kobj, target, name, 1);
91}
92
93/**
94 * sysfs_create_link_nowarn - create symlink between two objects.
95 * @kobj: object whose directory we're creating the link in.
96 * @target: object we're pointing to.
97 * @name: name of the symlink.
98 *
99 * This function does the same as sysf_create_link(), but it
100 * doesn't warn if the link already exists.
101 */
102int sysfs_create_link_nowarn(struct kobject *kobj, struct kobject *target,
103 const char *name)
104{
105 return sysfs_do_create_link(kobj, target, name, 0);
106}
107
1da177e4
LT
108/**
109 * sysfs_remove_link - remove symlink in object's directory.
110 * @kobj: object we're acting for.
111 * @name: name of the symlink to remove.
112 */
113
e3a15db2 114void sysfs_remove_link(struct kobject * kobj, const char * name)
1da177e4 115{
a839c5af
MF
116 struct sysfs_dirent *parent_sd = NULL;
117
118 if (!kobj)
119 parent_sd = &sysfs_root;
120 else
121 parent_sd = kobj->sd;
122
123 sysfs_hash_and_remove(parent_sd, name);
1da177e4
LT
124}
125
7cb32942
EB
126/**
127 * sysfs_rename_link - rename symlink in object's directory.
128 * @kobj: object we're acting for.
129 * @targ: object we're pointing to.
130 * @old: previous name of the symlink.
131 * @new: new name of the symlink.
132 *
133 * A helper function for the common rename symlink idiom.
134 */
135int sysfs_rename_link(struct kobject *kobj, struct kobject *targ,
136 const char *old, const char *new)
137{
138 struct sysfs_dirent *parent_sd, *sd = NULL;
139 int result;
140
141 if (!kobj)
142 parent_sd = &sysfs_root;
143 else
144 parent_sd = kobj->sd;
145
146 result = -ENOENT;
147 sd = sysfs_get_dirent(parent_sd, old);
148 if (!sd)
149 goto out;
150
151 result = -EINVAL;
152 if (sysfs_type(sd) != SYSFS_KOBJ_LINK)
153 goto out;
154 if (sd->s_symlink.target_sd->s_dir.kobj != targ)
155 goto out;
156
157 result = sysfs_rename(sd, parent_sd, new);
158
159out:
160 sysfs_put(sd);
161 return result;
162}
163
2f90a851
KS
164static int sysfs_get_target_path(struct sysfs_dirent *parent_sd,
165 struct sysfs_dirent *target_sd, char *path)
1da177e4 166{
2f90a851
KS
167 struct sysfs_dirent *base, *sd;
168 char *s = path;
169 int len = 0;
170
171 /* go up to the root, stop at the base */
172 base = parent_sd;
173 while (base->s_parent) {
174 sd = target_sd->s_parent;
175 while (sd->s_parent && base != sd)
176 sd = sd->s_parent;
177
178 if (base == sd)
179 break;
180
181 strcpy(s, "../");
182 s += 3;
183 base = base->s_parent;
184 }
185
186 /* determine end of target string for reverse fillup */
187 sd = target_sd;
188 while (sd->s_parent && sd != base) {
189 len += strlen(sd->s_name) + 1;
190 sd = sd->s_parent;
191 }
1da177e4 192
2f90a851
KS
193 /* check limits */
194 if (len < 2)
195 return -EINVAL;
196 len--;
197 if ((s - path) + len > PATH_MAX)
1da177e4
LT
198 return -ENAMETOOLONG;
199
2f90a851
KS
200 /* reverse fillup of target string from target to base */
201 sd = target_sd;
202 while (sd->s_parent && sd != base) {
203 int slen = strlen(sd->s_name);
1da177e4 204
2f90a851
KS
205 len -= slen;
206 strncpy(s + len, sd->s_name, slen);
207 if (len)
208 s[--len] = '/';
1da177e4 209
2f90a851
KS
210 sd = sd->s_parent;
211 }
1da177e4
LT
212
213 return 0;
214}
215
216static int sysfs_getlink(struct dentry *dentry, char * path)
217{
2b29ac25
TH
218 struct sysfs_dirent *sd = dentry->d_fsdata;
219 struct sysfs_dirent *parent_sd = sd->s_parent;
b1fc3d61 220 struct sysfs_dirent *target_sd = sd->s_symlink.target_sd;
2b29ac25 221 int error;
1da177e4 222
3007e997 223 mutex_lock(&sysfs_mutex);
2b29ac25 224 error = sysfs_get_target_path(parent_sd, target_sd, path);
3007e997 225 mutex_unlock(&sysfs_mutex);
1da177e4 226
2b29ac25 227 return error;
1da177e4
LT
228}
229
cc314eef 230static void *sysfs_follow_link(struct dentry *dentry, struct nameidata *nd)
1da177e4
LT
231{
232 int error = -ENOMEM;
233 unsigned long page = get_zeroed_page(GFP_KERNEL);
557411eb 234 if (page) {
1da177e4 235 error = sysfs_getlink(dentry, (char *) page);
557411eb
AK
236 if (error < 0)
237 free_page((unsigned long)page);
238 }
1da177e4 239 nd_set_link(nd, error ? ERR_PTR(error) : (char *)page);
cc314eef 240 return NULL;
1da177e4
LT
241}
242
cc314eef 243static void sysfs_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
1da177e4
LT
244{
245 char *page = nd_get_link(nd);
246 if (!IS_ERR(page))
247 free_page((unsigned long)page);
248}
249
c5ef1c42 250const struct inode_operations sysfs_symlink_inode_operations = {
c099aacd
EB
251 .setxattr = sysfs_setxattr,
252 .readlink = generic_readlink,
253 .follow_link = sysfs_follow_link,
254 .put_link = sysfs_put_link,
e61ab4ae
EB
255 .setattr = sysfs_setattr,
256 .getattr = sysfs_getattr,
257 .permission = sysfs_permission,
1da177e4
LT
258};
259
260
261EXPORT_SYMBOL_GPL(sysfs_create_link);
262EXPORT_SYMBOL_GPL(sysfs_remove_link);
This page took 0.503838 seconds and 5 git commands to generate.