1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2019 Hammerspace Inc
6 #include <linux/module.h>
7 #include <linux/kobject.h>
8 #include <linux/sysfs.h>
10 #include <linux/slab.h>
11 #include <linux/netdevice.h>
12 #include <linux/string.h>
13 #include <linux/nfs_fs.h>
14 #include <linux/rcupdate.h>
20 struct kobject *nfs_client_kobj;
21 static struct kset *nfs_kset;
23 static void nfs_netns_object_release(struct kobject *kobj)
28 static const struct kobj_ns_type_operations *nfs_netns_object_child_ns_type(
31 return &net_ns_type_operations;
34 static struct kobj_type nfs_netns_object_type = {
35 .release = nfs_netns_object_release,
36 .sysfs_ops = &kobj_sysfs_ops,
37 .child_ns_type = nfs_netns_object_child_ns_type,
40 static struct kobject *nfs_netns_object_alloc(const char *name,
41 struct kset *kset, struct kobject *parent)
45 kobj = kzalloc(sizeof(*kobj), GFP_KERNEL);
48 if (kobject_init_and_add(kobj, &nfs_netns_object_type,
49 parent, "%s", name) == 0)
56 int nfs_sysfs_init(void)
58 nfs_kset = kset_create_and_add("nfs", NULL, fs_kobj);
61 nfs_client_kobj = nfs_netns_object_alloc("net", nfs_kset, NULL);
62 if (!nfs_client_kobj) {
63 kset_unregister(nfs_kset);
70 void nfs_sysfs_exit(void)
72 kobject_put(nfs_client_kobj);
73 kset_unregister(nfs_kset);
76 static ssize_t nfs_netns_identifier_show(struct kobject *kobj,
77 struct kobj_attribute *attr, char *buf)
79 struct nfs_netns_client *c = container_of(kobj,
80 struct nfs_netns_client,
85 ret = scnprintf(buf, PAGE_SIZE, "%s\n", rcu_dereference(c->identifier));
90 /* Strip trailing '\n' */
91 static size_t nfs_string_strip(const char *c, size_t len)
93 while (len > 0 && c[len-1] == '\n')
98 static ssize_t nfs_netns_identifier_store(struct kobject *kobj,
99 struct kobj_attribute *attr,
100 const char *buf, size_t count)
102 struct nfs_netns_client *c = container_of(kobj,
103 struct nfs_netns_client,
109 len = nfs_string_strip(buf, min_t(size_t, count, CONTAINER_ID_MAXLEN));
112 p = kmemdup_nul(buf, len, GFP_KERNEL);
115 old = rcu_dereference_protected(xchg(&c->identifier, (char __rcu *)p), 1);
123 static void nfs_netns_client_release(struct kobject *kobj)
125 struct nfs_netns_client *c = container_of(kobj,
126 struct nfs_netns_client,
129 kfree(rcu_dereference_raw(c->identifier));
133 static const void *nfs_netns_client_namespace(struct kobject *kobj)
135 return container_of(kobj, struct nfs_netns_client, kobject)->net;
138 static struct kobj_attribute nfs_netns_client_id = __ATTR(identifier,
139 0644, nfs_netns_identifier_show, nfs_netns_identifier_store);
141 static struct attribute *nfs_netns_client_attrs[] = {
142 &nfs_netns_client_id.attr,
145 ATTRIBUTE_GROUPS(nfs_netns_client);
147 static struct kobj_type nfs_netns_client_type = {
148 .release = nfs_netns_client_release,
149 .default_groups = nfs_netns_client_groups,
150 .sysfs_ops = &kobj_sysfs_ops,
151 .namespace = nfs_netns_client_namespace,
154 static struct nfs_netns_client *nfs_netns_client_alloc(struct kobject *parent,
157 struct nfs_netns_client *p;
159 p = kzalloc(sizeof(*p), GFP_KERNEL);
162 p->kobject.kset = nfs_kset;
163 if (kobject_init_and_add(&p->kobject, &nfs_netns_client_type,
164 parent, "nfs_client") == 0)
166 kobject_put(&p->kobject);
171 void nfs_netns_sysfs_setup(struct nfs_net *netns, struct net *net)
173 struct nfs_netns_client *clp;
175 clp = nfs_netns_client_alloc(nfs_client_kobj, net);
177 netns->nfs_client = clp;
178 kobject_uevent(&clp->kobject, KOBJ_ADD);
182 void nfs_netns_sysfs_destroy(struct nfs_net *netns)
184 struct nfs_netns_client *clp = netns->nfs_client;
187 kobject_uevent(&clp->kobject, KOBJ_REMOVE);
188 kobject_del(&clp->kobject);
189 kobject_put(&clp->kobject);
190 netns->nfs_client = NULL;