Whamcloud - gitweb
LU-8066 lustre: drop ldebugfs_remove()
[fs/lustre-release.git] / lustre / ptlrpc / sec_lproc.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2014, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/ptlrpc/sec_lproc.c
33  *
34  * Author: Eric Mei <ericm@clusterfs.com>
35  */
36
37 #define DEBUG_SUBSYSTEM S_SEC
38
39 #include <libcfs/libcfs.h>
40 #include <linux/crypto.h>
41
42 #include <obd.h>
43 #include <obd_class.h>
44 #include <obd_support.h>
45 #include <lustre_net.h>
46 #include <lustre_import.h>
47 #include <lustre_dlm.h>
48 #include <lustre_sec.h>
49
50 #include "ptlrpc_internal.h"
51
52 static char *sec_flags2str(unsigned long flags, char *buf, int bufsize)
53 {
54         buf[0] = '\0';
55
56         if (flags & PTLRPC_SEC_FL_REVERSE)
57                 strlcat(buf, "reverse,", bufsize);
58         if (flags & PTLRPC_SEC_FL_ROOTONLY)
59                 strlcat(buf, "rootonly,", bufsize);
60         if (flags & PTLRPC_SEC_FL_UDESC)
61                 strlcat(buf, "udesc,", bufsize);
62         if (flags & PTLRPC_SEC_FL_BULK)
63                 strlcat(buf, "bulk,", bufsize);
64         if (buf[0] == '\0')
65                 strlcat(buf, "-,", bufsize);
66
67         return buf;
68 }
69
70 static int sptlrpc_info_lprocfs_seq_show(struct seq_file *seq, void *v)
71 {
72         struct obd_device *dev = seq->private;
73         struct client_obd *cli = &dev->u.cli;
74         struct ptlrpc_sec *sec = NULL;
75         char               str[32];
76
77         LASSERT(strcmp(dev->obd_type->typ_name, LUSTRE_OSC_NAME) == 0 ||
78                 strcmp(dev->obd_type->typ_name, LUSTRE_MDC_NAME) == 0 ||
79                 strcmp(dev->obd_type->typ_name, LUSTRE_MGC_NAME) == 0 ||
80                 strcmp(dev->obd_type->typ_name, LUSTRE_LWP_NAME) == 0 ||
81                 strcmp(dev->obd_type->typ_name, LUSTRE_OSP_NAME) == 0);
82
83         if (cli->cl_import)
84                 sec = sptlrpc_import_sec_ref(cli->cl_import);
85         if (sec == NULL)
86                 goto out;
87
88         sec_flags2str(sec->ps_flvr.sf_flags, str, sizeof(str));
89
90         seq_printf(seq, "rpc flavor:    %s\n",
91                    sptlrpc_flavor2name_base(sec->ps_flvr.sf_rpc));
92         seq_printf(seq, "bulk flavor:   %s\n",
93                    sptlrpc_flavor2name_bulk(&sec->ps_flvr, str, sizeof(str)));
94         seq_printf(seq, "flags:         %s\n",
95                    sec_flags2str(sec->ps_flvr.sf_flags, str, sizeof(str)));
96         seq_printf(seq, "id:            %d\n", sec->ps_id);
97         seq_printf(seq, "refcount:      %d\n",
98                    atomic_read(&sec->ps_refcount));
99         seq_printf(seq, "nctx:  %d\n", atomic_read(&sec->ps_nctx));
100         seq_printf(seq, "gc internal    %lld\n", sec->ps_gc_interval);
101         seq_printf(seq, "gc next        %lld\n",
102                    sec->ps_gc_interval ?
103                    (s64)(sec->ps_gc_next - ktime_get_real_seconds()) : 0ll);
104
105         sptlrpc_sec_put(sec);
106 out:
107         return 0;
108 }
109
110 LPROC_SEQ_FOPS_RO(sptlrpc_info_lprocfs);
111
112 static int sptlrpc_ctxs_lprocfs_seq_show(struct seq_file *seq, void *v)
113 {
114         struct obd_device *dev = seq->private;
115         struct client_obd *cli = &dev->u.cli;
116         struct ptlrpc_sec *sec = NULL;
117
118         LASSERT(strcmp(dev->obd_type->typ_name, LUSTRE_OSC_NAME) == 0 ||
119                 strcmp(dev->obd_type->typ_name, LUSTRE_MDC_NAME) == 0 ||
120                 strcmp(dev->obd_type->typ_name, LUSTRE_MGC_NAME) == 0 ||
121                 strcmp(dev->obd_type->typ_name, LUSTRE_LWP_NAME) == 0 ||
122                 strcmp(dev->obd_type->typ_name, LUSTRE_OSP_NAME) == 0);
123
124         if (cli->cl_import)
125                 sec = sptlrpc_import_sec_ref(cli->cl_import);
126         if (sec == NULL)
127                 goto out;
128
129         if (sec->ps_policy->sp_cops->display)
130                 sec->ps_policy->sp_cops->display(sec, seq);
131
132         sptlrpc_sec_put(sec);
133 out:
134         return 0;
135 }
136
137 LPROC_SEQ_FOPS_RO(sptlrpc_ctxs_lprocfs);
138
139 static ssize_t
140 lprocfs_sptlrpc_sepol_seq_write(struct file *file, const char __user *buffer,
141                                 size_t count, void *data)
142 {
143         struct seq_file *seq = file->private_data;
144         struct obd_device *dev = seq->private;
145         struct client_obd *cli = &dev->u.cli;
146         struct obd_import *imp = cli->cl_import;
147         struct sepol_downcall_data *param;
148         int size = sizeof(*param);
149         int rc = 0;
150
151         if (count < size) {
152                 CERROR("%s: invalid data count = %lu, size = %d\n",
153                        dev->obd_name, (unsigned long) count, size);
154                 return -EINVAL;
155         }
156
157         OBD_ALLOC(param, size);
158         if (param == NULL)
159                 return -ENOMEM;
160
161         if (copy_from_user(param, buffer, size)) {
162                 CERROR("%s: bad sepol data\n", dev->obd_name);
163                 GOTO(out, rc = -EFAULT);
164         }
165
166         if (param->sdd_magic != SEPOL_DOWNCALL_MAGIC) {
167                 CERROR("%s: sepol downcall bad params\n",
168                        dev->obd_name);
169                 GOTO(out, rc = -EINVAL);
170         }
171
172         if (param->sdd_sepol_len == 0 ||
173             param->sdd_sepol_len >= sizeof(imp->imp_sec->ps_sepol)) {
174                 CERROR("%s: invalid sepol data returned\n",
175                        dev->obd_name);
176                 GOTO(out, rc = -EINVAL);
177         }
178         rc = param->sdd_sepol_len; /* save sdd_sepol_len */
179         OBD_FREE(param, size);
180         size = offsetof(struct sepol_downcall_data,
181                         sdd_sepol[rc]);
182
183         /* alloc again with real size */
184         rc = 0;
185         OBD_ALLOC(param, size);
186         if (param == NULL)
187                 return -ENOMEM;
188
189         if (copy_from_user(param, buffer, size)) {
190                 CERROR("%s: bad sepol data\n", dev->obd_name);
191                 GOTO(out, rc = -EFAULT);
192         }
193
194         spin_lock(&imp->imp_sec->ps_lock);
195         snprintf(imp->imp_sec->ps_sepol, param->sdd_sepol_len + 1, "%s",
196                  param->sdd_sepol);
197         imp->imp_sec->ps_sepol_mtime = param->sdd_sepol_mtime;
198         spin_unlock(&imp->imp_sec->ps_lock);
199
200 out:
201         if (param != NULL)
202                 OBD_FREE(param, size);
203
204         return rc ? rc : count;
205 }
206 LPROC_SEQ_FOPS_WR_ONLY(srpc, sptlrpc_sepol);
207
208 int sptlrpc_lprocfs_cliobd_attach(struct obd_device *dev)
209 {
210         int     rc;
211
212         if (strcmp(dev->obd_type->typ_name, LUSTRE_OSC_NAME) != 0 &&
213             strcmp(dev->obd_type->typ_name, LUSTRE_MDC_NAME) != 0 &&
214             strcmp(dev->obd_type->typ_name, LUSTRE_MGC_NAME) != 0 &&
215             strcmp(dev->obd_type->typ_name, LUSTRE_LWP_NAME) != 0 &&
216             strcmp(dev->obd_type->typ_name, LUSTRE_OSP_NAME) != 0) {
217                 CERROR("can't register lproc for obd type %s\n",
218                        dev->obd_type->typ_name);
219                 return -EINVAL;
220         }
221
222         rc = ldebugfs_seq_create(dev->obd_debugfs_entry, "srpc_info", 0444,
223                                  &sptlrpc_info_lprocfs_fops, dev);
224         if (rc) {
225                 CERROR("create proc entry srpc_info for %s: %d\n",
226                        dev->obd_name, rc);
227                 return rc;
228         }
229
230         rc = ldebugfs_seq_create(dev->obd_debugfs_entry, "srpc_contexts",
231                                  0444, &sptlrpc_ctxs_lprocfs_fops, dev);
232         if (rc) {
233                 CERROR("create proc entry srpc_contexts for %s: %d\n",
234                        dev->obd_name, rc);
235                 return rc;
236         }
237
238         rc = ldebugfs_seq_create(dev->obd_debugfs_entry, "srpc_sepol",
239                                  0200, &srpc_sptlrpc_sepol_fops, dev);
240         if (rc) {
241                 CERROR("create proc entry srpc_sepol for %s: %d\n",
242                        dev->obd_name, rc);
243                 return rc;
244         }
245
246         return 0;
247 }
248 EXPORT_SYMBOL(sptlrpc_lprocfs_cliobd_attach);
249
250 LDEBUGFS_SEQ_FOPS_RO(sptlrpc_proc_enc_pool);
251
252 static struct lprocfs_vars sptlrpc_lprocfs_vars[] = {
253         { .name =       "encrypt_page_pools",
254           .fops =       &sptlrpc_proc_enc_pool_fops     },
255         { NULL }
256 };
257
258 struct dentry *sptlrpc_debugfs_dir;
259 EXPORT_SYMBOL(sptlrpc_debugfs_dir);
260
261 struct proc_dir_entry *sptlrpc_lprocfs_dir;
262 EXPORT_SYMBOL(sptlrpc_lprocfs_dir);
263
264 int sptlrpc_lproc_init(void)
265 {
266         int rc;
267
268         LASSERT(sptlrpc_debugfs_dir == NULL);
269
270         sptlrpc_debugfs_dir = ldebugfs_register("sptlrpc", debugfs_lustre_root,
271                                                 sptlrpc_lprocfs_vars, NULL);
272         if (IS_ERR_OR_NULL(sptlrpc_debugfs_dir)) {
273                 rc = sptlrpc_debugfs_dir ? PTR_ERR(sptlrpc_debugfs_dir)
274                                          : -ENOMEM;
275                 sptlrpc_debugfs_dir = NULL;
276                 return rc;
277         }
278
279         sptlrpc_lprocfs_dir = lprocfs_register("sptlrpc", proc_lustre_root,
280                                                NULL, NULL);
281         if (IS_ERR_OR_NULL(sptlrpc_lprocfs_dir)) {
282                 rc = PTR_ERR(sptlrpc_lprocfs_dir);
283                 rc = sptlrpc_lprocfs_dir ? PTR_ERR(sptlrpc_lprocfs_dir)
284                         : -ENOMEM;
285                 sptlrpc_lprocfs_dir = NULL;
286         }
287         return 0;
288 }
289
290 void sptlrpc_lproc_fini(void)
291 {
292         debugfs_remove_recursive(sptlrpc_debugfs_dir);
293         sptlrpc_debugfs_dir = NULL;
294
295         if (!IS_ERR_OR_NULL(sptlrpc_lprocfs_dir))
296                 lprocfs_remove(&sptlrpc_lprocfs_dir);
297 }