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