Whamcloud - gitweb
WARNING: we currently crash on unmount after the last phase of runtests.
[fs/lustre-release.git] / lustre / mdc / mdc_reint.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  *
6  *   This file is part of Lustre, http://www.sf.net/projects/lustre/
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22
23 #define EXPORT_SYMTAB
24
25 #include <linux/config.h>
26 #include <linux/module.h>
27 #include <linux/kernel.h>
28
29 #define DEBUG_SUBSYSTEM S_MDC
30
31 #include <linux/obd_class.h>
32 #include <linux/lustre_mds.h>
33 #include <linux/obd_lov.h>
34
35 static int mdc_reint(struct ptlrpc_request *request, int level)
36 {
37         int rc;
38         request->rq_level = level;
39
40         rc = ptlrpc_queue_wait(request);
41         rc = ptlrpc_check_status(request, rc);
42
43         if (rc)
44                 CERROR("error in handling %d\n", rc);
45
46         return rc;
47 }
48
49 int mdc_setattr(struct lustre_handle *conn,
50                 struct inode *inode, struct iattr *iattr,
51                 struct ptlrpc_request **request)
52 {
53         struct ptlrpc_request *req;
54         struct mds_rec_setattr *rec;
55         int rc, size = sizeof(*rec);
56         ENTRY;
57
58         req = ptlrpc_prep_req(class_conn2cliimp(conn), MDS_REINT, 1, &size,
59                               NULL);
60         if (!req)
61                 RETURN(-ENOMEM);
62
63         mds_setattr_pack(req, 0, inode, iattr, NULL, 0);
64
65         size = sizeof(struct mds_body);
66         req->rq_replen = lustre_msg_size(1, &size);
67
68         rc = mdc_reint(req, LUSTRE_CONN_FULL);
69         *request = req;
70         if (rc == -ERESTARTSYS )
71                 rc = 0;
72
73         RETURN(rc);
74 }
75
76 int mdc_create(struct lustre_handle *conn,
77                struct inode *dir, const char *name, int namelen,
78                const char *tgt, int tgtlen, int mode, __u32 uid,
79                __u32 gid, __u64 time, __u64 rdev, struct lov_stripe_md *smd,
80                struct ptlrpc_request **request)
81 {
82         struct mds_rec_create *rec;
83         struct ptlrpc_request *req;
84         int rc, size[3] = {sizeof(struct mds_rec_create), namelen + 1, 0};
85         char *tmp;
86         int level, bufcount = 2;
87         ENTRY;
88
89         if (S_ISREG(mode)) {
90                 if (!smd) {
91                         CERROR("File create, but no md (%ld, %*s)\n",
92                                dir->i_ino, namelen, name); 
93                         LBUG();
94                 }
95                 size[2] = smd->lmd_easize;
96                 bufcount = 3;
97         } else if (S_ISLNK(mode)) {
98                 size[2] = tgtlen + 1;
99                 bufcount = 3;
100         }
101
102         req = ptlrpc_prep_req(class_conn2cliimp(conn), MDS_REINT, bufcount, size,
103                               NULL);
104         if (!req)
105                 RETURN(-ENOMEM);
106
107         /* mds_create_pack fills msg->bufs[1] with name */
108         rec = lustre_msg_buf(req->rq_reqmsg, 0);
109         mds_create_pack(req, 0, dir, mode, rdev, uid, gid, time,
110                         name, namelen, NULL, 0);
111
112         if (S_ISREG(mode)) {
113                 lov_packmd(lustre_msg_buf(req->rq_reqmsg, 2), smd);
114         } else if (S_ISLNK(mode)) {
115                 tmp = lustre_msg_buf(req->rq_reqmsg, 2);
116                 LOGL0(tgt, tgtlen, tmp);
117         }
118
119         size[0] = sizeof(struct mds_body);
120         req->rq_replen = lustre_msg_size(1, size);
121
122         level = LUSTRE_CONN_FULL;
123  resend:
124         rc = mdc_reint(req, level);
125         if (rc == -ERESTARTSYS) {
126                 __u32 *opcode = lustre_msg_buf(req->rq_reqmsg, 0);
127                 level = LUSTRE_CONN_RECOVD;
128                 CERROR("Lost reply: re-create rep.\n");
129                 req->rq_flags = 0;
130                 *opcode = NTOH__u32(REINT_RECREATE);
131                 goto resend;
132         }
133
134         *request = req;
135         RETURN(rc);
136 }
137
138 int mdc_unlink(struct lustre_handle *conn, struct inode *dir,
139                struct inode *child, __u32 mode, const char *name, int namelen,
140                struct ptlrpc_request **request)
141 {
142         struct ptlrpc_request *req;
143         int rc, size[2] = {sizeof(struct mds_rec_unlink), namelen + 1};
144         ENTRY;
145
146         req = ptlrpc_prep_req(class_conn2cliimp(conn), MDS_REINT, 2, size, NULL);
147         if (!req)
148                 RETURN(-ENOMEM);
149
150         mds_unlink_pack(req, 0, dir, child, mode, name, namelen);
151
152         size[0] = sizeof(struct mds_body);
153         req->rq_replen = lustre_msg_size(1, size);
154
155         rc = mdc_reint(req, LUSTRE_CONN_FULL);
156         *request = req;
157         if (rc == -ERESTARTSYS)
158                 rc = 0;
159
160         RETURN(rc);
161 }
162
163 int mdc_link(struct lustre_handle *conn,
164              struct dentry *src, struct inode *dir, const char *name,
165              int namelen, struct ptlrpc_request **request)
166 {
167         struct ptlrpc_request *req;
168         int rc, size[2] = {sizeof(struct mds_rec_link), namelen + 1};
169         ENTRY;
170
171         req = ptlrpc_prep_req(class_conn2cliimp(conn), MDS_REINT, 2, size, NULL);
172         if (!req)
173                 RETURN(-ENOMEM);
174
175         mds_link_pack(req, 0, src->d_inode, dir, name, namelen);
176
177         size[0] = sizeof(struct mds_body);
178         req->rq_replen = lustre_msg_size(1, size);
179
180         rc = mdc_reint(req, LUSTRE_CONN_FULL);
181         *request = req;
182         if (rc == -ERESTARTSYS )
183                 rc = 0;
184
185         RETURN(rc);
186 }
187
188 int mdc_rename(struct lustre_handle *conn,
189                struct inode *src, struct inode *tgt, const char *old,
190                int oldlen, const char *new, int newlen,
191                struct ptlrpc_request **request)
192 {
193         struct ptlrpc_request *req;
194         int rc, size[3] = {sizeof(struct mds_rec_rename), oldlen + 1,
195                            newlen + 1};
196         ENTRY;
197
198         req = ptlrpc_prep_req(class_conn2cliimp(conn), MDS_REINT, 3, size, NULL);
199         if (!req)
200                 RETURN(-ENOMEM);
201
202         mds_rename_pack(req, 0, src, tgt, old, oldlen, new, newlen);
203
204         size[0] = sizeof(struct mds_body);
205         req->rq_replen = lustre_msg_size(1, size);
206
207         rc = mdc_reint(req, LUSTRE_CONN_FULL);
208         *request = req;
209         if (rc == -ERESTARTSYS )
210                 rc = 0;
211
212         RETURN(rc);
213 }