2019-05-27 08:55:17 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2005-04-16 15:20:36 -07:00
|
|
|
/*
|
|
|
|
|
* 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>
|
|
|
|
|
*/
|
|
|
|
|
|
2022-11-03 16:24:07 +01:00
|
|
|
#include <asm/byteorder.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
#include <linux/kobject.h>
|
2026-04-02 16:15:02 +02:00
|
|
|
#include <linux/ksysfs.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
#include <linux/string.h>
|
|
|
|
|
#include <linux/sysfs.h>
|
2011-05-23 14:51:41 -04:00
|
|
|
#include <linux/export.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
#include <linux/init.h>
|
2025-11-18 17:15:05 +05:30
|
|
|
#include <linux/vmcore_info.h>
|
2008-10-15 22:01:46 -07:00
|
|
|
#include <linux/profile.h>
|
2011-07-28 14:22:29 -04:00
|
|
|
#include <linux/stat.h>
|
2007-10-15 17:00:14 +02:00
|
|
|
#include <linux/sched.h>
|
2011-02-28 15:57:17 +01:00
|
|
|
#include <linux/capability.h>
|
2014-04-07 15:39:20 -07:00
|
|
|
#include <linux/compiler.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2015-11-24 15:44:06 -08:00
|
|
|
#include <linux/rcupdate.h> /* rcu_expedited and rcu_normal */
|
2014-02-11 16:10:12 -05:00
|
|
|
|
2022-11-03 16:24:07 +01:00
|
|
|
#if defined(__LITTLE_ENDIAN)
|
|
|
|
|
#define CPU_BYTEORDER_STRING "little"
|
|
|
|
|
#elif defined(__BIG_ENDIAN)
|
|
|
|
|
#define CPU_BYTEORDER_STRING "big"
|
|
|
|
|
#else
|
|
|
|
|
#error Unknown byteorder
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
#define KERNEL_ATTR_RO(_name) \
|
2007-11-02 13:47:53 +01:00
|
|
|
static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
#define KERNEL_ATTR_RW(_name) \
|
2022-03-23 16:05:35 -07:00
|
|
|
static struct kobj_attribute _name##_attr = __ATTR_RW(_name)
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2005-11-11 04:58:04 +01:00
|
|
|
/* current uevent sequence number */
|
2007-11-02 13:47:53 +01:00
|
|
|
static ssize_t uevent_seqnum_show(struct kobject *kobj,
|
|
|
|
|
struct kobj_attribute *attr, char *buf)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
2024-02-14 08:48:28 +00:00
|
|
|
return sysfs_emit(buf, "%llu\n", (u64)atomic64_read(&uevent_seqnum));
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
2005-11-11 04:58:04 +01:00
|
|
|
KERNEL_ATTR_RO(uevent_seqnum);
|
|
|
|
|
|
2022-11-03 16:24:07 +01:00
|
|
|
/* cpu byteorder */
|
|
|
|
|
static ssize_t cpu_byteorder_show(struct kobject *kobj,
|
|
|
|
|
struct kobj_attribute *attr, char *buf)
|
|
|
|
|
{
|
|
|
|
|
return sysfs_emit(buf, "%s\n", CPU_BYTEORDER_STRING);
|
|
|
|
|
}
|
|
|
|
|
KERNEL_ATTR_RO(cpu_byteorder);
|
|
|
|
|
|
2022-12-21 16:17:52 +00:00
|
|
|
/* address bits */
|
|
|
|
|
static ssize_t address_bits_show(struct kobject *kobj,
|
|
|
|
|
struct kobj_attribute *attr, char *buf)
|
|
|
|
|
{
|
|
|
|
|
return sysfs_emit(buf, "%zu\n", sizeof(void *) * 8 /* CHAR_BIT */);
|
|
|
|
|
}
|
|
|
|
|
KERNEL_ATTR_RO(address_bits);
|
|
|
|
|
|
2014-04-10 14:09:31 -07:00
|
|
|
#ifdef CONFIG_UEVENT_HELPER
|
2010-01-17 19:14:26 -02:00
|
|
|
/* uevent helper program, used during early boot */
|
2007-11-02 13:47:53 +01:00
|
|
|
static ssize_t uevent_helper_show(struct kobject *kobj,
|
|
|
|
|
struct kobj_attribute *attr, char *buf)
|
2005-11-11 04:58:04 +01:00
|
|
|
{
|
2023-03-24 15:40:41 +00:00
|
|
|
return sysfs_emit(buf, "%s\n", uevent_helper);
|
2005-11-11 04:58:04 +01:00
|
|
|
}
|
2007-11-02 13:47:53 +01:00
|
|
|
static ssize_t uevent_helper_store(struct kobject *kobj,
|
|
|
|
|
struct kobj_attribute *attr,
|
|
|
|
|
const char *buf, size_t count)
|
2005-11-11 04:58:04 +01:00
|
|
|
{
|
2005-11-16 09:00:00 +01:00
|
|
|
if (count+1 > UEVENT_HELPER_PATH_LEN)
|
2005-11-11 04:58:04 +01:00
|
|
|
return -ENOENT;
|
2007-11-02 13:47:53 +01:00
|
|
|
memcpy(uevent_helper, buf, count);
|
2005-11-16 09:00:00 +01:00
|
|
|
uevent_helper[count] = '\0';
|
|
|
|
|
if (count && uevent_helper[count-1] == '\n')
|
|
|
|
|
uevent_helper[count-1] = '\0';
|
2005-11-11 04:58:04 +01:00
|
|
|
return count;
|
|
|
|
|
}
|
|
|
|
|
KERNEL_ATTR_RW(uevent_helper);
|
2014-04-10 14:09:31 -07:00
|
|
|
#endif
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2008-10-15 22:01:46 -07:00
|
|
|
#ifdef CONFIG_PROFILING
|
|
|
|
|
static ssize_t profiling_show(struct kobject *kobj,
|
|
|
|
|
struct kobj_attribute *attr, char *buf)
|
|
|
|
|
{
|
2023-03-24 15:40:41 +00:00
|
|
|
return sysfs_emit(buf, "%d\n", prof_on);
|
2008-10-15 22:01:46 -07:00
|
|
|
}
|
|
|
|
|
static ssize_t profiling_store(struct kobject *kobj,
|
|
|
|
|
struct kobj_attribute *attr,
|
|
|
|
|
const char *buf, size_t count)
|
|
|
|
|
{
|
|
|
|
|
int ret;
|
2024-07-27 19:59:57 +09:00
|
|
|
static DEFINE_MUTEX(lock);
|
2008-10-15 22:01:46 -07:00
|
|
|
|
2024-07-27 19:59:57 +09:00
|
|
|
/*
|
|
|
|
|
* We need serialization, for profile_setup() initializes prof_on
|
|
|
|
|
* value and profile_init() must not reallocate prof_buffer after
|
|
|
|
|
* once allocated.
|
|
|
|
|
*/
|
|
|
|
|
guard(mutex)(&lock);
|
2008-10-15 22:01:46 -07:00
|
|
|
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
|
|
|
|
|
|
2024-01-24 13:12:42 +08:00
|
|
|
#ifdef CONFIG_VMCORE_INFO
|
2017-05-08 15:56:18 -07:00
|
|
|
|
2007-11-02 13:47:53 +01:00
|
|
|
static ssize_t vmcoreinfo_show(struct kobject *kobj,
|
|
|
|
|
struct kobj_attribute *attr, char *buf)
|
2007-10-16 23:27:27 -07:00
|
|
|
{
|
2016-08-02 14:06:00 -07:00
|
|
|
phys_addr_t vmcore_base = paddr_vmcoreinfo_note();
|
2023-03-24 15:40:41 +00:00
|
|
|
return sysfs_emit(buf, "%pa %x\n", &vmcore_base,
|
|
|
|
|
(unsigned int)VMCOREINFO_NOTE_SIZE);
|
2007-10-16 23:27:27 -07:00
|
|
|
}
|
|
|
|
|
KERNEL_ATTR_RO(vmcoreinfo);
|
|
|
|
|
|
2024-01-24 13:12:42 +08:00
|
|
|
#endif /* CONFIG_VMCORE_INFO */
|
2006-06-23 02:05:07 -07:00
|
|
|
|
2011-02-28 15:57:17 +01:00
|
|
|
/* whether file capabilities are enabled */
|
|
|
|
|
static ssize_t fscaps_show(struct kobject *kobj,
|
|
|
|
|
struct kobj_attribute *attr, char *buf)
|
|
|
|
|
{
|
2023-03-24 15:40:41 +00:00
|
|
|
return sysfs_emit(buf, "%d\n", file_caps_enabled);
|
2011-02-28 15:57:17 +01:00
|
|
|
}
|
|
|
|
|
KERNEL_ATTR_RO(fscaps);
|
|
|
|
|
|
2015-12-07 13:09:52 -08:00
|
|
|
#ifndef CONFIG_TINY_RCU
|
2012-10-05 09:59:15 +03:00
|
|
|
int rcu_expedited;
|
|
|
|
|
static ssize_t rcu_expedited_show(struct kobject *kobj,
|
|
|
|
|
struct kobj_attribute *attr, char *buf)
|
|
|
|
|
{
|
2023-03-24 15:40:41 +00:00
|
|
|
return sysfs_emit(buf, "%d\n", READ_ONCE(rcu_expedited));
|
2012-10-05 09:59:15 +03:00
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
|
|
2015-11-24 15:44:06 -08:00
|
|
|
int rcu_normal;
|
|
|
|
|
static ssize_t rcu_normal_show(struct kobject *kobj,
|
|
|
|
|
struct kobj_attribute *attr, char *buf)
|
|
|
|
|
{
|
2023-03-24 15:40:41 +00:00
|
|
|
return sysfs_emit(buf, "%d\n", READ_ONCE(rcu_normal));
|
2015-11-24 15:44:06 -08:00
|
|
|
}
|
|
|
|
|
static ssize_t rcu_normal_store(struct kobject *kobj,
|
|
|
|
|
struct kobj_attribute *attr,
|
|
|
|
|
const char *buf, size_t count)
|
|
|
|
|
{
|
|
|
|
|
if (kstrtoint(buf, 0, &rcu_normal))
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
|
|
return count;
|
|
|
|
|
}
|
|
|
|
|
KERNEL_ATTR_RW(rcu_normal);
|
2015-12-07 13:09:52 -08:00
|
|
|
#endif /* #ifndef CONFIG_TINY_RCU */
|
2015-11-24 15:44:06 -08:00
|
|
|
|
2007-07-19 01:48:39 -07:00
|
|
|
/*
|
|
|
|
|
* Make /sys/kernel/notes give the raw contents of our kernel .notes section.
|
|
|
|
|
*/
|
2024-04-15 18:20:44 +02:00
|
|
|
extern const void __start_notes;
|
|
|
|
|
extern const void __stop_notes;
|
2007-07-19 01:48:39 -07:00
|
|
|
#define notes_size (&__stop_notes - &__start_notes)
|
|
|
|
|
|
2024-11-21 17:48:47 +01:00
|
|
|
static __ro_after_init BIN_ATTR_SIMPLE_RO(notes);
|
2007-07-19 01:48:39 -07:00
|
|
|
|
2007-11-06 10:36:58 -08:00
|
|
|
struct kobject *kernel_kobj;
|
|
|
|
|
EXPORT_SYMBOL_GPL(kernel_kobj);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
static struct attribute * kernel_attrs[] = {
|
2011-02-28 15:57:17 +01:00
|
|
|
&fscaps_attr.attr,
|
2005-11-11 04:58:04 +01:00
|
|
|
&uevent_seqnum_attr.attr,
|
2022-11-03 16:24:07 +01:00
|
|
|
&cpu_byteorder_attr.attr,
|
2022-12-21 16:17:52 +00:00
|
|
|
&address_bits_attr.attr,
|
2014-04-10 14:09:31 -07:00
|
|
|
#ifdef CONFIG_UEVENT_HELPER
|
2005-11-11 04:58:04 +01:00
|
|
|
&uevent_helper_attr.attr,
|
2014-04-10 14:09:31 -07:00
|
|
|
#endif
|
2008-10-15 22:01:46 -07:00
|
|
|
#ifdef CONFIG_PROFILING
|
|
|
|
|
&profiling_attr.attr,
|
|
|
|
|
#endif
|
2024-01-24 13:12:42 +08:00
|
|
|
#ifdef CONFIG_VMCORE_INFO
|
2007-10-16 23:27:27 -07:00
|
|
|
&vmcoreinfo_attr.attr,
|
2005-04-16 15:20:36 -07:00
|
|
|
#endif
|
2015-12-07 13:09:52 -08:00
|
|
|
#ifndef CONFIG_TINY_RCU
|
2012-10-05 09:59:15 +03:00
|
|
|
&rcu_expedited_attr.attr,
|
2015-11-24 15:44:06 -08:00
|
|
|
&rcu_normal_attr.attr,
|
2015-12-07 13:09:52 -08:00
|
|
|
#endif
|
2005-04-16 15:20:36 -07:00
|
|
|
NULL
|
|
|
|
|
};
|
|
|
|
|
|
2017-07-10 15:51:14 -07:00
|
|
|
static const struct attribute_group kernel_attr_group = {
|
2005-04-16 15:20:36 -07:00
|
|
|
.attrs = kernel_attrs,
|
|
|
|
|
};
|
|
|
|
|
|
2026-04-02 16:15:02 +02:00
|
|
|
void __init ksysfs_init(void)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
2007-10-29 20:13:17 +01:00
|
|
|
int error;
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-11-06 10:36:58 -08:00
|
|
|
kernel_kobj = kobject_create_and_add("kernel", NULL);
|
|
|
|
|
if (!kernel_kobj) {
|
2007-10-29 20:13:17 +01:00
|
|
|
error = -ENOMEM;
|
|
|
|
|
goto exit;
|
|
|
|
|
}
|
2007-11-06 10:36:58 -08:00
|
|
|
error = sysfs_create_group(kernel_kobj, &kernel_attr_group);
|
2007-10-29 20:13:17 +01:00
|
|
|
if (error)
|
|
|
|
|
goto kset_exit;
|
|
|
|
|
|
|
|
|
|
if (notes_size > 0) {
|
2024-11-21 17:48:47 +01:00
|
|
|
bin_attr_notes.private = (void *)&__start_notes;
|
|
|
|
|
bin_attr_notes.size = notes_size;
|
|
|
|
|
error = sysfs_create_bin_file(kernel_kobj, &bin_attr_notes);
|
2007-10-29 20:13:17 +01:00
|
|
|
if (error)
|
|
|
|
|
goto group_exit;
|
2007-07-19 01:48:39 -07:00
|
|
|
}
|
|
|
|
|
|
2026-04-02 16:15:02 +02:00
|
|
|
return;
|
2007-10-29 20:13:17 +01:00
|
|
|
|
|
|
|
|
group_exit:
|
2007-11-06 10:36:58 -08:00
|
|
|
sysfs_remove_group(kernel_kobj, &kernel_attr_group);
|
2007-10-29 20:13:17 +01:00
|
|
|
kset_exit:
|
2007-12-20 08:13:05 -08:00
|
|
|
kobject_put(kernel_kobj);
|
2007-10-29 20:13:17 +01:00
|
|
|
exit:
|
2026-04-02 16:15:02 +02:00
|
|
|
pr_err("failed to initialize the kernel kobject: %d\n", error);
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|