Whamcloud - gitweb
LU-2489 mdc: Restrict access to hsm_nl file
[fs/lustre-release.git] / lustre / mdc / lproc_mdc.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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, Whamcloud, Inc.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36 #define DEBUG_SUBSYSTEM S_CLASS
37
38 #include <linux/version.h>
39 #include <linux/vfs.h>
40 #include <obd_class.h>
41 #include <lprocfs_status.h>
42
43 #ifdef LPROCFS
44
45 static int mdc_rd_max_rpcs_in_flight(char *page, char **start, off_t off,
46                                      int count, int *eof, void *data)
47 {
48         struct obd_device *dev = data;
49         struct client_obd *cli = &dev->u.cli;
50         int rc;
51
52         client_obd_list_lock(&cli->cl_loi_list_lock);
53         rc = snprintf(page, count, "%u\n", cli->cl_max_rpcs_in_flight);
54         client_obd_list_unlock(&cli->cl_loi_list_lock);
55         return rc;
56 }
57
58 static int mdc_wr_max_rpcs_in_flight(struct file *file, const char *buffer,
59                                      unsigned long count, void *data)
60 {
61         struct obd_device *dev = data;
62         struct client_obd *cli = &dev->u.cli;
63         int val, rc;
64
65         rc = lprocfs_write_helper(buffer, count, &val);
66         if (rc)
67                 return rc;
68
69         if (val < 1 || val > MDC_MAX_RIF_MAX)
70                 return -ERANGE;
71
72         client_obd_list_lock(&cli->cl_loi_list_lock);
73         cli->cl_max_rpcs_in_flight = val;
74         client_obd_list_unlock(&cli->cl_loi_list_lock);
75
76         return count;
77 }
78
79 /* temporary for testing */
80 static int mdc_wr_kuc(struct file *file, const char *buffer,
81                       unsigned long count, void *data)
82 {
83         struct obd_device *obd = data;
84         struct kuc_hdr *lh;
85         struct hsm_action_list *hal;
86         struct hsm_action_item *hai;
87         int len;
88         int fd, rc;
89
90         rc = lprocfs_write_helper(buffer, count, &fd);
91         if (rc)
92                 return rc;
93
94         if (fd < 0)
95                 return -ERANGE;
96         CWARN("message to fd %d\n", fd);
97
98         len = sizeof(*lh) + sizeof(*hal) + MTI_NAME_MAXLEN +
99                 /* for mockup below */ 2 * cfs_size_round(sizeof(*hai));
100
101         OBD_ALLOC(lh, len);
102
103         lh->kuc_magic = KUC_MAGIC;
104         lh->kuc_transport = KUC_TRANSPORT_HSM;
105         lh->kuc_msgtype = HMT_ACTION_LIST;
106         lh->kuc_msglen = len;
107
108         hal = (struct hsm_action_list *)(lh + 1);
109         hal->hal_version = HAL_VERSION;
110         hal->hal_archive_num = 1;
111         obd_uuid2fsname(hal->hal_fsname, obd->obd_name, MTI_NAME_MAXLEN);
112
113         /* mock up an action list */
114         hal->hal_count = 2;
115         hai = hai_zero(hal);
116         hai->hai_action = HSMA_ARCHIVE;
117         hai->hai_fid.f_oid = 5;
118         hai->hai_len = sizeof(*hai);
119         hai = hai_next(hai);
120         hai->hai_action = HSMA_RESTORE;
121         hai->hai_fid.f_oid = 10;
122         hai->hai_len = sizeof(*hai);
123
124         /* This works for either broadcast or unicast to a single fd */
125         if (fd == 0) {
126                 rc = libcfs_kkuc_group_put(KUC_GRP_HSM, lh);
127         } else {
128                 cfs_file_t *fp = cfs_get_fd(fd);
129                 rc = libcfs_kkuc_msg_put(fp, lh);
130                 cfs_put_file(fp);
131         }
132         OBD_FREE(lh, len);
133         if (rc < 0)
134                 return rc;
135         return count;
136 }
137
138 static struct lprocfs_vars lprocfs_mdc_obd_vars[] = {
139         { "uuid",            lprocfs_rd_uuid,        0, 0 },
140         { "ping",            0, lprocfs_wr_ping,     0, 0, 0222 },
141         { "connect_flags",   lprocfs_rd_connect_flags, 0, 0 },
142         { "blocksize",       lprocfs_rd_blksize,     0, 0 },
143         { "kbytestotal",     lprocfs_rd_kbytestotal, 0, 0 },
144         { "kbytesfree",      lprocfs_rd_kbytesfree,  0, 0 },
145         { "kbytesavail",     lprocfs_rd_kbytesavail, 0, 0 },
146         { "filestotal",      lprocfs_rd_filestotal,  0, 0 },
147         { "filesfree",       lprocfs_rd_filesfree,   0, 0 },
148         /*{ "filegroups",      lprocfs_rd_filegroups,  0, 0 },*/
149         { "mds_server_uuid", lprocfs_rd_server_uuid, 0, 0 },
150         { "mds_conn_uuid",   lprocfs_rd_conn_uuid,   0, 0 },
151         /*
152          * FIXME: below proc entry is provided, but not in used, instead
153          * sbi->sb_md_brw_size is used, the per obd variable should be used
154          * when CMD is enabled, and dir pages are managed in MDC layer.
155          * Remember to enable proc write function.
156          */
157         { "max_pages_per_rpc",  lprocfs_obd_rd_max_pages_per_rpc,
158                                 /* lprocfs_obd_wr_max_pages_per_rpc */0, 0 },
159         { "max_rpcs_in_flight", mdc_rd_max_rpcs_in_flight,
160                                 mdc_wr_max_rpcs_in_flight, 0 },
161         { "timeouts",        lprocfs_rd_timeouts,    0, 0 },
162         { "import",          lprocfs_rd_import,      lprocfs_wr_import, 0 },
163         { "state",           lprocfs_rd_state,       0, 0 },
164         { "hsm_nl",          0, mdc_wr_kuc,          0, 0, 0200 },
165         { "pinger_recov",    lprocfs_rd_pinger_recov,
166                              lprocfs_wr_pinger_recov, 0, 0 },
167         { 0 }
168 };
169
170 static struct lprocfs_vars lprocfs_mdc_module_vars[] = {
171         { "num_refs",        lprocfs_rd_numrefs,     0, 0 },
172         { 0 }
173 };
174
175 void lprocfs_mdc_init_vars(struct lprocfs_static_vars *lvars)
176 {
177     lvars->module_vars  = lprocfs_mdc_module_vars;
178     lvars->obd_vars     = lprocfs_mdc_obd_vars;
179 }
180 #endif /* LPROCFS */