Whamcloud - gitweb
* Pass the connecting client's UUID (NB: not the _connection_'s UUID, the
[fs/lustre-release.git] / lustre / lib / l_net.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  *
8  *   This file is part of Lustre, http://www.lustre.org.
9  *
10  *   Lustre is free software; you can redistribute it and/or
11  *   modify it under the terms of version 2 of the GNU General Public
12  *   License as published by the Free Software Foundation.
13  *
14  *   Lustre is distributed in the hope that it will be useful,
15  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *   GNU General Public License for more details.
18  *
19  *   You should have received a copy of the GNU General Public License
20  *   along with Lustre; if not, write to the Free Software
21  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  *
23  *  Storage Target Handling functions
24  *  Lustre Object Server Module (OST)
25  *
26  *  This server is single threaded at present (but can easily be multi
27  *  threaded). For testing and management it is treated as an
28  *  obd_device, although it does not export a full OBD method table
29  *  (the requests are coming in over the wire, so object target
30  *  modules do not have a full method table.)
31  */
32
33 #define EXPORT_SYMTAB
34 #define DEBUG_SUBSYSTEM S_OST
35
36 #include <linux/module.h>
37 #include <linux/obd_ost.h>
38 #include <linux/lustre_net.h>
39 #include <linux/lustre_dlm.h>
40
41 struct client_obd *client_conn2cli(struct lustre_handle *conn)
42 {
43         struct obd_export *export = class_conn2export(conn);
44         if (!export)
45                 LBUG();
46         return &export->exp_obd->u.cli;
47 }
48 extern struct recovd_obd *ptlrpc_connmgr;
49
50 int client_obd_setup(struct obd_device *obddev, obd_count len, void *buf)
51 {
52         struct obd_ioctl_data* data = buf;
53         int rq_portal = (obddev->obd_type->typ_ops->o_getattr) ? OST_REQUEST_PORTAL : MDS_REQUEST_PORTAL;
54         int rp_portal = (obddev->obd_type->typ_ops->o_getattr) ? OSC_REPLY_PORTAL : MDC_REPLY_PORTAL;
55         struct client_obd *mdc = &obddev->u.cli;
56         char server_uuid[37];
57         int rc;
58         ENTRY;
59
60         if (data->ioc_inllen1 < 1) {
61                 CERROR("requires a TARGET UUID\n");
62                 RETURN(-EINVAL);
63         }
64
65         if (data->ioc_inllen1 > 37) {
66                 CERROR("client UUID must be less than 38 characters\n");
67                 RETURN(-EINVAL);
68         }
69
70         if (data->ioc_inllen2 < 1) {
71                 CERROR("setup requires a SERVER UUID\n");
72                RETURN(-EINVAL);
73         }
74
75         if (data->ioc_inllen2 > 37) {
76                 CERROR("target UUID must be less than 38 characters\n");
77                 RETURN(-EINVAL);
78         }
79
80         sema_init(&mdc->cl_sem, 1);
81         mdc->cl_conn_count = 0;
82         memcpy(mdc->cl_target_uuid, data->ioc_inlbuf1, data->ioc_inllen1);
83         memcpy(server_uuid, data->ioc_inlbuf2, MIN(data->ioc_inllen2,
84                                                    sizeof(server_uuid)));
85
86         mdc->cl_conn = ptlrpc_uuid_to_connection(server_uuid);
87         if (!mdc->cl_conn)
88                 RETURN(-ENOENT);
89
90         OBD_ALLOC(mdc->cl_client, sizeof(*mdc->cl_client));
91         if (mdc->cl_client == NULL)
92                 GOTO(out_conn, rc = -ENOMEM);
93
94         OBD_ALLOC(mdc->cl_ldlm_client, sizeof(*mdc->cl_ldlm_client));
95         if (mdc->cl_ldlm_client == NULL)
96                 GOTO(out_client, rc = -ENOMEM);
97
98         /* XXX get recovery hooked in here again */
99         //ptlrpc_init_client(ptlrpc_connmgr, ll_recover,...
100
101         ptlrpc_init_client(NULL, NULL, rq_portal, rp_portal, mdc->cl_client);
102         ptlrpc_init_client(NULL, NULL, LDLM_REQUEST_PORTAL, LDLM_REPLY_PORTAL,
103                            mdc->cl_ldlm_client);
104         mdc->cl_client->cli_name = "mdc";
105         mdc->cl_ldlm_client->cli_name = "ldlm";
106         mdc->cl_max_mdsize = sizeof(struct lov_stripe_md);
107
108         MOD_INC_USE_COUNT;
109         RETURN(0);
110
111  out_client:
112         OBD_FREE(mdc->cl_client, sizeof(*mdc->cl_client));
113  out_conn:
114         ptlrpc_put_connection(mdc->cl_conn);
115         return rc;
116 }
117
118 int client_obd_cleanup(struct obd_device * obddev)
119 {
120         struct client_obd *mdc = &obddev->u.cli;
121
122         ptlrpc_cleanup_client(mdc->cl_client);
123         OBD_FREE(mdc->cl_client, sizeof(*mdc->cl_client));
124         ptlrpc_cleanup_client(mdc->cl_ldlm_client);
125         OBD_FREE(mdc->cl_ldlm_client, sizeof(*mdc->cl_ldlm_client));
126         ptlrpc_put_connection(mdc->cl_conn);
127
128         MOD_DEC_USE_COUNT;
129         return 0;
130 }
131
132 int client_obd_connect(struct lustre_handle *conn, struct obd_device *obd,
133                        char *cluuid)
134 {
135         struct client_obd *cli = &obd->u.cli;
136         struct ptlrpc_request *request;
137         int rc, size[] = {sizeof(cli->cl_target_uuid),
138                           sizeof(obd->obd_uuid) };
139         char *tmp[] = {cli->cl_target_uuid, obd->obd_uuid};
140         int rq_opc = (obd->obd_type->typ_ops->o_getattr) ? OST_CONNECT : MDS_CONNECT;
141
142         ENTRY;
143         down(&cli->cl_sem);
144         MOD_INC_USE_COUNT;
145 #warning shaver: we might need a real cluuid here
146         rc = class_connect(conn, obd, NULL);
147         if (!rc)
148                 cli->cl_conn_count++;
149         else {
150                 MOD_DEC_USE_COUNT;
151                 up(&cli->cl_sem);
152                 RETURN(rc);
153         }
154
155         if (cli->cl_conn_count > 1) {
156                 up(&cli->cl_sem);
157                 RETURN(0);
158         }
159
160         obd->obd_namespace = ldlm_namespace_new(obd->obd_name,
161                                                 LDLM_NAMESPACE_CLIENT);
162         if (obd->obd_namespace == NULL) {
163                 up(&cli->cl_sem);
164                 RETURN(-ENOMEM);
165         }
166
167         request = ptlrpc_prep_req(cli->cl_client, cli->cl_conn, rq_opc, 2, size,
168                                   tmp);
169         if (!request)
170                 GOTO(out_disco, -ENOMEM);
171
172         request->rq_level = LUSTRE_CONN_NEW;
173         request->rq_replen = lustre_msg_size(0, NULL);
174         //   This handle may be important if a callback needs
175         //   to find the mdc/osc
176         //        request->rq_reqmsg->addr = conn->addr;
177         //        request->rq_reqmsg->cookie = conn->cookie;
178
179         rc = ptlrpc_queue_wait(request);
180         rc = ptlrpc_check_status(request, rc);
181         if (rc)
182                 GOTO(out, rc);
183
184         request->rq_connection->c_level = LUSTRE_CONN_FULL;
185         cli->cl_exporth = *(struct lustre_handle *)request->rq_repmsg;
186
187         EXIT;
188  out:
189         ptlrpc_free_req(request);
190  out_disco:
191         if (rc) {
192                 class_disconnect(conn);
193                 MOD_DEC_USE_COUNT;
194         }
195         up(&cli->cl_sem);
196         return rc;
197 }
198
199 int client_obd_disconnect(struct lustre_handle *conn)
200 {
201         struct obd_device *obd = class_conn2obd(conn);
202         int rq_opc = (obd->obd_type->typ_ops->o_getattr) ? OST_DISCONNECT : MDS_DISCONNECT;
203         struct ptlrpc_request *request = NULL;
204         int rc;
205         ENTRY;
206
207         down(&obd->u.cli.cl_sem);
208         if (!obd->u.cli.cl_conn_count) {
209                 CERROR("disconnecting disconnected device (%s)\n",
210                        obd->obd_name);
211                 RETURN(0);
212         }
213
214         obd->u.cli.cl_conn_count--;
215         if (obd->u.cli.cl_conn_count)
216                 GOTO(class_only, 0);
217
218         ldlm_namespace_free(obd->obd_namespace);
219         obd->obd_namespace = NULL;
220         request = ptlrpc_prep_req2(conn, rq_opc, 0, NULL, NULL);
221         if (!request)
222                 RETURN(-ENOMEM);
223
224         request->rq_replen = lustre_msg_size(0, NULL);
225
226         rc = ptlrpc_queue_wait(request);
227         if (rc)
228                 GOTO(out, rc);
229  class_only:
230         rc = class_disconnect(conn);
231         if (!rc)
232                 MOD_DEC_USE_COUNT;
233  out:
234         if (request)
235                 ptlrpc_free_req(request);
236         up(&obd->u.cli.cl_sem);
237         RETURN(rc);
238 }
239
240 int target_handle_connect(struct ptlrpc_request *req)
241 {
242         struct obd_device *target;
243         struct obd_export *export;
244         struct lustre_handle conn;
245         char *tgtuuid, *cluuid;
246         int rc, i;
247         ENTRY;
248
249         tgtuuid = lustre_msg_buf(req->rq_reqmsg, 0);
250         if (req->rq_reqmsg->buflens[0] > 37) {
251                 /* Invalid UUID */
252                 req->rq_status = -EINVAL;
253                 RETURN(-EINVAL);
254         }
255
256         cluuid =  lustre_msg_buf(req->rq_reqmsg, 1);
257         if (req->rq_reqmsg->buflens[1] > 37) {
258                 /* Invalid UUID */
259                 req->rq_status = -EINVAL;
260                 RETURN(-EINVAL);
261         }
262
263         i = class_uuid2dev(tgtuuid);
264         if (i == -1) {
265                 req->rq_status = -ENODEV;
266                 RETURN(-ENODEV);
267         }
268
269         target = &obd_dev[i];
270         if (!target) {
271                 req->rq_status = -ENODEV;
272                 RETURN(-ENODEV);
273         }
274
275         conn.addr = req->rq_reqmsg->addr;
276         conn.cookie = req->rq_reqmsg->cookie;
277
278         rc = lustre_pack_msg(0, NULL, NULL, &req->rq_replen, &req->rq_repmsg);
279         if (rc)
280                 RETURN(rc);
281
282         req->rq_status = obd_connect(&conn, target, cluuid);
283         req->rq_repmsg->addr = conn.addr;
284         req->rq_repmsg->cookie = conn.cookie;
285
286         export = class_conn2export(&conn);
287         if (!export)
288                 LBUG();
289
290         req->rq_export = export;
291         export->exp_connection = req->rq_connection;
292 #warning Peter: is this the right place to upgrade the server connection level?
293         req->rq_connection->c_level = LUSTRE_CONN_FULL;
294         RETURN(0);
295 }
296
297 int target_handle_disconnect(struct ptlrpc_request *req)
298 {
299         struct lustre_handle *conn = (struct lustre_handle *)req->rq_reqmsg;
300         int rc;
301         ENTRY;
302
303         rc = lustre_pack_msg(0, NULL, NULL, &req->rq_replen, &req->rq_repmsg);
304         if (rc)
305                 RETURN(rc);
306
307         req->rq_status = obd_disconnect(conn);
308         RETURN(0);
309 }