Whamcloud - gitweb
cb497e3a99e276c67d9ced1be7cbb9ab3498f2b3
[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 #include <lustre_log.h>
43
44 #ifdef LPROCFS
45
46 static int mdc_rd_max_rpcs_in_flight(char *page, char **start, off_t off,
47                                      int count, int *eof, void *data)
48 {
49         struct obd_device *dev = data;
50         struct client_obd *cli = &dev->u.cli;
51         int rc;
52
53         client_obd_list_lock(&cli->cl_loi_list_lock);
54         rc = snprintf(page, count, "%u\n", cli->cl_max_rpcs_in_flight);
55         client_obd_list_unlock(&cli->cl_loi_list_lock);
56         return rc;
57 }
58
59 static int mdc_wr_max_rpcs_in_flight(struct file *file, const char *buffer,
60                                      unsigned long count, void *data)
61 {
62         struct obd_device *dev = data;
63         struct client_obd *cli = &dev->u.cli;
64         int val, rc;
65
66         rc = lprocfs_write_helper(buffer, count, &val);
67         if (rc)
68                 return rc;
69
70         if (val < 1 || val > MDC_MAX_RIF_MAX)
71                 return -ERANGE;
72
73         client_obd_list_lock(&cli->cl_loi_list_lock);
74         cli->cl_max_rpcs_in_flight = val;
75         client_obd_list_unlock(&cli->cl_loi_list_lock);
76
77         return count;
78 }
79
80 /* temporary for testing */
81 static int mdc_wr_kuc(struct file *file, const char *buffer,
82                       unsigned long count, void *data)
83 {
84         struct obd_device *obd = data;
85         struct kuc_hdr *lh;
86         struct hsm_action_list *hal;
87         struct hsm_action_item *hai;
88         int len;
89         int fd, rc;
90
91         rc = lprocfs_write_helper(buffer, count, &fd);
92         if (rc)
93                 return rc;
94
95         if (fd < 0)
96                 return -ERANGE;
97         CWARN("message to fd %d\n", fd);
98
99         len = sizeof(*lh) + sizeof(*hal) + MTI_NAME_MAXLEN +
100                 /* for mockup below */ 2 * cfs_size_round(sizeof(*hai));
101
102         OBD_ALLOC(lh, len);
103
104         lh->kuc_magic = KUC_MAGIC;
105         lh->kuc_transport = KUC_TRANSPORT_HSM;
106         lh->kuc_msgtype = HMT_ACTION_LIST;
107         lh->kuc_msglen = len;
108
109         hal = (struct hsm_action_list *)(lh + 1);
110         hal->hal_version = HAL_VERSION;
111         hal->hal_archive_num = 1;
112         obd_uuid2fsname(hal->hal_fsname, obd->obd_name, MTI_NAME_MAXLEN);
113
114         /* mock up an action list */
115         hal->hal_count = 2;
116         hai = hai_zero(hal);
117         hai->hai_action = HSMA_ARCHIVE;
118         hai->hai_fid.f_oid = 5;
119         hai->hai_len = sizeof(*hai);
120         hai = hai_next(hai);
121         hai->hai_action = HSMA_RESTORE;
122         hai->hai_fid.f_oid = 10;
123         hai->hai_len = sizeof(*hai);
124
125         /* This works for either broadcast or unicast to a single fd */
126         if (fd == 0) {
127                 rc = libcfs_kkuc_group_put(KUC_GRP_HSM, lh);
128         } else {
129                 cfs_file_t *fp = cfs_get_fd(fd);
130                 rc = libcfs_kkuc_msg_put(fp, lh);
131                 cfs_put_file(fp);
132         }
133         OBD_FREE(lh, len);
134         if (rc < 0)
135                 return rc;
136         return count;
137 }
138
139 static struct lprocfs_vars lprocfs_mdc_obd_vars[] = {
140         { "uuid",            lprocfs_rd_uuid,        0, 0 },
141         { "ping",            0, lprocfs_wr_ping,     0, 0, 0222 },
142         { "connect_flags",   lprocfs_rd_connect_flags, 0, 0 },
143         { "blocksize",       lprocfs_rd_blksize,     0, 0 },
144         { "kbytestotal",     lprocfs_rd_kbytestotal, 0, 0 },
145         { "kbytesfree",      lprocfs_rd_kbytesfree,  0, 0 },
146         { "kbytesavail",     lprocfs_rd_kbytesavail, 0, 0 },
147         { "filestotal",      lprocfs_rd_filestotal,  0, 0 },
148         { "filesfree",       lprocfs_rd_filesfree,   0, 0 },
149         /*{ "filegroups",      lprocfs_rd_filegroups,  0, 0 },*/
150         { "mds_server_uuid", lprocfs_rd_server_uuid, 0, 0 },
151         { "mds_conn_uuid",   lprocfs_rd_conn_uuid,   0, 0 },
152         /*
153          * FIXME: below proc entry is provided, but not in used, instead
154          * sbi->sb_md_brw_size is used, the per obd variable should be used
155          * when CMD is enabled, and dir pages are managed in MDC layer.
156          * Remember to enable proc write function.
157          */
158         { "max_pages_per_rpc",  lprocfs_obd_rd_max_pages_per_rpc,
159                                 /* lprocfs_obd_wr_max_pages_per_rpc */0, 0 },
160         { "max_rpcs_in_flight", mdc_rd_max_rpcs_in_flight,
161                                 mdc_wr_max_rpcs_in_flight, 0 },
162         { "timeouts",        lprocfs_rd_timeouts,    0, 0 },
163         { "import",          lprocfs_rd_import,      lprocfs_wr_import, 0 },
164         { "state",           lprocfs_rd_state,       0, 0 },
165         { "hsm_nl",          0, mdc_wr_kuc,          0, 0, 0222 },
166         { "pinger_recov",    lprocfs_rd_pinger_recov,
167                              lprocfs_wr_pinger_recov, 0, 0 },
168         { 0 }
169 };
170
171 static struct lprocfs_vars lprocfs_mdc_module_vars[] = {
172         { "num_refs",        lprocfs_rd_numrefs,     0, 0 },
173         { 0 }
174 };
175
176 void lprocfs_mdc_init_vars(struct lprocfs_static_vars *lvars)
177 {
178     lvars->module_vars  = lprocfs_mdc_module_vars;
179     lvars->obd_vars     = lprocfs_mdc_obd_vars;
180 }
181 #endif /* LPROCFS */