Whamcloud - gitweb
880665b7a1393be1faf2fed2f39123ec6ad2f849
[fs/lustre-release.git] / lustre / mds / mds_lmv.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  linux/mds/mds_lov.c
5  *  Lustre Metadata Server (mds) handling of striped file data
6  *
7  *  Copyright (C) 2001-2003 Cluster File Systems, Inc.
8  *
9  *   This file is part of Lustre, http://www.lustre.org.
10  *
11  *   Lustre is free software; you can redistribute it and/or
12  *   modify it under the terms of version 2 of the GNU General Public
13  *   License as published by the Free Software Foundation.
14  *
15  *   Lustre is distributed in the hope that it will be useful,
16  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *   GNU General Public License for more details.
19  *
20  *   You should have received a copy of the GNU General Public License
21  *   along with Lustre; if not, write to the Free Software
22  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23  */
24
25 #ifndef EXPORT_SYMTAB
26 # define EXPORT_SYMTAB
27 #endif
28 #define DEBUG_SUBSYSTEM S_MDS
29
30 #include <linux/module.h>
31 #include <linux/dcache.h>
32 #include <linux/namei.h>
33 #include <linux/obd_support.h>
34 #include <linux/obd_class.h>
35 #include <linux/obd.h>
36 #include <linux/lustre_lib.h>
37 #include <linux/lustre_mds.h>
38 #include <linux/lustre_idl.h>
39 #include <linux/obd_class.h>
40 #include <linux/obd_lov.h>
41 #include <linux/lustre_lib.h>
42 #include <linux/lustre_fsfilt.h>
43 #include <linux/lustre_lite.h>
44 #include <linux/lustre_sec.h>
45 #include <asm/div64.h>
46
47 #include "mds_internal.h"
48
49 /*
50  * TODO:
51  *   - magic in mea struct
52  */
53 int mds_md_connect(struct obd_device *obd, char *md_name)
54 {
55         struct mds_obd *mds = &obd->u.mds;
56         struct lustre_handle conn = {0};
57         unsigned long sec_flags = PTLRPC_SEC_FL_MDS;
58         int rc, value;
59         __u32 valsize;
60         ENTRY;
61
62         if (IS_ERR(mds->mds_md_obd))
63                 RETURN(PTR_ERR(mds->mds_md_obd));
64
65         if (mds->mds_md_connected)
66                 RETURN(0);
67
68         down(&mds->mds_md_sem);
69         if (mds->mds_md_connected) {
70                 up(&mds->mds_md_sem);
71                 RETURN(0);
72         }
73
74         mds->mds_md_obd = class_name2obd(md_name);
75         if (!mds->mds_md_obd) {
76                 CERROR("MDS cannot locate MD(LMV) %s\n",
77                        md_name);
78                 mds->mds_md_obd = ERR_PTR(-ENOTCONN);
79                 GOTO(err_last, rc = -ENOTCONN);
80         }
81
82         rc = obd_connect(&conn, mds->mds_md_obd, &obd->obd_uuid, NULL,
83                          OBD_OPT_MDS_CONNECTION);
84         if (rc) {
85                 CERROR("MDS cannot connect to MD(LMV) %s (%d)\n",
86                        md_name, rc);
87                 mds->mds_md_obd = ERR_PTR(rc);
88                 GOTO(err_last, rc);
89         }
90         mds->mds_md_exp = class_conn2export(&conn);
91         if (mds->mds_md_exp == NULL)
92                 CERROR("can't get export!\n");
93
94         rc = obd_register_observer(mds->mds_md_obd, obd);
95         if (rc) {
96                 CERROR("MDS cannot register as observer of MD(LMV) %s, "
97                        "rc = %d\n", md_name, rc);
98                 GOTO(err_discon, rc);
99         }
100
101         /* retrieve size of EA */
102         rc = obd_get_info(mds->mds_md_exp, strlen("mdsize"),
103                           "mdsize", &valsize, &value);
104         if (rc) 
105                 GOTO(err_reg, rc);
106
107         if (value > mds->mds_max_mdsize)
108                 mds->mds_max_mdsize = value;
109
110         /* find our number in LMV cluster */
111         rc = obd_get_info(mds->mds_md_exp, strlen("mdsnum"),
112                           "mdsnum", &valsize, &value);
113         if (rc) 
114                 GOTO(err_reg, rc);
115         
116         mds->mds_num = value;
117
118         rc = obd_set_info(mds->mds_md_exp, strlen("inter_mds"),
119                           "inter_mds", 0, NULL);
120         if (rc)
121                 GOTO(err_reg, rc);
122
123         if (mds->mds_mds_sec) {
124                 rc = obd_set_info(mds->mds_md_exp, strlen("sec"), "sec",
125                                   strlen(mds->mds_mds_sec), mds->mds_mds_sec);
126                 if (rc)
127                         GOTO(err_reg, rc);
128         }
129
130         rc = obd_set_info(mds->mds_md_exp, strlen("sec_flags"), "sec_flags",
131                           sizeof(sec_flags), &sec_flags);
132         if (rc)
133                 GOTO(err_reg, rc);
134
135         mds->mds_md_connected = 1;
136         up(&mds->mds_md_sem);
137         RETURN(0);
138
139 err_reg:
140         obd_register_observer(mds->mds_md_obd, NULL);
141 err_discon:
142         obd_disconnect(mds->mds_md_exp, 0);
143         mds->mds_md_exp = NULL;
144         mds->mds_md_obd = ERR_PTR(rc);
145 err_last:
146         up(&mds->mds_md_sem);
147         return rc;
148 }
149
150 int mds_md_postsetup(struct obd_device *obd)
151 {
152         struct mds_obd *mds = &obd->u.mds;
153         int rc = 0;
154         ENTRY;
155
156         if (mds->mds_md_exp) {
157                 rc = obd_init_ea_size(mds->mds_md_exp,
158                                       mds->mds_max_mdsize,
159                                       mds->mds_max_cookiesize);
160         }
161         
162         RETURN(rc);
163 }
164
165 int mds_md_disconnect(struct obd_device *obd, int flags)
166 {
167         struct mds_obd *mds = &obd->u.mds;
168         int rc = 0;
169         ENTRY;
170
171         if (!mds->mds_md_connected)
172                 RETURN(0);
173
174         down(&mds->mds_md_sem);
175         if (!IS_ERR(mds->mds_md_obd) && mds->mds_md_exp != NULL) {
176                 LASSERT(mds->mds_md_connected);
177                 
178                 obd_register_observer(mds->mds_md_obd, NULL);
179
180                 if (flags & OBD_OPT_FORCE) {
181                         struct obd_device *lmv_obd;
182                         struct obd_ioctl_data ioc_data = { 0 };
183                         
184                         lmv_obd = class_exp2obd(mds->mds_md_exp);
185                         if (lmv_obd == NULL)
186                                 GOTO(out, rc = 0);
187
188                         /* 
189                          * making disconnecting lmv stuff do not send anything
190                          * to all remote MDSs from LMV. This is needed to
191                          * prevent possible hanging with endless recovery, when
192                          * MDS sends disconnect to already disconnected
193                          * target. Probably this is wrong, but client does the
194                          * same in --force mode and I do not see why can't we do
195                          * it here. --umka.
196                          */
197                         lmv_obd->obd_no_recov = 1;
198                         obd_iocontrol(IOC_OSC_SET_ACTIVE, mds->mds_md_exp,
199                                       sizeof(ioc_data), &ioc_data, NULL);
200                 }
201
202                 /*
203                  * if obd_disconnect() fails (probably because the export was
204                  * disconnected by class_disconnect_exports()) then we just need
205                  * to drop our ref.
206                  */
207                 mds->mds_md_connected = 0;
208                 rc = obd_disconnect(mds->mds_md_exp, flags);
209                 if (rc)
210                         class_export_put(mds->mds_md_exp);
211
212         out:
213                 mds->mds_md_exp = NULL;
214                 mds->mds_md_obd = NULL;
215         }
216         up(&mds->mds_md_sem);
217         RETURN(rc);
218 }
219
220 int mds_md_reconnect(struct obd_device *obd)
221 {
222         struct mds_obd *mds = &obd->u.mds;
223         struct obd_statfs osfs;
224         int err;
225         ENTRY;
226
227         /* We don't know state of connections to another MDSes
228          * before the failure. If MDS we were connected to before
229          * the failure gets failed, then it will wait for us to
230          * reconnect and will timed recovery out. bug 4920 */
231         if (mds->mds_md_connected == 0)
232                 RETURN(0);
233         if (mds->mds_md_obd == NULL)
234                 RETURN(0);
235
236         err = obd_statfs(mds->mds_md_obd, &osfs, jiffies - HZ);
237         if (err)
238                 CERROR("can't reconnect to MDSes after recovery: %d\n", err);
239         RETURN(0);
240 }
241
242 int mds_md_get_attr(struct obd_device *obd, struct inode *inode,
243                     struct mea **mea, int *mea_size)
244 {
245         struct mds_obd *mds = &obd->u.mds;
246         int rc;
247         ENTRY;
248
249         if (!mds->mds_md_obd)
250                 RETURN(0);
251         if (!S_ISDIR(inode->i_mode))
252                 RETURN(0);
253
254         /* first calculate mea size */
255         *mea_size = obd_alloc_diskmd(mds->mds_md_exp,
256                                      (struct lov_mds_md **)mea);
257         if (*mea_size < 0 || *mea == NULL)
258                 return *mea_size < 0 ? *mea_size : -EINVAL;
259
260         rc = mds_get_md(obd, inode, *mea, mea_size, 1, 1);
261
262         if (rc <= 0) {
263                 OBD_FREE(*mea, *mea_size);
264                 *mea = NULL;
265         } else
266                 rc = 0;
267
268         RETURN(rc);
269 }
270
271 struct dir_entry {
272         __u16   namelen;
273         __u16   mds;
274         __u32   ino;
275         __u32   generation;
276         __u32   fid;
277         char    name[0];
278 };
279
280 #define DIR_PAD                 4
281 #define DIR_ROUND               (DIR_PAD - 1)
282 #define DIR_REC_LEN(name_len)   (((name_len) + 16 + DIR_ROUND) & ~DIR_ROUND)
283
284 /* this struct holds dir entries for particular MDS to be flushed */
285 struct dir_cache {
286         struct list_head list;
287         void *cur;
288         int free;
289         int cached;
290         struct obdo oa;
291         struct brw_page brwc;
292 };
293
294 struct dirsplit_control {
295         struct obd_device *obd;
296         struct inode *dir;
297         struct dentry *dentry;
298         struct mea *mea;
299         struct dir_cache *cache;
300 };
301
302 static int dc_new_page_to_cache(struct dir_cache * dirc)
303 {
304         struct page *page;
305
306         if (!list_empty(&dirc->list) && dirc->free > sizeof(__u16)) {
307                 /* current page became full, mark the end */
308                 struct dir_entry *de = dirc->cur;
309                 de->namelen = 0;
310         }
311
312         page = alloc_page(GFP_KERNEL);
313         if (page == NULL)
314                 return -ENOMEM;
315         list_add_tail(&page->lru, &dirc->list);
316         dirc->cur = page_address(page);
317         dirc->free = PAGE_SIZE;
318         return 0;
319 }
320
321 static int retrieve_generation_numbers(struct dirsplit_control *dc, void *buf)
322 {
323         struct mds_obd *mds = &dc->obd->u.mds;
324         struct dir_entry *de;
325         struct dentry *dentry;
326         char *end;
327         
328         end = buf + PAGE_SIZE;
329         de = (struct dir_entry *) buf;
330         while ((char *) de < end && de->namelen) {
331                 /* lookup an inode */
332                 LASSERT(de->namelen <= 255);
333                 dentry = ll_lookup_one_len(de->name, dc->dentry, 
334                                            de->namelen);
335                 if (IS_ERR(dentry)) {
336                         CERROR("can't lookup %*s: %d\n", de->namelen,
337                                de->name, (int) PTR_ERR(dentry));
338                         goto next;
339                 }
340                 if (dentry->d_inode != NULL) {
341                         int rc;
342                         struct lustre_id sid;
343
344                         down(&dentry->d_inode->i_sem);
345                         rc = mds_read_inode_sid(dc->obd,
346                                                 dentry->d_inode, &sid);
347                         up(&dentry->d_inode->i_sem);
348                         if (rc) {
349                                 CERROR("Can't read inode self id, "
350                                        "inode %lu, rc %d\n",
351                                        dentry->d_inode->i_ino, rc);
352                                 goto next;
353                         }
354
355                         de->fid = id_fid(&sid);
356                         de->mds = mds->mds_num;
357                         de->ino = dentry->d_inode->i_ino;
358                         de->generation = dentry->d_inode->i_generation;
359                 } else if (dentry->d_flags & DCACHE_CROSS_REF) {
360                         de->fid = dentry->d_fid;
361                         de->ino = dentry->d_inum;
362                         de->mds = dentry->d_mdsnum;
363                         de->generation = dentry->d_generation;
364                 } else {
365                         CERROR("can't lookup %*s\n", de->namelen, de->name);
366                         goto next;
367                 }
368                 l_dput(dentry);
369
370 next:
371                 de = (struct dir_entry *)
372                         ((char *) de + DIR_REC_LEN(de->namelen));
373         }
374         return 0;
375 }
376
377 static int flush_buffer_onto_mds(struct dirsplit_control *dc, int mdsnum)
378 {
379         struct mds_obd *mds = &dc->obd->u.mds;
380         struct list_head *cur, *tmp;
381         struct dir_cache *ca;
382         int rc;
383         ENTRY; 
384         ca = dc->cache + mdsnum;
385
386         if (ca->free > sizeof(__u16)) {
387                 /* current page became full, mark the end */
388                 struct dir_entry *de = ca->cur;
389                 de->namelen = 0;
390         }
391
392         list_for_each_safe(cur, tmp, &ca->list) {
393                 struct page *page;
394
395                 page = list_entry(cur, struct page, lru);
396                 LASSERT(page != NULL);
397
398                 retrieve_generation_numbers(dc, page_address(page));
399
400                 ca->brwc.pg = page;
401                 ca->brwc.disk_offset = ca->brwc.page_offset = 0;
402                 ca->brwc.count = PAGE_SIZE;
403                 ca->brwc.flag = 0;
404                 ca->oa.o_mds = mdsnum;
405                 rc = obd_brw(OBD_BRW_WRITE, mds->mds_md_exp, &ca->oa,
406                              (struct lov_stripe_md *) dc->mea,
407                              1, &ca->brwc, NULL);
408                 if (rc)
409                         RETURN(rc);
410
411         }
412         RETURN(0);
413 }
414
415 static int remove_entries_from_orig_dir(struct dirsplit_control *dc, int mdsnum)
416 {
417         struct list_head *cur, *tmp;
418         struct dentry *dentry;
419         struct dir_cache *ca;
420         struct dir_entry *de;
421         struct page *page;
422         char *buf, *end;
423         int rc;
424         ENTRY; 
425
426         ca = dc->cache + mdsnum;
427         list_for_each_safe(cur, tmp, &ca->list) {
428                 page = list_entry(cur, struct page, lru);
429                 buf = page_address(page);
430                 end = buf + PAGE_SIZE;
431
432                 de = (struct dir_entry *) buf;
433                 while ((char *) de < end && de->namelen) {
434                         /* lookup an inode */
435                         LASSERT(de->namelen <= 255);
436
437                         dentry = ll_lookup_one_len(de->name, dc->dentry, 
438                                                    de->namelen);
439                         if (IS_ERR(dentry)) {
440                                 CERROR("can't lookup %*s: %d\n", de->namelen,
441                                        de->name, (int) PTR_ERR(dentry));
442                                 goto next;
443                         }
444                         rc = fsfilt_del_dir_entry(dc->obd, dentry);
445                         l_dput(dentry);
446 next:
447                         de = (struct dir_entry *)
448                                 ((char *) de + DIR_REC_LEN(de->namelen));
449                 }
450         }
451         RETURN(0);
452 }
453
454 static int filldir(void * __buf, const char * name, int namlen,
455                    loff_t offset, ino_t ino, unsigned int d_type)
456 {
457         struct dirsplit_control *dc = __buf;
458         struct mds_obd *mds = &dc->obd->u.mds;
459         struct dir_cache *ca;
460         struct dir_entry *de;
461         int newmds;
462         char *n;
463         ENTRY;
464
465         if (name[0] == '.' &&
466             (namlen == 1 || (namlen == 2 && name[1] == '.'))) {
467                 /* skip special entries */
468                 RETURN(0);
469         }
470
471         LASSERT(dc != NULL);
472         newmds = mea_name2idx(dc->mea, (char *) name, namlen);
473
474         if (newmds == mds->mds_num) {
475                 /* this entry remains on the current MDS, skip moving */
476                 RETURN(0);
477         }
478         
479         OBD_ALLOC(n, namlen + 1);
480         memcpy(n, name, namlen);
481         n[namlen] = (char) 0;
482         
483         OBD_FREE(n, namlen + 1);
484
485         /* check for space in buffer for new entry */
486         ca = dc->cache + newmds;
487         if (DIR_REC_LEN(namlen) > ca->free) {
488                 int err = dc_new_page_to_cache(ca);
489                 LASSERT(err == 0);
490         }
491         
492         /* insert found entry into buffer to be flushed later */
493         /* NOTE: we'll fill generations number later, because we
494          * it's stored in inode, thus we need to lookup an entry,
495          * but directory is locked for readdir(), so we delay this */
496         de = ca->cur;
497         de->ino = ino;
498         de->mds = d_type;
499         de->namelen = namlen;
500         memcpy(de->name, name, namlen);
501         ca->cur += DIR_REC_LEN(namlen);
502         ca->free -= DIR_REC_LEN(namlen);
503         ca->cached++;
504
505         RETURN(0);
506 }
507
508 int scan_and_distribute(struct obd_device *obd, struct dentry *dentry,
509                         struct mea *mea)
510 {
511         struct inode *dir = dentry->d_inode;
512         struct dirsplit_control dc;
513         struct file * file;
514         int err, i, nlen;
515         char *file_name;
516
517         nlen = strlen("__iopen__/") + 10 + 1;
518         OBD_ALLOC(file_name, nlen);
519         if (!file_name)
520                 RETURN(-ENOMEM);
521         
522         i = sprintf(file_name, "__iopen__/0x%lx",
523                     dentry->d_inode->i_ino);
524
525         file = filp_open(file_name, O_RDONLY, 0);
526         if (IS_ERR(file)) {
527                 CERROR("can't open directory %s: %d\n",
528                                 file_name, (int) PTR_ERR(file));
529                 OBD_FREE(file_name, nlen);
530                 RETURN(PTR_ERR(file));
531         }
532
533         memset(&dc, 0, sizeof(dc));
534         dc.obd = obd;
535         dc.dir = dir;
536         dc.dentry = dentry;
537         dc.mea = mea;
538         OBD_ALLOC(dc.cache, sizeof(struct dir_cache) * mea->mea_count);
539         LASSERT(dc.cache != NULL);
540         for (i = 0; i < mea->mea_count; i++) {
541                 INIT_LIST_HEAD(&dc.cache[i].list);
542                 dc.cache[i].free = 0;
543                 dc.cache[i].cached = 0;
544         }
545
546         err = vfs_readdir(file, filldir, &dc);
547         filp_close(file, 0);
548         if (err)
549                 GOTO(cleanup, err);
550
551         for (i = 0; i < mea->mea_count; i++) {
552                 if (!dc.cache[i].cached)
553                         continue;
554                 err = flush_buffer_onto_mds(&dc, i);
555                 if (err)
556                         GOTO(cleanup, err);
557         }
558
559         for (i = 0; i < mea->mea_count; i++) {
560                 if (!dc.cache[i].cached)
561                         continue;
562                 err = remove_entries_from_orig_dir(&dc, i);
563                 if (err)
564                         GOTO(cleanup, err);
565         }
566
567         EXIT;
568 cleanup:
569         for (i = 0; i < mea->mea_count; i++) {
570                 struct list_head *cur, *tmp;
571                 if (!dc.cache[i].cached)
572                         continue;
573                 list_for_each_safe(cur, tmp, &dc.cache[i].list) {
574                         struct page *page;
575                         page = list_entry(cur, struct page, lru);
576                         list_del(&page->lru);
577                         __free_page(page);
578                 }
579         }
580         OBD_FREE(dc.cache, sizeof(struct dir_cache) * mea->mea_count);
581         OBD_FREE(file_name, nlen);
582
583         return err;
584 }
585
586 #define MAX_DIR_SIZE      (64 * 1024)
587 #define I_NON_SPLITTABLE  (256)
588
589 int mds_splitting_expected(struct obd_device *obd, struct dentry *dentry)
590 {
591         struct mds_obd *mds = &obd->u.mds;
592         struct mea *mea = NULL;
593         int rc, size;
594
595         /* clustered MD ? */
596         if (!mds->mds_md_obd)
597                 return MDS_NO_SPLITTABLE;
598
599         /* inode exist? */
600         if (dentry->d_inode == NULL)
601                 return MDS_NO_SPLITTABLE;
602
603         /* a dir can be splitted only */
604         if (!S_ISDIR(dentry->d_inode->i_mode))
605                 return MDS_NO_SPLITTABLE;
606
607         /* already splittied or slave directory (part of splitted dir) */
608         if (dentry->d_inode->i_flags & I_NON_SPLITTABLE)
609                 return MDS_NO_SPLITTABLE;
610
611         /* don't split root directory */
612         if (dentry->d_inode->i_ino == id_ino(&mds->mds_rootid))
613                 return MDS_NO_SPLITTABLE;
614
615         /* large enough to be splitted? */
616         if (dentry->d_inode->i_size < MAX_DIR_SIZE)
617                 return MDS_NO_SPLIT_EXPECTED;
618
619         mds_md_get_attr(obd, dentry->d_inode, &mea, &size);
620         if (mea) {
621                 /* already splitted or slave object: shouldn't be splitted */
622                 rc = MDS_NO_SPLITTABLE;
623                 /* mark to skip subsequent checks */
624                 dentry->d_inode->i_flags |= I_NON_SPLITTABLE;
625                 OBD_FREE(mea, size);
626         } else {
627                 /* may be splitted */
628                 rc = MDS_EXPECT_SPLIT;
629         }
630
631         return rc;
632 }
633
634 /*
635  * must not be called on already splitted directories.
636  */
637 int mds_try_to_split_dir(struct obd_device *obd, struct dentry *dentry,
638                          struct mea **mea, int nstripes, int update_mode)
639 {
640         struct inode *dir = dentry->d_inode;
641         struct mds_obd *mds = &obd->u.mds;
642         struct mea *tmea = NULL;
643         struct obdo *oa = NULL;
644         int rc, mea_size = 0;
645         struct lustre_id id;
646         void *handle;
647         ENTRY;
648
649         if (update_mode != LCK_EX)
650                 return 0;
651         
652         /* TODO: optimization possible - we already may have mea here */
653         rc = mds_splitting_expected(obd, dentry);
654         if (rc == MDS_NO_SPLITTABLE)
655                 return 0;
656         if (rc == MDS_NO_SPLIT_EXPECTED && nstripes == 0)
657                 return 0;
658         if (nstripes && nstripes == 1)
659                 return 0;
660         
661         LASSERT(mea == NULL || *mea == NULL);
662
663         CDEBUG(D_OTHER, "%s: split directory %u/%lu/%lu\n",
664                obd->obd_name, mds->mds_num, dir->i_ino,
665                (unsigned long) dir->i_generation);
666
667         if (mea == NULL)
668                 mea = &tmea;
669         mea_size = obd_size_diskmd(mds->mds_md_exp, NULL);
670
671         /* FIXME: Actually we may only want to allocate enough space for
672          * necessary amount of stripes, but on the other hand with this
673          * approach of allocating maximal possible amount of MDS slots,
674          * it would be easier to split the dir over more MDSes */
675         rc = obd_alloc_diskmd(mds->mds_md_exp, (void *)mea);
676         if (rc < 0) {
677                 CERROR("obd_alloc_diskmd() failed, error %d.\n", rc);
678                 RETURN(rc);
679         }
680         if (*mea == NULL)
681                 RETURN(-ENOMEM);
682
683         (*mea)->mea_count = nstripes;
684        
685         /* 1) create directory objects on slave MDS'es */
686         /* FIXME: should this be OBD method? */
687         oa = obdo_alloc();
688         if (!oa)
689                 RETURN(-ENOMEM);
690
691         oa->o_generation = dir->i_generation;
692
693         obdo_from_inode(oa, dir, OBD_MD_FLTYPE | OBD_MD_FLATIME |
694                         OBD_MD_FLMTIME | OBD_MD_FLCTIME |
695                         OBD_MD_FLUID | OBD_MD_FLGID);
696
697         oa->o_gr = FILTER_GROUP_FIRST_MDS + mds->mds_num;
698         oa->o_valid |= OBD_MD_FLID | OBD_MD_FLFLAGS | OBD_MD_FLGROUP;
699         oa->o_mode = dir->i_mode;
700
701         /* 
702          * until lmv_obd_create() properly rewritten, it is important to have
703          * here oa->o_id = dir->i_ino, as otherwise master object will have
704          * invalid store cookie (zero inode num), what will lead to -ESTALE in
705          * mds_open() or somewhere else.
706          */
707         oa->o_id = dir->i_ino;
708
709         down(&dir->i_sem);
710         rc = mds_read_inode_sid(obd, dir, &id);
711         up(&dir->i_sem);
712         if (rc) {
713                 CERROR("Can't read inode self id, inode %lu, "
714                        "rc %d.\n", dir->i_ino, rc);
715                 GOTO(err_oa, rc);
716         }
717         oa->o_fid = id_fid(&id);
718         oa->o_mds = mds->mds_num;
719         LASSERT(oa->o_fid != 0);
720
721         CDEBUG(D_OTHER, "%s: create subdirs with mode %o, uid %u, gid %u\n",
722                obd->obd_name, dir->i_mode, dir->i_uid, dir->i_gid);
723                         
724         rc = obd_create(mds->mds_md_exp, oa, NULL, 0,
725                         (struct lov_stripe_md **)mea, NULL);
726         if (rc) {
727                 CERROR("Can't create remote inode, rc = %d\n", rc);
728                 GOTO(err_oa, rc);
729         }
730
731         LASSERT(id_fid(&(*mea)->mea_ids[0]));
732         CDEBUG(D_OTHER, "%d dirobjects created\n", (int)(*mea)->mea_count);
733
734         /* 2) update dir attribute */
735         down(&dir->i_sem);
736         
737         handle = fsfilt_start(obd, dir, FSFILT_OP_SETATTR, NULL);
738         if (IS_ERR(handle)) {
739                 up(&dir->i_sem);
740                 CERROR("fsfilt_start() failed: %d\n", (int) PTR_ERR(handle));
741                 GOTO(err_oa, rc = PTR_ERR(handle));
742         }
743
744         rc = fsfilt_set_md(obd, dir, handle, *mea, mea_size, EA_MEA);
745         if (rc) {
746                 up(&dir->i_sem);
747                 CERROR("fsfilt_set_md() failed, error %d.\n", rc);
748                 GOTO(err_oa, rc);
749         }
750         
751         rc = fsfilt_commit(obd, mds->mds_sb, dir, handle, 0);
752         if (rc) {
753                 up(&dir->i_sem);
754                 CERROR("fsfilt_commit() failed, error %d.\n", rc);
755                 GOTO(err_oa, rc);
756         }
757         
758         up(&dir->i_sem);
759         obdo_free(oa);
760
761         /* 3) read through the dir and distribute it over objects */
762         rc = scan_and_distribute(obd, dentry, *mea);
763         if (mea == &tmea)
764                 obd_free_diskmd(mds->mds_md_exp, (struct lov_mds_md **)mea);
765         if (rc) {
766                 CERROR("scan_and_distribute() failed, error %d.\n", rc);
767                 RETURN(rc);
768         }
769
770         RETURN(1);
771
772 err_oa:
773         obdo_free(oa);
774         return rc;
775 }
776
777 static int filter_start_page_write(struct inode *inode,
778                                    struct niobuf_local *lnb)
779 {
780         struct page *page = alloc_pages(GFP_HIGHUSER, 0);
781         if (page == NULL) {
782                 CERROR("no memory for a temp page\n");
783                 return lnb->rc = -ENOMEM;
784         }
785         POISON_PAGE(page, 0xf1);
786         page->index = lnb->offset >> PAGE_SHIFT;
787         lnb->page = page;
788         return 0;
789 }
790
791 int mds_preprw(int cmd, struct obd_export *exp, struct obdo *oa,
792                 int objcount, struct obd_ioobj *obj,
793                 int niocount, struct niobuf_remote *nb,
794                 struct niobuf_local *res,
795                 struct obd_trans_info *oti)
796 {
797         struct niobuf_remote *rnb;
798         struct niobuf_local *lnb = NULL;
799         int rc = 0, i, tot_bytes = 0;
800         unsigned long now = jiffies;
801         struct dentry *dentry;
802         struct lustre_id id;
803         ENTRY;
804
805         LASSERT(objcount == 1);
806         LASSERT(obj->ioo_bufcnt > 0);
807
808         memset(res, 0, niocount * sizeof(*res));
809
810         id_fid(&id) = 0;
811         id_group(&id) = 0;
812         id_ino(&id) = obj->ioo_id;
813         id_gen(&id) = obj->ioo_gr;
814         
815         dentry = mds_id2dentry(exp->exp_obd, &id, NULL);
816         if (IS_ERR(dentry)) {
817                 CERROR("can't get dentry for "LPU64"/%u: %d\n",
818                        id.li_stc.u.e3s.l3s_ino, id.li_stc.u.e3s.l3s_gen,
819                        (int)PTR_ERR(dentry));
820                 GOTO(cleanup, rc = (int) PTR_ERR(dentry));
821         }
822
823         if (dentry->d_inode == NULL) {
824                 CERROR("trying to BRW to non-existent file "LPU64"\n",
825                        obj->ioo_id);
826                 l_dput(dentry);
827                 GOTO(cleanup, rc = -ENOENT);
828         }
829
830         if (time_after(jiffies, now + 15 * HZ))
831                 CERROR("slow preprw_write setup %lus\n", (jiffies - now) / HZ);
832         else
833                 CDEBUG(D_INFO, "preprw_write setup: %lu jiffies\n",
834                        (jiffies - now));
835
836         for (i = 0, rnb = nb, lnb = res; i < obj->ioo_bufcnt;
837              i++, lnb++, rnb++) {
838                 lnb->dentry = dentry;
839                 lnb->offset = rnb->offset;
840                 lnb->len    = rnb->len;
841                 lnb->flags  = rnb->flags;
842
843                 rc = filter_start_page_write(dentry->d_inode, lnb);
844                 if (rc) {
845                         CDEBUG(rc == -ENOSPC ? D_INODE : D_ERROR, "page err %u@"
846                                LPU64" %u/%u %p: rc %d\n", lnb->len, lnb->offset,
847                                i, obj->ioo_bufcnt, dentry, rc);
848                         while (lnb-- > res)
849                                 __free_pages(lnb->page, 0);
850                         l_dput(dentry);
851                         GOTO(cleanup, rc);
852                 }
853                 tot_bytes += lnb->len;
854         }
855
856         if (time_after(jiffies, now + 15 * HZ))
857                 CERROR("slow start_page_write %lus\n", (jiffies - now) / HZ);
858         else
859                 CDEBUG(D_INFO, "start_page_write: %lu jiffies\n",
860                        (jiffies - now));
861
862         EXIT;
863 cleanup:
864         return rc;
865 }
866
867 int mds_commitrw(int cmd, struct obd_export *exp, struct obdo *oa,
868                  int objcount, struct obd_ioobj *obj, int niocount,
869                  struct niobuf_local *res, struct obd_trans_info *oti,
870                  int retcode)
871 {
872         struct obd_device *obd = exp->exp_obd;
873         struct niobuf_local *lnb;
874         struct inode *inode = NULL;
875         int rc = 0, i, cleanup_phase = 0, err, entries = 0;
876         ENTRY;
877
878         LASSERT(objcount == 1);
879         LASSERT(current->journal_info == NULL);
880
881         cleanup_phase = 1;
882         inode = res->dentry->d_inode;
883
884         for (i = 0, lnb = res; i < obj->ioo_bufcnt; i++, lnb++) {
885                 char *end, *buf;
886                 struct dir_entry *de;
887
888                 buf = kmap(lnb->page);
889                 LASSERT(buf != NULL);
890                 end = buf + lnb->len;
891                 de = (struct dir_entry *) buf;
892                 while ((char *) de < end && de->namelen) {
893                         err = fsfilt_add_dir_entry(obd, res->dentry, de->name,
894                                                    de->namelen, de->ino,
895                                                    de->generation, de->mds,
896                                                    de->fid);
897                         if (err) {
898                                 CERROR("can't add dir entry %*s->%u/%u/%u"
899                                        " to %lu/%u: %d\n", de->namelen,
900                                        de->name, de->mds, (unsigned)de->ino,
901                                        (unsigned) de->generation,
902                                        res->dentry->d_inode->i_ino,
903                                        res->dentry->d_inode->i_generation,
904                                        err);
905                                 rc = err;
906                                 break;
907                         }
908                         LASSERT(err == 0);
909                         de = (struct dir_entry *)
910                                 ((char *) de + DIR_REC_LEN(de->namelen));
911                         entries++;
912                 }
913                 kunmap(lnb->page);
914         }
915
916         for (i = 0, lnb = res; i < obj->ioo_bufcnt; i++, lnb++)
917                 __free_page(lnb->page);
918         l_dput(res->dentry);
919
920         RETURN(rc);
921 }
922
923 int mds_choose_mdsnum(struct obd_device *obd, const char *name, int len, int flags,
924                         struct ptlrpc_peer *peer, struct inode *parent)
925 {
926         struct mds_obd *mds = &obd->u.mds;
927         struct lmv_obd *lmv;
928         int i = mds->mds_num;
929         char peer_str[PTL_NALFMT_SIZE];
930         if (flags & REC_REINT_CREATE) { 
931                 i = mds->mds_num;
932         } else if (mds->mds_md_exp != NULL && peer != NULL) {
933                 LASSERT(parent != NULL);
934                 /* distribute only at root level */
935                 lmv = &mds->mds_md_exp->exp_obd->u.lmv;
936                 if (parent->i_ino != id_ino(&mds->mds_rootid)) {
937                         i = mds->mds_num;
938                 } else {
939                         __u64 nid = peer->peer_id.nid;
940                         __u64 count = lmv->desc.ld_tgt_count;
941                         i = do_div(nid, count);
942                         CWARN("client from %s creates top dir %*s on mds #%d\n",
943                               ptlrpc_peernid2str(peer,peer_str), len, name, i+1);
944                 }
945         } else if (mds->mds_md_exp) {
946                 lmv = &mds->mds_md_exp->exp_obd->u.lmv;
947                 i = raw_name2idx(MEA_MAGIC_LAST_CHAR, lmv->desc.ld_tgt_count, name, len);
948         }
949         RETURN(i);
950 }
951
952 int mds_lock_slave_objs(struct obd_device *obd, struct dentry *dentry,
953                         struct lustre_handle **rlockh)
954 {
955         struct mds_obd *mds = &obd->u.mds;
956         struct mdc_op_data *op_data;
957         struct lookup_intent it;
958         struct mea *mea = NULL;
959         int mea_size, rc;
960         int handle_size;
961         ENTRY;
962
963         LASSERT(rlockh != NULL);
964         LASSERT(dentry != NULL);
965         LASSERT(dentry->d_inode != NULL);
966
967         /* clustered MD ? */
968         if (!mds->mds_md_obd)
969                 RETURN(0);
970
971         /* a dir can be splitted only */
972         if (!S_ISDIR(dentry->d_inode->i_mode))
973                 RETURN(0);
974
975         rc = mds_md_get_attr(obd, dentry->d_inode,
976                              &mea, &mea_size);
977         if (rc)
978                 RETURN(rc);
979
980         if (mea == NULL)
981                 RETURN(0);
982         
983         if (mea->mea_count == 0)
984                 /* this is slave object */
985                 GOTO(cleanup, rc = 0);
986                 
987         CDEBUG(D_OTHER, "%s: lock slaves for %lu/%lu\n",
988                obd->obd_name, (unsigned long)dentry->d_inode->i_ino,
989                (unsigned long)dentry->d_inode->i_generation);
990
991         handle_size = sizeof(struct lustre_handle) *
992                 mea->mea_count;
993         
994         OBD_ALLOC(*rlockh, handle_size);
995         if (*rlockh == NULL)
996                 GOTO(cleanup, rc = -ENOMEM);
997
998         memset(*rlockh, 0, handle_size);
999         OBD_ALLOC(op_data, sizeof(*op_data));
1000         if (op_data == NULL) {
1001                 OBD_FREE(*rlockh, handle_size);
1002                 RETURN(-ENOMEM);
1003         }
1004         memset(op_data, 0, sizeof(*op_data));
1005
1006         op_data->mea1 = mea;
1007         it.it_op = IT_UNLINK;
1008
1009         OBD_ALLOC(it.d.fs_data, sizeof(struct lustre_intent_data));
1010
1011         rc = md_enqueue(mds->mds_md_exp, LDLM_IBITS, &it, LCK_EX,
1012                         op_data, *rlockh, NULL, 0, ldlm_completion_ast,
1013                         mds_blocking_ast, NULL);
1014         OBD_FREE(op_data, sizeof(*op_data));
1015         OBD_FREE(it.d.fs_data, sizeof(struct lustre_intent_data));
1016         EXIT;
1017 cleanup:
1018         OBD_FREE(mea, mea_size);
1019         return rc;
1020 }
1021
1022 void mds_unlock_slave_objs(struct obd_device *obd, struct dentry *dentry,
1023                            struct lustre_handle *lockh)
1024 {
1025         struct mds_obd *mds = &obd->u.mds;
1026         struct mea *mea = NULL;
1027         int mea_size, rc, i;
1028         ENTRY;
1029
1030         if (lockh == NULL) {
1031                 EXIT;
1032                 return;
1033         }
1034
1035         LASSERT(mds->mds_md_obd != NULL);
1036         LASSERT(S_ISDIR(dentry->d_inode->i_mode));
1037
1038         rc = mds_md_get_attr(obd, dentry->d_inode, &mea, &mea_size);
1039         if (rc) {
1040                 CERROR("locks are leaked\n");
1041                 EXIT;
1042                 return;
1043         }
1044         LASSERT(mea_size != 0);
1045         LASSERT(mea != NULL);
1046         LASSERT(mea->mea_count != 0);
1047
1048         CDEBUG(D_OTHER, "%s: unlock slaves for %lu/%lu\n", obd->obd_name,
1049                (unsigned long) dentry->d_inode->i_ino,
1050                (unsigned long) dentry->d_inode->i_generation);
1051
1052         for (i = 0; i < mea->mea_count; i++) {
1053                 if (lockh[i].cookie != 0)
1054                         ldlm_lock_decref(lockh + i, LCK_EX);
1055         }
1056
1057         OBD_FREE(lockh, sizeof(struct lustre_handle) * mea->mea_count);
1058         OBD_FREE(mea, mea_size);
1059         EXIT;
1060 }
1061
1062 int mds_unlink_slave_objs(struct obd_device *obd, struct dentry *dentry)
1063 {
1064         struct mds_obd *mds = &obd->u.mds;
1065         struct ptlrpc_request *req = NULL;
1066         struct mdc_op_data *op_data;
1067         struct mea *mea = NULL;
1068         int mea_size, rc;
1069         ENTRY;
1070
1071         /* clustered MD ? */
1072         if (!mds->mds_md_obd)
1073                 RETURN(0);
1074
1075         /* a dir can be splitted only */
1076         if (!S_ISDIR(dentry->d_inode->i_mode))
1077                 RETURN(0);
1078
1079         rc = mds_md_get_attr(obd, dentry->d_inode, &mea, &mea_size);
1080         if (rc)
1081                 RETURN(rc);
1082
1083         if (mea == NULL)
1084                 RETURN(0);
1085                        
1086         if (mea->mea_count == 0)
1087                 GOTO(cleanup, rc = 0);
1088
1089         CDEBUG(D_OTHER, "%s: unlink slaves for %lu/%lu\n", obd->obd_name,
1090                (unsigned long)dentry->d_inode->i_ino,
1091                (unsigned long)dentry->d_inode->i_generation);
1092
1093         OBD_ALLOC(op_data, sizeof(*op_data));
1094         if (op_data == NULL)
1095                 RETURN(-ENOMEM);
1096         
1097         memset(op_data, 0, sizeof(*op_data));
1098         op_data->mea1 = mea;
1099         rc = md_unlink(mds->mds_md_exp, op_data, &req);
1100         OBD_FREE(op_data, sizeof(*op_data));
1101         LASSERT(req == NULL);
1102         EXIT;
1103 cleanup:
1104         OBD_FREE(mea, mea_size);
1105         return rc;
1106 }
1107
1108 struct ide_tracking {
1109         int entries;
1110         int empty;
1111 };
1112
1113 int mds_ide_filldir(void *__buf, const char *name, int namelen,
1114                     loff_t offset, ino_t ino, unsigned int d_type)
1115 {
1116         struct ide_tracking *it = __buf;
1117
1118         if (ino == 0)
1119                 return 0;
1120
1121         it->entries++;
1122         if (it->entries > 2)
1123                 goto noempty;
1124         if (namelen > 2)
1125                 goto noempty;
1126         if (name[0] == '.' && namelen == 1)
1127                 return 0;
1128         if (name[0] == '.' && name[1] == '.' && namelen == 2)
1129                 return 0;
1130 noempty:
1131         it->empty = 0;
1132         return -ENOTEMPTY;
1133 }
1134
1135 /* checks if passed dentry points to empty dir. */
1136 int mds_is_dir_empty(struct obd_device *obd, struct dentry *dentry)
1137 {
1138         struct ide_tracking it;
1139         struct file * file;
1140         char *file_name;
1141         int nlen, i, rc;
1142         
1143         it.entries = 0;
1144         it.empty = 1;
1145
1146         nlen = strlen("__iopen__/") + 10 + 1;
1147         OBD_ALLOC(file_name, nlen);
1148         if (!file_name)
1149                 RETURN(-ENOMEM);
1150         
1151         LASSERT(dentry->d_inode != NULL);
1152         i = sprintf(file_name, "__iopen__/0x%lx",
1153                     dentry->d_inode->i_ino);
1154
1155         file = filp_open(file_name, O_RDONLY, 0);
1156         if (IS_ERR(file)) {
1157                 CERROR("can't open directory %s: %d\n",
1158                        file_name, (int) PTR_ERR(file));
1159                 GOTO(cleanup, rc = PTR_ERR(file));
1160         }
1161
1162         rc = vfs_readdir(file, mds_ide_filldir, &it);
1163         filp_close(file, 0);
1164
1165         if (it.empty && rc == 0)
1166                 rc = 1;
1167         else
1168                 rc = 0;
1169
1170 cleanup:
1171         OBD_FREE(file_name, nlen);
1172         return rc;
1173 }
1174
1175 int mds_lock_and_check_slave(int offset, struct ptlrpc_request *req,
1176                              struct lustre_handle *lockh)
1177 {
1178         struct obd_device *obd = req->rq_export->exp_obd;
1179         struct dentry *dentry = NULL;
1180         struct lvfs_run_ctxt saved;
1181         int cleanup_phase = 0;
1182         struct mds_req_sec_desc *rsd;
1183         struct mds_body *body;
1184         struct lvfs_ucred uc;
1185         int rc, update_mode;
1186         ENTRY;
1187
1188         rsd = lustre_swab_mds_secdesc(req, MDS_REQ_SECDESC_OFF);
1189         if (!rsd) {
1190                 CERROR("Can't unpack security desc\n");
1191                 GOTO(cleanup, rc = -EFAULT);
1192         }
1193
1194         body = lustre_swab_reqbuf(req, offset, sizeof(*body),
1195                                   lustre_swab_mds_body);
1196         if (body == NULL) {
1197                 CERROR("Can't swab mds_body\n");
1198                 GOTO(cleanup, rc = -EFAULT);
1199         }
1200         CDEBUG(D_OTHER, "%s: check slave "DLID4"\n", obd->obd_name,
1201                OLID4(&body->id1));
1202         
1203         dentry = mds_id2locked_dentry(obd, &body->id1, NULL, LCK_EX,
1204                                       lockh, &update_mode, NULL, 0,
1205                                       MDS_INODELOCK_UPDATE);
1206         if (IS_ERR(dentry)) {
1207                 CERROR("can't find inode: %d\n", (int) PTR_ERR(dentry));
1208                 GOTO(cleanup, rc = PTR_ERR(dentry));
1209         }
1210         cleanup_phase = 1;
1211
1212         /* 
1213          * handling the case when remote MDS checks if dir is empty 
1214          * before rename. But it also does it for all entries, because
1215          * inode is stored here and remote MDS does not know if rename
1216          * point to dir or to reg file. So we check it here. 
1217          */
1218         if (!S_ISDIR(dentry->d_inode->i_mode))
1219                 GOTO(cleanup, rc = 0);
1220
1221         rc = mds_init_ucred(&uc, req, rsd);
1222         if (rc) {
1223                 GOTO(cleanup, rc);
1224         }
1225
1226         push_ctxt(&saved, &obd->obd_lvfs_ctxt, &uc);
1227         rc = mds_is_dir_empty(obd, dentry) ? 0 : -ENOTEMPTY;
1228         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, &uc);
1229
1230         mds_exit_ucred(&uc);
1231         EXIT;
1232 cleanup:
1233         switch(cleanup_phase) {
1234         case 1:
1235                 if (rc)
1236                         ldlm_lock_decref(lockh, LCK_EX);
1237                 l_dput(dentry);
1238         default:
1239                 break;
1240         }
1241         return rc;
1242 }
1243
1244 int mds_convert_mea_ea(struct obd_device *obd, struct inode *inode,
1245                        struct lov_mds_md *lmm, int lmm_size)
1246 {
1247         struct lov_stripe_md *lsm = NULL;
1248         struct mea_old *old;
1249         struct mea *mea;
1250         void *handle;
1251         int rc, err;
1252         ENTRY;
1253
1254         mea = (struct mea *)lmm;
1255         old = (struct mea_old *)lmm;
1256
1257         if (mea->mea_magic == MEA_MAGIC_LAST_CHAR ||
1258             mea->mea_magic == MEA_MAGIC_ALL_CHARS)
1259                 RETURN(0);
1260
1261         /*
1262          * making MDS try LOV EA converting in the non-LMV configuration
1263          * cases.
1264          */
1265         if (!obd->u.mds.mds_md_exp)
1266                 RETURN(-EINVAL);
1267
1268         CDEBUG(D_INODE, "converting MEA EA on %lu/%u from V0 to V1 (%u/%u)\n",
1269                inode->i_ino, inode->i_generation, old->mea_count, 
1270                old->mea_master);
1271
1272         rc = obd_unpackmd(obd->u.mds.mds_md_exp, &lsm, lmm, lmm_size);
1273         if (rc < 0)
1274                 GOTO(conv_end, rc);
1275
1276         rc = obd_packmd(obd->u.mds.mds_md_exp, &lmm, lsm);
1277         if (rc < 0)
1278                 GOTO(conv_free, rc);
1279         lmm_size = rc;
1280
1281         handle = fsfilt_start(obd, inode, FSFILT_OP_SETATTR, NULL);
1282         if (IS_ERR(handle)) {
1283                 rc = PTR_ERR(handle);
1284                 GOTO(conv_free, rc);
1285         }
1286
1287         rc = fsfilt_set_md(obd, inode, handle, lmm, lmm_size, EA_MEA);
1288         err = fsfilt_commit(obd, obd->u.mds.mds_sb, inode, handle, 0);
1289         if (!rc)
1290                 rc = err ? err : lmm_size;
1291         GOTO(conv_free, rc);
1292 conv_free:
1293         obd_free_memmd(obd->u.mds.mds_md_exp, &lsm);
1294 conv_end:
1295         return rc;
1296 }
1297