Update to 3.4-final.
[linux-flexiantxendom0-3.2.10.git] / kernel / ksysfs.c
1 /*
2  * kernel/ksysfs.c - sysfs attributes in /sys/kernel, which
3  *                   are not related to any other subsystem
4  *
5  * Copyright (C) 2004 Kay Sievers <kay.sievers@vrfy.org>
6  * 
7  * This file is release under the GPLv2
8  *
9  */
10
11 #include <linux/kobject.h>
12 #include <linux/string.h>
13 #include <linux/sysfs.h>
14 #include <linux/export.h>
15 #include <linux/init.h>
16 #include <linux/kexec.h>
17 #include <linux/profile.h>
18 #include <linux/stat.h>
19 #include <linux/sched.h>
20 #include <linux/capability.h>
21
22 #define KERNEL_ATTR_RO(_name) \
23 static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
24
25 #define KERNEL_ATTR_RW(_name) \
26 static struct kobj_attribute _name##_attr = \
27         __ATTR(_name, 0644, _name##_show, _name##_store)
28
29 #if defined(CONFIG_HOTPLUG)
30 /* current uevent sequence number */
31 static ssize_t uevent_seqnum_show(struct kobject *kobj,
32                                   struct kobj_attribute *attr, char *buf)
33 {
34         return sprintf(buf, "%llu\n", (unsigned long long)uevent_seqnum);
35 }
36 KERNEL_ATTR_RO(uevent_seqnum);
37
38 /* uevent helper program, used during early boot */
39 static ssize_t uevent_helper_show(struct kobject *kobj,
40                                   struct kobj_attribute *attr, char *buf)
41 {
42         return sprintf(buf, "%s\n", uevent_helper);
43 }
44 static ssize_t uevent_helper_store(struct kobject *kobj,
45                                    struct kobj_attribute *attr,
46                                    const char *buf, size_t count)
47 {
48         if (count+1 > UEVENT_HELPER_PATH_LEN)
49                 return -ENOENT;
50         memcpy(uevent_helper, buf, count);
51         uevent_helper[count] = '\0';
52         if (count && uevent_helper[count-1] == '\n')
53                 uevent_helper[count-1] = '\0';
54         return count;
55 }
56 KERNEL_ATTR_RW(uevent_helper);
57 #endif
58
59 #ifdef CONFIG_PROFILING
60 static ssize_t profiling_show(struct kobject *kobj,
61                                   struct kobj_attribute *attr, char *buf)
62 {
63         return sprintf(buf, "%d\n", prof_on);
64 }
65 static ssize_t profiling_store(struct kobject *kobj,
66                                    struct kobj_attribute *attr,
67                                    const char *buf, size_t count)
68 {
69         int ret;
70
71         if (prof_on)
72                 return -EEXIST;
73         /*
74          * This eventually calls into get_option() which
75          * has a ton of callers and is not const.  It is
76          * easiest to cast it away here.
77          */
78         profile_setup((char *)buf);
79         ret = profile_init();
80         if (ret)
81                 return ret;
82         ret = create_proc_profile();
83         if (ret)
84                 return ret;
85         return count;
86 }
87 KERNEL_ATTR_RW(profiling);
88 #endif
89
90 #ifdef CONFIG_KEXEC
91 static ssize_t kexec_loaded_show(struct kobject *kobj,
92                                  struct kobj_attribute *attr, char *buf)
93 {
94         return sprintf(buf, "%d\n", !!kexec_image);
95 }
96 KERNEL_ATTR_RO(kexec_loaded);
97
98 static ssize_t kexec_crash_loaded_show(struct kobject *kobj,
99                                        struct kobj_attribute *attr, char *buf)
100 {
101         return sprintf(buf, "%d\n", !!kexec_crash_image);
102 }
103 KERNEL_ATTR_RO(kexec_crash_loaded);
104
105 static ssize_t kexec_crash_size_show(struct kobject *kobj,
106                                        struct kobj_attribute *attr, char *buf)
107 {
108         return sprintf(buf, "%zu\n", crash_get_memory_size());
109 }
110 #ifndef CONFIG_XEN
111 static ssize_t kexec_crash_size_store(struct kobject *kobj,
112                                    struct kobj_attribute *attr,
113                                    const char *buf, size_t count)
114 {
115         unsigned long cnt;
116         int ret;
117
118         if (strict_strtoul(buf, 0, &cnt))
119                 return -EINVAL;
120
121         ret = crash_shrink_memory(cnt);
122         return ret < 0 ? ret : count;
123 }
124 KERNEL_ATTR_RW(kexec_crash_size);
125 #else
126 KERNEL_ATTR_RO(kexec_crash_size);
127 #endif
128
129 static ssize_t vmcoreinfo_show(struct kobject *kobj,
130                                struct kobj_attribute *attr, char *buf)
131 {
132         return sprintf(buf, "%lx %x\n",
133                        paddr_vmcoreinfo_note(),
134                        (unsigned int)vmcoreinfo_max_size);
135 }
136 KERNEL_ATTR_RO(vmcoreinfo);
137
138 #endif /* CONFIG_KEXEC */
139
140 /* whether file capabilities are enabled */
141 static ssize_t fscaps_show(struct kobject *kobj,
142                                   struct kobj_attribute *attr, char *buf)
143 {
144         return sprintf(buf, "%d\n", file_caps_enabled);
145 }
146 KERNEL_ATTR_RO(fscaps);
147
148 /*
149  * Make /sys/kernel/notes give the raw contents of our kernel .notes section.
150  */
151 extern const void __start_notes __attribute__((weak));
152 extern const void __stop_notes __attribute__((weak));
153 #define notes_size (&__stop_notes - &__start_notes)
154
155 static ssize_t notes_read(struct file *filp, struct kobject *kobj,
156                           struct bin_attribute *bin_attr,
157                           char *buf, loff_t off, size_t count)
158 {
159         memcpy(buf, &__start_notes + off, count);
160         return count;
161 }
162
163 static struct bin_attribute notes_attr = {
164         .attr = {
165                 .name = "notes",
166                 .mode = S_IRUGO,
167         },
168         .read = &notes_read,
169 };
170
171 struct kobject *kernel_kobj;
172 EXPORT_SYMBOL_GPL(kernel_kobj);
173
174 #ifdef CONFIG_ENTERPRISE_SUPPORT
175 const char *supported_printable(int taint)
176 {
177         int mask = TAINT_PROPRIETARY_MODULE|TAINT_NO_SUPPORT;
178         if ((taint & mask) == mask)
179                 return "No, Proprietary and Unsupported modules are loaded";
180         else if (taint & TAINT_PROPRIETARY_MODULE)
181                 return "No, Proprietary modules are loaded";
182         else if (taint & TAINT_NO_SUPPORT)
183                 return "No, Unsupported modules are loaded";
184         else if (taint & TAINT_EXTERNAL_SUPPORT)
185                 return "Yes, External";
186         else
187                 return "Yes";
188 }
189
190 static ssize_t supported_show(struct kobject *kobj,
191                               struct kobj_attribute *attr, char *buf)
192 {
193         return sprintf(buf, "%s\n", supported_printable(get_taint()));
194 }
195 KERNEL_ATTR_RO(supported);
196 #endif
197
198 static struct attribute * kernel_attrs[] = {
199         &fscaps_attr.attr,
200 #if defined(CONFIG_HOTPLUG)
201         &uevent_seqnum_attr.attr,
202         &uevent_helper_attr.attr,
203 #endif
204 #ifdef CONFIG_PROFILING
205         &profiling_attr.attr,
206 #endif
207 #ifdef CONFIG_KEXEC
208         &kexec_loaded_attr.attr,
209         &kexec_crash_loaded_attr.attr,
210         &kexec_crash_size_attr.attr,
211         &vmcoreinfo_attr.attr,
212 #endif
213 #ifdef CONFIG_ENTERPRISE_SUPPORT
214         &supported_attr.attr,
215 #endif
216         NULL
217 };
218
219 static struct attribute_group kernel_attr_group = {
220         .attrs = kernel_attrs,
221 };
222
223 static int __init ksysfs_init(void)
224 {
225         int error;
226
227         kernel_kobj = kobject_create_and_add("kernel", NULL);
228         if (!kernel_kobj) {
229                 error = -ENOMEM;
230                 goto exit;
231         }
232         error = sysfs_create_group(kernel_kobj, &kernel_attr_group);
233         if (error)
234                 goto kset_exit;
235
236         if (notes_size > 0) {
237                 notes_attr.size = notes_size;
238                 error = sysfs_create_bin_file(kernel_kobj, &notes_attr);
239                 if (error)
240                         goto group_exit;
241         }
242
243         return 0;
244
245 group_exit:
246         sysfs_remove_group(kernel_kobj, &kernel_attr_group);
247 kset_exit:
248         kobject_put(kernel_kobj);
249 exit:
250         return error;
251 }
252
253 core_initcall(ksysfs_init);