Whamcloud - gitweb
a04d2a8787113cfc59b2c0197fe32d9a549e6f21
[fs/lustre-release.git] / lustre / liblustre / super.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/liblustre/super.c
37  *
38  * Lustre Light Super operations
39  */
40
41 #define DEBUG_SUBSYSTEM S_LLITE
42
43 #include <stdlib.h>
44 #include <string.h>
45 #include <assert.h>
46 #include <time.h>
47 #include <sys/types.h>
48 #include <sys/stat.h>
49 #include <fcntl.h>
50 #include <sys/queue.h>
51 #ifndef __CYGWIN__
52 # include <sys/statvfs.h>
53 #else
54 # include <sys/statfs.h>
55 #endif
56
57 #include <sysio.h>
58 #ifdef HAVE_XTIO_H
59 #include <xtio.h>
60 #endif
61 #include <fs.h>
62 #include <mount.h>
63 #include <inode.h>
64 #ifdef HAVE_FILE_H
65 #include <file.h>
66 #endif
67
68 #undef LIST_HEAD
69
70 #include "llite_lib.h"
71
72 #ifndef MAY_EXEC
73 #define MAY_EXEC        1
74 #define MAY_WRITE       2
75 #define MAY_READ        4
76 #endif
77
78 #define S_IXUGO (S_IXUSR|S_IXGRP|S_IXOTH)
79
80 static int ll_permission(struct inode *inode, int mask)
81 {
82         struct intnl_stat *st = llu_i2stat(inode);
83         mode_t mode = st->st_mode;
84
85         if (current->fsuid == st->st_uid)
86                 mode >>= 6;
87         else if (in_group_p(st->st_gid))
88                 mode >>= 3;
89
90         if ((mode & mask & (MAY_READ|MAY_WRITE|MAY_EXEC)) == mask)
91                 return 0;
92
93         if ((mask & (MAY_READ|MAY_WRITE)) ||
94             (st->st_mode & S_IXUGO))
95                 if (cfs_capable(CFS_CAP_DAC_OVERRIDE))
96                         return 0;
97
98         if (mask == MAY_READ ||
99             (S_ISDIR(st->st_mode) && !(mask & MAY_WRITE))) {
100                 if (cfs_capable(CFS_CAP_DAC_READ_SEARCH))
101                         return 0;
102         }
103
104         return -EACCES;
105 }
106
107 static void llu_fsop_gone(struct filesys *fs)
108 {
109         struct llu_sb_info *sbi = (struct llu_sb_info *) fs->fs_private;
110         struct obd_device *obd = class_exp2obd(sbi->ll_md_exp);
111         int next = 0;
112         ENTRY;
113
114         list_del(&sbi->ll_conn_chain);
115         cl_sb_fini(sbi);
116         obd_disconnect(sbi->ll_dt_exp);
117         obd_disconnect(sbi->ll_md_exp);
118
119         while ((obd = class_devices_in_group(&sbi->ll_sb_uuid, &next)) != NULL)
120                 class_manual_cleanup(obd);
121
122         OBD_FREE(sbi, sizeof(*sbi));
123
124         liblustre_wait_idle();
125         EXIT;
126 }
127
128 static struct inode_ops llu_inode_ops;
129
130 static ldlm_mode_t llu_take_md_lock(struct inode *inode, __u64 bits,
131                                     struct lustre_handle *lockh)
132 {
133         ldlm_policy_data_t policy = { .l_inodebits = {bits}};
134         struct lu_fid *fid;
135         ldlm_mode_t rc;
136         int flags;
137         ENTRY;
138
139         fid = &llu_i2info(inode)->lli_fid;
140         CDEBUG(D_INFO, "trying to match res "DFID"\n", PFID(fid));
141
142         flags = LDLM_FL_BLOCK_GRANTED | LDLM_FL_CBPENDING;
143         rc = md_lock_match(llu_i2mdexp(inode), flags, fid, LDLM_IBITS, &policy,
144                            LCK_CR|LCK_CW|LCK_PR|LCK_PW, lockh);
145         RETURN(rc);
146 }
147
148 void llu_update_inode(struct inode *inode, struct lustre_md *md)
149 {
150         struct llu_inode_info *lli = llu_i2info(inode);
151         struct mdt_body *body = md->body;
152         struct lov_stripe_md *lsm = md->lsm;
153         struct intnl_stat *st = llu_i2stat(inode);
154
155         LASSERT ((lsm != NULL) == ((body->valid & OBD_MD_FLEASIZE) != 0));
156
157         if (body->valid & OBD_MD_FLMODE)
158                 st->st_mode = (st->st_mode & S_IFMT)|(body->mode & ~S_IFMT);
159         if (body->valid & OBD_MD_FLTYPE)
160                 st->st_mode = (st->st_mode & ~S_IFMT)|(body->mode & S_IFMT);
161
162         if (lsm != NULL) {
163                 if (lli->lli_smd == NULL) {
164                         cl_inode_init(inode, md);
165                         lli->lli_smd = lsm;
166                         lli->lli_maxbytes = lsm->lsm_maxbytes;
167                         if (lli->lli_maxbytes > PAGE_CACHE_MAXBYTES)
168                                 lli->lli_maxbytes = PAGE_CACHE_MAXBYTES;
169                 } else {
170                         if (lov_stripe_md_cmp(lli->lli_smd, lsm)) {
171                                 CERROR("lsm mismatch for inode %lld\n",
172                                        (long long)st->st_ino);
173                                 LBUG();
174                         }
175                 }
176         }
177
178         if (body->valid & OBD_MD_FLMTIME &&
179             body->mtime > LTIME_S(st->st_mtime))
180                 LTIME_S(st->st_mtime) = body->mtime;
181         if (body->valid & OBD_MD_FLATIME &&
182             body->atime > LTIME_S(st->st_atime))
183                 LTIME_S(st->st_atime) = body->atime;
184
185         /* mtime is always updated with ctime, but can be set in past.
186            As write and utime(2) may happen within 1 second, and utime's
187            mtime has a priority over write's one, so take mtime from mds
188            for the same ctimes. */
189         if (body->valid & OBD_MD_FLCTIME &&
190             body->ctime >= LTIME_S(st->st_ctime)) {
191                 LTIME_S(st->st_ctime) = body->ctime;
192                 if (body->valid & OBD_MD_FLMTIME)
193                         LTIME_S(st->st_mtime) = body->mtime;
194         }
195        if (S_ISREG(st->st_mode))
196                 st->st_blksize = min(2UL * PTLRPC_MAX_BRW_SIZE, LL_MAX_BLKSIZE);
197         else
198                 st->st_blksize = 4096;
199         if (body->valid & OBD_MD_FLUID)
200                 st->st_uid = body->uid;
201         if (body->valid & OBD_MD_FLGID)
202                 st->st_gid = body->gid;
203         if (body->valid & OBD_MD_FLNLINK)
204                 st->st_nlink = body->nlink;
205         if (body->valid & OBD_MD_FLRDEV)
206                 st->st_rdev = body->rdev;
207         if (body->valid & OBD_MD_FLFLAGS)
208                 lli->lli_st_flags = body->flags;
209         if (body->valid & OBD_MD_FLSIZE) {
210                 if ((llu_i2sbi(inode)->ll_lco.lco_flags & OBD_CONNECT_SOM) &&
211                     S_ISREG(st->st_mode) && lli->lli_smd) {
212                         struct lustre_handle lockh;
213                         ldlm_mode_t mode;
214
215                         /* As it is possible a blocking ast has been processed
216                          * by this time, we need to check there is an UPDATE
217                          * lock on the client and set LLIF_MDS_SIZE_LOCK holding
218                          * it. */
219                         mode = llu_take_md_lock(inode, MDS_INODELOCK_UPDATE,
220                                                 &lockh);
221                         if (mode) {
222                                 st->st_size = body->size;
223                                 lli->lli_flags |= LLIF_MDS_SIZE_LOCK;
224                                 ldlm_lock_decref(&lockh, mode);
225                         }
226                 } else {
227                     st->st_size = body->size;
228                 }
229
230                 if (body->valid & OBD_MD_FLBLOCKS)
231                         st->st_blocks = body->blocks;
232         }
233 }
234
235 void obdo_to_inode(struct inode *dst, struct obdo *src, obd_flag valid)
236 {
237         struct llu_inode_info *lli = llu_i2info(dst);
238         struct intnl_stat *st = llu_i2stat(dst);
239
240         valid &= src->o_valid;
241
242         if (valid & (OBD_MD_FLCTIME | OBD_MD_FLMTIME))
243                 CDEBUG(D_INODE,"valid "LPX64", cur time "CFS_TIME_T"/"CFS_TIME_T
244                        ", new %lu/%lu\n",
245                        src->o_valid,
246                        LTIME_S(st->st_mtime), LTIME_S(st->st_ctime),
247                        (long)src->o_mtime, (long)src->o_ctime);
248
249         if (valid & OBD_MD_FLATIME)
250                 LTIME_S(st->st_atime) = src->o_atime;
251         if (valid & OBD_MD_FLMTIME)
252                 LTIME_S(st->st_mtime) = src->o_mtime;
253         if (valid & OBD_MD_FLCTIME && src->o_ctime > LTIME_S(st->st_ctime))
254                 LTIME_S(st->st_ctime) = src->o_ctime;
255         if (valid & OBD_MD_FLSIZE)
256                 st->st_size = src->o_size;
257         if (valid & OBD_MD_FLBLOCKS) /* allocation of space */
258                 st->st_blocks = src->o_blocks;
259         if (valid & OBD_MD_FLBLKSZ)
260                 st->st_blksize = src->o_blksize;
261         if (valid & OBD_MD_FLTYPE)
262                 st->st_mode = (st->st_mode & ~S_IFMT) | (src->o_mode & S_IFMT);
263         if (valid & OBD_MD_FLMODE)
264                 st->st_mode = (st->st_mode & S_IFMT) | (src->o_mode & ~S_IFMT);
265         if (valid & OBD_MD_FLUID)
266                 st->st_uid = src->o_uid;
267         if (valid & OBD_MD_FLGID)
268                 st->st_gid = src->o_gid;
269         if (valid & OBD_MD_FLFLAGS)
270                 lli->lli_st_flags = src->o_flags;
271 }
272
273 #define S_IRWXUGO       (S_IRWXU|S_IRWXG|S_IRWXO)
274 #define S_IALLUGO       (S_ISUID|S_ISGID|S_ISVTX|S_IRWXUGO)
275
276 void obdo_from_inode(struct obdo *dst, struct inode *src, obd_flag valid)
277 {
278         struct llu_inode_info *lli = llu_i2info(src);
279         struct intnl_stat *st = llu_i2stat(src);
280         obd_flag newvalid = 0;
281
282         if (valid & (OBD_MD_FLCTIME | OBD_MD_FLMTIME))
283                 CDEBUG(D_INODE, "valid %x, new time "CFS_TIME_T"/"CFS_TIME_T"\n",
284                        valid, LTIME_S(st->st_mtime),
285                        LTIME_S(st->st_ctime));
286
287         if (valid & OBD_MD_FLATIME) {
288                 dst->o_atime = LTIME_S(st->st_atime);
289                 newvalid |= OBD_MD_FLATIME;
290         }
291         if (valid & OBD_MD_FLMTIME) {
292                 dst->o_mtime = LTIME_S(st->st_mtime);
293                 newvalid |= OBD_MD_FLMTIME;
294         }
295         if (valid & OBD_MD_FLCTIME) {
296                 dst->o_ctime = LTIME_S(st->st_ctime);
297                 newvalid |= OBD_MD_FLCTIME;
298         }
299         if (valid & OBD_MD_FLSIZE) {
300                 dst->o_size = st->st_size;
301                 newvalid |= OBD_MD_FLSIZE;
302         }
303         if (valid & OBD_MD_FLBLOCKS) {  /* allocation of space (x512 bytes) */
304                 dst->o_blocks = st->st_blocks;
305                 newvalid |= OBD_MD_FLBLOCKS;
306         }
307         if (valid & OBD_MD_FLBLKSZ) {   /* optimal block size */
308                 dst->o_blksize = st->st_blksize;
309                 newvalid |= OBD_MD_FLBLKSZ;
310         }
311         if (valid & OBD_MD_FLTYPE) {
312                 dst->o_mode = (dst->o_mode & S_IALLUGO)|(st->st_mode & S_IFMT);
313                 newvalid |= OBD_MD_FLTYPE;
314         }
315         if (valid & OBD_MD_FLMODE) {
316                 dst->o_mode = (dst->o_mode & S_IFMT)|(st->st_mode & S_IALLUGO);
317                 newvalid |= OBD_MD_FLMODE;
318         }
319         if (valid & OBD_MD_FLUID) {
320                 dst->o_uid = st->st_uid;
321                 newvalid |= OBD_MD_FLUID;
322         }
323         if (valid & OBD_MD_FLGID) {
324                 dst->o_gid = st->st_gid;
325                 newvalid |= OBD_MD_FLGID;
326         }
327         if (valid & OBD_MD_FLFLAGS) {
328                 dst->o_flags = lli->lli_st_flags;
329                 newvalid |= OBD_MD_FLFLAGS;
330         }
331         if (valid & OBD_MD_FLGENER) {
332                 dst->o_generation = lli->lli_st_generation;
333                 newvalid |= OBD_MD_FLGENER;
334         }
335         if (valid & OBD_MD_FLFID) {
336                 dst->o_fid = st->st_ino;
337                 newvalid |= OBD_MD_FLFID;
338         }
339
340         dst->o_valid |= newvalid;
341 }
342
343 /*
344  * really does the getattr on the inode and updates its fields
345  */
346 int llu_inode_getattr(struct inode *inode, struct obdo *obdo)
347 {
348         struct llu_inode_info *lli = llu_i2info(inode);
349         struct ptlrpc_request_set *set;
350         struct lov_stripe_md *lsm = lli->lli_smd;
351         struct obd_info oinfo = { { { 0 } } };
352         int rc;
353         ENTRY;
354
355         LASSERT(lsm);
356
357         oinfo.oi_md = lsm;
358         oinfo.oi_oa = obdo;
359         oinfo.oi_oa->o_id = lsm->lsm_object_id;
360         oinfo.oi_oa->o_gr = lsm->lsm_object_gr;
361         oinfo.oi_oa->o_mode = S_IFREG;
362         oinfo.oi_oa->o_valid = OBD_MD_FLID | OBD_MD_FLTYPE |
363                                OBD_MD_FLSIZE | OBD_MD_FLBLOCKS |
364                                OBD_MD_FLBLKSZ | OBD_MD_FLMTIME |
365                                OBD_MD_FLCTIME | OBD_MD_FLGROUP;
366
367         set = ptlrpc_prep_set();
368         if (set == NULL) {
369                 CERROR ("ENOMEM allocing request set\n");
370                 rc = -ENOMEM;
371         } else {
372                 rc = obd_getattr_async(llu_i2obdexp(inode), &oinfo, set);
373                 if (rc == 0)
374                         rc = ptlrpc_set_wait(set);
375                 ptlrpc_set_destroy(set);
376         }
377         if (rc)
378                 RETURN(rc);
379
380         oinfo.oi_oa->o_valid = OBD_MD_FLBLOCKS | OBD_MD_FLBLKSZ |
381                                OBD_MD_FLMTIME | OBD_MD_FLCTIME |
382                                OBD_MD_FLSIZE;
383
384         obdo_refresh_inode(inode, oinfo.oi_oa, oinfo.oi_oa->o_valid);
385         CDEBUG(D_INODE, "objid "LPX64" size %Lu, blocks %Lu, "
386                "blksize %Lu\n", lli->lli_smd->lsm_object_id,
387                (long long unsigned)llu_i2stat(inode)->st_size,
388                (long long unsigned)llu_i2stat(inode)->st_blocks,
389                (long long unsigned)llu_i2stat(inode)->st_blksize);
390         RETURN(0);
391 }
392
393 static struct inode* llu_new_inode(struct filesys *fs,
394                                    struct lu_fid *fid)
395 {
396         struct inode *inode;
397         struct llu_inode_info *lli;
398         struct intnl_stat st = {
399                 .st_dev  = 0,
400 #if 0
401 #ifndef AUTOMOUNT_FILE_NAME
402                 .st_mode = fid->f_type & S_IFMT,
403 #else
404                 .st_mode = fid->f_type /* all of the bits! */
405 #endif
406 #endif
407                 /* FIXME: fix this later */
408                 .st_mode = 0,
409
410                 .st_uid  = geteuid(),
411                 .st_gid  = getegid(),
412         };
413
414         OBD_ALLOC(lli, sizeof(*lli));
415         if (!lli)
416                 return NULL;
417
418         /* initialize lli here */
419         lli->lli_sbi = llu_fs2sbi(fs);
420         lli->lli_smd = NULL;
421         lli->lli_symlink_name = NULL;
422         lli->lli_flags = 0;
423         lli->lli_maxbytes = (__u64)(~0UL);
424         lli->lli_file_data = NULL;
425
426         lli->lli_sysio_fid.fid_data = &lli->lli_fid;
427         lli->lli_sysio_fid.fid_len = sizeof(lli->lli_fid);
428         lli->lli_fid = *fid;
429
430         /* file identifier is needed by functions like _sysio_i_find() */
431         inode = _sysio_i_new(fs, &lli->lli_sysio_fid,
432                              &st, 0, &llu_inode_ops, lli);
433
434         if (!inode)
435                 OBD_FREE(lli, sizeof(*lli));
436
437         return inode;
438 }
439
440 static int llu_have_md_lock(struct inode *inode, __u64 lockpart)
441 {
442         struct lustre_handle lockh;
443         ldlm_policy_data_t policy = { .l_inodebits = { lockpart } };
444         struct lu_fid *fid;
445         int flags;
446         ENTRY;
447
448         LASSERT(inode);
449
450         fid = &llu_i2info(inode)->lli_fid;
451         CDEBUG(D_INFO, "trying to match res "DFID"\n", PFID(fid));
452
453         flags = LDLM_FL_BLOCK_GRANTED | LDLM_FL_CBPENDING | LDLM_FL_TEST_LOCK;
454         if (md_lock_match(llu_i2mdexp(inode), flags, fid, LDLM_IBITS, &policy,
455                           LCK_CR|LCK_CW|LCK_PR|LCK_PW, &lockh)) {
456                 RETURN(1);
457         }
458         RETURN(0);
459 }
460
461 static int llu_inode_revalidate(struct inode *inode)
462 {
463         struct lov_stripe_md *lsm = NULL;
464         ENTRY;
465
466         if (!inode) {
467                 CERROR("REPORT THIS LINE TO PETER\n");
468                 RETURN(0);
469         }
470
471         if (!llu_have_md_lock(inode, MDS_INODELOCK_UPDATE)) {
472                 struct lustre_md md;
473                 struct ptlrpc_request *req = NULL;
474                 struct llu_sb_info *sbi = llu_i2sbi(inode);
475                 unsigned long valid = OBD_MD_FLGETATTR;
476                 int rc, ealen = 0;
477
478                 /* Why don't we update all valid MDS fields here, if we're
479                  * doing an RPC anyways?  -phil */
480                 if (S_ISREG(llu_i2stat(inode)->st_mode)) {
481                         ealen = obd_size_diskmd(sbi->ll_dt_exp, NULL);
482                         valid |= OBD_MD_FLEASIZE;
483                 }
484                 rc = md_getattr(sbi->ll_md_exp, ll_inode2fid(inode),
485                                 NULL, valid, ealen, &req);
486                 if (rc) {
487                         CERROR("failure %d inode %llu\n", rc,
488                                (long long)llu_i2stat(inode)->st_ino);
489                         RETURN(-abs(rc));
490                 }
491                 rc = md_get_lustre_md(sbi->ll_md_exp, req,
492                                       sbi->ll_dt_exp, sbi->ll_md_exp, &md);
493
494                 /* XXX Too paranoid? */
495                 if (((md.body->valid ^ valid) & OBD_MD_FLEASIZE) &&
496                     !((md.body->valid & OBD_MD_FLNLINK) &&
497                       (md.body->nlink == 0))) {
498                         CERROR("Asked for %s eadata but got %s (%d)\n",
499                                (valid & OBD_MD_FLEASIZE) ? "some" : "no",
500                                (md.body->valid & OBD_MD_FLEASIZE) ? "some":"none",
501                                 md.body->eadatasize);
502                 }
503                 if (rc) {
504                         ptlrpc_req_finished(req);
505                         RETURN(rc);
506                 }
507
508
509                 llu_update_inode(inode, &md);
510                 if (md.lsm != NULL && llu_i2info(inode)->lli_smd != md.lsm)
511                         obd_free_memmd(sbi->ll_dt_exp, &md.lsm);
512                 ptlrpc_req_finished(req);
513         }
514
515         lsm = llu_i2info(inode)->lli_smd;
516         if (!lsm)       /* object not yet allocated, don't validate size */
517                 RETURN(0);
518
519         /* ll_glimpse_size will prefer locally cached writes if they extend
520          * the file */
521         RETURN(cl_glimpse_size(inode));
522 }
523
524 static void copy_stat_buf(struct inode *ino, struct intnl_stat *b)
525 {
526         *b = *llu_i2stat(ino);
527 }
528
529 static int llu_iop_getattr(struct pnode *pno,
530                            struct inode *ino,
531                            struct intnl_stat *b)
532 {
533         int rc;
534         ENTRY;
535
536         liblustre_wait_event(0);
537
538         if (!ino) {
539                 LASSERT(pno);
540                 LASSERT(pno->p_base->pb_ino);
541                 ino = pno->p_base->pb_ino;
542         } else {
543                 LASSERT(!pno || pno->p_base->pb_ino == ino);
544         }
545
546         /* libsysio might call us directly without intent lock,
547          * we must re-fetch the attrs here
548          */
549         rc = llu_inode_revalidate(ino);
550         if (!rc) {
551                 copy_stat_buf(ino, b);
552                 LASSERT(!llu_i2info(ino)->lli_it);
553         }
554
555         liblustre_wait_event(0);
556         RETURN(rc);
557 }
558
559 static int null_if_equal(struct ldlm_lock *lock, void *data)
560 {
561         if (data == lock->l_ast_data) {
562                 lock->l_ast_data = NULL;
563
564                 if (lock->l_req_mode != lock->l_granted_mode)
565                         LDLM_ERROR(lock,"clearing inode with ungranted lock\n");
566         }
567
568         return LDLM_ITER_CONTINUE;
569 }
570
571 void llu_clear_inode(struct inode *inode)
572 {
573         struct llu_inode_info *lli = llu_i2info(inode);
574         struct llu_sb_info *sbi = llu_i2sbi(inode);
575         ENTRY;
576
577         CDEBUG(D_VFSTRACE, "VFS Op:inode=%llu/%lu(%p)\n",
578                (long long)llu_i2stat(inode)->st_ino, lli->lli_st_generation,
579                inode);
580
581         lli->lli_flags &= ~LLIF_MDS_SIZE_LOCK;
582         md_change_cbdata(sbi->ll_md_exp, ll_inode2fid(inode),
583                          null_if_equal, inode);
584
585         if (lli->lli_smd)
586                 obd_change_cbdata(sbi->ll_dt_exp, lli->lli_smd,
587                                   null_if_equal, inode);
588
589         cl_inode_fini(inode);
590
591         if (lli->lli_smd) {
592                 obd_free_memmd(sbi->ll_dt_exp, &lli->lli_smd);
593                 lli->lli_smd = NULL;
594         }
595
596         if (lli->lli_symlink_name) {
597                 OBD_FREE(lli->lli_symlink_name,
598                          strlen(lli->lli_symlink_name) + 1);
599                 lli->lli_symlink_name = NULL;
600         }
601
602         EXIT;
603 }
604
605 void llu_iop_gone(struct inode *inode)
606 {
607         struct llu_inode_info *lli = llu_i2info(inode);
608         ENTRY;
609
610         liblustre_wait_event(0);
611         llu_clear_inode(inode);
612
613         OBD_FREE(lli, sizeof(*lli));
614         EXIT;
615 }
616
617 static int inode_setattr(struct inode * inode, struct iattr * attr)
618 {
619         unsigned int ia_valid = attr->ia_valid;
620         struct intnl_stat *st = llu_i2stat(inode);
621         int error = 0;
622
623         /*
624          * inode_setattr() is only ever invoked with ATTR_SIZE (by
625          * llu_setattr_raw()) when file has no bodies. Check this.
626          */
627         LASSERT(ergo(ia_valid & ATTR_SIZE, llu_i2info(inode)->lli_smd == NULL));
628
629         if (ia_valid & ATTR_SIZE)
630                 st->st_size = attr->ia_size;
631         if (ia_valid & ATTR_UID)
632                 st->st_uid = attr->ia_uid;
633         if (ia_valid & ATTR_GID)
634                 st->st_gid = attr->ia_gid;
635         if (ia_valid & ATTR_ATIME)
636                 st->st_atime = attr->ia_atime;
637         if (ia_valid & ATTR_MTIME)
638                 st->st_mtime = attr->ia_mtime;
639         if (ia_valid & ATTR_CTIME)
640                 st->st_ctime = attr->ia_ctime;
641         if (ia_valid & ATTR_MODE) {
642                 st->st_mode = attr->ia_mode;
643                 if (!in_group_p(st->st_gid) && !cfs_capable(CFS_CAP_FSETID))
644                         st->st_mode &= ~S_ISGID;
645         }
646         /* mark_inode_dirty(inode); */
647         return error;
648 }
649
650 int llu_md_setattr(struct inode *inode, struct md_op_data *op_data,
651                    struct md_open_data **mod)
652 {
653         struct lustre_md md;
654         struct llu_sb_info *sbi = llu_i2sbi(inode);
655         struct ptlrpc_request *request = NULL;
656         int rc;
657         ENTRY;
658
659         llu_prep_md_op_data(op_data, inode, NULL, NULL, 0, 0, LUSTRE_OPC_ANY);
660         rc = md_setattr(sbi->ll_md_exp, op_data, NULL, 0, NULL,
661                         0, &request, mod);
662
663         if (rc) {
664                 ptlrpc_req_finished(request);
665                 if (rc != -EPERM && rc != -EACCES)
666                         CERROR("md_setattr fails: rc = %d\n", rc);
667                 RETURN(rc);
668         }
669
670         rc = md_get_lustre_md(sbi->ll_md_exp, request,
671                               sbi->ll_dt_exp, sbi->ll_md_exp, &md);
672         if (rc) {
673                 ptlrpc_req_finished(request);
674                 RETURN(rc);
675         }
676
677         /* We call inode_setattr to adjust timestamps.
678          * If there is at least some data in file, we cleared ATTR_SIZE
679          * above to avoid invoking vmtruncate, otherwise it is important
680          * to call vmtruncate in inode_setattr to update inode->i_size
681          * (bug 6196) */
682         inode_setattr(inode, &op_data->op_attr);
683         llu_update_inode(inode, &md);
684         ptlrpc_req_finished(request);
685
686         RETURN(rc);
687 }
688
689 /* Close IO epoch and send Size-on-MDS attribute update. */
690 static int llu_setattr_done_writing(struct inode *inode,
691                                     struct md_op_data *op_data,
692                                     struct md_open_data *mod)
693 {
694         struct llu_inode_info *lli = llu_i2info(inode);
695         struct intnl_stat *st = llu_i2stat(inode);
696         int rc = 0;
697         ENTRY;
698
699         LASSERT(op_data != NULL);
700         if (!S_ISREG(st->st_mode))
701                 RETURN(0);
702
703         /* XXX: pass och here for the recovery purpose. */
704         CDEBUG(D_INODE, "Epoch "LPU64" closed on "DFID" for truncate\n",
705                op_data->op_ioepoch, PFID(&lli->lli_fid));
706
707         op_data->op_flags = MF_EPOCH_CLOSE | MF_SOM_CHANGE;
708         rc = md_done_writing(llu_i2sbi(inode)->ll_md_exp, op_data, mod);
709         if (rc == -EAGAIN) {
710                 /* MDS has instructed us to obtain Size-on-MDS attribute
711                  * from OSTs and send setattr to back to MDS. */
712                 rc = llu_sizeonmds_update(inode, &op_data->op_handle,
713                                           op_data->op_ioepoch);
714         } else if (rc) {
715                 CERROR("inode %llu mdc truncate failed: rc = %d\n",
716                        (unsigned long long)st->st_ino, rc);
717         }
718         RETURN(rc);
719 }
720
721 /* If this inode has objects allocated to it (lsm != NULL), then the OST
722  * object(s) determine the file size and mtime.  Otherwise, the MDS will
723  * keep these values until such a time that objects are allocated for it.
724  * We do the MDS operations first, as it is checking permissions for us.
725  * We don't to the MDS RPC if there is nothing that we want to store there,
726  * otherwise there is no harm in updating mtime/atime on the MDS if we are
727  * going to do an RPC anyways.
728  *
729  * If we are doing a truncate, we will send the mtime and ctime updates
730  * to the OST with the punch RPC, otherwise we do an explicit setattr RPC.
731  * I don't believe it is possible to get e.g. ATTR_MTIME_SET and ATTR_SIZE
732  * at the same time.
733  */
734 int llu_setattr_raw(struct inode *inode, struct iattr *attr)
735 {
736         struct lov_stripe_md *lsm = llu_i2info(inode)->lli_smd;
737         struct intnl_stat *st = llu_i2stat(inode);
738         int ia_valid = attr->ia_valid;
739         struct md_op_data op_data = { { 0 } };
740         struct md_open_data *mod = NULL;
741         int rc = 0, rc1 = 0;
742         ENTRY;
743
744         CDEBUG(D_VFSTRACE, "VFS Op:inode=%llu\n", (long long)st->st_ino);
745
746         if (ia_valid & ATTR_SIZE) {
747                 if (attr->ia_size > ll_file_maxbytes(inode)) {
748                         CDEBUG(D_INODE, "file too large %llu > "LPU64"\n",
749                                (long long)attr->ia_size,
750                                ll_file_maxbytes(inode));
751                         RETURN(-EFBIG);
752                 }
753
754                 attr->ia_valid |= ATTR_MTIME | ATTR_CTIME;
755         }
756
757         /* We mark all of the fields "set" so MDS/OST does not re-set them */
758         if (attr->ia_valid & ATTR_CTIME) {
759                 attr->ia_ctime = CURRENT_TIME;
760                 attr->ia_valid |= ATTR_CTIME_SET;
761         }
762         if (!(ia_valid & ATTR_ATIME_SET) && (attr->ia_valid & ATTR_ATIME)) {
763                 attr->ia_atime = CURRENT_TIME;
764                 attr->ia_valid |= ATTR_ATIME_SET;
765         }
766         if (!(ia_valid & ATTR_MTIME_SET) && (attr->ia_valid & ATTR_MTIME)) {
767                 attr->ia_mtime = CURRENT_TIME;
768                 attr->ia_valid |= ATTR_MTIME_SET;
769         }
770         if ((attr->ia_valid & ATTR_CTIME) && !(attr->ia_valid & ATTR_MTIME)) {
771                 /* To avoid stale mtime on mds, obtain it from ost and send
772                    to mds. */
773                 rc = cl_glimpse_size(inode);
774                 if (rc)
775                         RETURN(rc);
776
777                 attr->ia_valid |= ATTR_MTIME_SET | ATTR_MTIME;
778                 attr->ia_mtime = inode->i_stbuf.st_mtime;
779         }
780
781         if (attr->ia_valid & (ATTR_MTIME | ATTR_CTIME))
782                 CDEBUG(D_INODE, "setting mtime "CFS_TIME_T", ctime "CFS_TIME_T
783                        ", now = "CFS_TIME_T"\n",
784                        LTIME_S(attr->ia_mtime), LTIME_S(attr->ia_ctime),
785                        LTIME_S(CURRENT_TIME));
786
787         /* NB: ATTR_SIZE will only be set after this point if the size
788          * resides on the MDS, ie, this file has no objects. */
789         if (lsm)
790                 attr->ia_valid &= ~ATTR_SIZE;
791
792         /* If only OST attributes being set on objects, don't do MDS RPC.
793          * In that case, we need to check permissions and update the local
794          * inode ourselves so we can call obdo_from_inode() always. */
795         if (ia_valid & (lsm ? ~(ATTR_FROM_OPEN | ATTR_RAW) : ~0)) {
796                 memcpy(&op_data.op_attr, attr, sizeof(*attr));
797
798                 /* Open epoch for truncate. */
799                 if ((llu_i2mdexp(inode)->exp_connect_flags & OBD_CONNECT_SOM) &&
800                     (ia_valid & ATTR_SIZE))
801                         op_data.op_flags = MF_EPOCH_OPEN;
802                 rc = llu_md_setattr(inode, &op_data, &mod);
803                 if (rc)
804                         RETURN(rc);
805
806                 if (op_data.op_ioepoch)
807                         CDEBUG(D_INODE, "Epoch "LPU64" opened on "DFID" for "
808                                "truncate\n", op_data.op_ioepoch,
809                                PFID(&llu_i2info(inode)->lli_fid));
810
811                 if (!lsm || !S_ISREG(st->st_mode)) {
812                         CDEBUG(D_INODE, "no lsm: not setting attrs on OST\n");
813                         GOTO(out, rc);
814                 }
815         } else {
816                 /* The OST doesn't check permissions, but the alternative is
817                  * a gratuitous RPC to the MDS.  We already rely on the client
818                  * to do read/write/truncate permission checks, so is mtime OK?
819                  */
820                 if (ia_valid & (ATTR_MTIME | ATTR_ATIME)) {
821                         /* from sys_utime() */
822                         if (!(ia_valid & (ATTR_MTIME_SET | ATTR_ATIME_SET))) {
823                                 if (current->fsuid != st->st_uid &&
824                                     (rc = ll_permission(inode, MAY_WRITE)) != 0)
825                                         RETURN(rc);
826                         } else {
827                                 /* from inode_change_ok() */
828                                 if (current->fsuid != st->st_uid &&
829                                     !cfs_capable(CFS_CAP_FOWNER))
830                                         RETURN(-EPERM);
831                         }
832                 }
833
834
835                 /* Won't invoke llu_vmtruncate(), as we already cleared
836                  * ATTR_SIZE */
837                 inode_setattr(inode, attr);
838         }
839
840         if (ia_valid & ATTR_SIZE) {
841                 rc = cl_setattr_do_truncate(inode, attr->ia_size, NULL);
842         } else if (ia_valid & (ATTR_MTIME | ATTR_MTIME_SET)) {
843                 CDEBUG(D_INODE, "set mtime on OST inode %llu to %lu\n",
844                        (long long unsigned)st->st_ino, LTIME_S(attr->ia_mtime));
845                 rc = cl_setattr_ost(inode, NULL);
846         }
847         EXIT;
848 out:
849         if (op_data.op_ioepoch)
850                 rc1 = llu_setattr_done_writing(inode, &op_data, mod);
851         return rc ? rc : rc1;
852 }
853
854 /* here we simply act as a thin layer to glue it with
855  * llu_setattr_raw(), which is copy from kernel
856  */
857 static int llu_iop_setattr(struct pnode *pno,
858                            struct inode *ino,
859                            unsigned mask,
860                            struct intnl_stat *stbuf)
861 {
862         struct iattr iattr;
863         int rc;
864         ENTRY;
865
866         liblustre_wait_event(0);
867
868         LASSERT(!(mask & ~(SETATTR_MTIME | SETATTR_ATIME |
869                            SETATTR_UID | SETATTR_GID |
870                            SETATTR_LEN | SETATTR_MODE)));
871         memset(&iattr, 0, sizeof(iattr));
872
873         if (mask & SETATTR_MODE) {
874                 iattr.ia_mode = stbuf->st_mode;
875                 iattr.ia_valid |= ATTR_MODE;
876         }
877         if (mask & SETATTR_MTIME) {
878                 iattr.ia_mtime = stbuf->st_mtime;
879                 iattr.ia_valid |= ATTR_MTIME | ATTR_MTIME_SET;
880         }
881         if (mask & SETATTR_ATIME) {
882                 iattr.ia_atime = stbuf->st_atime;
883                 iattr.ia_valid |= ATTR_ATIME | ATTR_ATIME_SET;
884         }
885         if (mask & SETATTR_UID) {
886                 iattr.ia_uid = stbuf->st_uid;
887                 iattr.ia_valid |= ATTR_UID;
888         }
889         if (mask & SETATTR_GID) {
890                 iattr.ia_gid = stbuf->st_gid;
891                 iattr.ia_valid |= ATTR_GID;
892         }
893         if (mask & SETATTR_LEN) {
894                 iattr.ia_size = stbuf->st_size; /* XXX signed expansion problem */
895                 iattr.ia_valid |= ATTR_SIZE;
896         }
897
898         iattr.ia_valid |= ATTR_RAW | ATTR_CTIME;
899         iattr.ia_ctime = CURRENT_TIME;
900
901         rc = llu_setattr_raw(ino, &iattr);
902         liblustre_wait_idle();
903         RETURN(rc);
904 }
905
906 #define EXT2_LINK_MAX           32000
907
908 static int llu_iop_symlink_raw(struct pnode *pno, const char *tgt)
909 {
910         struct inode *dir = pno->p_base->pb_parent->pb_ino;
911         struct qstr *qstr = &pno->p_base->pb_name;
912         const char *name = qstr->name;
913         int len = qstr->len;
914         struct ptlrpc_request *request = NULL;
915         struct llu_sb_info *sbi = llu_i2sbi(dir);
916         struct md_op_data op_data = {{ 0 }};
917         int err = -EMLINK;
918         ENTRY;
919
920         liblustre_wait_event(0);
921         if (llu_i2stat(dir)->st_nlink >= EXT2_LINK_MAX)
922                 RETURN(err);
923
924         llu_prep_md_op_data(&op_data, dir, NULL, name, len, 0,
925                             LUSTRE_OPC_SYMLINK);
926
927         err = md_create(sbi->ll_md_exp, &op_data, tgt, strlen(tgt) + 1,
928                         S_IFLNK | S_IRWXUGO, current->fsuid, current->fsgid,
929                         cfs_curproc_cap_pack(), 0, &request);
930         ptlrpc_req_finished(request);
931         liblustre_wait_event(0);
932         RETURN(err);
933 }
934
935 static int llu_readlink_internal(struct inode *inode,
936                                  struct ptlrpc_request **request,
937                                  char **symname)
938 {
939         struct llu_inode_info *lli = llu_i2info(inode);
940         struct llu_sb_info *sbi = llu_i2sbi(inode);
941         struct mdt_body *body;
942         struct intnl_stat *st = llu_i2stat(inode);
943         int rc, symlen = st->st_size + 1;
944         ENTRY;
945
946         *request = NULL;
947         *symname = NULL;
948
949         if (lli->lli_symlink_name) {
950                 *symname = lli->lli_symlink_name;
951                 CDEBUG(D_INODE, "using cached symlink %s\n", *symname);
952                 RETURN(0);
953         }
954
955         rc = md_getattr(sbi->ll_md_exp, ll_inode2fid(inode), NULL,
956                         OBD_MD_LINKNAME, symlen, request);
957         if (rc) {
958                 CERROR("inode %llu: rc = %d\n", (long long)st->st_ino, rc);
959                 RETURN(rc);
960         }
961
962         body = req_capsule_server_get(&(*request)->rq_pill, &RMF_MDT_BODY);
963         LASSERT(body != NULL);
964
965         if ((body->valid & OBD_MD_LINKNAME) == 0) {
966                 CERROR ("OBD_MD_LINKNAME not set on reply\n");
967                 GOTO (failed, rc = -EPROTO);
968         }
969
970         LASSERT(symlen != 0);
971         if (body->eadatasize != symlen) {
972                 CERROR("inode %llu: symlink length %d not expected %d\n",
973                        (long long)st->st_ino, body->eadatasize - 1, symlen - 1);
974                 GOTO(failed, rc = -EPROTO);
975         }
976
977         *symname = req_capsule_server_get(&(*request)->rq_pill, &RMF_MDT_MD);
978         if (*symname == NULL ||
979             strnlen(*symname, symlen) != symlen - 1) {
980                 /* not full/NULL terminated */
981                 CERROR("inode %llu: symlink not NULL terminated string"
982                        "of length %d\n", (long long)st->st_ino, symlen - 1);
983                 GOTO(failed, rc = -EPROTO);
984         }
985
986         OBD_ALLOC(lli->lli_symlink_name, symlen);
987         /* do not return an error if we cannot cache the symlink locally */
988         if (lli->lli_symlink_name)
989                 memcpy(lli->lli_symlink_name, *symname, symlen);
990
991         RETURN(0);
992
993  failed:
994         ptlrpc_req_finished (*request);
995         RETURN (-EPROTO);
996 }
997
998 static int llu_iop_readlink(struct pnode *pno, char *data, size_t bufsize)
999 {
1000         struct inode *inode = pno->p_base->pb_ino;
1001         struct ptlrpc_request *request;
1002         char *symname;
1003         int rc;
1004         ENTRY;
1005
1006         liblustre_wait_event(0);
1007         rc = llu_readlink_internal(inode, &request, &symname);
1008         if (rc)
1009                 GOTO(out, rc);
1010
1011         LASSERT(symname);
1012         strncpy(data, symname, bufsize);
1013         rc = strlen(symname);
1014
1015         ptlrpc_req_finished(request);
1016  out:
1017         liblustre_wait_event(0);
1018         RETURN(rc);
1019 }
1020
1021 static int llu_iop_mknod_raw(struct pnode *pno,
1022                              mode_t mode,
1023                              dev_t dev)
1024 {
1025         struct ptlrpc_request *request = NULL;
1026         struct inode *dir = pno->p_parent->p_base->pb_ino;
1027         struct llu_sb_info *sbi = llu_i2sbi(dir);
1028         struct md_op_data op_data = {{ 0 }};
1029         int err = -EMLINK;
1030         ENTRY;
1031
1032         liblustre_wait_event(0);
1033         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s,dir=%llu\n",
1034                (int)pno->p_base->pb_name.len, pno->p_base->pb_name.name,
1035                (long long)llu_i2stat(dir)->st_ino);
1036
1037         if (llu_i2stat(dir)->st_nlink >= EXT2_LINK_MAX)
1038                 RETURN(err);
1039
1040         switch (mode & S_IFMT) {
1041         case 0:
1042         case S_IFREG:
1043                 mode |= S_IFREG; /* for mode = 0 case, fallthrough */
1044         case S_IFCHR:
1045         case S_IFBLK:
1046         case S_IFIFO:
1047         case S_IFSOCK:
1048                 llu_prep_md_op_data(&op_data, dir, NULL,
1049                                     pno->p_base->pb_name.name,
1050                                     pno->p_base->pb_name.len, 0,
1051                                     LUSTRE_OPC_MKNOD);
1052
1053                 err = md_create(sbi->ll_md_exp, &op_data, NULL, 0, mode,
1054                                 current->fsuid, current->fsgid,
1055                                 cfs_curproc_cap_pack(), dev, &request);
1056                 ptlrpc_req_finished(request);
1057                 break;
1058         case S_IFDIR:
1059                 err = -EPERM;
1060                 break;
1061         default:
1062                 err = -EINVAL;
1063         }
1064         liblustre_wait_event(0);
1065         RETURN(err);
1066 }
1067
1068 static int llu_iop_link_raw(struct pnode *old, struct pnode *new)
1069 {
1070         struct inode *src = old->p_base->pb_ino;
1071         struct inode *dir = new->p_parent->p_base->pb_ino;
1072         const char *name = new->p_base->pb_name.name;
1073         int namelen = new->p_base->pb_name.len;
1074         struct ptlrpc_request *request = NULL;
1075         struct md_op_data op_data = {{ 0 }};
1076         int rc;
1077         ENTRY;
1078
1079         LASSERT(src);
1080         LASSERT(dir);
1081
1082         liblustre_wait_event(0);
1083         llu_prep_md_op_data(&op_data, src, dir, name, namelen, 0,
1084                             LUSTRE_OPC_ANY);
1085         rc = md_link(llu_i2sbi(src)->ll_md_exp, &op_data, &request);
1086         ptlrpc_req_finished(request);
1087         liblustre_wait_event(0);
1088
1089         RETURN(rc);
1090 }
1091
1092 /*
1093  * libsysio will clear the inode immediately after return
1094  */
1095 static int llu_iop_unlink_raw(struct pnode *pno)
1096 {
1097         struct inode *dir = pno->p_base->pb_parent->pb_ino;
1098         struct qstr *qstr = &pno->p_base->pb_name;
1099         const char *name = qstr->name;
1100         int len = qstr->len;
1101         struct inode *target = pno->p_base->pb_ino;
1102         struct ptlrpc_request *request = NULL;
1103         struct md_op_data op_data = { { 0 } };
1104         int rc;
1105         ENTRY;
1106
1107         LASSERT(target);
1108
1109         liblustre_wait_event(0);
1110         llu_prep_md_op_data(&op_data, dir, NULL, name, len, 0,
1111                             LUSTRE_OPC_ANY);
1112         rc = md_unlink(llu_i2sbi(dir)->ll_md_exp, &op_data, &request);
1113         if (!rc)
1114                 rc = llu_objects_destroy(request, dir);
1115         ptlrpc_req_finished(request);
1116         liblustre_wait_idle();
1117
1118         RETURN(rc);
1119 }
1120
1121 static int llu_iop_rename_raw(struct pnode *old, struct pnode *new)
1122 {
1123         struct inode *src = old->p_parent->p_base->pb_ino;
1124         struct inode *tgt = new->p_parent->p_base->pb_ino;
1125         const char *oldname = old->p_base->pb_name.name;
1126         int oldnamelen = old->p_base->pb_name.len;
1127         const char *newname = new->p_base->pb_name.name;
1128         int newnamelen = new->p_base->pb_name.len;
1129         struct ptlrpc_request *request = NULL;
1130         struct md_op_data op_data = { { 0 } };
1131         int rc;
1132         ENTRY;
1133
1134         LASSERT(src);
1135         LASSERT(tgt);
1136
1137         liblustre_wait_event(0);
1138         llu_prep_md_op_data(&op_data, src, tgt, NULL, 0, 0,
1139                             LUSTRE_OPC_ANY);
1140         rc = md_rename(llu_i2sbi(src)->ll_md_exp, &op_data,
1141                        oldname, oldnamelen, newname, newnamelen,
1142                        &request);
1143         if (!rc) {
1144                 rc = llu_objects_destroy(request, src);
1145         }
1146
1147         ptlrpc_req_finished(request);
1148         liblustre_wait_idle();
1149
1150         RETURN(rc);
1151 }
1152
1153 #ifdef _HAVE_STATVFS
1154 static int llu_statfs_internal(struct llu_sb_info *sbi,
1155                                struct obd_statfs *osfs, __u64 max_age)
1156 {
1157         struct obd_statfs obd_osfs;
1158         int rc;
1159         ENTRY;
1160
1161         rc = obd_statfs(class_exp2obd(sbi->ll_md_exp), osfs, max_age, 0);
1162         if (rc) {
1163                 CERROR("md_statfs fails: rc = %d\n", rc);
1164                 RETURN(rc);
1165         }
1166
1167         CDEBUG(D_SUPER, "MDC blocks "LPU64"/"LPU64" objects "LPU64"/"LPU64"\n",
1168                osfs->os_bavail, osfs->os_blocks, osfs->os_ffree,osfs->os_files);
1169
1170         rc = obd_statfs_rqset(class_exp2obd(sbi->ll_dt_exp),
1171                               &obd_statfs, max_age, 0);
1172         if (rc) {
1173                 CERROR("obd_statfs fails: rc = %d\n", rc);
1174                 RETURN(rc);
1175         }
1176
1177         CDEBUG(D_SUPER, "OSC blocks "LPU64"/"LPU64" objects "LPU64"/"LPU64"\n",
1178                obd_osfs.os_bavail, obd_osfs.os_blocks, obd_osfs.os_ffree,
1179                obd_osfs.os_files);
1180
1181         osfs->os_blocks = obd_osfs.os_blocks;
1182         osfs->os_bfree = obd_osfs.os_bfree;
1183         osfs->os_bavail = obd_osfs.os_bavail;
1184
1185         /* If we don't have as many objects free on the OST as inodes
1186          * on the MDS, we reduce the total number of inodes to
1187          * compensate, so that the "inodes in use" number is correct.
1188          */
1189         if (obd_osfs.os_ffree < osfs->os_ffree) {
1190                 osfs->os_files = (osfs->os_files - osfs->os_ffree) +
1191                         obd_osfs.os_ffree;
1192                 osfs->os_ffree = obd_osfs.os_ffree;
1193         }
1194
1195         RETURN(rc);
1196 }
1197
1198 static int llu_statfs(struct llu_sb_info *sbi, struct statfs *sfs)
1199 {
1200         struct obd_statfs osfs;
1201         int rc;
1202
1203         CDEBUG(D_VFSTRACE, "VFS Op:\n");
1204
1205         /* For now we will always get up-to-date statfs values, but in the
1206          * future we may allow some amount of caching on the client (e.g.
1207          * from QOS or lprocfs updates). */
1208         rc = llu_statfs_internal(sbi, &osfs, cfs_time_current_64() - HZ);
1209         if (rc)
1210                 return rc;
1211
1212         statfs_unpack(sfs, &osfs);
1213
1214         if (sizeof(sfs->f_blocks) == 4) {
1215                 while (osfs.os_blocks > ~0UL) {
1216                         sfs->f_bsize <<= 1;
1217
1218                         osfs.os_blocks >>= 1;
1219                         osfs.os_bfree >>= 1;
1220                         osfs.os_bavail >>= 1;
1221                 }
1222         }
1223
1224         sfs->f_blocks = osfs.os_blocks;
1225         sfs->f_bfree = osfs.os_bfree;
1226         sfs->f_bavail = osfs.os_bavail;
1227
1228         return 0;
1229 }
1230
1231 static int llu_iop_statvfs(struct pnode *pno,
1232                            struct inode *ino,
1233                            struct intnl_statvfs *buf)
1234 {
1235         struct statfs fs;
1236         int rc;
1237         ENTRY;
1238
1239         liblustre_wait_event(0);
1240
1241 #ifndef __CYGWIN__
1242         LASSERT(pno->p_base->pb_ino);
1243         rc = llu_statfs(llu_i2sbi(pno->p_base->pb_ino), &fs);
1244         if (rc)
1245                 RETURN(rc);
1246
1247         /* from native driver */
1248         buf->f_bsize = fs.f_bsize;  /* file system block size */
1249         buf->f_frsize = fs.f_bsize; /* file system fundamental block size */
1250         buf->f_blocks = fs.f_blocks;
1251         buf->f_bfree = fs.f_bfree;
1252         buf->f_bavail = fs.f_bavail;
1253         buf->f_files = fs.f_files;  /* Total number serial numbers */
1254         buf->f_ffree = fs.f_ffree;  /* Number free serial numbers */
1255         buf->f_favail = fs.f_ffree; /* Number free ser num for non-privileged*/
1256         buf->f_fsid = fs.f_fsid.__val[1];
1257         buf->f_flag = 0;            /* No equiv in statfs; maybe use type? */
1258         buf->f_namemax = fs.f_namelen;
1259 #endif
1260
1261         liblustre_wait_event(0);
1262         RETURN(0);
1263 }
1264 #endif /* _HAVE_STATVFS */
1265
1266 static int llu_iop_mkdir_raw(struct pnode *pno, mode_t mode)
1267 {
1268         struct inode *dir = pno->p_base->pb_parent->pb_ino;
1269         struct qstr *qstr = &pno->p_base->pb_name;
1270         const char *name = qstr->name;
1271         int len = qstr->len;
1272         struct ptlrpc_request *request = NULL;
1273         struct intnl_stat *st = llu_i2stat(dir);
1274         struct md_op_data op_data = {{ 0 }};
1275         int err = -EMLINK;
1276         ENTRY;
1277
1278         liblustre_wait_event(0);
1279         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s,dir=%llu/%lu(%p)\n", len, name,
1280                (long long)st->st_ino, llu_i2info(dir)->lli_st_generation, dir);
1281
1282         if (st->st_nlink >= EXT2_LINK_MAX)
1283                 RETURN(err);
1284
1285         llu_prep_md_op_data(&op_data, dir, NULL, name, len, 0,
1286                             LUSTRE_OPC_MKDIR);
1287
1288         err = md_create(llu_i2sbi(dir)->ll_md_exp, &op_data, NULL, 0,
1289                         mode | S_IFDIR, current->fsuid, current->fsgid,
1290                         cfs_curproc_cap_pack(), 0, &request);
1291         ptlrpc_req_finished(request);
1292         liblustre_wait_event(0);
1293         RETURN(err);
1294 }
1295
1296 static int llu_iop_rmdir_raw(struct pnode *pno)
1297 {
1298         struct inode *dir = pno->p_base->pb_parent->pb_ino;
1299         struct qstr *qstr = &pno->p_base->pb_name;
1300         const char *name = qstr->name;
1301         int len = qstr->len;
1302         struct ptlrpc_request *request = NULL;
1303         struct md_op_data op_data = {{ 0 }};
1304         int rc;
1305         ENTRY;
1306
1307         liblustre_wait_event(0);
1308         CDEBUG(D_VFSTRACE, "VFS Op:name=%.*s,dir=%llu/%lu(%p)\n", len, name,
1309                (long long)llu_i2stat(dir)->st_ino,
1310                llu_i2info(dir)->lli_st_generation, dir);
1311
1312         llu_prep_md_op_data(&op_data, dir, NULL, name, len, S_IFDIR,
1313                             LUSTRE_OPC_ANY);
1314         rc = md_unlink(llu_i2sbi(dir)->ll_md_exp, &op_data, &request);
1315         ptlrpc_req_finished(request);
1316
1317         liblustre_wait_event(0);
1318         RETURN(rc);
1319 }
1320
1321 #ifdef O_DIRECT
1322 #define FCNTL_FLMASK (O_APPEND|O_NONBLOCK|O_ASYNC|O_DIRECT)
1323 #else
1324 #define FCNTL_FLMASK (O_APPEND|O_NONBLOCK|O_ASYNC)
1325 #endif
1326 #define FCNTL_FLMASK_INVALID (O_NONBLOCK|O_ASYNC)
1327
1328 /* refer to ll_file_flock() for details */
1329 static int llu_file_flock(struct inode *ino,
1330                           int cmd,
1331                           struct file_lock *file_lock)
1332 {
1333         struct llu_inode_info *lli = llu_i2info(ino);
1334         struct intnl_stat *st = llu_i2stat(ino);
1335         struct ldlm_res_id res_id =
1336                 { .name = {fid_seq(&lli->lli_fid),
1337                            fid_oid(&lli->lli_fid),
1338                            fid_ver(&lli->lli_fid),
1339                            LDLM_FLOCK} };
1340         struct ldlm_enqueue_info einfo = { LDLM_FLOCK, 0, NULL,
1341                 ldlm_flock_completion_ast, NULL, NULL, file_lock };
1342
1343         struct lustre_handle lockh = {0};
1344         ldlm_policy_data_t flock;
1345         int flags = 0;
1346         int rc;
1347
1348         CDEBUG(D_VFSTRACE, "VFS Op:inode=%llu file_lock=%p\n",
1349                (unsigned long long)st->st_ino, file_lock);
1350
1351         flock.l_flock.pid = file_lock->fl_pid;
1352         flock.l_flock.start = file_lock->fl_start;
1353         flock.l_flock.end = file_lock->fl_end;
1354
1355         switch (file_lock->fl_type) {
1356         case F_RDLCK:
1357                 einfo.ei_mode = LCK_PR;
1358                 break;
1359         case F_UNLCK:
1360                 einfo.ei_mode = LCK_NL;
1361                 break;
1362         case F_WRLCK:
1363                 einfo.ei_mode = LCK_PW;
1364                 break;
1365         default:
1366                 CERROR("unknown fcntl lock type: %d\n", file_lock->fl_type);
1367                 LBUG();
1368         }
1369
1370         switch (cmd) {
1371         case F_SETLKW:
1372 #ifdef F_SETLKW64
1373 #if F_SETLKW64 != F_SETLKW
1374         case F_SETLKW64:
1375 #endif
1376 #endif
1377                 flags = 0;
1378                 break;
1379         case F_SETLK:
1380 #ifdef F_SETLK64
1381 #if F_SETLK64 != F_SETLK
1382         case F_SETLK64:
1383 #endif
1384 #endif
1385                 flags = LDLM_FL_BLOCK_NOWAIT;
1386                 break;
1387         case F_GETLK:
1388 #ifdef F_GETLK64
1389 #if F_GETLK64 != F_GETLK
1390         case F_GETLK64:
1391 #endif
1392 #endif
1393                 flags = LDLM_FL_TEST_LOCK;
1394                 file_lock->fl_type = einfo.ei_mode;
1395                 break;
1396         default:
1397                 CERROR("unknown fcntl cmd: %d\n", cmd);
1398                 LBUG();
1399         }
1400
1401         CDEBUG(D_DLMTRACE, "inode=%llu, pid=%u, cmd=%d, flags=%#x, mode=%u, "
1402                "start="LPX64", end="LPX64"\n", (unsigned long long)st->st_ino,
1403                flock.l_flock.pid, cmd, flags, einfo.ei_mode, flock.l_flock.start,
1404                flock.l_flock.end);
1405
1406         {
1407                 struct lmv_obd *lmv;
1408                 struct obd_device *lmv_obd;
1409                 lmv_obd = class_exp2obd(llu_i2mdexp(ino));
1410                 lmv = &lmv_obd->u.lmv;
1411
1412                 if (lmv->desc.ld_tgt_count < 1)
1413                         RETURN(rc = -ENODEV);
1414
1415                 if (lmv->tgts[0].ltd_exp != NULL)
1416                         rc = ldlm_cli_enqueue(lmv->tgts[0].ltd_exp, NULL, &einfo, &res_id,
1417                                               &flock, &flags, NULL, 0, NULL, &lockh, 0);
1418                 else
1419                         rc = -ENODEV;
1420         }
1421         RETURN(rc);
1422 }
1423
1424 static int assign_type(struct file_lock *fl, int type)
1425 {
1426         switch (type) {
1427         case F_RDLCK:
1428         case F_WRLCK:
1429         case F_UNLCK:
1430                 fl->fl_type = type;
1431                 return 0;
1432         default:
1433                 return -EINVAL;
1434         }
1435 }
1436
1437 static int flock_to_posix_lock(struct inode *ino,
1438                                struct file_lock *fl,
1439                                struct flock *l)
1440 {
1441         switch (l->l_whence) {
1442         /* XXX: only SEEK_SET is supported in lustre */
1443         case SEEK_SET:
1444                 fl->fl_start = 0;
1445                 break;
1446         default:
1447                 return -EINVAL;
1448         }
1449
1450         fl->fl_end = l->l_len - 1;
1451         if (l->l_len < 0)
1452                 return -EINVAL;
1453         if (l->l_len == 0)
1454                 fl->fl_end = OFFSET_MAX;
1455
1456         fl->fl_pid = getpid();
1457         fl->fl_flags = FL_POSIX;
1458         fl->fl_notify = NULL;
1459         fl->fl_insert = NULL;
1460         fl->fl_remove = NULL;
1461         /* XXX: these fields can't be filled with suitable values,
1462                 but I think lustre doesn't use them.
1463          */
1464         fl->fl_owner = NULL;
1465         fl->fl_file = NULL;
1466
1467         return assign_type(fl, l->l_type);
1468 }
1469
1470 static int llu_fcntl_getlk(struct inode *ino, struct flock *flock)
1471 {
1472         struct file_lock fl;
1473         int error;
1474
1475         error = EINVAL;
1476         if ((flock->l_type != F_RDLCK) && (flock->l_type != F_WRLCK))
1477                 goto out;
1478
1479         error = flock_to_posix_lock(ino, &fl, flock);
1480         if (error)
1481                 goto out;
1482
1483         error = llu_file_flock(ino, F_GETLK, &fl);
1484         if (error)
1485                 goto out;
1486
1487         flock->l_type = F_UNLCK;
1488         if (fl.fl_type != F_UNLCK) {
1489                 flock->l_pid = fl.fl_pid;
1490                 flock->l_start = fl.fl_start;
1491                 flock->l_len = fl.fl_end == OFFSET_MAX ? 0:
1492                         fl.fl_end - fl.fl_start + 1;
1493                 flock->l_whence = SEEK_SET;
1494                 flock->l_type = fl.fl_type;
1495         }
1496
1497 out:
1498         return error;
1499 }
1500
1501 static int llu_fcntl_setlk(struct inode *ino, int cmd, struct flock *flock)
1502 {
1503         struct file_lock fl;
1504         int flags = llu_i2info(ino)->lli_open_flags + 1;
1505         int error;
1506
1507         error = flock_to_posix_lock(ino, &fl, flock);
1508         if (error)
1509                 goto out;
1510         if (cmd == F_SETLKW)
1511                 fl.fl_flags |= FL_SLEEP;
1512
1513         error = -EBADF;
1514         switch (flock->l_type) {
1515         case F_RDLCK:
1516                 if (!(flags & FMODE_READ))
1517                         goto out;
1518                 break;
1519         case F_WRLCK:
1520                 if (!(flags & FMODE_WRITE))
1521                         goto out;
1522                 break;
1523         case F_UNLCK:
1524                 break;
1525         default:
1526                 error = -EINVAL;
1527                 goto out;
1528         }
1529
1530         error = llu_file_flock(ino, cmd, &fl);
1531         if (error)
1532                 goto out;
1533
1534 out:
1535         return error;
1536 }
1537
1538 static int llu_iop_fcntl(struct inode *ino, int cmd, va_list ap, int *rtn)
1539 {
1540         struct llu_inode_info *lli = llu_i2info(ino);
1541         long flags;
1542         struct flock *flock;
1543         long err = 0;
1544
1545         liblustre_wait_event(0);
1546         switch (cmd) {
1547         case F_GETFL:
1548                 *rtn = lli->lli_open_flags;
1549                 break;
1550         case F_SETFL:
1551                 flags = va_arg(ap, long);
1552                 flags &= FCNTL_FLMASK;
1553                 if (flags & FCNTL_FLMASK_INVALID) {
1554                         LCONSOLE_ERROR_MSG(0x010, "liblustre does not support "
1555                                            "the O_NONBLOCK or O_ASYNC flags. "
1556                                            "Please fix your application.\n");
1557                         *rtn = -EINVAL;
1558                         err = EINVAL;
1559                         break;
1560                 }
1561                 lli->lli_open_flags = (int)(flags & FCNTL_FLMASK) |
1562                                       (lli->lli_open_flags & ~FCNTL_FLMASK);
1563                 *rtn = 0;
1564                 break;
1565         case F_GETLK:
1566 #ifdef F_GETLK64
1567 #if F_GETLK64 != F_GETLK
1568         case F_GETLK64:
1569 #endif
1570 #endif
1571                 flock = va_arg(ap, struct flock *);
1572                 err = llu_fcntl_getlk(ino, flock);
1573                 *rtn = err? -1: 0;
1574                 break;
1575         case F_SETLK:
1576 #ifdef F_SETLKW64
1577 #if F_SETLKW64 != F_SETLKW
1578         case F_SETLKW64:
1579 #endif
1580 #endif
1581         case F_SETLKW:
1582 #ifdef F_SETLK64
1583 #if F_SETLK64 != F_SETLK
1584         case F_SETLK64:
1585 #endif
1586 #endif
1587                 flock = va_arg(ap, struct flock *);
1588                 err = llu_fcntl_setlk(ino, cmd, flock);
1589                 *rtn = err? -1: 0;
1590                 break;
1591         default:
1592                 CERROR("unsupported fcntl cmd %x\n", cmd);
1593                 *rtn = -ENOSYS;
1594                 err = ENOSYS;
1595                 break;
1596         }
1597
1598         liblustre_wait_event(0);
1599         return err;
1600 }
1601
1602 static int llu_get_grouplock(struct inode *inode, unsigned long arg)
1603 {
1604         struct llu_inode_info *lli = llu_i2info(inode);
1605         struct ll_file_data *fd = lli->lli_file_data;
1606         ldlm_policy_data_t policy = { .l_extent = { .start = 0,
1607                                                     .end = OBD_OBJECT_EOF}};
1608         struct lustre_handle lockh = { 0 };
1609         struct lov_stripe_md *lsm = lli->lli_smd;
1610         ldlm_error_t err;
1611         int flags = 0;
1612         ENTRY;
1613
1614         if (fd->fd_flags & LL_FILE_GROUP_LOCKED) {
1615                 RETURN(-EINVAL);
1616         }
1617
1618         policy.l_extent.gid = arg;
1619         if (lli->lli_open_flags & O_NONBLOCK)
1620                 flags = LDLM_FL_BLOCK_NOWAIT;
1621
1622         err = llu_extent_lock(fd, inode, lsm, LCK_GROUP, &policy, &lockh,
1623                               flags);
1624         if (err)
1625                 RETURN(err);
1626
1627         fd->fd_flags |= LL_FILE_GROUP_LOCKED|LL_FILE_IGNORE_LOCK;
1628         fd->fd_gid = arg;
1629         memcpy(&fd->fd_cwlockh, &lockh, sizeof(lockh));
1630
1631         RETURN(0);
1632 }
1633
1634 static int llu_put_grouplock(struct inode *inode, unsigned long arg)
1635 {
1636         struct llu_inode_info *lli = llu_i2info(inode);
1637         struct ll_file_data *fd = lli->lli_file_data;
1638         struct lov_stripe_md *lsm = lli->lli_smd;
1639         ldlm_error_t err;
1640         ENTRY;
1641
1642         if (!(fd->fd_flags & LL_FILE_GROUP_LOCKED))
1643                 RETURN(-EINVAL);
1644
1645         if (fd->fd_gid != arg)
1646                 RETURN(-EINVAL);
1647
1648         fd->fd_flags &= ~(LL_FILE_GROUP_LOCKED|LL_FILE_IGNORE_LOCK);
1649
1650         err = llu_extent_unlock(fd, inode, lsm, LCK_GROUP, &fd->fd_cwlockh);
1651         if (err)
1652                 RETURN(err);
1653
1654         fd->fd_gid = 0;
1655         memset(&fd->fd_cwlockh, 0, sizeof(fd->fd_cwlockh));
1656
1657         RETURN(0);
1658 }
1659
1660 static int llu_lov_dir_setstripe(struct inode *ino, unsigned long arg)
1661 {
1662         struct llu_sb_info *sbi = llu_i2sbi(ino);
1663         struct ptlrpc_request *request = NULL;
1664         struct md_op_data op_data = {{ 0 }};
1665         struct lov_user_md lum, *lump = (struct lov_user_md *)arg;
1666         int rc = 0;
1667
1668         llu_prep_md_op_data(&op_data, ino, NULL, NULL, 0, 0,
1669                             LUSTRE_OPC_ANY);
1670
1671         LASSERT(sizeof(lum) == sizeof(*lump));
1672         LASSERT(sizeof(lum.lmm_objects[0]) ==
1673                 sizeof(lump->lmm_objects[0]));
1674         if (copy_from_user(&lum, lump, sizeof(lum)))
1675                 return(-EFAULT);
1676
1677         switch (lum.lmm_magic) {
1678         case LOV_USER_MAGIC_V1: {
1679                 if (lum.lmm_magic != cpu_to_le32(LOV_USER_MAGIC_V1))
1680                         lustre_swab_lov_user_md_v1(&lum);
1681                 break;
1682                 }
1683         case LOV_USER_MAGIC_V3: {
1684                 if (lum.lmm_magic != cpu_to_le32(LOV_USER_MAGIC_V3))
1685                         lustre_swab_lov_user_md_v3((struct lov_user_md_v3 *)&lum);
1686                 break;
1687                 }
1688         default: {
1689                 CDEBUG(D_IOCTL, "bad userland LOV MAGIC:"
1690                                 " %#08x != %#08x nor %#08x\n",
1691                                 lum.lmm_magic, LOV_USER_MAGIC_V1,
1692                                 LOV_USER_MAGIC_V3);
1693                 RETURN(-EINVAL);
1694         }
1695         }
1696
1697         /* swabbing is done in lov_setstripe() on server side */
1698         rc = md_setattr(sbi->ll_md_exp, &op_data, &lum,
1699                         sizeof(lum), NULL, 0, &request, NULL);
1700         if (rc) {
1701                 ptlrpc_req_finished(request);
1702                 if (rc != -EPERM && rc != -EACCES)
1703                         CERROR("md_setattr fails: rc = %d\n", rc);
1704                 return rc;
1705         }
1706         ptlrpc_req_finished(request);
1707
1708         return rc;
1709 }
1710
1711 static int llu_lov_setstripe_ea_info(struct inode *ino, int flags,
1712                                      struct lov_user_md *lum, int lum_size)
1713 {
1714         struct llu_sb_info *sbi = llu_i2sbi(ino);
1715         struct llu_inode_info *lli = llu_i2info(ino);
1716         struct lookup_intent oit = {.it_op = IT_OPEN, .it_flags = flags};
1717         struct ldlm_enqueue_info einfo = { LDLM_IBITS, LCK_CR,
1718                 llu_md_blocking_ast, ldlm_completion_ast, NULL, NULL, NULL };
1719         struct ptlrpc_request *req = NULL;
1720         struct lustre_md md;
1721         struct md_op_data data = {{ 0 }};
1722         struct lustre_handle lockh;
1723         int rc = 0;
1724         ENTRY;
1725
1726         if (lli->lli_smd) {
1727                 CDEBUG(D_IOCTL, "stripe already exists for ino "DFID"\n",
1728                        PFID(&lli->lli_fid));
1729                 return -EEXIST;
1730         }
1731
1732         llu_prep_md_op_data(&data, NULL, ino, NULL, 0, O_RDWR,
1733                             LUSTRE_OPC_ANY);
1734         rc = md_enqueue(sbi->ll_md_exp, &einfo, &oit, &data,
1735                         &lockh, lum, lum_size, NULL, LDLM_FL_INTENT_ONLY);
1736         if (rc)
1737                 GOTO(out, rc);
1738
1739         req = oit.d.lustre.it_data;
1740         rc = it_open_error(DISP_IT_EXECD, &oit);
1741         if (rc) {
1742                 req->rq_replay = 0;
1743                 GOTO(out, rc);
1744         }
1745
1746         rc = it_open_error(DISP_OPEN_OPEN, &oit);
1747         if (rc) {
1748                 req->rq_replay = 0;
1749                 GOTO(out, rc);
1750         }
1751
1752         rc = md_get_lustre_md(sbi->ll_md_exp, req,
1753                               sbi->ll_dt_exp, sbi->ll_md_exp, &md);
1754         if (rc)
1755                 GOTO(out, rc);
1756
1757         llu_update_inode(ino, &md);
1758         llu_local_open(lli, &oit);
1759         /* release intent */
1760         if (lustre_handle_is_used(&lockh))
1761                 ldlm_lock_decref(&lockh, LCK_CR);
1762         ptlrpc_req_finished(req);
1763         req = NULL;
1764         rc = llu_file_release(ino);
1765         EXIT;
1766
1767 out:
1768         if (req != NULL)
1769                 ptlrpc_req_finished(req);
1770         return rc;
1771 }
1772
1773 static int llu_lov_file_setstripe(struct inode *ino, unsigned long arg)
1774 {
1775         struct lov_user_md lum, *lump = (struct lov_user_md *)arg;
1776         int rc;
1777         int flags = FMODE_WRITE;
1778         ENTRY;
1779
1780         LASSERT(sizeof(lum) == sizeof(*lump));
1781         LASSERT(sizeof(lum.lmm_objects[0]) == sizeof(lump->lmm_objects[0]));
1782         if (copy_from_user(&lum, lump, sizeof(lum)))
1783                 RETURN(-EFAULT);
1784
1785         rc = llu_lov_setstripe_ea_info(ino, flags, &lum, sizeof(lum));
1786         RETURN(rc);
1787 }
1788
1789 static int llu_lov_setstripe(struct inode *ino, unsigned long arg)
1790 {
1791         struct intnl_stat *st = llu_i2stat(ino);
1792         if (S_ISREG(st->st_mode))
1793                 return llu_lov_file_setstripe(ino, arg);
1794         if (S_ISDIR(st->st_mode))
1795                 return llu_lov_dir_setstripe(ino, arg);
1796
1797         return -EINVAL;
1798 }
1799
1800 static int llu_lov_getstripe(struct inode *ino, unsigned long arg)
1801 {
1802         struct lov_stripe_md *lsm = llu_i2info(ino)->lli_smd;
1803
1804         if (!lsm)
1805                 RETURN(-ENODATA);
1806
1807         return obd_iocontrol(LL_IOC_LOV_GETSTRIPE, llu_i2obdexp(ino), 0, lsm,
1808                             (void *)arg);
1809 }
1810
1811 static int llu_iop_ioctl(struct inode *ino, unsigned long int request,
1812                          va_list ap)
1813 {
1814         unsigned long arg;
1815         int rc;
1816
1817         liblustre_wait_event(0);
1818
1819         switch (request) {
1820         case LL_IOC_GROUP_LOCK:
1821                 arg = va_arg(ap, unsigned long);
1822                 rc = llu_get_grouplock(ino, arg);
1823                 break;
1824         case LL_IOC_GROUP_UNLOCK:
1825                 arg = va_arg(ap, unsigned long);
1826                 rc = llu_put_grouplock(ino, arg);
1827                 break;
1828         case LL_IOC_LOV_SETSTRIPE:
1829                 arg = va_arg(ap, unsigned long);
1830                 rc = llu_lov_setstripe(ino, arg);
1831                 break;
1832         case LL_IOC_LOV_GETSTRIPE:
1833                 arg = va_arg(ap, unsigned long);
1834                 rc = llu_lov_getstripe(ino, arg);
1835                 break;
1836         default:
1837                 CERROR("did not support ioctl cmd %lx\n", request);
1838                 rc = -ENOSYS;
1839                 break;
1840         }
1841
1842         liblustre_wait_event(0);
1843         return rc;
1844 }
1845
1846 /*
1847  * we already do syncronous read/write
1848  */
1849 static int llu_iop_sync(struct inode *inode)
1850 {
1851         liblustre_wait_event(0);
1852         return 0;
1853 }
1854
1855 static int llu_iop_datasync(struct inode *inode)
1856 {
1857         liblustre_wait_event(0);
1858         return 0;
1859 }
1860
1861 struct filesys_ops llu_filesys_ops =
1862 {
1863         fsop_gone: llu_fsop_gone,
1864 };
1865
1866 struct inode *llu_iget(struct filesys *fs, struct lustre_md *md)
1867 {
1868         struct inode *inode;
1869         struct lu_fid fid;
1870         struct file_identifier fileid = {&fid, sizeof(fid)};
1871
1872         if ((md->body->valid & (OBD_MD_FLID | OBD_MD_FLTYPE)) !=
1873             (OBD_MD_FLID | OBD_MD_FLTYPE)) {
1874                 CERROR("bad md body valid mask "LPX64"\n", md->body->valid);
1875                 LBUG();
1876                 return ERR_PTR(-EPERM);
1877         }
1878
1879         /* try to find existing inode */
1880         fid = md->body->fid1;
1881
1882         inode = _sysio_i_find(fs, &fileid);
1883         if (inode) {
1884                 if (inode->i_zombie/* ||
1885                     lli->lli_st_generation != md->body->generation*/) {
1886                         I_RELE(inode);
1887                 }
1888                 else {
1889                         llu_update_inode(inode, md);
1890                         return inode;
1891                 }
1892         }
1893
1894         inode = llu_new_inode(fs, &fid);
1895         if (inode)
1896                 llu_update_inode(inode, md);
1897
1898         return inode;
1899 }
1900
1901 static int
1902 llu_fsswop_mount(const char *source,
1903                  unsigned flags,
1904                  const void *data __IS_UNUSED,
1905                  struct pnode *tocover,
1906                  struct mount **mntp)
1907 {
1908         struct filesys *fs;
1909         struct inode *root;
1910         struct pnode_base *rootpb;
1911         struct obd_device *obd;
1912         struct llu_sb_info *sbi;
1913         struct obd_statfs osfs;
1914         static struct qstr noname = { NULL, 0, 0 };
1915         struct ptlrpc_request *request = NULL;
1916         struct lustre_md md;
1917         class_uuid_t uuid;
1918         struct config_llog_instance cfg = {0, };
1919         char ll_instance[sizeof(sbi) * 2 + 1];
1920         struct lustre_profile *lprof;
1921         char *zconf_mgsnid, *zconf_profile;
1922         char *osc = NULL, *mdc = NULL;
1923         int async = 1, err = -EINVAL;
1924         struct obd_connect_data ocd = {0,};
1925
1926         ENTRY;
1927
1928         if (ll_parse_mount_target(source,
1929                                   &zconf_mgsnid,
1930                                   &zconf_profile)) {
1931                 CERROR("mal-formed target %s\n", source);
1932                 RETURN(err);
1933         }
1934         if (!zconf_mgsnid || !zconf_profile) {
1935                 printf("Liblustre: invalid target %s\n", source);
1936                 RETURN(err);
1937         }
1938         /* allocate & initialize sbi */
1939         OBD_ALLOC(sbi, sizeof(*sbi));
1940         if (!sbi)
1941                 RETURN(-ENOMEM);
1942
1943         CFS_INIT_LIST_HEAD(&sbi->ll_conn_chain);
1944         ll_generate_random_uuid(uuid);
1945         class_uuid_unparse(uuid, &sbi->ll_sb_uuid);
1946
1947         /* generate a string unique to this super, let's try
1948          the address of the super itself.*/
1949         sprintf(ll_instance, "%p", sbi);
1950
1951         /* retrive & parse config log */
1952         cfg.cfg_instance = ll_instance;
1953         cfg.cfg_uuid = sbi->ll_sb_uuid;
1954         err = liblustre_process_log(&cfg, zconf_mgsnid, zconf_profile, 1);
1955         if (err < 0) {
1956                 CERROR("Unable to process log: %s\n", zconf_profile);
1957                 GOTO(out_free, err);
1958         }
1959
1960         lprof = class_get_profile(zconf_profile);
1961         if (lprof == NULL) {
1962                 CERROR("No profile found: %s\n", zconf_profile);
1963                 GOTO(out_free, err = -EINVAL);
1964         }
1965         OBD_ALLOC(osc, strlen(lprof->lp_dt) + strlen(ll_instance) + 2);
1966         sprintf(osc, "%s-%s", lprof->lp_dt, ll_instance);
1967
1968         OBD_ALLOC(mdc, strlen(lprof->lp_md) + strlen(ll_instance) + 2);
1969         sprintf(mdc, "%s-%s", lprof->lp_md, ll_instance);
1970
1971         if (!osc) {
1972                 CERROR("no osc\n");
1973                 GOTO(out_free, err = -EINVAL);
1974         }
1975         if (!mdc) {
1976                 CERROR("no mdc\n");
1977                 GOTO(out_free, err = -EINVAL);
1978         }
1979
1980         fs = _sysio_fs_new(&llu_filesys_ops, flags, sbi);
1981         if (!fs) {
1982                 err = -ENOMEM;
1983                 goto out_free;
1984         }
1985
1986         obd = class_name2obd(mdc);
1987         if (!obd) {
1988                 CERROR("MDC %s: not setup or attached\n", mdc);
1989                 GOTO(out_free, err = -EINVAL);
1990         }
1991         obd_set_info_async(obd->obd_self_export, sizeof(KEY_ASYNC), KEY_ASYNC,
1992                            sizeof(async), &async, NULL);
1993
1994         ocd.ocd_connect_flags = OBD_CONNECT_IBITS | OBD_CONNECT_VERSION |
1995                                 OBD_CONNECT_FID | OBD_CONNECT_AT |
1996                                 OBD_CONNECT_VBR;
1997 #ifdef LIBLUSTRE_POSIX_ACL
1998         ocd.ocd_connect_flags |= OBD_CONNECT_ACL;
1999 #endif
2000         ocd.ocd_ibits_known = MDS_INODELOCK_FULL;
2001         ocd.ocd_version = LUSTRE_VERSION_CODE;
2002
2003         /* setup mdc */
2004         err = obd_connect(NULL, &sbi->ll_md_exp, obd, &sbi->ll_sb_uuid, &ocd, NULL);
2005         if (err) {
2006                 CERROR("cannot connect to %s: rc = %d\n", mdc, err);
2007                 GOTO(out_free, err);
2008         }
2009
2010         err = obd_statfs(obd, &osfs, 100000000, 0);
2011         if (err)
2012                 GOTO(out_md, err);
2013
2014         /*
2015          * FIXME fill fs stat data into sbi here!!! FIXME
2016          */
2017
2018         /* setup osc */
2019         obd = class_name2obd(osc);
2020         if (!obd) {
2021                 CERROR("OSC %s: not setup or attached\n", osc);
2022                 GOTO(out_md, err = -EINVAL);
2023         }
2024         obd_set_info_async(obd->obd_self_export, sizeof(KEY_ASYNC), KEY_ASYNC,
2025                            sizeof(async), &async, NULL);
2026
2027         obd->obd_upcall.onu_owner = &sbi->ll_lco;
2028         obd->obd_upcall.onu_upcall = cl_ocd_update;
2029
2030         ocd.ocd_connect_flags = OBD_CONNECT_SRVLOCK | OBD_CONNECT_REQPORTAL |
2031                                 OBD_CONNECT_VERSION | OBD_CONNECT_TRUNCLOCK |
2032                                 OBD_CONNECT_FID | OBD_CONNECT_AT;
2033         ocd.ocd_version = LUSTRE_VERSION_CODE;
2034         err = obd_connect(NULL, &sbi->ll_dt_exp, obd, &sbi->ll_sb_uuid, &ocd, NULL);
2035         if (err) {
2036                 CERROR("cannot connect to %s: rc = %d\n", osc, err);
2037                 GOTO(out_md, err);
2038         }
2039         sbi->ll_lco.lco_flags = ocd.ocd_connect_flags;
2040         sbi->ll_lco.lco_md_exp = sbi->ll_md_exp;
2041         sbi->ll_lco.lco_dt_exp = sbi->ll_dt_exp;
2042
2043         fid_zero(&sbi->ll_root_fid);
2044         err = md_getstatus(sbi->ll_md_exp, &sbi->ll_root_fid, NULL);
2045         if (err) {
2046                 CERROR("cannot mds_connect: rc = %d\n", err);
2047                 GOTO(out_lock_cn_cb, err);
2048         }
2049         if (!fid_is_sane(&sbi->ll_root_fid)) {
2050                 CERROR("Invalid root fid during mount\n");
2051                 GOTO(out_lock_cn_cb, err = -EINVAL);
2052         }
2053         CDEBUG(D_SUPER, "rootfid "DFID"\n", PFID(&sbi->ll_root_fid));
2054
2055         /* fetch attr of root inode */
2056         err = md_getattr(sbi->ll_md_exp, &sbi->ll_root_fid, NULL,
2057                          OBD_MD_FLGETATTR | OBD_MD_FLBLOCKS, 0, &request);
2058         if (err) {
2059                 CERROR("md_getattr failed for root: rc = %d\n", err);
2060                 GOTO(out_lock_cn_cb, err);
2061         }
2062
2063         err = md_get_lustre_md(sbi->ll_md_exp, request,
2064                                sbi->ll_dt_exp, sbi->ll_md_exp, &md);
2065         if (err) {
2066                 CERROR("failed to understand root inode md: rc = %d\n",err);
2067                 GOTO(out_request, err);
2068         }
2069
2070         LASSERT(fid_is_sane(&sbi->ll_root_fid));
2071
2072         root = llu_iget(fs, &md);
2073         if (!root || IS_ERR(root)) {
2074                 CERROR("fail to generate root inode\n");
2075                 GOTO(out_request, err = -EBADF);
2076         }
2077
2078         /*
2079          * Generate base path-node for root.
2080          */
2081         rootpb = _sysio_pb_new(&noname, NULL, root);
2082         if (!rootpb) {
2083                 err = -ENOMEM;
2084                 goto out_inode;
2085         }
2086
2087         err = _sysio_do_mount(fs, rootpb, flags, tocover, mntp);
2088         if (err) {
2089                 _sysio_pb_gone(rootpb);
2090                 goto out_inode;
2091         }
2092
2093         cl_sb_init(sbi);
2094
2095         ptlrpc_req_finished(request);
2096
2097         CDEBUG(D_SUPER, "LibLustre: %s mounted successfully!\n", source);
2098         liblustre_wait_idle();
2099
2100         return 0;
2101
2102 out_inode:
2103         _sysio_i_gone(root);
2104 out_request:
2105         ptlrpc_req_finished(request);
2106 out_lock_cn_cb:
2107         obd_disconnect(sbi->ll_dt_exp);
2108 out_md:
2109         obd_disconnect(sbi->ll_md_exp);
2110 out_free:
2111         if (osc)
2112                 OBD_FREE(osc, strlen(osc) + 1);
2113         if (mdc)
2114                 OBD_FREE(mdc, strlen(mdc) + 1);
2115         OBD_FREE(sbi, sizeof(*sbi));
2116         liblustre_wait_idle();
2117         return err;
2118 }
2119
2120 struct fssw_ops llu_fssw_ops = {
2121         llu_fsswop_mount
2122 };
2123
2124 static struct inode_ops llu_inode_ops = {
2125         inop_lookup:    llu_iop_lookup,
2126         inop_getattr:   llu_iop_getattr,
2127         inop_setattr:   llu_iop_setattr,
2128         inop_filldirentries:     llu_iop_filldirentries,
2129         inop_mkdir:     llu_iop_mkdir_raw,
2130         inop_rmdir:     llu_iop_rmdir_raw,
2131         inop_symlink:   llu_iop_symlink_raw,
2132         inop_readlink:  llu_iop_readlink,
2133         inop_open:      llu_iop_open,
2134         inop_close:     llu_iop_close,
2135         inop_link:      llu_iop_link_raw,
2136         inop_unlink:    llu_iop_unlink_raw,
2137         inop_rename:    llu_iop_rename_raw,
2138         inop_pos:       llu_iop_pos,
2139         inop_read:      llu_iop_read,
2140         inop_write:     llu_iop_write,
2141         inop_iodone:    llu_iop_iodone,
2142         inop_fcntl:     llu_iop_fcntl,
2143         inop_sync:      llu_iop_sync,
2144         inop_datasync:  llu_iop_datasync,
2145         inop_ioctl:     llu_iop_ioctl,
2146         inop_mknod:     llu_iop_mknod_raw,
2147 #ifdef _HAVE_STATVFS
2148         inop_statvfs:   llu_iop_statvfs,
2149 #endif
2150         inop_gone:      llu_iop_gone,
2151 };