Whamcloud - gitweb
Transmit group_info between mds.
[fs/lustre-release.git] / lustre / cmm / mdc_object.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  lustre/cmm/mdc_object.c
5  *  Lustre Cluster Metadata Manager (cmm)
6  *
7  *  Copyright (c) 2006 Cluster File Systems, Inc.
8  *   Author: Mike Pershin <tappro@clusterfs.com>
9  *
10  *   This file is part of the Lustre file system, http://www.lustre.org
11  *   Lustre is a trademark of Cluster File Systems, Inc.
12  *
13  *   You may have signed or agreed to another license before downloading
14  *   this software.  If so, you are bound by the terms and conditions
15  *   of that agreement, and the following does not apply to you.  See the
16  *   LICENSE file included with this distribution for more information.
17  *
18  *   If you did not agree to a different license, then this copy of Lustre
19  *   is open source software; you can redistribute it and/or modify it
20  *   under the terms of version 2 of the GNU General Public License as
21  *   published by the Free Software Foundation.
22  *
23  *   In either case, Lustre is distributed in the hope that it will be
24  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
25  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  *   license text for more details.
27  */
28
29 #ifndef EXPORT_SYMTAB
30 # define EXPORT_SYMTAB
31 #endif
32
33 #define DEBUG_SUBSYSTEM S_MDS
34 #include <obd_support.h>
35 #include <lustre_lib.h>
36 #include <obd_class.h>
37 #include <lustre_mdc.h>
38 #include "cmm_internal.h"
39 #include "mdc_internal.h"
40
41 static struct md_object_operations mdc_mo_ops;
42 static struct md_dir_operations mdc_dir_ops;
43 static struct lu_object_operations mdc_obj_ops;
44
45 extern struct lu_context_key mdc_thread_key;
46
47 struct lu_object *mdc_object_alloc(const struct lu_context *ctx,
48                                    const struct lu_object_header *hdr,
49                                    struct lu_device *ld)
50 {
51         struct mdc_object *mco;
52         ENTRY;
53
54         OBD_ALLOC_PTR(mco);
55         if (mco != NULL) {
56                 struct lu_object *lo;
57
58                 lo = &mco->mco_obj.mo_lu;
59                 lu_object_init(lo, NULL, ld);
60                 mco->mco_obj.mo_ops = &mdc_mo_ops;
61                 mco->mco_obj.mo_dir_ops = &mdc_dir_ops;
62                 lo->lo_ops = &mdc_obj_ops;
63                 RETURN(lo);
64         } else
65                 RETURN(NULL);
66 }
67
68 static void mdc_object_free(const struct lu_context *ctx, struct lu_object *lo)
69 {
70         struct mdc_object *mco = lu2mdc_obj(lo);
71         lu_object_fini(lo);
72         OBD_FREE_PTR(mco);
73 }
74
75 static int mdc_object_init(const struct lu_context *ctx, struct lu_object *lo)
76 {
77         ENTRY;
78         lo->lo_header->loh_attr |= LOHA_REMOTE;
79         RETURN(0);
80 }
81
82 static int mdc_object_print(const struct lu_context *ctx, void *cookie,
83                             lu_printer_t p, const struct lu_object *lo)
84 {
85         return (*p)(ctx, cookie, LUSTRE_CMM_MDC_NAME"-object@%p", lo);
86 }
87
88 static struct lu_object_operations mdc_obj_ops = {
89         .loo_object_init    = mdc_object_init,
90         .loo_object_free    = mdc_object_free,
91         .loo_object_print   = mdc_object_print,
92 };
93
94 /* md_object_operations */
95 static  
96 struct mdc_thread_info *mdc_info_get(const struct lu_context *ctx)
97 {
98         struct mdc_thread_info *mci;
99
100         mci = lu_context_key_get(ctx, &mdc_thread_key);
101         LASSERT(mci);
102         return mci;
103 }
104
105 static 
106 struct mdc_thread_info *mdc_info_init(const struct lu_context *ctx)
107 {
108         struct mdc_thread_info *mci;
109
110         mci = mdc_info_get(ctx);
111
112         memset(mci, 0, sizeof(*mci));
113
114         return mci;
115 }
116
117 static void mdc_body2attr(struct mdt_body *body, struct md_attr *ma)
118 {
119         struct lu_attr *la = &ma->ma_attr;
120         /* update time */
121         if (body->valid & OBD_MD_FLCTIME && body->ctime >= la->la_ctime) {
122                 la->la_ctime = body->ctime;
123                 if (body->valid & OBD_MD_FLMTIME)
124                         la->la_mtime = body->mtime;
125         }
126
127         if (body->valid & OBD_MD_FLMODE)
128                 la->la_mode = body->mode;
129         if (body->valid & OBD_MD_FLSIZE)
130                 la->la_size = body->size;
131         if (body->valid & OBD_MD_FLBLOCKS)
132                 la->la_blocks = body->blocks;
133         if (body->valid & OBD_MD_FLUID)
134                 la->la_uid = body->uid;
135         if (body->valid & OBD_MD_FLGID)
136                 la->la_gid = body->gid;
137         if (body->valid & OBD_MD_FLFLAGS)
138                 la->la_flags = body->flags;
139         if (body->valid & OBD_MD_FLNLINK)
140                 la->la_nlink = body->nlink;
141         if (body->valid & OBD_MD_FLRDEV)
142                 la->la_rdev = body->rdev;
143
144         ma->ma_valid = MA_INODE;
145 }
146
147 static int mdc_req2attr_update(const struct lu_context *ctx,
148                                 struct md_attr *ma)
149 {
150         struct mdc_thread_info *mci;
151         struct ptlrpc_request *req;
152         struct mdt_body *body;
153         struct lov_mds_md *lov;
154         struct llog_cookie *cookie;
155         
156         ENTRY;
157         mci = mdc_info_get(ctx);
158         req = mci->mci_req;
159         LASSERT(req);
160         body = lustre_msg_buf(req->rq_repmsg, REPLY_REC_OFF, sizeof(*body));
161         LASSERT(body);
162         mdc_body2attr(body, ma);
163
164         if (!(body->valid & OBD_MD_FLEASIZE))
165                 RETURN(0);
166
167         if (body->eadatasize == 0) {
168                 CERROR("OBD_MD_FLEASIZE is set but eadatasize is zero\n");
169                 RETURN(-EPROTO);
170         }
171         
172         lov = lustre_swab_repbuf(req, REPLY_REC_OFF + 1,
173                                  body->eadatasize, NULL);
174         if (lov == NULL) {
175                 CERROR("Can't unpack MDS EA data\n");
176                 RETURN(-EPROTO);
177         }
178
179         LASSERT(ma->ma_lmm != NULL);
180         LASSERT(ma->ma_lmm_size == body->eadatasize);
181         memcpy(ma->ma_lmm, lov, ma->ma_lmm_size);
182         ma->ma_valid |= MA_LOV;
183         if (!(body->valid & OBD_MD_FLCOOKIE))
184                 RETURN(0);
185         
186         if (body->aclsize == 0) {
187                 CERROR("OBD_MD_FLCOOKIE is set but cookie size is zero\n");
188                 RETURN(-EPROTO);
189         }
190
191         cookie = lustre_msg_buf(req->rq_repmsg,
192                                 REPLY_REC_OFF + 2, body->aclsize);
193         if (cookie == NULL) {
194                 CERROR("Can't unpack unlink cookie data\n");
195                 RETURN(-EPROTO);
196         }
197
198         LASSERT(ma->ma_cookie != NULL);
199         LASSERT(ma->ma_cookie_size == body->aclsize);
200         memcpy(ma->ma_cookie, cookie, ma->ma_cookie_size);
201         ma->ma_valid |= MA_COOKIE;
202         RETURN(0);
203 }
204
205 static int mdc_attr_get(const struct lu_context *ctx, struct md_object *mo,
206                         struct md_attr *ma, struct md_ucred *uc)
207 {
208         struct mdc_device *mc = md2mdc_dev(md_obj2dev(mo));
209         struct mdc_thread_info *mci;
210         int rc;
211         ENTRY;
212
213         mci = lu_context_key_get(ctx, &mdc_thread_key);
214         LASSERT(mci);
215
216         memset(&mci->mci_opdata, 0, sizeof(mci->mci_opdata));
217
218         rc = md_getattr(mc->mc_desc.cl_exp, lu_object_fid(&mo->mo_lu),
219                         OBD_MD_FLMODE | OBD_MD_FLUID | OBD_MD_FLGID |
220                         OBD_MD_FLFLAGS,
221                         0, &mci->mci_req);
222
223         if (rc == 0) {
224                 /* get attr from request */
225                 rc = mdc_req2attr_update(ctx, ma);
226         }
227
228         ptlrpc_req_finished(mci->mci_req);
229
230         RETURN(rc);
231 }
232
233
234 static int mdc_object_create(const struct lu_context *ctx,
235                              struct md_object *mo,
236                              const struct md_create_spec *spec,
237                              struct md_attr *ma,
238                              struct md_ucred *uc)
239 {
240         struct mdc_device *mc = md2mdc_dev(md_obj2dev(mo));
241         struct lu_attr *la = &ma->ma_attr;
242         struct mdc_thread_info *mci;
243         const void *symname;
244         int rc, symlen;
245         uid_t uid;
246         gid_t gid;
247         __u32 cap;
248         ENTRY;
249
250         LASSERT(spec->u.sp_pfid != NULL);
251         mci = mdc_info_init(ctx);
252         mci->mci_opdata.fid2 = *lu_object_fid(&mo->mo_lu);
253         /* parent fid is needed to create dotdot on the remote node */
254         mci->mci_opdata.fid1 = *(spec->u.sp_pfid);
255         mci->mci_opdata.mod_time = la->la_mtime;
256         if (uc &&
257             ((uc->mu_valid == UCRED_OLD) || (uc->mu_valid == UCRED_NEW))) {
258                 uid = uc->mu_fsuid;
259                 gid = uc->mu_fsgid;
260                 cap = uc->mu_cap;
261                 if (uc->mu_ginfo || (uc->mu_valid == UCRED_OLD))
262                         mci->mci_opdata.suppgids[0] = uc->mu_suppgids[0];
263                 else
264                         mci->mci_opdata.suppgids[0] = -1;
265         } else {
266                 uid = la->la_uid;
267                 gid = la->la_gid;
268                 cap = 0;
269                 mci->mci_opdata.suppgids[0] = -1;
270         }
271
272         /* get data from spec */
273         if (spec->sp_cr_flags & MDS_CREATE_SLAVE_OBJ) {
274                 symname = spec->u.sp_ea.eadata;
275                 symlen = spec->u.sp_ea.eadatalen;
276                 mci->mci_opdata.fid1 = *(spec->u.sp_ea.fid);
277                 mci->mci_opdata.flags |= MDS_CREATE_SLAVE_OBJ;
278         } else {
279                 symname = spec->u.sp_symname;
280                 symlen = symname ? strlen(symname) + 1 : 0;
281         }
282         
283         rc = md_create(mc->mc_desc.cl_exp, &mci->mci_opdata,
284                        symname, symlen,
285                        la->la_mode, uid, gid, cap, la->la_rdev,
286                        &mci->mci_req);
287
288         if (rc == 0) {
289                 /* get attr from request */
290                 rc = mdc_req2attr_update(ctx, ma);
291         }
292
293         ptlrpc_req_finished(mci->mci_req);
294
295         RETURN(rc);
296 }
297
298 static int mdc_ref_add(const struct lu_context *ctx, struct md_object *mo,
299                        struct md_ucred *uc)
300 {
301         struct mdc_device *mc = md2mdc_dev(md_obj2dev(mo));
302         struct mdc_thread_info *mci;
303         int rc;
304         ENTRY;
305
306         mci = lu_context_key_get(ctx, &mdc_thread_key);
307         LASSERT(mci);
308
309         memset(&mci->mci_opdata, 0, sizeof(mci->mci_opdata));
310         mci->mci_opdata.fid1 = *lu_object_fid(&mo->mo_lu);
311         //mci->mci_opdata.mod_time = la->la_ctime;
312         //mci->mci_opdata.fsuid = la->la_uid;
313         //mci->mci_opdata.fsgid = la->la_gid;
314         mci->mci_opdata.mod_time = CURRENT_SECONDS;
315         if (uc &&
316             ((uc->mu_valid == UCRED_OLD) || (uc->mu_valid == UCRED_NEW))) {
317                 mci->mci_opdata.fsuid = uc->mu_fsuid;
318                 mci->mci_opdata.fsgid = uc->mu_fsgid;
319                 mci->mci_opdata.cap = uc->mu_cap;
320                 if (uc->mu_ginfo || (uc->mu_valid == UCRED_OLD)) {
321                         mci->mci_opdata.suppgids[0] = uc->mu_suppgids[0];
322                         mci->mci_opdata.suppgids[1] = uc->mu_suppgids[1];
323                 } else {
324                         mci->mci_opdata.suppgids[0] =
325                                 mci->mci_opdata.suppgids[1] = -1;
326                 }
327         } else {
328                 mci->mci_opdata.fsuid = current->fsuid;
329                 mci->mci_opdata.fsgid = current->fsgid;
330                 mci->mci_opdata.cap = current->cap_effective;
331                 mci->mci_opdata.suppgids[0] = mci->mci_opdata.suppgids[1] = -1;
332         }
333
334
335         rc = md_link(mc->mc_desc.cl_exp, &mci->mci_opdata, &mci->mci_req);
336
337         ptlrpc_req_finished(mci->mci_req);
338
339         RETURN(rc);
340 }
341
342 static int mdc_ref_del(const struct lu_context *ctx, struct md_object *mo,
343                        struct md_attr *ma, struct md_ucred *uc)
344 {
345         struct mdc_device *mc = md2mdc_dev(md_obj2dev(mo));
346         struct lu_attr *la = &ma->ma_attr;
347         struct mdc_thread_info *mci;
348         int rc;
349         ENTRY;
350
351         mci = mdc_info_init(ctx);
352         mci->mci_opdata.fid1 = *lu_object_fid(&mo->mo_lu);
353         mci->mci_opdata.create_mode = la->la_mode;
354         mci->mci_opdata.mod_time = la->la_ctime;
355         if (uc &&
356             ((uc->mu_valid == UCRED_OLD) || (uc->mu_valid == UCRED_NEW))) {
357                 mci->mci_opdata.fsuid = uc->mu_fsuid;
358                 mci->mci_opdata.fsgid = uc->mu_fsgid;
359                 mci->mci_opdata.cap = uc->mu_cap;
360                 if (uc->mu_ginfo || (uc->mu_valid == UCRED_OLD))
361                         mci->mci_opdata.suppgids[0] = uc->mu_suppgids[0];
362                 else
363                         mci->mci_opdata.suppgids[0] = -1;
364         } else {
365                 mci->mci_opdata.fsuid = la->la_uid;
366                 mci->mci_opdata.fsgid = la->la_gid;
367                 mci->mci_opdata.cap = current->cap_effective;
368                 mci->mci_opdata.suppgids[0] = -1;
369         }
370
371         rc = md_unlink(mc->mc_desc.cl_exp, &mci->mci_opdata, &mci->mci_req);
372         if (rc == 0) {
373                 /* get attr from request */
374                 rc = mdc_req2attr_update(ctx, ma);
375         }
376
377         ptlrpc_req_finished(mci->mci_req);
378
379         RETURN(rc);
380 }
381
382 #ifdef HAVE_SPLIT_SUPPORT
383 int mdc_send_page(struct cmm_device *cm, const struct lu_context *ctx,
384                   struct md_object *mo, struct page *page, __u32 offset,
385                   struct md_ucred *uc)
386 {
387         struct mdc_device *mc = md2mdc_dev(md_obj2dev(mo));
388         int rc;
389         ENTRY;
390
391         rc = mdc_sendpage(mc->mc_desc.cl_exp, lu_object_fid(&mo->mo_lu),
392                           page, offset);
393         CDEBUG(D_INFO, "send page %p  offset %d fid "DFID" rc %d \n",
394                page, offset, PFID(lu_object_fid(&mo->mo_lu)), rc);
395         RETURN(rc);
396 }
397 #endif
398
399 static struct md_object_operations mdc_mo_ops = {
400         .moo_attr_get       = mdc_attr_get,
401         .moo_object_create  = mdc_object_create,
402         .moo_ref_add        = mdc_ref_add,
403         .moo_ref_del        = mdc_ref_del,
404 };
405
406 /* md_dir_operations */
407 static int mdc_rename_tgt(const struct lu_context *ctx, struct md_object *mo_p,
408                           struct md_object *mo_t, const struct lu_fid *lf,
409                           const char *name, struct md_attr *ma,
410                           struct md_ucred *uc)
411 {
412         struct mdc_device *mc = md2mdc_dev(md_obj2dev(mo_p));
413         struct lu_attr *la = &ma->ma_attr;
414         struct mdc_thread_info *mci;
415         int rc;
416         ENTRY;
417
418         mci = mdc_info_init(ctx);
419         mci->mci_opdata.fid1 = *lu_object_fid(&mo_p->mo_lu);
420         mci->mci_opdata.fid2 = *lf;
421         mci->mci_opdata.create_mode = la->la_mode;
422         mci->mci_opdata.mod_time = la->la_ctime;
423         if (uc &&
424             ((uc->mu_valid == UCRED_OLD) || (uc->mu_valid == UCRED_NEW))) {
425                 mci->mci_opdata.fsuid = uc->mu_fsuid;
426                 mci->mci_opdata.fsgid = uc->mu_fsgid;
427                 mci->mci_opdata.cap = uc->mu_cap;
428                 if (uc->mu_ginfo || (uc->mu_valid == UCRED_OLD)) {
429                         mci->mci_opdata.suppgids[0] = uc->mu_suppgids[0];
430                         mci->mci_opdata.suppgids[1] = uc->mu_suppgids[1];
431                 } else {
432                         mci->mci_opdata.suppgids[0] =
433                                 mci->mci_opdata.suppgids[1] = -1;
434                 }
435         } else {
436                 mci->mci_opdata.fsuid = la->la_uid;
437                 mci->mci_opdata.fsgid = la->la_gid;
438                 mci->mci_opdata.cap = current->cap_effective;
439                 mci->mci_opdata.suppgids[0] = mci->mci_opdata.suppgids[1] = -1;
440         }
441
442         rc = md_rename(mc->mc_desc.cl_exp, &mci->mci_opdata, NULL, 0,
443                        name, strlen(name), &mci->mci_req);
444         if (rc == 0) {
445                 /* get attr from request */
446                 mdc_req2attr_update(ctx, ma);
447         }
448
449         ptlrpc_req_finished(mci->mci_req);
450
451         RETURN(rc);
452 }
453
454 static int mdc_is_subdir(const struct lu_context *ctx, struct md_object *mo,
455                          const struct lu_fid *fid, struct lu_fid *sfid,
456                          struct md_ucred *uc)
457 {
458         struct mdc_device *mc = md2mdc_dev(md_obj2dev(mo));
459         struct mdc_thread_info *mci;
460         struct mdt_body *body;
461         int rc;
462         ENTRY;
463
464         mci = mdc_info_init(ctx);
465         
466         rc = md_is_subdir(mc->mc_desc.cl_exp, lu_object_fid(&mo->mo_lu),
467                           fid, &mci->mci_req);
468
469         if (rc)
470                 GOTO(out, rc);
471
472         body = lustre_msg_buf(mci->mci_req->rq_repmsg, REPLY_REC_OFF,
473                               sizeof(*body));
474         
475         LASSERT(body->valid & (OBD_MD_FLMODE | OBD_MD_FLID) &&
476                 (body->mode == 0 || body->mode == 1 || body->mode == EREMOTE));
477
478         rc = body->mode;
479         if (rc == EREMOTE) {
480                 CDEBUG(D_INFO, "Remote mdo_is_subdir(), new src "
481                        DFID"\n", PFID(&body->fid1));
482                 *sfid = body->fid1;
483         }
484         EXIT;
485 out:
486         ptlrpc_req_finished(mci->mci_req);
487         return rc;
488 }
489
490 static struct md_dir_operations mdc_dir_ops = {
491         .mdo_is_subdir   = mdc_is_subdir,
492         .mdo_rename_tgt  = mdc_rename_tgt
493 };