Blame view

kernel/ksysfs.c 5.62 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
  /*
   * kernel/ksysfs.c - sysfs attributes in /sys/kernel, which
   * 		     are not related to any other subsystem
   *
   * Copyright (C) 2004 Kay Sievers <kay.sievers@vrfy.org>
   * 
   * This file is release under the GPLv2
   *
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
10
11
12
  #include <linux/kobject.h>
  #include <linux/string.h>
  #include <linux/sysfs.h>
9984de1a5   Paul Gortmaker   kernel: Map most ...
13
  #include <linux/export.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
14
  #include <linux/init.h>
c330dda90   Jeff Moyer   [PATCH] Add a sys...
15
  #include <linux/kexec.h>
22b8ce947   Dave Hansen   profiling: dynami...
16
  #include <linux/profile.h>
1596425fd   Paul Gortmaker   kernel: ksysfs.c ...
17
  #include <linux/stat.h>
5cb350baf   Dhaval Giani   sched: group sche...
18
  #include <linux/sched.h>
088ab0b4d   Ludwig Nussel   kernel/ksysfs.c: ...
19
  #include <linux/capability.h>
52f5684c8   Gideon Israel Dsouza   kernel: use macro...
20
  #include <linux/compiler.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
21

7a7547431   Paul Gortmaker   rcu: Fix sparse w...
22
  #include <linux/rcupdate.h>	/* rcu_expedited */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
23
  #define KERNEL_ATTR_RO(_name) \
386f275f5   Kay Sievers   Driver Core: swit...
24
  static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
25
26
  
  #define KERNEL_ATTR_RW(_name) \
