Whamcloud - gitweb
b=585183
[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
34 static int mdc_reint(struct ptlrpc_request *request, int level)
35 {
36         int rc;
37         request->rq_level = level;
38
39         rc = ptlrpc_queue_wait(request);
40         rc = ptlrpc_check_status(request, rc);
41
42         if (rc)
43                 CERROR("error in handling %d\n", rc);
44
45         return rc;
46 }
47
48 int mdc_setattr(struct lustre_handle *conn,
49                 struct inode *inode, struct iattr *iattr,
50                 struct ptlrpc_request **request)
51 {
52         struct ptlrpc_request *req;
53         struct mds_rec_setattr *rec;
54         int rc, size = sizeof(*rec);
55         ENTRY;
56
57         req = ptlrpc_prep_req2(conn, MDS_REINT, 1, &size, NULL);
58         if (!req)
59                 RETURN(-ENOMEM);
60
61         mds_setattr_pack(req, 0, inode, iattr, NULL, 0);
62
63         size = sizeof(struct mds_body);
64         req->rq_replen = lustre_msg_size(1, &size);
65
66         rc = mdc_reint(req, LUSTRE_CONN_FULL);
67         *request = req;
68         if (rc == -ERESTARTSYS )
69                 rc = 0;
70
71         RETURN(rc);
72 }
73
74 int mdc_create(struct lustre_handle *conn,
75                struct inode *dir, const char *name, int namelen,
76                const char *tgt, int tgtlen, int mode, __u32 uid,
77                __u32 gid, __u64 time, __u64 rdev, struct lov_stripe_md *smd,
78                struct ptlrpc_request **request)
79 {
80         struct mds_rec_create *rec;
81         struct ptlrpc_request *req;
82         int rc, size[3] = {sizeof(struct mds_rec_create), namelen + 1, 0};
83         char *tmp, *bufs[3] = {NULL, NULL, NULL};
84         int level, bufcount = 2;
85         ENTRY;
86
87         if (S_ISREG(mode)) {
88                 if (!smd) {
89                         CERROR("File create, but no md (%ld, %*s)\n",
90                                dir->i_ino, namelen, name); 
91                         LBUG();
92                 }
93                 size[2] = smd->lmd_easize;
94                 bufs[2] = (char *)smd;
95                 bufcount = 3;
96         } else if (S_ISLNK(mode)) {
97                 size[2] = tgtlen + 1;
98                 bufcount = 3;
99         }
100
101         req = ptlrpc_prep_req2(conn, MDS_REINT, bufcount, size, bufs);
102         if (!req)
103                 RETURN(-ENOMEM);
104
105         /* mds_create_pack fills bufs[1] with name */
106         rec = lustre_msg_buf(req->rq_reqmsg, 0);
107         mds_create_pack(req, 0, dir, mode, rdev, uid, gid, time,
108                         name, namelen, NULL, 0);
109
110         if (S_ISREG(mode)) {
111                 tmp = lustre_msg_buf(req->rq_reqmsg, 2);
112                 memcpy(tmp, smd, smd->lmd_easize);
113         } else if (S_ISLNK(mode)) {
114                 tmp = lustre_msg_buf(req->rq_reqmsg, 2);
115                 LOGL0(tgt, tgtlen, tmp);
116         }
117
118         size[0] = sizeof(struct mds_body);
119         req->rq_replen = lustre_msg_size(1, size);
120
121         level = LUSTRE_CONN_FULL;
122  resend:
123         rc = mdc_reint(req, level);
124         if (rc == -ERESTARTSYS) {
125                 __u32 *opcode = lustre_msg_buf(req->rq_reqmsg, 0);
126                 level = LUSTRE_CONN_RECOVD;
127                 CERROR("Lost reply: re-create rep.\n");
128                 req->rq_flags = 0;
129                 *opcode = NTOH__u32(REINT_RECREATE);
130                 goto resend;
131         }
132
133         *request = req;
134         RETURN(rc);
135 }
136
137 int mdc_unlink(struct lustre_handle *conn, struct inode *dir,
138                struct inode *child, __u32 mode, const char *name, int namelen,
139                struct ptlrpc_request **request)
140 {
141         struct ptlrpc_request *req;
142         int rc, size[2] = {sizeof(struct mds_rec_unlink), namelen + 1};
143         ENTRY;
144
145         req = ptlrpc_prep_req2(conn, MDS_REINT, 2, size, NULL);
146         if (!req)
147                 RETURN(-ENOMEM);
148
149         mds_unlink_pack(req, 0, dir, child, mode, name, namelen);
150
151         size[0] = sizeof(struct mds_body);
152         req->rq_replen = lustre_msg_size(1, size);
153
154         rc = mdc_reint(req, LUSTRE_CONN_FULL);
155         *request = req;
156         if (rc == -ERESTARTSYS)
157                 rc = 0;
158
159         RETURN(rc);
160 }
161
162 int mdc_link(struct lustre_handle *conn,
163              struct dentry *src, struct inode *dir, const char *name,
164              int namelen, struct ptlrpc_request **request)
165 {
166         struct ptlrpc_request *req;
167         int rc, size[2] = {sizeof(struct mds_rec_link), namelen + 1};
168         ENTRY;
169
170         req = ptlrpc_prep_req2(conn, MDS_REINT, 2, size, NULL);
171         if (!req)
172                 RETURN(-ENOMEM);
173
174         mds_link_pack(req, 0, src->d_inode, dir, name, namelen);
175
176         size[0] = sizeof(struct mds_body);
177         req->rq_replen = lustre_msg_size(1, size);
178
179         rc = mdc_reint(req, LUSTRE_CONN_FULL);
180         *request = req;
181         if (rc == -ERESTARTSYS )
182                 rc = 0;
183
184         RETURN(rc);
185 }
186
187 int mdc_rename(struct lustre_handle *conn,
188                struct inode *src, struct inode *tgt, const char *old,
189                int oldlen, const char *new, int newlen,
190                struct ptlrpc_request **request)
191 {
192         struct ptlrpc_request *req;
193         int rc, size[3] = {sizeof(struct mds_rec_rename), oldlen + 1,
194                            newlen + 1};
195         ENTRY;
196
197         req = ptlrpc_prep_req2(conn, MDS_REINT, 3, size, NULL);
198         if (!req)
199                 RETURN(-ENOMEM);
200
201         mds_rename_pack(req, 0, src, tgt, old, oldlen, new, newlen);
202
203         size[0] = sizeof(struct mds_body);
204         req->rq_replen = lustre_msg_size(1, size);
205
206         rc = mdc_reint(req, LUSTRE_CONN_FULL);
207         *request = req;
208         if (rc == -ERESTARTSYS )
209                 rc = 0;
210
211         RETURN(rc);
212 }