Whamcloud - gitweb
LU-1866 osd: ancillary work for initial OI scrub
[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, 2012, Intel Corporation.
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         ENTRY;
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_id = 1;
112         hal->hal_flags = 0;
113         obd_uuid2fsname(hal->hal_fsname, obd->obd_name, MTI_NAME_MAXLEN);
114
115         /* mock up an action list */
116         hal->hal_count = 2;
117         hai = hai_zero(hal);
118         hai->hai_action = HSMA_ARCHIVE;
119         hai->hai_fid.f_oid = 5;
120         hai->hai_len = sizeof(*hai);
121         hai = hai_next(hai);
122         hai->hai_action = HSMA_RESTORE;
123         hai->hai_fid.f_oid = 10;
124         hai->hai_len = sizeof(*hai);
125
126         /* This works for either broadcast or unicast to a single fd */
127         if (fd == 0) {
128                 rc = libcfs_kkuc_group_put(KUC_GRP_HSM, lh);
129         } else {
130                 cfs_file_t *fp = cfs_get_fd(fd);
131                 rc = libcfs_kkuc_msg_put(fp, lh);
132                 cfs_put_file(fp);
133         }
134         OBD_FREE(lh, len);
135         if (rc < 0)
136                 RETURN(rc);
137         RETURN(count);
138 }
139
140 static struct lprocfs_vars lprocfs_mdc_obd_vars[] = {
141         { "uuid",            lprocfs_rd_uuid,        0, 0 },
142         { "ping",            0, lprocfs_wr_ping,     0, 0, 0222 },
143         { "connect_flags",   lprocfs_rd_connect_flags, 0, 0 },
144         { "blocksize",       lprocfs_rd_blksize,     0, 0 },
145         { "kbytestotal",     lprocfs_rd_kbytestotal, 0, 0 },
146         { "kbytesfree",      lprocfs_rd_kbytesfree,  0, 0 },
147         { "kbytesavail",     lprocfs_rd_kbytesavail, 0, 0 },
148         { "filestotal",      lprocfs_rd_filestotal,  0, 0 },
149         { "filesfree",       lprocfs_rd_filesfree,   0, 0 },
150         /*{ "filegroups",      lprocfs_rd_filegroups,  0, 0 },*/
151         { "mds_server_uuid", lprocfs_rd_server_uuid, 0, 0 },
152         { "mds_conn_uuid",   lprocfs_rd_conn_uuid,   0, 0 },
153         /*
154          * FIXME: below proc entry is provided, but not in used, instead
155          * sbi->sb_md_brw_size is used, the per obd variable should be used
156          * when CMD is enabled, and dir pages are managed in MDC layer.
157          * Remember to enable proc write function.
158          */
159         { "max_pages_per_rpc",  lprocfs_obd_rd_max_pages_per_rpc,
160                                 /* lprocfs_obd_wr_max_pages_per_rpc */0, 0 },
161         { "max_rpcs_in_flight", mdc_rd_max_rpcs_in_flight,
162                                 mdc_wr_max_rpcs_in_flight, 0 },
163         { "timeouts",        lprocfs_rd_timeouts,    0, 0 },
164         { "import",          lprocfs_rd_import,      lprocfs_wr_import, 0 },
165         { "state",           lprocfs_rd_state,       0, 0 },
166         { "hsm_nl",          0, mdc_wr_kuc,          0, 0, 0200 },
167         { "pinger_recov",    lprocfs_rd_pinger_recov,
168                              lprocfs_wr_pinger_recov, 0, 0 },
169         { 0 }
170 };
171
172 static struct lprocfs_vars lprocfs_mdc_module_vars[] = {
173         { "num_refs",        lprocfs_rd_numrefs,     0, 0 },
174         { 0 }
175 };
176
177 void lprocfs_mdc_init_vars(struct lprocfs_static_vars *lvars)
178 {
179     lvars->module_vars  = lprocfs_mdc_module_vars;
180     lvars->obd_vars     = lprocfs_mdc_obd_vars;
181 }
182 #endif /* LPROCFS */