386f275f5   Kay Sievers   Driver Core: swit...
27
  static struct kobj_attribute _name##_attr = \
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
28
  	__ATTR(_name, 0644, _name##_show, _name##_store)
0f76e5acf   Kay Sievers   [PATCH] add ueven...
29
  /* current uevent sequence number */
386f275f5   Kay Sievers   Driver Core: swit...
30
31
  static ssize_t uevent_seqnum_show(struct kobject *kobj,
  				  struct kobj_attribute *attr, char *buf)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
32
  {
386f275f5   Kay Sievers   Driver Core: swit...
33
34
  	return sprintf(buf, "%llu
  ", (unsigned long long)uevent_seqnum);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
35
  }
0f76e5acf   Kay Sievers   [PATCH] add ueven...
36
  KERNEL_ATTR_RO(uevent_seqnum);
86d56134f   Michael Marineau   kobject: Make sup...
37
  #ifdef CONFIG_UEVENT_HELPER
af6658527   Thadeu Lima de Souza Cascardo   fix comment typo ...
38
  /* uevent helper program, used during early boot */
386f275f5   Kay Sievers   Driver Core: swit...
39
40
  static ssize_t uevent_helper_show(struct kobject *kobj,
  				  struct kobj_attribute *attr, char *buf)
0f76e5acf   Kay Sievers   [PATCH] add ueven...
41
  {
386f275f5   Kay Sievers   Driver Core: swit...
42
43
  	return sprintf(buf, "%s
  ", uevent_helper);
0f76e5acf   Kay Sievers   [PATCH] add ueven...
44
  }
386f275f5   Kay Sievers   Driver Core: swit...
45
46
47
  static ssize_t uevent_helper_store(struct kobject *kobj,
  				   struct kobj_attribute *attr,
  				   const char *buf, size_t count)
0f76e5acf   Kay Sievers   [PATCH] add ueven...
48
  {
312c004d3   Kay Sievers   [PATCH] driver co...
49
  	if (count+1 > UEVENT_HELPER_PATH_LEN)
0f76e5acf   Kay Sievers   [PATCH] add ueven...
50
  		return -ENOENT;
386f275f5   Kay Sievers   Driver Core: swit...
51
  	memcpy(uevent_helper, buf, count);
312c004d3   Kay Sievers   [PATCH] driver co...
52
53
54
55
  	uevent_helper[count] = '\0';
  	if (count && uevent_helper[count-1] == '
  ')
  		uevent_helper[count-1] = '\0';
0f76e5acf   Kay Sievers   [PATCH] add ueven...
56
57
58
  	return count;
  }
  KERNEL_ATTR_RW(uevent_helper);
86d56134f   Michael Marineau   kobject: Make sup...
59
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
60

22b8ce947   Dave Hansen   profiling: dynami...
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
  #ifdef CONFIG_PROFILING
  static ssize_t profiling_show(struct kobject *kobj,
  				  struct kobj_attribute *attr, char *buf)
  {
  	return sprintf(buf, "%d
  ", prof_on);
  }
  static ssize_t profiling_store(struct kobject *kobj,
  				   struct kobj_attribute *attr,
  				   const char *buf, size_t count)
  {
  	int ret;
  
  	if (prof_on)
  		return -EEXIST;
  	/*
  	 * This eventually calls into get_option() which
  	 * has a ton of callers and is not const.  It is
  	 * easiest to cast it away here.
  	 */
  	profile_setup((char *)buf);
  	ret = profile_init();
  	if (ret)
  		return ret;
  	ret = create_proc_profile();
  	if (ret)
  		return ret;
  	return count;
  }
  KERNEL_ATTR_RW(profiling);
  #endif
c330dda90   Jeff Moyer   [PATCH] Add a sys...
92
  #ifdef CONFIG_KEXEC
386f275f5   Kay Sievers   Driver Core: swit...
93
94
  static ssize_t kexec_loaded_show(struct kobject *kobj,
  				 struct kobj_attribute *attr, char *buf)
c330dda90   Jeff Moyer   [PATCH] Add a sys...
95
  {
386f275f5   Kay Sievers   Driver Core: swit...
96
97
  	return sprintf(buf, "%d
  ", !!kexec_image);
c330dda90   Jeff Moyer   [PATCH] Add a sys...
98
99
  }
  KERNEL_ATTR_RO(kexec_loaded);
386f275f5   Kay Sievers   Driver Core: swit...
100
101
  static ssize_t kexec_crash_loaded_show(struct kobject *kobj,
  				       struct kobj_attribute *attr, char *buf)
c330dda90   Jeff Moyer   [PATCH] Add a sys...
102
  {
386f275f5   Kay Sievers   Driver Core: swit...
103
104
  	return sprintf(buf, "%d
  ", !!kexec_crash_image);
c330dda90   Jeff Moyer   [PATCH] Add a sys...
105
106
  }
  KERNEL_ATTR_RO(kexec_crash_loaded);
fd59d231f   Ken'ichi Ohmichi   Add vmcoreinfo
107

06a7f7112   Amerigo Wang   kexec: premit red...
108
109
110
111
112
113
114
115
116
117
118
119
  static ssize_t kexec_crash_size_show(struct kobject *kobj,
  				       struct kobj_attribute *attr, char *buf)
  {
  	return sprintf(buf, "%zu
  ", crash_get_memory_size());
  }
  static ssize_t kexec_crash_size_store(struct kobject *kobj,
  				   struct kobj_attribute *attr,
  				   const char *buf, size_t count)
  {
  	unsigned long cnt;
  	int ret;
6072ddc85   Jingoo Han   kernel: replace s...
120
  	if (kstrtoul(buf, 0, &cnt))
06a7f7112   Amerigo Wang   kexec: premit red...
121
122
123
124
125
126
  		return -EINVAL;
  
  	ret = crash_shrink_memory(cnt);
  	return ret < 0 ? ret : count;
  }
  KERNEL_ATTR_RW(kexec_crash_size);
386f275f5   Kay Sievers   Driver Core: swit...
127
128
  static ssize_t vmcoreinfo_show(struct kobject *kobj,
  			       struct kobj_attribute *attr, char *buf)
fd59d231f   Ken'ichi Ohmichi   Add vmcoreinfo
129
  {
386f275f5   Kay Sievers   Driver Core: swit...
130
131
  	return sprintf(buf, "%lx %x
  ",
fd59d231f   Ken'ichi Ohmichi   Add vmcoreinfo
132
  		       paddr_vmcoreinfo_note(),
77019967f   Vivek Goyal   kdump: fix export...
133
  		       (unsigned int)sizeof(vmcoreinfo_note));
fd59d231f   Ken'ichi Ohmichi   Add vmcoreinfo
134
135
  }
  KERNEL_ATTR_RO(vmcoreinfo);
c330dda90   Jeff Moyer   [PATCH] Add a sys...
136
  #endif /* CONFIG_KEXEC */
088ab0b4d   Ludwig Nussel   kernel/ksysfs.c: ...
137
138
139
140
141
142
143
144
  /* whether file capabilities are enabled */
  static ssize_t fscaps_show(struct kobject *kobj,
  				  struct kobj_attribute *attr, char *buf)
  {
  	return sprintf(buf, "%d
  ", file_caps_enabled);
  }
  KERNEL_ATTR_RO(fscaps);
3705b88db   Antti P Miettinen   rcu: Add a module...
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
  int rcu_expedited;
  static ssize_t rcu_expedited_show(struct kobject *kobj,
  				  struct kobj_attribute *attr, char *buf)
  {
  	return sprintf(buf, "%d
  ", rcu_expedited);
  }
  static ssize_t rcu_expedited_store(struct kobject *kobj,
  				   struct kobj_attribute *attr,
  				   const char *buf, size_t count)
  {
  	if (kstrtoint(buf, 0, &rcu_expedited))
  		return -EINVAL;
  
  	return count;
  }
  KERNEL_ATTR_RW(rcu_expedited);
da1a679cd   Roland McGrath   Add /sys/kernel/n...
162
163
164
  /*
   * Make /sys/kernel/notes give the raw contents of our kernel .notes section.
   */
52f5684c8   Gideon Israel Dsouza   kernel: use macro...
165
166
  extern const void __start_notes __weak;
  extern const void __stop_notes __weak;
da1a679cd   Roland McGrath   Add /sys/kernel/n...
167
  #define	notes_size (&__stop_notes - &__start_notes)
2c3c8bea6   Chris Wright   sysfs: add struct...
168
169
  static ssize_t notes_read(struct file *filp, struct kobject *kobj,
  			  struct bin_attribute *bin_attr,
da1a679cd   Roland McGrath   Add /sys/kernel/n...
170
171
172
173
174
175
176
177
178
179
180
181
182
  			  char *buf, loff_t off, size_t count)
  {
  	memcpy(buf, &__start_notes + off, count);
  	return count;
  }
  
  static struct bin_attribute notes_attr = {
  	.attr = {
  		.name = "notes",
  		.mode = S_IRUGO,
  	},
  	.read = &notes_read,
  };
0ff21e466   Greg Kroah-Hartman   kobject: convert ...
183
184
  struct kobject *kernel_kobj;
  EXPORT_SYMBOL_GPL(kernel_kobj);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
185
186
  
  static struct attribute * kernel_attrs[] = {
088ab0b4d   Ludwig Nussel   kernel/ksysfs.c: ...
187
  	&fscaps_attr.attr,
0f76e5acf   Kay Sievers   [PATCH] add ueven...
188
  	&uevent_seqnum_attr.attr,
86d56134f   Michael Marineau   kobject: Make sup...
189
  #ifdef CONFIG_UEVENT_HELPER
0f76e5acf   Kay Sievers   [PATCH] add ueven...
190
  	&uevent_helper_attr.attr,
86d56134f   Michael Marineau   kobject: Make sup...
191
  #endif
22b8ce947   Dave Hansen   profiling: dynami...
192
193
194
  #ifdef CONFIG_PROFILING
  	&profiling_attr.attr,
  #endif
c330dda90   Jeff Moyer   [PATCH] Add a sys...
195
196
197
  #ifdef CONFIG_KEXEC
  	&kexec_loaded_attr.attr,
  	&kexec_crash_loaded_attr.attr,
06a7f7112   Amerigo Wang   kexec: premit red...
198
  	&kexec_crash_size_attr.attr,
fd59d231f   Ken'ichi Ohmichi   Add vmcoreinfo
199
  	&vmcoreinfo_attr.attr,
c330dda90   Jeff Moyer   [PATCH] Add a sys...
200
  #endif
3705b88db   Antti P Miettinen   rcu: Add a module...
201
  	&rcu_expedited_attr.attr,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
202
203
204
205
206
207
208
209
210
  	NULL
  };
  
  static struct attribute_group kernel_attr_group = {
  	.attrs = kernel_attrs,
  };
  
  static int __init ksysfs_init(void)
  {
bd35b93d8   Greg Kroah-Hartman   kset: convert ker...
211
  	int error;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
212

0ff21e466   Greg Kroah-Hartman   kobject: convert ...
213
214
  	kernel_kobj = kobject_create_and_add("kernel", NULL);
  	if (!kernel_kobj) {
bd35b93d8   Greg Kroah-Hartman   kset: convert ker...
215
216
217
  		error = -ENOMEM;
  		goto exit;
  	}
0ff21e466   Greg Kroah-Hartman   kobject: convert ...
218
  	error = sysfs_create_group(kernel_kobj, &kernel_attr_group);
bd35b93d8   Greg Kroah-Hartman   kset: convert ker...
219
220
221
222
  	if (error)
  		goto kset_exit;
  
  	if (notes_size > 0) {
da1a679cd   Roland McGrath   Add /sys/kernel/n...
223
  		notes_attr.size = notes_size;
0ff21e466   Greg Kroah-Hartman   kobject: convert ...
224
  		error = sysfs_create_bin_file(kernel_kobj, &notes_attr);
bd35b93d8   Greg Kroah-Hartman   kset: convert ker...
225
226
  		if (error)
  			goto group_exit;
da1a679cd   Roland McGrath   Add /sys/kernel/n...
227
  	}
bd35b93d8   Greg Kroah-Hartman   kset: convert ker...
228
  	return 0;
bd35b93d8   Greg Kroah-Hartman   kset: convert ker...
229
  group_exit:
0ff21e466   Greg Kroah-Hartman   kobject: convert ...
230
  	sysfs_remove_group(kernel_kobj, &kernel_attr_group);
bd35b93d8   Greg Kroah-Hartman   kset: convert ker...
231
  kset_exit:
78a2d906b   Greg Kroah-Hartman   Kobject: convert ...
232
  	kobject_put(kernel_kobj);
bd35b93d8   Greg Kroah-Hartman   kset: convert ker...
233
  exit:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
234
235
236
237
  	return error;
  }
  
  core_initcall(ksysfs_init);