sysfs.h revision 255932
1/*-
2 * Copyright (c) 2010 Isilon Systems, Inc.
3 * Copyright (c) 2010 iX Systems, Inc.
4 * Copyright (c) 2010 Panasas, Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice unmodified, this list of conditions, and the following
12 *    disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 *    notice, this list of conditions and the following disclaimer in the
15 *    documentation and/or other materials provided with the distribution.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#ifndef	_LINUX_SYSFS_H_
30#define	_LINUX_SYSFS_H_
31
32#include <sys/sysctl.h>
33
34struct attribute {
35	const char 	*name;
36	struct module	*owner;
37	mode_t		mode;
38};
39
40struct sysfs_ops {
41	ssize_t (*show)(struct kobject *, struct attribute *, char *);
42	ssize_t (*store)(struct kobject *, struct attribute *, const char *,
43	    size_t);
44};
45
46struct attribute_group {
47	const char		*name;
48	mode_t                  (*is_visible)(struct kobject *,
49				    struct attribute *, int);
50	struct attribute	**attrs;
51};
52
53#define	__ATTR(_name, _mode, _show, _store) {				\
54	.attr = { .name = __stringify(_name), .mode = _mode },		\
55        .show = _show, .store  = _store,				\
56}
57
58#define	__ATTR_RO(_name) {						\
59	.attr = { .name = __stringify(_name), .mode = 0444 },		\
60	.show   = _name##_show,						\
61}
62
63#define	__ATTR_NULL	{ .attr = { .name = NULL } }
64
65/*
66 * Handle our generic '\0' terminated 'C' string.
67 * Two cases:
68 *      a variable string:  point arg1 at it, arg2 is max length.
69 *      a constant string:  point arg1 at it, arg2 is zero.
70 */
71
72static inline int
73sysctl_handle_attr(SYSCTL_HANDLER_ARGS)
74{
75	struct kobject *kobj;
76	struct attribute *attr;
77	const struct sysfs_ops *ops;
78	char *buf;
79	int error;
80	ssize_t len;
81
82	kobj = arg1;
83	attr = (struct attribute *)arg2;
84	if (kobj->ktype == NULL || kobj->ktype->sysfs_ops == NULL)
85		return (ENODEV);
86	buf = (char *)get_zeroed_page(GFP_KERNEL);
87	if (buf == NULL)
88		return (ENOMEM);
89	ops = kobj->ktype->sysfs_ops;
90	if (ops->show) {
91		len = ops->show(kobj, attr, buf);
92		/*
93		 * It's valid to not have a 'show' so just return an
94		 * empty string.
95	 	 */
96		if (len < 0) {
97			error = -len;
98			if (error != EIO)
99				goto out;
100			buf[0] = '\0';
101		} else if (len) {
102			len--;
103			if (len >= PAGE_SIZE)
104				len = PAGE_SIZE - 1;
105			/* Trim trailing newline. */
106			buf[len] = '\0';
107		}
108
109		/* Trim trailing newline. */
110		len--;
111		((char*)buf)[len] = '\0';
112	}
113
114	/* Leave one trailing byte to append a newline. */
115	error = sysctl_handle_string(oidp, buf, PAGE_SIZE - 1, req);
116	if (error != 0 || req->newptr == NULL || ops->store == NULL)
117		goto out;
118	len = strlcat(buf, "\n", PAGE_SIZE);
119	KASSERT(len < PAGE_SIZE, ("new attribute truncated"));
120	len = ops->store(kobj, attr, buf, len);
121	if (len < 0)
122		error = -len;
123out:
124	free_page((unsigned long)buf);
125
126	return (error);
127}
128
129static inline int
130sysfs_create_file(struct kobject *kobj, const struct attribute *attr)
131{
132
133	sysctl_add_oid(NULL, SYSCTL_CHILDREN(kobj->oidp), OID_AUTO,
134	    attr->name, CTLTYPE_STRING|CTLFLAG_RW|CTLFLAG_MPSAFE, kobj,
135	    (uintptr_t)attr, sysctl_handle_attr, "A", "");
136
137	return (0);
138}
139
140static inline void
141sysfs_remove_file(struct kobject *kobj, const struct attribute *attr)
142{
143
144	if (kobj->oidp)
145		sysctl_remove_name(kobj->oidp, attr->name, 1, 1);
146}
147
148static inline void
149sysfs_remove_group(struct kobject *kobj, const struct attribute_group *grp)
150{
151
152	if (kobj->oidp)
153		sysctl_remove_name(kobj->oidp, grp->name, 1, 1);
154}
155
156static inline int
157sysfs_create_group(struct kobject *kobj, const struct attribute_group *grp)
158{
159	struct attribute **attr;
160	struct sysctl_oid *oidp;
161
162	oidp = SYSCTL_ADD_NODE(NULL, SYSCTL_CHILDREN(kobj->oidp),
163	    OID_AUTO, grp->name, CTLFLAG_RD|CTLFLAG_MPSAFE, NULL, grp->name);
164	for (attr = grp->attrs; *attr != NULL; attr++) {
165		sysctl_add_oid(NULL, SYSCTL_CHILDREN(oidp), OID_AUTO,
166		    (*attr)->name, CTLTYPE_STRING|CTLFLAG_RW|CTLFLAG_MPSAFE,
167		    kobj, (uintptr_t)*attr, sysctl_handle_attr, "A", "");
168	}
169
170	return (0);
171}
172
173static inline int
174sysfs_create_dir(struct kobject *kobj)
175{
176
177	kobj->oidp = SYSCTL_ADD_NODE(NULL, SYSCTL_CHILDREN(kobj->parent->oidp),
178	    OID_AUTO, kobj->name, CTLFLAG_RD|CTLFLAG_MPSAFE, NULL, kobj->name);
179
180        return (0);
181}
182
183static inline void
184sysfs_remove_dir(struct kobject *kobj)
185{
186
187	if (kobj->oidp == NULL)
188		return;
189	sysctl_remove_oid(kobj->oidp, 1, 1);
190}
191
192#define sysfs_attr_init(attr) do {} while(0)
193
194#endif	/* _LINUX_SYSFS_H_ */
195