Whamcloud - gitweb
05a239bff992dbf0af6750f76eb04191b0583765
[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
53 struct proc_dir_entry *sptlrpc_proc_root = NULL;
54 EXPORT_SYMBOL(sptlrpc_proc_root);
55
56 static char *sec_flags2str(unsigned long flags, char *buf, int bufsize)
57 {
58         buf[0] = '\0';
59
60         if (flags & PTLRPC_SEC_FL_REVERSE)
61                 strlcat(buf, "reverse,", bufsize);
62         if (flags & PTLRPC_SEC_FL_ROOTONLY)
63                 strlcat(buf, "rootonly,", bufsize);
64         if (flags & PTLRPC_SEC_FL_UDESC)
65                 strlcat(buf, "udesc,", bufsize);
66         if (flags & PTLRPC_SEC_FL_BULK)
67                 strlcat(buf, "bulk,", bufsize);
68         if (buf[0] == '\0')
69                 strlcat(buf, "-,", bufsize);
70
71         return buf;
72 }
73
74 static int sptlrpc_info_lprocfs_seq_show(struct seq_file *seq, void *v)
75 {
76         struct obd_device *dev = seq->private;
77         struct client_obd *cli = &dev->u.cli;
78         struct ptlrpc_sec *sec = NULL;
79         char               str[32];
80
81         LASSERT(strcmp(dev->obd_type->typ_name, LUSTRE_OSC_NAME) == 0 ||
82                 strcmp(dev->obd_type->typ_name, LUSTRE_MDC_NAME) == 0 ||
83                 strcmp(dev->obd_type->typ_name, LUSTRE_MGC_NAME) == 0 ||
84                 strcmp(dev->obd_type->typ_name, LUSTRE_LWP_NAME) == 0 ||
85                 strcmp(dev->obd_type->typ_name, LUSTRE_OSP_NAME) == 0);
86
87         if (cli->cl_import)
88                 sec = sptlrpc_import_sec_ref(cli->cl_import);
89         if (sec == NULL)
90                 goto out;
91
92         sec_flags2str(sec->ps_flvr.sf_flags, str, sizeof(str));
93
94         seq_printf(seq, "rpc flavor:    %s\n",
95                    sptlrpc_flavor2name_base(sec->ps_flvr.sf_rpc));
96         seq_printf(seq, "bulk flavor:   %s\n",
97                    sptlrpc_flavor2name_bulk(&sec->ps_flvr, str, sizeof(str)));
98         seq_printf(seq, "flags:         %s\n",
99                    sec_flags2str(sec->ps_flvr.sf_flags, str, sizeof(str)));
100         seq_printf(seq, "id:            %d\n", sec->ps_id);
101         seq_printf(seq, "refcount:      %d\n",
102                    atomic_read(&sec->ps_refcount));
103         seq_printf(seq, "nctx:  %d\n", atomic_read(&sec->ps_nctx));
104         seq_printf(seq, "gc internal    %ld\n", sec->ps_gc_interval);
105         seq_printf(seq, "gc next        %ld\n",
106                    sec->ps_gc_interval ?
107                    sec->ps_gc_next - cfs_time_current_sec() : 0);
108
109         sptlrpc_sec_put(sec);
110 out:
111         return 0;
112 }
113 LPROC_SEQ_FOPS_RO(sptlrpc_info_lprocfs);
114
115 static int sptlrpc_ctxs_lprocfs_seq_show(struct seq_file *seq, void *v)
116 {
117         struct obd_device *dev = seq->private;
118         struct client_obd *cli = &dev->u.cli;
119         struct ptlrpc_sec *sec = NULL;
120
121         LASSERT(strcmp(dev->obd_type->typ_name, LUSTRE_OSC_NAME) == 0 ||
122                 strcmp(dev->obd_type->typ_name, LUSTRE_MDC_NAME) == 0 ||
123                 strcmp(dev->obd_type->typ_name, LUSTRE_MGC_NAME) == 0 ||
124                 strcmp(dev->obd_type->typ_name, LUSTRE_LWP_NAME) == 0 ||
125                 strcmp(dev->obd_type->typ_name, LUSTRE_OSP_NAME) == 0);
126
127         if (cli->cl_import)
128                 sec = sptlrpc_import_sec_ref(cli->cl_import);
129         if (sec == NULL)
130                 goto out;
131
132         if (sec->ps_policy->sp_cops->display)
133                 sec->ps_policy->sp_cops->display(sec, seq);
134
135         sptlrpc_sec_put(sec);
136 out:
137         return 0;
138 }
139 LPROC_SEQ_FOPS_RO(sptlrpc_ctxs_lprocfs);
140
141 int sptlrpc_lprocfs_cliobd_attach(struct obd_device *dev)
142 {
143         int     rc;
144
145         if (strcmp(dev->obd_type->typ_name, LUSTRE_OSC_NAME) != 0 &&
146             strcmp(dev->obd_type->typ_name, LUSTRE_MDC_NAME) != 0 &&
147             strcmp(dev->obd_type->typ_name, LUSTRE_MGC_NAME) != 0 &&
148             strcmp(dev->obd_type->typ_name, LUSTRE_LWP_NAME) != 0 &&
149             strcmp(dev->obd_type->typ_name, LUSTRE_OSP_NAME) != 0) {
150                 CERROR("can't register lproc for obd type %s\n",
151                        dev->obd_type->typ_name);
152                 return -EINVAL;
153         }
154
155         rc = lprocfs_obd_seq_create(dev, "srpc_info", 0444,
156                                     &sptlrpc_info_lprocfs_fops, dev);
157         if (rc) {
158                 CERROR("create proc entry srpc_info for %s: %d\n",
159                        dev->obd_name, rc);
160                 return rc;
161         }
162
163         rc = lprocfs_obd_seq_create(dev, "srpc_contexts", 0444,
164                                     &sptlrpc_ctxs_lprocfs_fops, dev);
165         if (rc) {
166                 CERROR("create proc entry srpc_contexts for %s: %d\n",
167                        dev->obd_name, rc);
168                 return rc;
169         }
170
171         return 0;
172 }
173 EXPORT_SYMBOL(sptlrpc_lprocfs_cliobd_attach);
174
175 LPROC_SEQ_FOPS_RO(sptlrpc_proc_enc_pool);
176 static struct lprocfs_vars sptlrpc_lprocfs_vars[] = {
177         { .name =       "encrypt_page_pools",
178           .fops =       &sptlrpc_proc_enc_pool_fops     },
179         { NULL }
180 };
181
182 int sptlrpc_lproc_init(void)
183 {
184         int rc;
185
186         LASSERT(sptlrpc_proc_root == NULL);
187
188         sptlrpc_proc_root = lprocfs_register("sptlrpc", proc_lustre_root,
189                                              sptlrpc_lprocfs_vars, NULL);
190         if (IS_ERR(sptlrpc_proc_root)) {
191                 rc = PTR_ERR(sptlrpc_proc_root);
192                 sptlrpc_proc_root = NULL;
193                 return rc;
194         }
195         return 0;
196 }
197
198 void sptlrpc_lproc_fini(void)
199 {
200         if (sptlrpc_proc_root) {
201                 lprocfs_remove(&sptlrpc_proc_root);
202                 sptlrpc_proc_root = NULL;
203         }
204 }