Whamcloud - gitweb
c5590fa9e7720d3129c7f86d6d1fd6c1694dc4fc
[fs/lustre-release.git] / lustre / lib / client.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2001, 2002 Cluster File Systems, Inc.
5  *   Author: Peter J. Braam <braam@clusterfs.com>
6  *   Author: Phil Schwan <phil@clusterfs.com>
7  *   Author: Mike Shaver <shaver@clusterfs.com>
8  *
9  *   This file is part of Lustre, http://www.lustre.org.
10  *
11  *   Lustre is free software; you can redistribute it and/or
12  *   modify it under the terms of version 2 of the GNU General Public
13  *   License as published by the Free Software Foundation.
14  *
15  *   Lustre is distributed in the hope that it will be useful,
16  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *   GNU General Public License for more details.
19  *
20  *   You should have received a copy of the GNU General Public License
21  *   along with Lustre; if not, write to the Free Software
22  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23  *
24  * Client-common OBD method implementations and utility functions.
25  */
26
27 #define EXPORT_SYMTAB
28 #define DEBUG_SUBSYSTEM S_OST /* XXX WRONG */
29
30 #include <linux/module.h>
31 #include <linux/obd_ost.h>
32 #include <linux/lustre_net.h>
33 #include <linux/lustre_dlm.h>
34
35 struct client_obd *client_conn2cli(struct lustre_handle *conn)
36 {
37         struct obd_export *export = class_conn2export(conn);
38         if (!export)
39                 LBUG();
40         return &export->exp_obd->u.cli;
41 }
42
43 int client_obd_setup(struct obd_device *obddev, obd_count len, void *buf)
44 {
45         struct obd_ioctl_data* data = buf;
46         int rq_portal, rp_portal;
47         char *name;
48         struct client_obd *cli = &obddev->u.cli;
49         obd_uuid_t server_uuid;
50         ENTRY;
51
52         if (obddev->obd_type->typ_ops->o_brw) {
53                 rq_portal = OST_REQUEST_PORTAL;
54                 rp_portal = OSC_REPLY_PORTAL;
55                 name = "osc";
56         } else {
57                 rq_portal = MDS_REQUEST_PORTAL;
58                 rp_portal = MDC_REPLY_PORTAL;
59                 name = "mdc";
60         }
61
62         if (data->ioc_inllen1 < 1) {
63                 CERROR("requires a TARGET UUID\n");
64                 RETURN(-EINVAL);
65         }
66
67         if (data->ioc_inllen1 > 37) {
68                 CERROR("client UUID must be less than 38 characters\n");
69                 RETURN(-EINVAL);
70         }
71
72         if (data->ioc_inllen2 < 1) {
73                 CERROR("setup requires a SERVER UUID\n");
74                 RETURN(-EINVAL);
75         }
76
77         if (data->ioc_inllen2 > 37) {
78                 CERROR("target UUID must be less than 38 characters\n");
79                 RETURN(-EINVAL);
80         }
81
82         sema_init(&cli->cl_sem, 1);
83         cli->cl_conn_count = 0;
84         memcpy(cli->cl_target_uuid, data->ioc_inlbuf1, data->ioc_inllen1);
85         memcpy(server_uuid, data->ioc_inlbuf2, MIN(data->ioc_inllen2,
86                                                    sizeof(server_uuid)));
87
88         cli->cl_import.imp_connection = ptlrpc_uuid_to_connection(server_uuid);
89         if (!cli->cl_import.imp_connection)
90                 RETURN(-ENOENT);
91
92         ptlrpc_init_client(rq_portal, rp_portal, name,
93                            &obddev->obd_ldlm_client);
94         cli->cl_import.imp_client = &obddev->obd_ldlm_client;
95         cli->cl_import.imp_obd = obddev;
96
97         cli->cl_max_mds_easize = sizeof(struct lov_mds_md);
98
99         MOD_INC_USE_COUNT;
100         RETURN(0);
101 }
102
103 int client_obd_cleanup(struct obd_device * obddev)
104 {
105         struct client_obd *obd = &obddev->u.cli;
106
107         ptlrpc_cleanup_client(&obd->cl_import);
108         ptlrpc_put_connection(obd->cl_import.imp_connection);
109
110         MOD_DEC_USE_COUNT;
111         return 0;
112 }
113
114 int client_obd_connect(struct lustre_handle *conn, struct obd_device *obd,
115                        obd_uuid_t cluuid, struct recovd_obd *recovd,
116                        ptlrpc_recovery_cb_t recover)
117 {
118         struct client_obd *cli = &obd->u.cli;
119         struct ptlrpc_request *request;
120         int rc, size[] = {sizeof(cli->cl_target_uuid),
121                           sizeof(obd->obd_uuid) };
122         char *tmp[] = {cli->cl_target_uuid, obd->obd_uuid};
123         int rq_opc = (obd->obd_type->typ_ops->o_brw) ? OST_CONNECT :MDS_CONNECT;
124         struct ptlrpc_connection *c;
125
126         ENTRY;
127         down(&cli->cl_sem);
128         MOD_INC_USE_COUNT;
129         rc = class_connect(conn, obd, cluuid);
130         if (rc) {
131                 MOD_DEC_USE_COUNT;
132                 GOTO(out_sem, rc);
133         }
134         cli->cl_conn_count++;
135         if (cli->cl_conn_count > 1)
136                 GOTO(out_sem, rc);
137
138         obd->obd_namespace = ldlm_namespace_new(obd->obd_name,
139                                                 LDLM_NAMESPACE_CLIENT);
140         if (obd->obd_namespace == NULL)
141                 GOTO(out_disco, rc = -ENOMEM);
142
143         request = ptlrpc_prep_req(&cli->cl_import, rq_opc, 2, size, tmp);
144         if (!request)
145                 GOTO(out_ldlm, rc = -ENOMEM);
146
147         request->rq_level = LUSTRE_CONN_NEW;
148         request->rq_replen = lustre_msg_size(0, NULL);
149         request->rq_reqmsg->addr = conn->addr;
150         request->rq_reqmsg->cookie = conn->cookie;
151         c = class_conn2export(conn)->exp_connection =
152                 ptlrpc_connection_addref(request->rq_connection);
153         recovd_conn_manage(c, recovd, recover);
154
155         rc = ptlrpc_queue_wait(request);
156         rc = ptlrpc_check_status(request, rc);
157         if (rc)
158                 GOTO(out_req, rc);
159
160         if (rq_opc == MDS_CONNECT)
161                 cli->cl_import.imp_flags |= IMP_REPLAYABLE;
162         list_add(&cli->cl_import.imp_chain, &c->c_imports);
163         c->c_level = LUSTRE_CONN_FULL;
164         cli->cl_import.imp_handle.addr = request->rq_repmsg->addr;
165         cli->cl_import.imp_handle.cookie = request->rq_repmsg->cookie;
166
167         EXIT;
168 out_req:
169         ptlrpc_req_finished(request);
170         if (rc) {
171 out_ldlm:
172                 ldlm_namespace_free(obd->obd_namespace);
173                 obd->obd_namespace = NULL;
174 out_disco:
175                 class_disconnect(conn);
176                 MOD_DEC_USE_COUNT;
177         }
178 out_sem:
179         up(&cli->cl_sem);
180         return rc;
181 }
182
183 int client_obd_disconnect(struct lustre_handle *conn)
184 {
185         struct obd_device *obd = class_conn2obd(conn);
186         struct client_obd *cli = &obd->u.cli;
187         int rq_opc;
188         struct ptlrpc_request *request = NULL;
189         int rc, err;
190         ENTRY;
191
192         if (!obd) {
193                 CERROR("invalid connection for disconnect: addr "LPX64
194                        ", cookie "LPX64"\n", conn ? conn->addr : -1UL,
195                        conn ? conn->cookie : -1UL);
196                 RETURN(-EINVAL);
197         }
198
199         rq_opc = obd->obd_type->typ_ops->o_brw ? OST_DISCONNECT:MDS_DISCONNECT;
200         down(&cli->cl_sem);
201         if (!cli->cl_conn_count) {
202                 CERROR("disconnecting disconnected device (%s)\n",
203                        obd->obd_name);
204                 GOTO(out_sem, rc = -EINVAL);
205         }
206
207         cli->cl_conn_count--;
208         if (cli->cl_conn_count)
209                 GOTO(out_disco, rc = 0);
210
211         ldlm_namespace_free(obd->obd_namespace);
212         obd->obd_namespace = NULL;
213         request = ptlrpc_prep_req(&cli->cl_import, rq_opc, 0, NULL, NULL);
214         if (!request)
215                 GOTO(out_disco, rc = -ENOMEM);
216
217         request->rq_replen = lustre_msg_size(0, NULL);
218
219         rc = ptlrpc_queue_wait(request);
220         if (rc)
221                 GOTO(out_req, rc);
222
223         EXIT;
224  out_req:
225         if (request)
226                 ptlrpc_req_finished(request);
227  out_disco:
228         err = class_disconnect(conn);
229         if (!rc && err)
230                 rc = err;
231         list_del_init(&cli->cl_import.imp_chain);
232         MOD_DEC_USE_COUNT;
233  out_sem:
234         up(&cli->cl_sem);
235         RETURN(rc);
236 }