Blame view
lib/kobject.c
25.7 KB
1da177e4c Linux-2.6.12-rc2 |
1 2 3 4 |
/* * kobject.c - library routines for handling generic kernel objects * * Copyright (c) 2002-2003 Patrick Mochel <mochel@osdl.org> |
f0e7e1bd7 kobject: update t... |
5 6 |
* Copyright (c) 2006-2007 Greg Kroah-Hartman <greg@kroah.com> * Copyright (c) 2006-2007 Novell Inc. |
1da177e4c Linux-2.6.12-rc2 |
7 8 9 10 11 12 13 14 15 16 |
* * This file is released under the GPLv2. * * * Please see the file Documentation/kobject.txt for critical information * about using the kobject interface. */ #include <linux/kobject.h> #include <linux/string.h> |
8bc3bcc93 lib: reduce the u... |
17 |
#include <linux/export.h> |
1da177e4c Linux-2.6.12-rc2 |
18 |
#include <linux/stat.h> |
4e57b6817 [PATCH] fix missi... |
19 |
#include <linux/slab.h> |
89c86a64c kobject: delay ko... |
20 |
#include <linux/random.h> |
1da177e4c Linux-2.6.12-rc2 |
21 |
|
e34ff4906 sysfs: remove kty... |
22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
/** * kobject_namespace - return @kobj's namespace tag * @kobj: kobject in question * * Returns namespace tag of @kobj if its parent has namespace ops enabled * and thus @kobj should have a namespace tag associated with it. Returns * %NULL otherwise. */ const void *kobject_namespace(struct kobject *kobj) { const struct kobj_ns_type_operations *ns_ops = kobj_ns_ops(kobj); if (!ns_ops || ns_ops->type == KOBJ_NS_TYPE_NONE) return NULL; |
a1212d278 Revert "sysfs: dr... |
36 |
return kobj->ktype->namespace(kobj); |
e34ff4906 sysfs: remove kty... |
37 |
} |
e374a2bfe Kobject: fix codi... |
38 39 40 |
/* * populate_dir - populate directory with attributes. * @kobj: object we're working on. |
1da177e4c Linux-2.6.12-rc2 |
41 |
* |
e374a2bfe Kobject: fix codi... |
42 43 44 45 |
* Most subsystems have a set of default attributes that are associated * with an object that registers with them. This is a helper called during * object registration that loops through the default attributes of the * subsystem and creates attributes files for them in sysfs. |
1da177e4c Linux-2.6.12-rc2 |
46 |
*/ |
e374a2bfe Kobject: fix codi... |
47 |
static int populate_dir(struct kobject *kobj) |
1da177e4c Linux-2.6.12-rc2 |
48 |
{ |
e374a2bfe Kobject: fix codi... |
49 50 |
struct kobj_type *t = get_ktype(kobj); struct attribute *attr; |
1da177e4c Linux-2.6.12-rc2 |
51 52 |
int error = 0; int i; |
e374a2bfe Kobject: fix codi... |
53 |
|
1da177e4c Linux-2.6.12-rc2 |
54 55 |
if (t && t->default_attrs) { for (i = 0; (attr = t->default_attrs[i]) != NULL; i++) { |
e374a2bfe Kobject: fix codi... |
56 57 |
error = sysfs_create_file(kobj, attr); if (error) |
1da177e4c Linux-2.6.12-rc2 |
58 59 60 61 62 |
break; } } return error; } |
e374a2bfe Kobject: fix codi... |
63 |
static int create_dir(struct kobject *kobj) |
1da177e4c Linux-2.6.12-rc2 |
64 |
{ |
c84a3b277 sysfs: drop kobj_... |
65 |
const struct kobj_ns_type_operations *ops; |
e34ff4906 sysfs: remove kty... |
66 67 68 |
int error; error = sysfs_create_dir_ns(kobj, kobject_namespace(kobj)); |
c84a3b277 sysfs: drop kobj_... |
69 70 71 72 73 74 75 |
if (error) return error; error = populate_dir(kobj); if (error) { sysfs_remove_dir(kobj); return error; |
1da177e4c Linux-2.6.12-rc2 |
76 |
} |
26ea12dec kobject: grab an ... |
77 78 79 80 81 82 |
/* * @kobj->sd may be deleted by an ancestor going away. Hold an * extra reference so that it stays until @kobj is gone. */ sysfs_get(kobj->sd); |
c84a3b277 sysfs: drop kobj_... |
83 84 85 86 87 88 89 90 91 |
/* * If @kobj has ns_ops, its children need to be filtered based on * their namespace tags. Enable namespace support on @kobj->sd. */ ops = kobj_child_ns_ops(kobj); if (ops) { BUG_ON(ops->type <= KOBJ_NS_TYPE_NONE); BUG_ON(ops->type >= KOBJ_NS_TYPES); BUG_ON(!kobj_ns_type_registered(ops->type)); |
fa4cd451c sysfs, kobject: a... |
92 |
sysfs_enable_ns(kobj->sd); |
c84a3b277 sysfs: drop kobj_... |
93 94 95 |
} return 0; |
1da177e4c Linux-2.6.12-rc2 |
96 |
} |
1da177e4c Linux-2.6.12-rc2 |
97 98 99 |
static int get_kobj_path_length(struct kobject *kobj) { int length = 1; |
e374a2bfe Kobject: fix codi... |
100 |
struct kobject *parent = kobj; |
1da177e4c Linux-2.6.12-rc2 |
101 |
|
e374a2bfe Kobject: fix codi... |
102 |
/* walk up the ancestors until we hit the one pointing to the |
1da177e4c Linux-2.6.12-rc2 |
103 104 105 106 |
* root. * Add 1 to strlen for leading '/' of each level. */ do { |
b365b3daf [PATCH] kobject: ... |
107 108 |
if (kobject_name(parent) == NULL) return 0; |
1da177e4c Linux-2.6.12-rc2 |
109 110 111 112 113 114 115 116 |
length += strlen(kobject_name(parent)) + 1; parent = parent->parent; } while (parent); return length; } static void fill_kobj_path(struct kobject *kobj, char *path, int length) { |
e374a2bfe Kobject: fix codi... |
117 |
struct kobject *parent; |
1da177e4c Linux-2.6.12-rc2 |
118 119 120 121 122 123 |
--length; for (parent = kobj; parent; parent = parent->parent) { int cur = strlen(kobject_name(parent)); /* back up enough to print this name with '/' */ length -= cur; |
e374a2bfe Kobject: fix codi... |
124 |
strncpy(path + length, kobject_name(parent), cur); |
1da177e4c Linux-2.6.12-rc2 |
125 126 |
*(path + --length) = '/'; } |
9f66fa2a4 kobject: clean up... |
127 128 |
pr_debug("kobject: '%s' (%p): %s: path = '%s' ", kobject_name(kobj), |
810304db7 lib: replace rema... |
129 |
kobj, __func__, path); |
1da177e4c Linux-2.6.12-rc2 |
130 131 132 |
} /** |
72fd4a35a [PATCH] Numerous ... |
133 |
* kobject_get_path - generate and return the path associated with a given kobj and kset pair. |
1da177e4c Linux-2.6.12-rc2 |
134 135 136 |
* * @kobj: kobject in question, with which to build the path * @gfp_mask: the allocation type used to allocate the path |
72fd4a35a [PATCH] Numerous ... |
137 138 |
* * The result must be freed by the caller with kfree(). |
1da177e4c Linux-2.6.12-rc2 |
139 |
*/ |
fd4f2df24 [PATCH] gfp_t: lib/* |
140 |
char *kobject_get_path(struct kobject *kobj, gfp_t gfp_mask) |
1da177e4c Linux-2.6.12-rc2 |
141 142 143 144 145 |
{ char *path; int len; len = get_kobj_path_length(kobj); |
b365b3daf [PATCH] kobject: ... |
146 147 |
if (len == 0) return NULL; |
4668edc33 [PATCH] kernel co... |
148 |
path = kzalloc(len, gfp_mask); |
1da177e4c Linux-2.6.12-rc2 |
149 150 |
if (!path) return NULL; |
1da177e4c Linux-2.6.12-rc2 |
151 152 153 154 |
fill_kobj_path(kobj, path, len); return path; } |
80fc9f532 Input: add missin... |
155 |
EXPORT_SYMBOL_GPL(kobject_get_path); |
1da177e4c Linux-2.6.12-rc2 |
156 |
|
0f4dafc05 Kobject: auto-cle... |
157 158 |
/* add the kobject to its kset's list */ static void kobj_kset_join(struct kobject *kobj) |
1da177e4c Linux-2.6.12-rc2 |
159 |
{ |
0f4dafc05 Kobject: auto-cle... |
160 |
if (!kobj->kset) |
31b9025aa Kobject: make kob... |
161 |
return; |
0f4dafc05 Kobject: auto-cle... |
162 163 164 165 166 |
kset_get(kobj->kset); spin_lock(&kobj->kset->list_lock); list_add_tail(&kobj->entry, &kobj->kset->list); spin_unlock(&kobj->kset->list_lock); |
1da177e4c Linux-2.6.12-rc2 |
167 |
} |
0f4dafc05 Kobject: auto-cle... |
168 169 170 171 172 |
/* remove the kobject from its kset's list */ static void kobj_kset_leave(struct kobject *kobj) { if (!kobj->kset) return; |
1da177e4c Linux-2.6.12-rc2 |
173 |
|
0f4dafc05 Kobject: auto-cle... |
174 175 176 177 178 |
spin_lock(&kobj->kset->list_lock); list_del_init(&kobj->entry); spin_unlock(&kobj->kset->list_lock); kset_put(kobj->kset); } |
1da177e4c Linux-2.6.12-rc2 |
179 |
|
e374a2bfe Kobject: fix codi... |
180 |
static void kobject_init_internal(struct kobject *kobj) |
1da177e4c Linux-2.6.12-rc2 |
181 |
{ |
0f4dafc05 Kobject: auto-cle... |
182 183 184 185 |
if (!kobj) return; kref_init(&kobj->kref); INIT_LIST_HEAD(&kobj->entry); |
a4573c488 kobject: properly... |
186 187 188 189 |
kobj->state_in_sysfs = 0; kobj->state_add_uevent_sent = 0; kobj->state_remove_uevent_sent = 0; kobj->state_initialized = 1; |
1da177e4c Linux-2.6.12-rc2 |
190 |
} |
0f4dafc05 Kobject: auto-cle... |
191 |
|
9e7bbccd0 Kobject: remove k... |
192 |
static int kobject_add_internal(struct kobject *kobj) |
1da177e4c Linux-2.6.12-rc2 |
193 194 |
{ int error = 0; |
e374a2bfe Kobject: fix codi... |
195 |
struct kobject *parent; |
1da177e4c Linux-2.6.12-rc2 |
196 |
|
0f4dafc05 Kobject: auto-cle... |
197 |
if (!kobj) |
1da177e4c Linux-2.6.12-rc2 |
198 |
return -ENOENT; |
0f4dafc05 Kobject: auto-cle... |
199 |
|
af5ca3f4e Driver core: chan... |
200 |
if (!kobj->name || !kobj->name[0]) { |
d955c78ac Example use of WA... |
201 |
WARN(1, "kobject: (%p): attempted to be registered with empty " |
9f66fa2a4 kobject: clean up... |
202 203 |
"name! ", kobj); |
c171fef5c [PATCH] kobject_a... |
204 205 |
return -EINVAL; } |
1da177e4c Linux-2.6.12-rc2 |
206 |
|
0f4dafc05 Kobject: auto-cle... |
207 |
parent = kobject_get(kobj->parent); |
1da177e4c Linux-2.6.12-rc2 |
208 |
|
0f4dafc05 Kobject: auto-cle... |
209 |
/* join kset if set, use it as parent if we do not already have one */ |
1da177e4c Linux-2.6.12-rc2 |
210 |
if (kobj->kset) { |
0f4dafc05 Kobject: auto-cle... |
211 |
if (!parent) |
1da177e4c Linux-2.6.12-rc2 |
212 |
parent = kobject_get(&kobj->kset->kobj); |
0f4dafc05 Kobject: auto-cle... |
213 |
kobj_kset_join(kobj); |
460f7e9a1 kobject: kobject_... |
214 |
kobj->parent = parent; |
1da177e4c Linux-2.6.12-rc2 |
215 |
} |
1da177e4c Linux-2.6.12-rc2 |
216 |
|
0f4dafc05 Kobject: auto-cle... |
217 218 |
pr_debug("kobject: '%s' (%p): %s: parent: '%s', set: '%s' ", |
810304db7 lib: replace rema... |
219 |
kobject_name(kobj), kobj, __func__, |
0f4dafc05 Kobject: auto-cle... |
220 |
parent ? kobject_name(parent) : "<NULL>", |
e374a2bfe Kobject: fix codi... |
221 |
kobj->kset ? kobject_name(&kobj->kset->kobj) : "<NULL>"); |
0f4dafc05 Kobject: auto-cle... |
222 |
|
90bc61359 sysfs: Remove fir... |
223 |
error = create_dir(kobj); |
1da177e4c Linux-2.6.12-rc2 |
224 |
if (error) { |
0f4dafc05 Kobject: auto-cle... |
225 226 227 |
kobj_kset_leave(kobj); kobject_put(parent); kobj->parent = NULL; |
dcd0da002 [PATCH] Kobject: ... |
228 229 230 |
/* be noisy on error issues */ if (error == -EEXIST) |
282029c00 kobject: provide ... |
231 232 233 234 235 |
WARN(1, "%s failed for %s with " "-EEXIST, don't try to register things with " "the same name in the same directory. ", __func__, kobject_name(kobj)); |
dcd0da002 [PATCH] Kobject: ... |
236 |
else |
282029c00 kobject: provide ... |
237 238 239 240 |
WARN(1, "%s failed for %s (error: %d parent: %s) ", __func__, kobject_name(kobj), error, parent ? kobject_name(parent) : "'none'"); |
0f4dafc05 Kobject: auto-cle... |
241 242 |
} else kobj->state_in_sysfs = 1; |
1da177e4c Linux-2.6.12-rc2 |
243 244 245 |
return error; } |
b592fcfe7 sysfs: Shadow dir... |
246 |
/** |
663a47430 kobject: fix up k... |
247 248 249 250 251 |
* kobject_set_name_vargs - Set the name of an kobject * @kobj: struct kobject to set the name of * @fmt: format string used to build the name * @vargs: vargs to format the string. */ |
1fa5ae857 driver core: get ... |
252 |
int kobject_set_name_vargs(struct kobject *kobj, const char *fmt, |
663a47430 kobject: fix up k... |
253 254 |
va_list vargs) { |
9f255651f kobject: replace ... |
255 256 |
const char *old_name = kobj->name; char *s; |
663a47430 kobject: fix up k... |
257 |
|
8a577ffc7 driver: dont upda... |
258 259 |
if (kobj->name && !fmt) return 0; |
a4ca66174 kobject: do not c... |
260 |
kobj->name = kvasprintf(GFP_KERNEL, fmt, vargs); |
020d30f17 kobject: fix memo... |
261 262 |
if (!kobj->name) { kobj->name = old_name; |
a4ca66174 kobject: do not c... |
263 |
return -ENOMEM; |
020d30f17 kobject: fix memo... |
264 |
} |
663a47430 kobject: fix up k... |
265 |
|
9f255651f kobject: replace ... |
266 |
/* ewww... some of these buggers have '/' in the name ... */ |
25fdeb3f4 kobject: Replace ... |
267 |
while ((s = strchr(kobj->name, '/'))) |
9f255651f kobject: replace ... |
268 269 270 |
s[0] = '!'; kfree(old_name); |
663a47430 kobject: fix up k... |
271 272 |
return 0; } |
1da177e4c Linux-2.6.12-rc2 |
273 274 |
/** |
8c4606b1a kobject: fix the ... |
275 |
* kobject_set_name - Set the name of a kobject |
663a47430 kobject: fix up k... |
276 |
* @kobj: struct kobject to set the name of |
8c4606b1a kobject: fix the ... |
277 |
* @fmt: format string used to build the name |
1da177e4c Linux-2.6.12-rc2 |
278 |
* |
8c4606b1a kobject: fix the ... |
279 280 281 |
* This sets the name of the kobject. If you have already added the * kobject to the system, you must call kobject_rename() in order to * change the name of the kobject. |
1da177e4c Linux-2.6.12-rc2 |
282 |
*/ |
663a47430 kobject: fix up k... |
283 |
int kobject_set_name(struct kobject *kobj, const char *fmt, ...) |
1da177e4c Linux-2.6.12-rc2 |
284 |
{ |
a4ca66174 kobject: do not c... |
285 |
va_list vargs; |
663a47430 kobject: fix up k... |
286 |
int retval; |
1da177e4c Linux-2.6.12-rc2 |
287 |
|
a4ca66174 kobject: do not c... |
288 289 290 |
va_start(vargs, fmt); retval = kobject_set_name_vargs(kobj, fmt, vargs); va_end(vargs); |
1da177e4c Linux-2.6.12-rc2 |
291 |
|
663a47430 kobject: fix up k... |
292 |
return retval; |
1da177e4c Linux-2.6.12-rc2 |
293 |
} |
1da177e4c Linux-2.6.12-rc2 |
294 |
EXPORT_SYMBOL(kobject_set_name); |
1da177e4c Linux-2.6.12-rc2 |
295 |
/** |
f9cb074bf Kobject: rename k... |
296 |
* kobject_init - initialize a kobject structure |
e86000d04 kobject: add kobj... |
297 298 299 300 301 302 303 304 305 306 |
* @kobj: pointer to the kobject to initialize * @ktype: pointer to the ktype for this kobject. * * This function will properly initialize a kobject such that it can then * be passed to the kobject_add() call. * * After this function is called, the kobject MUST be cleaned up by a call * to kobject_put(), not by a call to kfree directly to ensure that all of * the memory is cleaned up properly. */ |
f9cb074bf Kobject: rename k... |
307 |
void kobject_init(struct kobject *kobj, struct kobj_type *ktype) |
e86000d04 kobject: add kobj... |
308 309 310 311 312 313 314 315 316 317 318 319 |
{ char *err_str; if (!kobj) { err_str = "invalid kobject pointer!"; goto error; } if (!ktype) { err_str = "must have a ktype to be initialized properly! "; goto error; } |
0f4dafc05 Kobject: auto-cle... |
320 |
if (kobj->state_initialized) { |
e86000d04 kobject: add kobj... |
321 |
/* do not error out as sometimes we can recover */ |
0f4dafc05 Kobject: auto-cle... |
322 323 324 |
printk(KERN_ERR "kobject (%p): tried to init an initialized " "object, something is seriously wrong. ", kobj); |
e86000d04 kobject: add kobj... |
325 326 |
dump_stack(); } |
a4573c488 kobject: properly... |
327 |
kobject_init_internal(kobj); |
e86000d04 kobject: add kobj... |
328 329 330 331 |
kobj->ktype = ktype; return; error: |
0f4dafc05 Kobject: auto-cle... |
332 333 |
printk(KERN_ERR "kobject (%p): %s ", kobj, err_str); |
e86000d04 kobject: add kobj... |
334 335 |
dump_stack(); } |
f9cb074bf Kobject: rename k... |
336 |
EXPORT_SYMBOL(kobject_init); |
e86000d04 kobject: add kobj... |
337 |
|
244f6cee9 kobject: add kobj... |
338 339 340 |
static int kobject_add_varg(struct kobject *kobj, struct kobject *parent, const char *fmt, va_list vargs) { |
244f6cee9 kobject: add kobj... |
341 |
int retval; |
a4ca66174 kobject: do not c... |
342 |
retval = kobject_set_name_vargs(kobj, fmt, vargs); |
244f6cee9 kobject: add kobj... |
343 344 345 346 347 348 |
if (retval) { printk(KERN_ERR "kobject: can not set name properly! "); return retval; } kobj->parent = parent; |
9e7bbccd0 Kobject: remove k... |
349 |
return kobject_add_internal(kobj); |
244f6cee9 kobject: add kobj... |
350 351 352 |
} /** |
b2d6db587 Kobject: rename k... |
353 |
* kobject_add - the main kobject add function |
244f6cee9 kobject: add kobj... |
354 355 356 357 358 359 360 361 362 |
* @kobj: the kobject to add * @parent: pointer to the parent of the kobject. * @fmt: format to name the kobject with. * * The kobject name is set and added to the kobject hierarchy in this * function. * * If @parent is set, then the parent of the @kobj will be set to it. * If @parent is NULL, then the parent of the @kobj will be set to the |
9705710e4 kobject: Fix sour... |
363 |
* kobject associated with the kset assigned to this kobject. If no kset |
244f6cee9 kobject: add kobj... |
364 365 366 367 368 |
* is assigned to the kobject, then the kobject will be located in the * root of the sysfs tree. * * If this function returns an error, kobject_put() must be called to * properly clean up the memory associated with the object. |
244f6cee9 kobject: add kobj... |
369 370 371 |
* Under no instance should the kobject that is passed to this function * be directly freed with a call to kfree(), that can leak memory. * |
0f4dafc05 Kobject: auto-cle... |
372 |
* Note, no "add" uevent will be created with this call, the caller should set |
244f6cee9 kobject: add kobj... |
373 374 375 376 |
* up all of the necessary sysfs files for the object and then call * kobject_uevent() with the UEVENT_ADD parameter to ensure that * userspace is properly notified of this kobject's creation. */ |
b2d6db587 Kobject: rename k... |
377 378 |
int kobject_add(struct kobject *kobj, struct kobject *parent, const char *fmt, ...) |
244f6cee9 kobject: add kobj... |
379 380 381 382 383 384 |
{ va_list args; int retval; if (!kobj) return -EINVAL; |
0f4dafc05 Kobject: auto-cle... |
385 386 387 388 389 390 391 392 |
if (!kobj->state_initialized) { printk(KERN_ERR "kobject '%s' (%p): tried to add an " "uninitialized object, something is seriously wrong. ", kobject_name(kobj), kobj); dump_stack(); return -EINVAL; } |
244f6cee9 kobject: add kobj... |
393 394 395 396 397 398 |
va_start(args, fmt); retval = kobject_add_varg(kobj, parent, fmt, args); va_end(args); return retval; } |
b2d6db587 Kobject: rename k... |
399 |
EXPORT_SYMBOL(kobject_add); |
244f6cee9 kobject: add kobj... |
400 |
|
e86000d04 kobject: add kobj... |
401 |
/** |
c11c4154e kobject: add kobj... |
402 403 404 405 406 407 |
* kobject_init_and_add - initialize a kobject structure and add it to the kobject hierarchy * @kobj: pointer to the kobject to initialize * @ktype: pointer to the ktype for this kobject. * @parent: pointer to the parent of this kobject. * @fmt: the name of the kobject. * |
f9cb074bf Kobject: rename k... |
408 |
* This function combines the call to kobject_init() and |
b2d6db587 Kobject: rename k... |
409 410 |
* kobject_add(). The same type of error handling after a call to * kobject_add() and kobject lifetime rules are the same here. |
c11c4154e kobject: add kobj... |
411 412 413 414 415 416 |
*/ int kobject_init_and_add(struct kobject *kobj, struct kobj_type *ktype, struct kobject *parent, const char *fmt, ...) { va_list args; int retval; |
f9cb074bf Kobject: rename k... |
417 |
kobject_init(kobj, ktype); |
c11c4154e kobject: add kobj... |
418 419 420 421 422 423 424 425 426 427 |
va_start(args, fmt); retval = kobject_add_varg(kobj, parent, fmt, args); va_end(args); return retval; } EXPORT_SYMBOL_GPL(kobject_init_and_add); /** |
e374a2bfe Kobject: fix codi... |
428 429 430 |
* kobject_rename - change the name of an object * @kobj: object in question. * @new_name: object's new name |
030c1d2bf kobject: Fix kobj... |
431 432 433 434 435 |
* * It is the responsibility of the caller to provide mutual * exclusion between two different calls of kobject_rename * on the same kobject and to ensure that new_name is valid and * won't conflict with other kobjects. |
1da177e4c Linux-2.6.12-rc2 |
436 |
*/ |
e374a2bfe Kobject: fix codi... |
437 |
int kobject_rename(struct kobject *kobj, const char *new_name) |
1da177e4c Linux-2.6.12-rc2 |
438 439 |
{ int error = 0; |
ca2f37dbc Driver core: noti... |
440 |
const char *devpath = NULL; |
0b4a4fea2 kobject: Cleanup ... |
441 |
const char *dup_name = NULL, *name; |
ca2f37dbc Driver core: noti... |
442 443 |
char *devpath_string = NULL; char *envp[2]; |
1da177e4c Linux-2.6.12-rc2 |
444 445 446 447 |
kobj = kobject_get(kobj); if (!kobj) return -EINVAL; |
b592fcfe7 sysfs: Shadow dir... |
448 449 |
if (!kobj->parent) return -EINVAL; |
ca2f37dbc Driver core: noti... |
450 451 452 453 454 455 456 457 458 459 460 461 462 463 |
devpath = kobject_get_path(kobj, GFP_KERNEL); if (!devpath) { error = -ENOMEM; goto out; } devpath_string = kmalloc(strlen(devpath) + 15, GFP_KERNEL); if (!devpath_string) { error = -ENOMEM; goto out; } sprintf(devpath_string, "DEVPATH_OLD=%s", devpath); envp[0] = devpath_string; envp[1] = NULL; |
ca2f37dbc Driver core: noti... |
464 |
|
0b4a4fea2 kobject: Cleanup ... |
465 466 467 468 469 |
name = dup_name = kstrdup(new_name, GFP_KERNEL); if (!name) { error = -ENOMEM; goto out; } |
e34ff4906 sysfs: remove kty... |
470 |
error = sysfs_rename_dir_ns(kobj, new_name, kobject_namespace(kobj)); |
0b4a4fea2 kobject: Cleanup ... |
471 472 473 474 475 476 |
if (error) goto out; /* Install the new kobject name */ dup_name = kobj->name; kobj->name = name; |
ca2f37dbc Driver core: noti... |
477 478 479 480 |
/* This function is mostly/only used for network interface. * Some hotplug package track interfaces by their name and * therefore want to know when the name is changed by the user. */ |
0b4a4fea2 kobject: Cleanup ... |
481 |
kobject_uevent_env(kobj, KOBJ_MOVE, envp); |
ca2f37dbc Driver core: noti... |
482 483 |
out: |
0b4a4fea2 kobject: Cleanup ... |
484 |
kfree(dup_name); |
ca2f37dbc Driver core: noti... |
485 486 |
kfree(devpath_string); kfree(devpath); |
b592fcfe7 sysfs: Shadow dir... |
487 488 489 490 |
kobject_put(kobj); return error; } |
8344b568f PCI: ACPI PCI slo... |
491 |
EXPORT_SYMBOL_GPL(kobject_rename); |
b592fcfe7 sysfs: Shadow dir... |
492 493 |
/** |
e374a2bfe Kobject: fix codi... |
494 495 496 |
* kobject_move - move object to another parent * @kobj: object in question. * @new_parent: object's new parent (can be NULL) |
8a82472f8 driver core: Intr... |
497 |
*/ |
8a82472f8 driver core: Intr... |
498 499 500 501 502 503 504 505 506 507 508 509 510 |
int kobject_move(struct kobject *kobj, struct kobject *new_parent) { int error; struct kobject *old_parent; const char *devpath = NULL; char *devpath_string = NULL; char *envp[2]; kobj = kobject_get(kobj); if (!kobj) return -EINVAL; new_parent = kobject_get(new_parent); if (!new_parent) { |
c744aeae9 driver core: Allo... |
511 512 |
if (kobj->kset) new_parent = kobject_get(&kobj->kset->kobj); |
8a82472f8 driver core: Intr... |
513 |
} |
e34ff4906 sysfs: remove kty... |
514 |
|
8a82472f8 driver core: Intr... |
515 516 517 518 519 520 521 522 523 524 525 526 527 528 |
/* old object path */ devpath = kobject_get_path(kobj, GFP_KERNEL); if (!devpath) { error = -ENOMEM; goto out; } devpath_string = kmalloc(strlen(devpath) + 15, GFP_KERNEL); if (!devpath_string) { error = -ENOMEM; goto out; } sprintf(devpath_string, "DEVPATH_OLD=%s", devpath); envp[0] = devpath_string; envp[1] = NULL; |
e34ff4906 sysfs: remove kty... |
529 |
error = sysfs_move_dir_ns(kobj, new_parent, kobject_namespace(kobj)); |
8a82472f8 driver core: Intr... |
530 531 532 533 |
if (error) goto out; old_parent = kobj->parent; kobj->parent = new_parent; |
9e993efb0 kobject: new_devi... |
534 |
new_parent = NULL; |
8a82472f8 driver core: Intr... |
535 536 537 |
kobject_put(old_parent); kobject_uevent_env(kobj, KOBJ_MOVE, envp); out: |
9e993efb0 kobject: new_devi... |
538 |
kobject_put(new_parent); |
8a82472f8 driver core: Intr... |
539 540 541 542 543 544 545 |
kobject_put(kobj); kfree(devpath_string); kfree(devpath); return error; } /** |
e374a2bfe Kobject: fix codi... |
546 547 |
* kobject_del - unlink kobject from hierarchy. * @kobj: object. |
1da177e4c Linux-2.6.12-rc2 |
548 |
*/ |
e374a2bfe Kobject: fix codi... |
549 |
void kobject_del(struct kobject *kobj) |
1da177e4c Linux-2.6.12-rc2 |
550 |
{ |
324a56e16 kernfs: s/sysfs_d... |
551 |
struct kernfs_node *sd; |
26ea12dec kobject: grab an ... |
552 |
|
31b9025aa Kobject: make kob... |
553 554 |
if (!kobj) return; |
0f4dafc05 Kobject: auto-cle... |
555 |
|
26ea12dec kobject: grab an ... |
556 |
sd = kobj->sd; |
1da177e4c Linux-2.6.12-rc2 |
557 |
sysfs_remove_dir(kobj); |
26ea12dec kobject: grab an ... |
558 |
sysfs_put(sd); |
0f4dafc05 Kobject: auto-cle... |
559 560 561 562 |
kobj->state_in_sysfs = 0; kobj_kset_leave(kobj); kobject_put(kobj->parent); kobj->parent = NULL; |
1da177e4c Linux-2.6.12-rc2 |
563 564 565 |
} /** |
e374a2bfe Kobject: fix codi... |
566 567 |
* kobject_get - increment refcount for object. * @kobj: object. |
1da177e4c Linux-2.6.12-rc2 |
568 |
*/ |
e374a2bfe Kobject: fix codi... |
569 |
struct kobject *kobject_get(struct kobject *kobj) |
1da177e4c Linux-2.6.12-rc2 |
570 |
{ |
d82d54af7 kobject: WARN as ... |
571 572 573 574 575 576 |
if (kobj) { if (!kobj->state_initialized) WARN(1, KERN_WARNING "kobject: '%s' (%p): is not " "initialized, yet kobject_get() is being " "called. ", kobject_name(kobj), kobj); |
1da177e4c Linux-2.6.12-rc2 |
577 |
kref_get(&kobj->kref); |
d82d54af7 kobject: WARN as ... |
578 |
} |
1da177e4c Linux-2.6.12-rc2 |
579 580 |
return kobj; } |
2d864e417 kref: minor cleanup |
581 |
static struct kobject * __must_check kobject_get_unless_zero(struct kobject *kobj) |
a49b7e82c kobject: fix kset... |
582 583 584 585 586 |
{ if (!kref_get_unless_zero(&kobj->kref)) kobj = NULL; return kobj; } |
18041f477 kobject: make kob... |
587 588 589 |
/* * kobject_cleanup - free kobject resources. * @kobj: object to cleanup |
1da177e4c Linux-2.6.12-rc2 |
590 |
*/ |
18041f477 kobject: make kob... |
591 |
static void kobject_cleanup(struct kobject *kobj) |
1da177e4c Linux-2.6.12-rc2 |
592 |
{ |
0f4dafc05 Kobject: auto-cle... |
593 |
struct kobj_type *t = get_ktype(kobj); |
af5ca3f4e Driver core: chan... |
594 |
const char *name = kobj->name; |
1da177e4c Linux-2.6.12-rc2 |
595 |
|
c817a67ec kobject: delayed ... |
596 597 598 |
pr_debug("kobject: '%s' (%p): %s, parent %p ", kobject_name(kobj), kobj, __func__, kobj->parent); |
0f4dafc05 Kobject: auto-cle... |
599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 |
if (t && !t->release) pr_debug("kobject: '%s' (%p): does not have a release() " "function, it is broken and must be fixed. ", kobject_name(kobj), kobj); /* send "remove" if the caller did not do it but sent "add" */ if (kobj->state_add_uevent_sent && !kobj->state_remove_uevent_sent) { pr_debug("kobject: '%s' (%p): auto cleanup 'remove' event ", kobject_name(kobj), kobj); kobject_uevent(kobj, KOBJ_REMOVE); } /* remove from sysfs if the caller did not do it */ if (kobj->state_in_sysfs) { pr_debug("kobject: '%s' (%p): auto cleanup kobject_del ", kobject_name(kobj), kobj); kobject_del(kobj); } |
ce2c9cb02 kobject: remove t... |
621 |
if (t && t->release) { |
0f4dafc05 Kobject: auto-cle... |
622 623 624 |
pr_debug("kobject: '%s' (%p): calling ktype release ", kobject_name(kobj), kobj); |
1da177e4c Linux-2.6.12-rc2 |
625 |
t->release(kobj); |
0f4dafc05 Kobject: auto-cle... |
626 627 628 |
} /* free name if we allocated it */ |
af5ca3f4e Driver core: chan... |
629 |
if (name) { |
0f4dafc05 Kobject: auto-cle... |
630 631 |
pr_debug("kobject: '%s': free name ", name); |
ce2c9cb02 kobject: remove t... |
632 633 |
kfree(name); } |
1da177e4c Linux-2.6.12-rc2 |
634 |
} |
c817a67ec kobject: delayed ... |
635 636 637 638 639 640 641 |
#ifdef CONFIG_DEBUG_KOBJECT_RELEASE static void kobject_delayed_cleanup(struct work_struct *work) { kobject_cleanup(container_of(to_delayed_work(work), struct kobject, release)); } #endif |
1da177e4c Linux-2.6.12-rc2 |
642 643 |
static void kobject_release(struct kref *kref) { |
c817a67ec kobject: delayed ... |
644 645 |
struct kobject *kobj = container_of(kref, struct kobject, kref); #ifdef CONFIG_DEBUG_KOBJECT_RELEASE |
89c86a64c kobject: delay ko... |
646 647 648 649 |
unsigned long delay = HZ + HZ * (get_random_int() & 0x3); pr_info("kobject: '%s' (%p): %s, parent %p (delayed %ld) ", kobject_name(kobj), kobj, __func__, kobj->parent, delay); |
c817a67ec kobject: delayed ... |
650 |
INIT_DELAYED_WORK(&kobj->release, kobject_delayed_cleanup); |
89c86a64c kobject: delay ko... |
651 652 |
schedule_delayed_work(&kobj->release, delay); |
c817a67ec kobject: delayed ... |
653 654 655 |
#else kobject_cleanup(kobj); #endif |
1da177e4c Linux-2.6.12-rc2 |
656 657 658 |
} /** |
e374a2bfe Kobject: fix codi... |
659 660 |
* kobject_put - decrement refcount for object. * @kobj: object. |
1da177e4c Linux-2.6.12-rc2 |
661 |
* |
e374a2bfe Kobject: fix codi... |
662 |
* Decrement the refcount, and if 0, call kobject_cleanup(). |
1da177e4c Linux-2.6.12-rc2 |
663 |
*/ |
e374a2bfe Kobject: fix codi... |
664 |
void kobject_put(struct kobject *kobj) |
1da177e4c Linux-2.6.12-rc2 |
665 |
{ |
c1ebdae51 kobject: catch ko... |
666 |
if (kobj) { |
d955c78ac Example use of WA... |
667 668 |
if (!kobj->state_initialized) WARN(1, KERN_WARNING "kobject: '%s' (%p): is not " |
c1ebdae51 kobject: catch ko... |
669 670 671 |
"initialized, yet kobject_put() is being " "called. ", kobject_name(kobj), kobj); |
1da177e4c Linux-2.6.12-rc2 |
672 |
kref_put(&kobj->kref, kobject_release); |
c1ebdae51 kobject: catch ko... |
673 |
} |
1da177e4c Linux-2.6.12-rc2 |
674 |
} |
3f9e3ee9d kobject: add kobj... |
675 |
static void dynamic_kobj_release(struct kobject *kobj) |
7423172a5 [PATCH] kobject_a... |
676 |
{ |
810304db7 lib: replace rema... |
677 678 |
pr_debug("kobject: (%p): %s ", kobj, __func__); |
7423172a5 [PATCH] kobject_a... |
679 680 |
kfree(kobj); } |
3f9e3ee9d kobject: add kobj... |
681 |
static struct kobj_type dynamic_kobj_ktype = { |
386f275f5 Driver Core: swit... |
682 683 |
.release = dynamic_kobj_release, .sysfs_ops = &kobj_sysfs_ops, |
7423172a5 [PATCH] kobject_a... |
684 |
}; |
43968d2f1 kobject: get rid ... |
685 |
/** |
3f9e3ee9d kobject: add kobj... |
686 687 688 689 690 691 |
* kobject_create - create a struct kobject dynamically * * This function creates a kobject structure dynamically and sets it up * to be a "dynamic" kobject with a default release function set up. * * If the kobject was not able to be created, NULL will be returned. |
43968d2f1 kobject: get rid ... |
692 |
* The kobject structure returned from here must be cleaned up with a |
f9cb074bf Kobject: rename k... |
693 |
* call to kobject_put() and not kfree(), as kobject_init() has |
43968d2f1 kobject: get rid ... |
694 |
* already been called on this structure. |
3f9e3ee9d kobject: add kobj... |
695 |
*/ |
43968d2f1 kobject: get rid ... |
696 |
struct kobject *kobject_create(void) |
3f9e3ee9d kobject: add kobj... |
697 698 699 700 701 702 |
{ struct kobject *kobj; kobj = kzalloc(sizeof(*kobj), GFP_KERNEL); if (!kobj) return NULL; |
f9cb074bf Kobject: rename k... |
703 |
kobject_init(kobj, &dynamic_kobj_ktype); |
3f9e3ee9d kobject: add kobj... |
704 705 706 707 708 709 |
return kobj; } /** * kobject_create_and_add - create a struct kobject dynamically and register it with sysfs * |
9ff1f838e kobject: fix the ... |
710 |
* @name: the name for the kobject |
3f9e3ee9d kobject: add kobj... |
711 712 |
* @parent: the parent kobject of this kobject, if any. * |
f70701a34 kobject: kerneldo... |
713 |
* This function creates a kobject structure dynamically and registers it |
3f9e3ee9d kobject: add kobj... |
714 |
* with sysfs. When you are finished with this structure, call |
78a2d906b Kobject: convert ... |
715 |
* kobject_put() and the structure will be dynamically freed when |
3f9e3ee9d kobject: add kobj... |
716 717 718 719 720 721 722 723 724 725 726 727 |
* it is no longer being used. * * If the kobject was not able to be created, NULL will be returned. */ struct kobject *kobject_create_and_add(const char *name, struct kobject *parent) { struct kobject *kobj; int retval; kobj = kobject_create(); if (!kobj) return NULL; |
b2d6db587 Kobject: rename k... |
728 |
retval = kobject_add(kobj, parent, "%s", name); |
3f9e3ee9d kobject: add kobj... |
729 730 731 |
if (retval) { printk(KERN_WARNING "%s: kobject_add error: %d ", |
810304db7 lib: replace rema... |
732 |
__func__, retval); |
3f9e3ee9d kobject: add kobj... |
733 734 735 736 737 738 |
kobject_put(kobj); kobj = NULL; } return kobj; } EXPORT_SYMBOL_GPL(kobject_create_and_add); |
7423172a5 [PATCH] kobject_a... |
739 |
/** |
e374a2bfe Kobject: fix codi... |
740 741 |
* kset_init - initialize a kset for use * @k: kset |
1da177e4c Linux-2.6.12-rc2 |
742 |
*/ |
e374a2bfe Kobject: fix codi... |
743 |
void kset_init(struct kset *k) |
1da177e4c Linux-2.6.12-rc2 |
744 |
{ |
e1543ddf7 Kobject: remove k... |
745 |
kobject_init_internal(&k->kobj); |
1da177e4c Linux-2.6.12-rc2 |
746 747 748 |
INIT_LIST_HEAD(&k->list); spin_lock_init(&k->list_lock); } |
23b5212cc Driver Core: add ... |
749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 |
/* default kobject attribute operations */ static ssize_t kobj_attr_show(struct kobject *kobj, struct attribute *attr, char *buf) { struct kobj_attribute *kattr; ssize_t ret = -EIO; kattr = container_of(attr, struct kobj_attribute, attr); if (kattr->show) ret = kattr->show(kobj, kattr, buf); return ret; } static ssize_t kobj_attr_store(struct kobject *kobj, struct attribute *attr, const char *buf, size_t count) { struct kobj_attribute *kattr; ssize_t ret = -EIO; kattr = container_of(attr, struct kobj_attribute, attr); if (kattr->store) ret = kattr->store(kobj, kattr, buf, count); return ret; } |
52cf25d0a Driver core: Cons... |
773 |
const struct sysfs_ops kobj_sysfs_ops = { |
23b5212cc Driver Core: add ... |
774 775 776 |
.show = kobj_attr_show, .store = kobj_attr_store, }; |
29dfe2dc0 kobject: export k... |
777 |
EXPORT_SYMBOL_GPL(kobj_sysfs_ops); |
1da177e4c Linux-2.6.12-rc2 |
778 779 |
/** |
e374a2bfe Kobject: fix codi... |
780 781 |
* kset_register - initialize and add a kset. * @k: kset. |
1da177e4c Linux-2.6.12-rc2 |
782 |
*/ |
e374a2bfe Kobject: fix codi... |
783 |
int kset_register(struct kset *k) |
1da177e4c Linux-2.6.12-rc2 |
784 |
{ |
80f03e349 Driver core: add ... |
785 |
int err; |
31b9025aa Kobject: make kob... |
786 787 |
if (!k) return -EINVAL; |
80f03e349 Driver core: add ... |
788 |
|
1da177e4c Linux-2.6.12-rc2 |
789 |
kset_init(k); |
12e339ac6 Kset: remove kset... |
790 |
err = kobject_add_internal(&k->kobj); |
80f03e349 Driver core: add ... |
791 792 793 794 |
if (err) return err; kobject_uevent(&k->kobj, KOBJ_ADD); return 0; |
1da177e4c Linux-2.6.12-rc2 |
795 |
} |
1da177e4c Linux-2.6.12-rc2 |
796 |
/** |
e374a2bfe Kobject: fix codi... |
797 798 |
* kset_unregister - remove a kset. * @k: kset. |
1da177e4c Linux-2.6.12-rc2 |
799 |
*/ |
e374a2bfe Kobject: fix codi... |
800 |
void kset_unregister(struct kset *k) |
1da177e4c Linux-2.6.12-rc2 |
801 |
{ |
31b9025aa Kobject: make kob... |
802 803 |
if (!k) return; |
35a5fe695 kobject: remove k... |
804 |
kobject_del(&k->kobj); |
78a2d906b Kobject: convert ... |
805 |
kobject_put(&k->kobj); |
1da177e4c Linux-2.6.12-rc2 |
806 |
} |
1da177e4c Linux-2.6.12-rc2 |
807 |
/** |
e374a2bfe Kobject: fix codi... |
808 809 810 |
* kset_find_obj - search for object in kset. * @kset: kset we're looking in. * @name: object's name. |
1da177e4c Linux-2.6.12-rc2 |
811 |
* |
e374a2bfe Kobject: fix codi... |
812 813 814 |
* Lock kset via @kset->subsys, and iterate over @kset->list, * looking for a matching kobject. If matching object is found * take a reference and return the object. |
1da177e4c Linux-2.6.12-rc2 |
815 |
*/ |
e374a2bfe Kobject: fix codi... |
816 |
struct kobject *kset_find_obj(struct kset *kset, const char *name) |
1da177e4c Linux-2.6.12-rc2 |
817 |
{ |
c6a2a3dc2 Kobject: Replace ... |
818 |
struct kobject *k; |
e374a2bfe Kobject: fix codi... |
819 |
struct kobject *ret = NULL; |
1da177e4c Linux-2.6.12-rc2 |
820 821 |
spin_lock(&kset->list_lock); |
c25d1dfbd kobject: Introduc... |
822 |
|
c6a2a3dc2 Kobject: Replace ... |
823 |
list_for_each_entry(k, &kset->list, entry) { |
e374a2bfe Kobject: fix codi... |
824 |
if (kobject_name(k) && !strcmp(kobject_name(k), name)) { |
a49b7e82c kobject: fix kset... |
825 |
ret = kobject_get_unless_zero(k); |
1da177e4c Linux-2.6.12-rc2 |
826 827 828 |
break; } } |
c25d1dfbd kobject: Introduc... |
829 |
|
1da177e4c Linux-2.6.12-rc2 |
830 831 832 |
spin_unlock(&kset->list_lock); return ret; } |
b727c7028 kset: add kset_cr... |
833 834 835 |
static void kset_release(struct kobject *kobj) { struct kset *kset = container_of(kobj, struct kset, kobj); |
9f66fa2a4 kobject: clean up... |
836 837 |
pr_debug("kobject: '%s' (%p): %s ", |
810304db7 lib: replace rema... |
838 |
kobject_name(kobj), kobj, __func__); |
b727c7028 kset: add kset_cr... |
839 840 |
kfree(kset); } |
386f275f5 Driver Core: swit... |
841 842 |
static struct kobj_type kset_ktype = { .sysfs_ops = &kobj_sysfs_ops, |
b727c7028 kset: add kset_cr... |
843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 |
.release = kset_release, }; /** * kset_create - create a struct kset dynamically * * @name: the name for the kset * @uevent_ops: a struct kset_uevent_ops for the kset * @parent_kobj: the parent kobject of this kset, if any. * * This function creates a kset structure dynamically. This structure can * then be registered with the system and show up in sysfs with a call to * kset_register(). When you are finished with this structure, if * kset_register() has been called, call kset_unregister() and the * structure will be dynamically freed when it is no longer being used. * * If the kset was not able to be created, NULL will be returned. */ static struct kset *kset_create(const char *name, |
9cd43611c kobject: Constify... |
862 |
const struct kset_uevent_ops *uevent_ops, |
b727c7028 kset: add kset_cr... |
863 864 865 |
struct kobject *parent_kobj) { struct kset *kset; |
d9cd8f378 kobject: make kse... |
866 |
int retval; |
b727c7028 kset: add kset_cr... |
867 868 869 870 |
kset = kzalloc(sizeof(*kset), GFP_KERNEL); if (!kset) return NULL; |
b7165ebbf kobject: sanitize... |
871 |
retval = kobject_set_name(&kset->kobj, "%s", name); |
d9cd8f378 kobject: make kse... |
872 873 874 875 |
if (retval) { kfree(kset); return NULL; } |
b727c7028 kset: add kset_cr... |
876 877 878 879 |
kset->uevent_ops = uevent_ops; kset->kobj.parent = parent_kobj; /* |
386f275f5 Driver Core: swit... |
880 |
* The kobject of this kset will have a type of kset_ktype and belong to |
b727c7028 kset: add kset_cr... |
881 882 883 |
* no kset itself. That way we can properly free it when it is * finished being used. */ |
386f275f5 Driver Core: swit... |
884 |
kset->kobj.ktype = &kset_ktype; |
b727c7028 kset: add kset_cr... |
885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 |
kset->kobj.kset = NULL; return kset; } /** * kset_create_and_add - create a struct kset dynamically and add it to sysfs * * @name: the name for the kset * @uevent_ops: a struct kset_uevent_ops for the kset * @parent_kobj: the parent kobject of this kset, if any. * * This function creates a kset structure dynamically and registers it * with sysfs. When you are finished with this structure, call * kset_unregister() and the structure will be dynamically freed when it * is no longer being used. * * If the kset was not able to be created, NULL will be returned. */ struct kset *kset_create_and_add(const char *name, |
9cd43611c kobject: Constify... |
905 |
const struct kset_uevent_ops *uevent_ops, |
b727c7028 kset: add kset_cr... |
906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 |
struct kobject *parent_kobj) { struct kset *kset; int error; kset = kset_create(name, uevent_ops, parent_kobj); if (!kset) return NULL; error = kset_register(kset); if (error) { kfree(kset); return NULL; } return kset; } EXPORT_SYMBOL_GPL(kset_create_and_add); |
bc451f205 kobj: Add basic i... |
922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 |
static DEFINE_SPINLOCK(kobj_ns_type_lock); static const struct kobj_ns_type_operations *kobj_ns_ops_tbl[KOBJ_NS_TYPES]; int kobj_ns_type_register(const struct kobj_ns_type_operations *ops) { enum kobj_ns_type type = ops->type; int error; spin_lock(&kobj_ns_type_lock); error = -EINVAL; if (type >= KOBJ_NS_TYPES) goto out; error = -EINVAL; if (type <= KOBJ_NS_TYPE_NONE) goto out; error = -EBUSY; if (kobj_ns_ops_tbl[type]) goto out; error = 0; kobj_ns_ops_tbl[type] = ops; out: spin_unlock(&kobj_ns_type_lock); return error; } int kobj_ns_type_registered(enum kobj_ns_type type) { int registered = 0; spin_lock(&kobj_ns_type_lock); if ((type > KOBJ_NS_TYPE_NONE) && (type < KOBJ_NS_TYPES)) registered = kobj_ns_ops_tbl[type] != NULL; spin_unlock(&kobj_ns_type_lock); return registered; } const struct kobj_ns_type_operations *kobj_child_ns_ops(struct kobject *parent) { const struct kobj_ns_type_operations *ops = NULL; |
41fb96a4b kobject: fix NULL... |
968 |
if (parent && parent->ktype && parent->ktype->child_ns_type) |
bc451f205 kobj: Add basic i... |
969 970 971 972 973 974 975 976 977 |
ops = parent->ktype->child_ns_type(parent); return ops; } const struct kobj_ns_type_operations *kobj_ns_ops(struct kobject *kobj) { return kobj_child_ns_ops(kobj->parent); } |
7dc5dbc87 sysfs: Restrict m... |
978 979 |
bool kobj_ns_current_may_mount(enum kobj_ns_type type) { |
730d7d339 sysfs: Allow moun... |
980 |
bool may_mount = true; |
7dc5dbc87 sysfs: Restrict m... |
981 982 983 984 985 986 987 988 989 |
spin_lock(&kobj_ns_type_lock); if ((type > KOBJ_NS_TYPE_NONE) && (type < KOBJ_NS_TYPES) && kobj_ns_ops_tbl[type]) may_mount = kobj_ns_ops_tbl[type]->current_may_mount(); spin_unlock(&kobj_ns_type_lock); return may_mount; } |
bc451f205 kobj: Add basic i... |
990 |
|
a685e0898 Delay struct net ... |
991 |
void *kobj_ns_grab_current(enum kobj_ns_type type) |
bc451f205 kobj: Add basic i... |
992 |
{ |
a685e0898 Delay struct net ... |
993 |
void *ns = NULL; |
bc451f205 kobj: Add basic i... |
994 995 996 997 |
spin_lock(&kobj_ns_type_lock); if ((type > KOBJ_NS_TYPE_NONE) && (type < KOBJ_NS_TYPES) && kobj_ns_ops_tbl[type]) |
a685e0898 Delay struct net ... |
998 |
ns = kobj_ns_ops_tbl[type]->grab_current_ns(); |
bc451f205 kobj: Add basic i... |
999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 |
spin_unlock(&kobj_ns_type_lock); return ns; } const void *kobj_ns_netlink(enum kobj_ns_type type, struct sock *sk) { const void *ns = NULL; spin_lock(&kobj_ns_type_lock); if ((type > KOBJ_NS_TYPE_NONE) && (type < KOBJ_NS_TYPES) && kobj_ns_ops_tbl[type]) ns = kobj_ns_ops_tbl[type]->netlink_ns(sk); spin_unlock(&kobj_ns_type_lock); return ns; } const void *kobj_ns_initial(enum kobj_ns_type type) { const void *ns = NULL; spin_lock(&kobj_ns_type_lock); if ((type > KOBJ_NS_TYPE_NONE) && (type < KOBJ_NS_TYPES) && kobj_ns_ops_tbl[type]) ns = kobj_ns_ops_tbl[type]->initial_ns(); spin_unlock(&kobj_ns_type_lock); return ns; } |
a685e0898 Delay struct net ... |
1029 |
void kobj_ns_drop(enum kobj_ns_type type, void *ns) |
bc451f205 kobj: Add basic i... |
1030 |
{ |
a685e0898 Delay struct net ... |
1031 1032 1033 1034 1035 |
spin_lock(&kobj_ns_type_lock); if ((type > KOBJ_NS_TYPE_NONE) && (type < KOBJ_NS_TYPES) && kobj_ns_ops_tbl[type] && kobj_ns_ops_tbl[type]->drop_ns) kobj_ns_ops_tbl[type]->drop_ns(ns); spin_unlock(&kobj_ns_type_lock); |
bc451f205 kobj: Add basic i... |
1036 |
} |
1da177e4c Linux-2.6.12-rc2 |
1037 1038 |
EXPORT_SYMBOL(kobject_get); EXPORT_SYMBOL(kobject_put); |
1da177e4c Linux-2.6.12-rc2 |
1039 1040 1041 1042 |
EXPORT_SYMBOL(kobject_del); EXPORT_SYMBOL(kset_register); EXPORT_SYMBOL(kset_unregister); |