Whamcloud - gitweb
- move the peter branch changes to the head
[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 {
134         struct client_obd *cli = &obd->u.cli;
135         struct ptlrpc_request *request;
136         int rc, size = sizeof(cli->cl_target_uuid);
137         char *tmp = cli->cl_target_uuid;
138         int rq_opc = (obd->obd_type->typ_ops->o_getattr) ? OST_CONNECT : MDS_CONNECT;
139
140         ENTRY;
141         down(&cli->cl_sem); 
142         MOD_INC_USE_COUNT;
143         rc = class_connect(conn, obd);
144         if (!rc) 
145                 cli->cl_conn_count++;
146         else { 
147                 MOD_DEC_USE_COUNT;
148                 up(&cli->cl_sem);
149                 RETURN(rc);
150         }
151                 
152         if (cli->cl_conn_count > 1) { 
153                 up(&cli->cl_sem);
154                 RETURN(0);
155         }
156
157         obd->obd_namespace =
158                 ldlm_namespace_new("cli", LDLM_NAMESPACE_CLIENT);
159         if (obd->obd_namespace == NULL) { 
160                 up(&cli->cl_sem);
161                 RETURN(-ENOMEM);
162         }
163
164         request = ptlrpc_prep_req(cli->cl_client, cli->cl_conn, rq_opc, 1, &size, &tmp);
165         if (!request)
166                 GOTO(out_disco, -ENOMEM);
167
168         request->rq_level = LUSTRE_CONN_NEW;
169         request->rq_replen = lustre_msg_size(0, NULL);
170         /* Sending our local connection info breaks for local connections
171         request->rq_reqmsg->addr = conn->addr;
172         request->rq_reqmsg->cookie = conn->cookie;
173          */
174
175         rc = ptlrpc_queue_wait(request);
176         rc = ptlrpc_check_status(request, rc);
177         if (rc)
178                 GOTO(out, rc);
179
180         request->rq_connection->c_level = LUSTRE_CONN_FULL;
181         cli->cl_exporth = *(struct lustre_handle *)request->rq_repmsg;
182
183         EXIT;
184  out:
185         ptlrpc_free_req(request);
186  out_disco:
187         if (rc) {
188                 class_disconnect(conn);
189                 MOD_DEC_USE_COUNT;
190         }
191         up(&cli->cl_sem);
192         return rc;
193 }
194
195 int client_obd_disconnect(struct lustre_handle *conn)
196 {
197         struct obd_device *obd = class_conn2obd(conn);
198         int rq_opc = (obd->obd_type->typ_ops->o_getattr) ? OST_DISCONNECT : MDS_DISCONNECT;
199         struct ptlrpc_request *request = NULL;
200         int rc;
201         ENTRY;
202
203         down(&obd->u.cli.cl_sem);
204         if (!obd->u.cli.cl_conn_count) { 
205                 CERROR("disconnecting disconnected device (%s)\n", 
206                        obd->obd_name); 
207                 RETURN(0);
208         }
209
210         obd->u.cli.cl_conn_count--; 
211         if (obd->u.cli.cl_conn_count)
212                 GOTO(class_only, 0);
213
214         ldlm_namespace_free(obd->obd_namespace);
215         obd->obd_namespace = NULL; 
216         request = ptlrpc_prep_req2(conn, rq_opc, 0, NULL, NULL);
217         if (!request)
218                 RETURN(-ENOMEM);
219
220         request->rq_replen = lustre_msg_size(0, NULL);
221
222         rc = ptlrpc_queue_wait(request);
223         if (rc) 
224                 GOTO(out, rc);
225  class_only:
226         rc = class_disconnect(conn);
227         if (!rc)
228                 MOD_DEC_USE_COUNT;
229  out:
230         if (request) 
231                 ptlrpc_free_req(request);
232         up(&obd->u.cli.cl_sem);
233         RETURN(rc);
234 }
235
236 int target_handle_connect(struct ptlrpc_request *req)
237 {
238         struct obd_device *target;
239         struct obd_export *export;
240         struct lustre_handle conn;
241         char *uuid;
242         int rc, i;
243         ENTRY;
244
245         uuid = lustre_msg_buf(req->rq_reqmsg, 0);
246         if (req->rq_reqmsg->buflens[0] > 37) {
247                 /* Invalid UUID */
248                 req->rq_status = -EINVAL;
249                 RETURN(-EINVAL);
250         }
251
252         i = class_uuid2dev(uuid);
253         if (i == -1) {
254                 req->rq_status = -ENODEV;
255                 RETURN(-ENODEV);
256         }
257
258         target = &obd_dev[i];
259         if (!target) {
260                 req->rq_status = -ENODEV;
261                 RETURN(-ENODEV);
262         }
263
264         conn.addr = req->rq_reqmsg->addr;
265         conn.cookie = req->rq_reqmsg->cookie;
266
267         rc = lustre_pack_msg(0, NULL, NULL, &req->rq_replen, &req->rq_repmsg);
268         if (rc)
269                 RETURN(rc);
270
271         req->rq_status = obd_connect(&conn, target);
272         req->rq_repmsg->addr = conn.addr;
273         req->rq_repmsg->cookie = conn.cookie;
274
275         export = class_conn2export(&conn);
276         if (!export)
277                 LBUG();
278
279         req->rq_export = export;
280         export->exp_connection = req->rq_connection;
281 #warning Peter: is this the right place to upgrade the server connection level?
282         req->rq_connection->c_level = LUSTRE_CONN_FULL;
283         RETURN(0);
284 }
285
286 int target_handle_disconnect(struct ptlrpc_request *req)
287 {
288         struct lustre_handle *conn = (struct lustre_handle *)req->rq_reqmsg;
289         int rc;
290         ENTRY;
291
292         rc = lustre_pack_msg(0, NULL, NULL, &req->rq_replen, &req->rq_repmsg);
293         if (rc)
294                 RETURN(rc);
295
296         req->rq_status = obd_disconnect(conn);
297         RETURN(0);
298 }