Whamcloud - gitweb
b=6063
[fs/lustre-release.git] / lustre / mds / mds_fs.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  mds/mds_fs.c
5  *  Lustre Metadata Server (MDS) filesystem interface code
6  *
7  *  Copyright (C) 2002, 2003 Cluster File Systems, Inc.
8  *   Author: Andreas Dilger <adilger@clusterfs.com>
9  *
10  *   This file is part of Lustre, http://www.lustre.org.
11  *
12  *   Lustre is free software; you can redistribute it and/or
13  *   modify it under the terms of version 2 of the GNU General Public
14  *   License as published by the Free Software Foundation.
15  *
16  *   Lustre is distributed in the hope that it will be useful,
17  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
18  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  *   GNU General Public License for more details.
20  *
21  *   You should have received a copy of the GNU General Public License
22  *   along with Lustre; if not, write to the Free Software
23  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24  */
25
26 #ifndef EXPORT_SYMTAB
27 # define EXPORT_SYMTAB
28 #endif
29 #define DEBUG_SUBSYSTEM S_MDS
30
31 #include <linux/module.h>
32 #include <linux/kmod.h>
33 #include <linux/version.h>
34 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
35 #include <linux/mount.h>
36 #endif
37 #include <linux/lustre_mds.h>
38 #include <linux/obd_class.h>
39 #include <linux/obd_support.h>
40 #include <linux/lustre_lib.h>
41 #include <linux/lustre_fsfilt.h>
42 #include <libcfs/list.h>
43
44 #include <linux/lustre_smfs.h>
45 #include "mds_internal.h"
46
47 /* This limit is arbitrary, but for now we fit it in 1 page (32k clients) */
48 #define MDS_MAX_CLIENTS (PAGE_SIZE * 8)
49
50 #define LAST_RCVD "last_rcvd"
51 #define LOV_OBJID "lov_objid"
52 #define LAST_FID  "last_fid"
53 #define VIRT_FID  "virt_fid"
54
55 /* Add client data to the MDS.  We use a bitmap to locate a free space
56  * in the last_rcvd file if cl_off is -1 (i.e. a new client).
57  * Otherwise, we have just read the data from the last_rcvd file and
58  * we know its offset.
59  */
60 int mds_client_add(struct obd_device *obd, struct mds_obd *mds,
61                    struct mds_export_data *med, int cl_idx)
62 {
63         unsigned long *bitmap = mds->mds_client_bitmap;
64         int new_client = (cl_idx == -1);
65         ENTRY;
66
67         LASSERT(bitmap != NULL);
68
69         /* XXX if mcd_uuid were a real obd_uuid, I could use obd_uuid_equals */
70         if (!strcmp(med->med_mcd->mcd_uuid, obd->obd_uuid.uuid))
71                 RETURN(0);
72
73         /* the bitmap operations can handle cl_idx > sizeof(long) * 8, so
74          * there's no need for extra complication here
75          */
76         if (new_client) {
77                 cl_idx = find_first_zero_bit(bitmap, MDS_MAX_CLIENTS);
78         repeat:
79                 if (cl_idx >= MDS_MAX_CLIENTS) {
80                         CERROR("no room for clients - fix MDS_MAX_CLIENTS\n");
81                         return -ENOMEM;
82                 }
83                 if (test_and_set_bit(cl_idx, bitmap)) {
84                         cl_idx = find_next_zero_bit(bitmap, MDS_MAX_CLIENTS,
85                                                     cl_idx);
86                         goto repeat;
87                 }
88         } else {
89                 if (test_and_set_bit(cl_idx, bitmap)) {
90                         CERROR("MDS client %d: bit already set in bitmap!!\n",
91                                cl_idx);
92                         LBUG();
93                 }
94         }
95
96         CDEBUG(D_INFO, "client at idx %d with UUID '%s' added\n",
97                cl_idx, med->med_mcd->mcd_uuid);
98
99         med->med_idx = cl_idx;
100         med->med_off = le32_to_cpu(mds->mds_server_data->msd_client_start) +
101                 (cl_idx * le16_to_cpu(mds->mds_server_data->msd_client_size));
102
103         if (new_client) {
104                 struct file *file = mds->mds_rcvd_filp;
105                 struct lvfs_run_ctxt saved;
106                 loff_t off = med->med_off;
107                 int rc;
108
109                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
110                 rc = fsfilt_write_record(obd, file, med->med_mcd,
111                                          sizeof(*med->med_mcd), &off, 1);
112                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
113
114                 if (rc)
115                         return rc;
116                 CDEBUG(D_INFO, "wrote client mcd at idx %u off %llu (len %u)\n",
117                        med->med_idx, med->med_off,
118                        (unsigned int)sizeof(*med->med_mcd));
119         }
120         return 0;
121 }
122
123 int mds_client_free(struct obd_export *exp, int clear_client)
124 {
125         struct mds_export_data *med = &exp->exp_mds_data;
126         struct mds_obd *mds = &exp->exp_obd->u.mds;
127         unsigned long *bitmap = mds->mds_client_bitmap;
128         struct obd_device *obd = exp->exp_obd;
129         struct mds_client_data zero_mcd;
130         struct lvfs_run_ctxt saved;
131         int rc;
132
133         if (!med->med_mcd)
134                 RETURN(0);
135
136         /* XXX if mcd_uuid were a real obd_uuid, I could use obd_uuid_equals */
137         if (!strcmp(med->med_mcd->mcd_uuid, obd->obd_uuid.uuid))
138                 GOTO(free_and_out, 0);
139
140         CDEBUG(D_INFO, "freeing client at idx %u (%lld)with UUID '%s'\n",
141                med->med_idx, med->med_off, med->med_mcd->mcd_uuid);
142
143         LASSERT(bitmap);
144
145         /* Clear the bit _after_ zeroing out the client so we don't
146            race with mds_client_add and zero out new clients.*/
147         if (!test_bit(med->med_idx, bitmap)) {
148                 CERROR("MDS client %u: bit already clear in bitmap!!\n",
149                        med->med_idx);
150                 LBUG();
151         }
152
153         if (clear_client) {
154                 memset(&zero_mcd, 0, sizeof zero_mcd);
155                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
156                 rc = fsfilt_write_record(obd, mds->mds_rcvd_filp, &zero_mcd,
157                                          sizeof(zero_mcd), &med->med_off, 1);
158                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
159
160                 CDEBUG(rc == 0 ? D_INFO : D_ERROR,
161                        "zeroing out client %s idx %u in %s rc %d\n",
162                        med->med_mcd->mcd_uuid, med->med_idx, LAST_RCVD, rc);
163         }
164
165         if (!test_and_clear_bit(med->med_idx, bitmap)) {
166                 CERROR("MDS client %u: bit already clear in bitmap!!\n",
167                        med->med_idx);
168                 LBUG();
169         }
170
171
172         /* Make sure the server's last_transno is up to date. Do this
173          * after the client is freed so we know all the client's
174          * transactions have been committed. */
175         mds_update_server_data(exp->exp_obd, 1);
176
177 free_and_out:
178         OBD_FREE(med->med_mcd, sizeof(*med->med_mcd));
179         med->med_mcd = NULL;
180         return 0;
181 }
182
183 static int mds_server_free_data(struct mds_obd *mds)
184 {
185         OBD_FREE(mds->mds_client_bitmap, MDS_MAX_CLIENTS / 8);
186         OBD_FREE(mds->mds_server_data, sizeof(*mds->mds_server_data));
187         mds->mds_server_data = NULL;
188
189         return 0;
190 }
191
192 static int mds_read_last_fid(struct obd_device *obd, struct file *file)
193 {
194         int rc = 0;
195         loff_t off = 0;
196         struct mds_obd *mds = &obd->u.mds;
197         unsigned long last_fid_size = file->f_dentry->d_inode->i_size;
198         ENTRY;
199
200         if (last_fid_size == 0) {
201                 CWARN("%s: initializing new %s\n", obd->obd_name,
202                       file->f_dentry->d_name.name);
203
204                 /* 
205                  * as fid is used for forming res_id for locking, it should not
206                  * be zero. This will keep us out of lots possible problems,
207                  * asserts, etc.
208                  */
209                 mds_set_last_fid(obd, 0);
210         } else {
211                 __u64 lastfid;
212                 
213                 rc = fsfilt_read_record(obd, file, &lastfid,
214                                         sizeof(lastfid), &off);
215                 if (rc) {
216                         CERROR("error reading MDS %s: rc = %d\n",
217                                file->f_dentry->d_name.name, rc);
218                         RETURN(rc);
219                 }
220
221                 /* 
222                  * make sure, that fid is up-to-date.
223                  */
224                 mds_set_last_fid(obd, lastfid);
225         }
226
227         CDEBUG(D_INODE, "%s: server last_fid: "LPU64"\n",
228                obd->obd_name, mds->mds_last_fid);
229
230         rc = mds_update_last_fid(obd, NULL, 1);
231         RETURN(rc);
232 }
233
234 static int mds_read_last_rcvd(struct obd_device *obd, struct file *file)
235 {
236         unsigned long last_rcvd_size = file->f_dentry->d_inode->i_size;
237         struct mds_obd *mds = &obd->u.mds;
238         struct mds_server_data *msd = NULL;
239         struct mds_client_data *mcd = NULL;
240         loff_t off = 0;
241         __u64 mount_count;
242         int cl_idx, rc = 0;
243         ENTRY;
244
245         /* ensure padding in the struct is the correct size */
246         LASSERT(offsetof(struct mds_server_data, msd_padding) +
247                 sizeof(msd->msd_padding) == MDS_LR_SERVER_SIZE);
248         LASSERT(offsetof(struct mds_client_data, mcd_padding) +
249                 sizeof(mcd->mcd_padding) == MDS_LR_CLIENT_SIZE);
250
251         OBD_ALLOC_WAIT(msd, sizeof(*msd));
252         if (!msd)
253                 RETURN(-ENOMEM);
254
255         OBD_ALLOC_WAIT(mds->mds_client_bitmap, MDS_MAX_CLIENTS / 8);
256         if (!mds->mds_client_bitmap) {
257                 OBD_FREE(msd, sizeof(*msd));
258                 RETURN(-ENOMEM);
259         }
260
261         mds->mds_server_data = msd;
262
263         if (last_rcvd_size == 0) {
264                 CWARN("%s: initializing new %s\n", obd->obd_name,
265                       file->f_dentry->d_name.name);
266
267                 memcpy(msd->msd_uuid, obd->obd_uuid.uuid,sizeof(msd->msd_uuid));
268                 msd->msd_last_transno = 0;
269                 mount_count = msd->msd_mount_count = 0;
270                 msd->msd_server_size = cpu_to_le32(MDS_LR_SERVER_SIZE);
271                 msd->msd_client_start = cpu_to_le32(MDS_LR_CLIENT_START);
272                 msd->msd_client_size = cpu_to_le16(MDS_LR_CLIENT_SIZE);
273                 msd->msd_feature_rocompat = cpu_to_le32(MDS_ROCOMPAT_LOVOBJID);
274         } else {
275                 rc = fsfilt_read_record(obd, file, msd, sizeof(*msd), &off);
276                 if (rc) {
277                         CERROR("error reading MDS %s: rc = %d\n",
278                                file->f_dentry->d_name.name, rc);
279                         GOTO(err_msd, rc);
280                 }
281                 if (strcmp(msd->msd_uuid, obd->obd_uuid.uuid) != 0) {
282                         CERROR("OBD UUID %s does not match last_rcvd UUID %s\n",
283                                obd->obd_uuid.uuid, msd->msd_uuid);
284                         GOTO(err_msd, rc = -EINVAL);
285                 }
286                 mount_count = le64_to_cpu(msd->msd_mount_count);
287         }
288         if (msd->msd_feature_incompat & ~cpu_to_le32(MDS_INCOMPAT_SUPP)) {
289                 CERROR("unsupported incompat feature %x\n",
290                        le32_to_cpu(msd->msd_feature_incompat) &
291                        ~MDS_INCOMPAT_SUPP);
292                 GOTO(err_msd, rc = -EINVAL);
293         }
294         /* XXX updating existing b_devel fs only, can be removed in future */
295         msd->msd_feature_rocompat = cpu_to_le32(MDS_ROCOMPAT_LOVOBJID);
296         if (msd->msd_feature_rocompat & ~cpu_to_le32(MDS_ROCOMPAT_SUPP)) {
297                 CERROR("unsupported read-only feature %x\n",
298                        le32_to_cpu(msd->msd_feature_rocompat) &
299                        ~MDS_ROCOMPAT_SUPP);
300                 /* Do something like remount filesystem read-only */
301                 GOTO(err_msd, rc = -EINVAL);
302         }
303
304         mds->mds_last_transno = le64_to_cpu(msd->msd_last_transno);
305
306         CDEBUG(D_INODE, "%s: server last_transno: "LPU64"\n",
307                obd->obd_name, mds->mds_last_transno);
308         CDEBUG(D_INODE, "%s: server mount_count: "LPU64"\n",
309                obd->obd_name, mount_count + 1);
310         CDEBUG(D_INODE, "%s: server data size: %u\n",
311                obd->obd_name, le32_to_cpu(msd->msd_server_size));
312         CDEBUG(D_INODE, "%s: per-client data start: %u\n",
313                obd->obd_name, le32_to_cpu(msd->msd_client_start));
314         CDEBUG(D_INODE, "%s: per-client data size: %u\n",
315                obd->obd_name, le32_to_cpu(msd->msd_client_size));
316         CDEBUG(D_INODE, "%s: last_rcvd size: %lu\n",
317                obd->obd_name, last_rcvd_size);
318         CDEBUG(D_INODE, "%s: last_rcvd clients: %lu\n", obd->obd_name,
319                last_rcvd_size <= le32_to_cpu(msd->msd_client_start) ? 0 :
320                (last_rcvd_size - le32_to_cpu(msd->msd_client_start)) /
321                 le16_to_cpu(msd->msd_client_size));
322
323         /* When we do a clean MDS shutdown, we save the last_transno into
324          * the header.  If we find clients with higher last_transno values
325          * then those clients may need recovery done. */
326         for (cl_idx = 0, off = le32_to_cpu(msd->msd_client_start);
327              off < last_rcvd_size; cl_idx++) {
328                 __u64 last_transno;
329                 struct obd_export *exp;
330                 struct mds_export_data *med;
331
332                 if (!mcd) {
333                         OBD_ALLOC_WAIT(mcd, sizeof(*mcd));
334                         if (!mcd)
335                                 GOTO(err_client, rc = -ENOMEM);
336                 }
337
338                 /* Don't assume off is incremented properly by
339                  * fsfilt_read_record(), in case sizeof(*mcd)
340                  * isn't the same as msd->msd_client_size.  */
341                 off = le32_to_cpu(msd->msd_client_start) +
342                         cl_idx * le16_to_cpu(msd->msd_client_size);
343                 rc = fsfilt_read_record(obd, file, mcd, sizeof(*mcd), &off);
344                 if (rc) {
345                         CERROR("error reading MDS %s idx %d, off %llu: rc %d\n",
346                                file->f_dentry->d_name.name, cl_idx, off, rc);
347                         break; /* read error shouldn't cause startup to fail */
348                 }
349
350                 if (mcd->mcd_uuid[0] == '\0') {
351                         CDEBUG(D_INFO, "skipping zeroed client at offset %d\n",
352                                cl_idx);
353                         continue;
354                 }
355
356                 last_transno = le64_to_cpu(mcd->mcd_last_transno) >
357                                le64_to_cpu(mcd->mcd_last_close_transno) ?
358                                le64_to_cpu(mcd->mcd_last_transno) :
359                                le64_to_cpu(mcd->mcd_last_close_transno);
360
361                 /* These exports are cleaned up by mds_disconnect(), so they
362                  * need to be set up like real exports as mds_connect() does.
363                  */
364                 CDEBUG(D_HA|D_WARNING,"RCVRNG CLIENT uuid: %s idx: %d lr: "LPU64
365                        " srv lr: "LPU64" lx: "LPU64"\n", mcd->mcd_uuid, cl_idx,
366                        last_transno, le64_to_cpu(msd->msd_last_transno),
367                        mcd->mcd_last_xid);
368
369                 exp = class_new_export(obd);
370                 if (exp == NULL)
371                         GOTO(err_client, rc = -ENOMEM);
372
373                 memcpy(&exp->exp_client_uuid.uuid, mcd->mcd_uuid,
374                        sizeof exp->exp_client_uuid.uuid);
375                 med = &exp->exp_mds_data;
376                 med->med_mcd = mcd;
377                 mds_client_add(obd, mds, med, cl_idx);
378                 /* create helper if export init gets more complex */
379                 INIT_LIST_HEAD(&med->med_open_head);
380                 spin_lock_init(&med->med_open_lock);
381
382                 mcd = NULL;
383                 exp->exp_req_replay_needed = 1;
384                 obd->obd_recoverable_clients++;
385                 obd->obd_max_recoverable_clients++;
386
387                 /* track clients to separate req replay
388                  * from lock replay. bug 6063 */
389                 atomic_inc(&obd->obd_req_replay_clients);
390                 exp->exp_req_replay_needed = 1;
391                 atomic_inc(&obd->obd_lock_replay_clients);
392                 exp->exp_lock_replay_needed = 1;
393                 
394                 class_export_put(exp);
395
396                 CDEBUG(D_OTHER, "client at idx %d has last_transno = "LPU64"\n",
397                        cl_idx, last_transno);
398
399                 if (last_transno > mds->mds_last_transno)
400                        mds->mds_last_transno = last_transno;
401         }
402         if (mcd)
403                 OBD_FREE(mcd, sizeof(*mcd));
404         obd->obd_last_committed = mds->mds_last_transno;
405         if (obd->obd_recoverable_clients) {
406                 CWARN("RECOVERY: service %s, %d recoverable clients, "
407                       "last_transno "LPU64"\n", obd->obd_name,
408                       obd->obd_recoverable_clients, mds->mds_last_transno);
409                 obd->obd_next_recovery_transno = obd->obd_last_committed + 1;
410                 target_start_recovery_thread(obd, mds_handle);
411                 obd->obd_recovery_start = LTIME_S(CURRENT_TIME);
412         }
413         
414         mds->mds_mount_count = mount_count + 1;
415         msd->msd_mount_count = cpu_to_le64(mds->mds_mount_count);
416
417         /* save it, so mount count and last_transno is current */
418         rc = mds_update_server_data(obd, 1);
419         if (rc)
420                 GOTO(err_client, rc);
421
422         RETURN(0);
423
424 err_client:
425         class_disconnect_exports(obd, 0);
426 err_msd:
427         mds_server_free_data(mds);
428         RETURN(rc);
429 }
430
431 static int mds_fs_post_setup(struct obd_device *obd)
432 {
433         struct mds_obd *mds = &obd->u.mds;
434         struct dentry *dentry;
435         int rc = 0;
436         ENTRY;
437        
438         dentry = mds_id2dentry(obd, &mds->mds_rootid, NULL);
439         if (IS_ERR(dentry)) {
440                 CERROR("Can't find ROOT, err = %d\n",
441                        (int)PTR_ERR(dentry));
442                 RETURN(PTR_ERR(dentry));
443         }
444         
445         rc = fsfilt_post_setup(obd, dentry);
446         if (rc)
447                 goto out_dentry;
448
449         LASSERT(dentry->d_inode != NULL);
450         
451         fsfilt_set_fs_flags(obd, dentry->d_inode, 
452                             SM_DO_REC | SM_DO_COW);
453         
454         fsfilt_set_fs_flags(obd, mds->mds_pending_dir->d_inode, 
455                             SM_DO_REC | SM_DO_COW);
456         
457         fsfilt_set_mds_flags(obd, mds->mds_sb);
458
459 out_dentry:
460         l_dput(dentry);
461         RETURN(rc); 
462 }
463
464 /*
465  * sets up root inode lustre_id. It tries to read it first from root inode and
466  * if it is not there, new rootid is allocated and saved there.
467  */
468 int mds_fs_setup_rootid(struct obd_device *obd)
469 {
470         int rc = 0;
471         void *handle;
472         struct inode *inode;
473         struct dentry *dentry;
474         struct mds_obd *mds = &obd->u.mds;
475         ENTRY;
476
477         /* getting root directory and setup its fid. */
478         dentry = mds_id2dentry(obd, &mds->mds_rootid, NULL);
479         if (IS_ERR(dentry)) {
480                 CERROR("Can't find ROOT by "DLID4", err = %d\n",
481                        OLID4(&mds->mds_rootid), (int)PTR_ERR(dentry));
482                 RETURN(PTR_ERR(dentry));
483         }
484
485         inode = dentry->d_inode;
486         LASSERT(dentry->d_inode);
487
488         rc = mds_pack_inode2id(obd, &mds->mds_rootid, inode, 1);
489         if (rc < 0) {
490                 if (rc != -ENODATA)
491                         GOTO(out_dentry, rc);
492         } else {
493                 /*
494                  * rootid is filled by mds_read_inode_sid(), so we do not need
495                  * to allocate it and update. The only thing we need to check is
496                  * mds_num.
497                  */
498                 LASSERT(id_group(&mds->mds_rootid) == mds->mds_num);
499                 mds_set_last_fid(obd, id_fid(&mds->mds_rootid));
500                 GOTO(out_dentry, rc);
501         }
502
503         /* allocating new one, as it is not found in root inode. */
504         handle = fsfilt_start(obd, inode,
505                               FSFILT_OP_SETATTR, NULL);
506         
507         if (IS_ERR(handle)) {
508                 rc = PTR_ERR(handle);
509                 CERROR("fsfilt_start() failed, rc = %d\n", rc);
510                 GOTO(out_dentry, rc);
511         }
512         
513         down(&inode->i_sem);
514         rc = mds_alloc_inode_sid(obd, inode, handle, &mds->mds_rootid);
515         up(&inode->i_sem);
516         
517         if (rc) {
518                 CERROR("mds_alloc_inode_sid() failed, rc = %d\n",
519                        rc);
520                 GOTO(out_dentry, rc);
521         }
522
523         rc = fsfilt_commit(obd, mds->mds_sb, inode, handle, 0);
524         if (rc)
525                 CERROR("fsfilt_commit() failed, rc = %d\n", rc);
526
527         EXIT;
528 out_dentry:
529         l_dput(dentry);
530         if (rc == 0)
531                 CWARN("%s: rootid: "DLID4"\n", obd->obd_name,
532                       OLID4(&mds->mds_rootid));
533         return rc;
534 }
535
536 static int mds_update_virtid_fid(struct obd_device *obd,
537                                  void *handle, int force_sync)
538 {
539         struct mds_obd *mds = &obd->u.mds;
540         struct file *filp = mds->mds_virtid_filp;
541         struct lvfs_run_ctxt saved;
542         loff_t off = 0;
543         int rc = 0;
544         ENTRY;
545
546         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
547         rc = fsfilt_write_record(obd, filp, &mds->mds_virtid_fid,
548                                  sizeof(mds->mds_virtid_fid),
549                                  &off, force_sync);
550         if (rc) {
551                 CERROR("error writing MDS virtid_fid #"LPU64
552                        ", err = %d\n", mds->mds_virtid_fid, rc);
553         }
554                 
555         CDEBUG(D_SUPER, "wrote virtid fid #"LPU64" at idx "
556                "%llu: err = %d\n", mds->mds_virtid_fid,
557                off, rc);
558         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
559
560         RETURN(rc);
561 }
562
563 static int mds_read_virtid_fid(struct obd_device *obd,
564                                struct file *file)
565 {
566         int rc = 0;
567         loff_t off = 0;
568         struct mds_obd *mds = &obd->u.mds;
569         unsigned long virtid_fid_size = file->f_dentry->d_inode->i_size;
570         ENTRY;
571
572         if (virtid_fid_size == 0) {
573                 mds->mds_virtid_fid = mds_alloc_fid(obd);
574         } else {
575                 rc = fsfilt_read_record(obd, file, &mds->mds_virtid_fid,
576                                         sizeof(mds->mds_virtid_fid), &off);
577                 if (rc) {
578                         CERROR("error reading MDS %s: rc = %d\n",
579                                file->f_dentry->d_name.name, rc);
580                         RETURN(rc);
581                 }
582         }
583         rc = mds_update_virtid_fid(obd, NULL, 1);
584
585         RETURN(rc);
586 }
587
588 /*
589  * initializes lustre_id for virtual id directory, it is needed sometimes, as it
590  * is possible that it will be the parent for object an operations is going to
591  * be performed on.
592  */
593 int mds_fs_setup_virtid(struct obd_device *obd)
594 {
595         int rc = 0;
596         void *handle;
597         struct lustre_id sid;
598         struct mds_obd *mds = &obd->u.mds;
599         struct inode *inode = mds->mds_id_dir->d_inode;
600         ENTRY;
601
602         handle = fsfilt_start(obd, inode,
603                               FSFILT_OP_SETATTR, NULL);
604         
605         if (IS_ERR(handle)) {
606                 rc = PTR_ERR(handle);
607                 CERROR("fsfilt_start() failed, rc = %d\n", rc);
608                 RETURN(rc);
609         }
610
611         id_group(&sid) = mds->mds_num;
612         id_fid(&sid) = mds->mds_virtid_fid;
613
614         id_ino(&sid) = inode->i_ino;
615         id_gen(&sid) = inode->i_generation;
616         id_type(&sid) = (S_IFMT & inode->i_mode);
617
618         down(&inode->i_sem);
619         rc = mds_update_inode_sid(obd, inode, handle, &sid);
620         up(&inode->i_sem);
621
622         if (rc) {
623                 CERROR("mds_update_inode_sid() failed, rc = %d\n",
624                        rc);
625                 RETURN(rc);
626         }
627
628         rc = fsfilt_commit(obd, mds->mds_sb, inode, handle, 0);
629         if (rc) {
630                 CERROR("fsfilt_commit() failed, rc = %d\n", rc);
631                 RETURN(rc);
632         }
633
634         RETURN(rc);
635 }
636
637 int mds_fs_setup(struct obd_device *obd, struct vfsmount *mnt)
638 {
639         struct mds_obd *mds = &obd->u.mds;
640         struct lvfs_run_ctxt saved;
641         struct dentry *dentry;
642         struct file *file;
643         int rc;
644         ENTRY;
645
646         rc = cleanup_group_info();
647         if (rc)
648                 RETURN(rc);
649
650         mds->mds_vfsmnt = mnt;
651         mds->mds_sb = mnt->mnt_root->d_inode->i_sb;
652
653         fsfilt_setup(obd, mds->mds_sb);
654
655         OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
656         obd->obd_lvfs_ctxt.pwdmnt = mnt;
657         obd->obd_lvfs_ctxt.pwd = mnt->mnt_root;
658         obd->obd_lvfs_ctxt.fs = get_ds();
659         obd->obd_lvfs_ctxt.cb_ops = mds_lvfs_ops;
660
661         /* setup the directory tree */
662         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
663         dentry = simple_mkdir(current->fs->pwd, "ROOT", 0755, 0);
664         if (IS_ERR(dentry)) {
665                 rc = PTR_ERR(dentry);
666                 CERROR("cannot create ROOT directory: rc = %d\n", rc);
667                 GOTO(err_pop, rc);
668         }
669
670         mdc_pack_id(&mds->mds_rootid, dentry->d_inode->i_ino,
671                     dentry->d_inode->i_generation, S_IFDIR, 0, 0);
672
673         dput(dentry);
674         
675         dentry = lookup_one_len("__iopen__", current->fs->pwd,
676                                 strlen("__iopen__"));
677         if (IS_ERR(dentry)) {
678                 rc = PTR_ERR(dentry);
679                 CERROR("cannot lookup __iopen__ directory: rc = %d\n", rc);
680                 GOTO(err_pop, rc);
681         }
682         mds->mds_id_de = dentry;
683         if (!dentry->d_inode || is_bad_inode(dentry->d_inode)) {
684                 rc = -ENOENT;
685                 CERROR("__iopen__ directory has no inode? rc = %d\n", rc);
686                 GOTO(err_id_de, rc);
687         }
688
689         dentry = simple_mkdir(current->fs->pwd, "PENDING", 0777, 1);
690         if (IS_ERR(dentry)) {
691                 rc = PTR_ERR(dentry);
692                 CERROR("cannot create PENDING directory: rc = %d\n", rc);
693                 GOTO(err_id_de, rc);
694         }
695         mds->mds_pending_dir = dentry;
696       
697         dentry = simple_mkdir(current->fs->pwd, "LOGS", 0777, 1);
698         if (IS_ERR(dentry)) {
699                 rc = PTR_ERR(dentry);
700                 CERROR("cannot create LOGS directory: rc = %d\n", rc);
701                 GOTO(err_pending, rc);
702         }
703         mds->mds_logs_dir = dentry;
704
705         dentry = simple_mkdir(current->fs->pwd, "OBJECTS", 0777, 1);
706         if (IS_ERR(dentry)) {
707                 rc = PTR_ERR(dentry);
708                 CERROR("cannot create OBJECTS directory: rc = %d\n", rc);
709                 GOTO(err_logs, rc);
710         }
711         mds->mds_objects_dir = dentry;
712
713         dentry = simple_mkdir(current->fs->pwd, "FIDS", 0777, 1);
714         if (IS_ERR(dentry)) {
715                 rc = PTR_ERR(dentry);
716                 CERROR("cannot create FIDS directory: rc = %d\n", rc);
717                 GOTO(err_objects, rc);
718         }
719         mds->mds_id_dir = dentry;
720
721         dentry = simple_mkdir(current->fs->pwd, "UNNAMED", 0777, 1);
722         if (IS_ERR(dentry)) {
723                 rc = PTR_ERR(dentry);
724                 CERROR("cannot create UNNAMED directory: rc = %d\n", rc);
725                 GOTO(err_unnamed, rc);
726         }
727         mds->mds_unnamed_dir = dentry;
728
729         /* open and test the last rcvd file */
730         file = filp_open(LAST_RCVD, O_RDWR | O_CREAT, 0644);
731         if (IS_ERR(file)) {
732                 rc = PTR_ERR(file);
733                 CERROR("cannot open/create %s file: rc = %d\n", LAST_RCVD, rc);
734                 GOTO(err_id_dir, rc = PTR_ERR(file));
735         }
736         mds->mds_rcvd_filp = file;
737         
738         if (!S_ISREG(file->f_dentry->d_inode->i_mode)) {
739                 CERROR("%s is not a regular file!: mode = %o\n", LAST_RCVD,
740                        file->f_dentry->d_inode->i_mode);
741                 GOTO(err_last_rcvd, rc = -ENOENT);
742         }
743
744         rc = mds_read_last_rcvd(obd, file);
745         if (rc) {
746                 CERROR("cannot read %s: rc = %d\n", LAST_RCVD, rc);
747                 GOTO(err_last_rcvd, rc);
748         }
749
750         /* open and test last fid file */
751         file = filp_open(LAST_FID, O_RDWR | O_CREAT, 0644);
752         if (IS_ERR(file)) {
753                 rc = PTR_ERR(file);
754                 CERROR("cannot open/create %s file: rc = %d\n",
755                        LAST_FID, rc);
756                 GOTO(err_client, rc = PTR_ERR(file));
757         }
758         mds->mds_fid_filp = file;
759         if (!S_ISREG(file->f_dentry->d_inode->i_mode)) {
760                 CERROR("%s is not a regular file!: mode = %o\n",
761                        LAST_FID, file->f_dentry->d_inode->i_mode);
762                 GOTO(err_last_fid, rc = -ENOENT);
763         }
764
765         rc = mds_read_last_fid(obd, file);
766         if (rc) {
767                 CERROR("cannot read %s: rc = %d\n", LAST_FID, rc);
768                 GOTO(err_last_fid, rc);
769         }
770
771         /* open and test virtid fid file */
772         file = filp_open(VIRT_FID, O_RDWR | O_CREAT, 0644);
773         if (IS_ERR(file)) {
774                 rc = PTR_ERR(file);
775                 CERROR("cannot open/create %s file: rc = %d\n",
776                        VIRT_FID, rc);
777                 GOTO(err_last_fid, rc = PTR_ERR(file));
778         }
779         mds->mds_virtid_filp = file;
780         if (!S_ISREG(file->f_dentry->d_inode->i_mode)) {
781                 CERROR("%s is not a regular file!: mode = %o\n",
782                        VIRT_FID, file->f_dentry->d_inode->i_mode);
783                 GOTO(err_virtid_fid, rc = -ENOENT);
784         }
785
786         rc = mds_read_virtid_fid(obd, file);
787         if (rc) {
788                 CERROR("cannot read %s: rc = %d\n", VIRT_FID, rc);
789                 GOTO(err_virtid_fid, rc);
790         }
791         
792         /* open and test the lov objid file */
793         file = filp_open(LOV_OBJID, O_RDWR | O_CREAT, 0644);
794         if (IS_ERR(file)) {
795                 rc = PTR_ERR(file);
796                 CERROR("cannot open/create %s file: rc = %d\n", LOV_OBJID, rc);
797                 GOTO(err_last_fid, rc = PTR_ERR(file));
798         }
799         mds->mds_dt_objid_filp = file;
800         if (!S_ISREG(file->f_dentry->d_inode->i_mode)) {
801                 CERROR("%s is not a regular file!: mode = %o\n", LOV_OBJID,
802                        file->f_dentry->d_inode->i_mode);
803                 GOTO(err_lov_objid, rc = -ENOENT);
804         }
805 err_pop:
806         if (!rc) {
807                 rc = mds_fs_post_setup(obd);
808                 if (rc)
809                         CERROR("can not post setup fsfilt\n");        
810         }
811         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
812         return rc;
813
814 err_lov_objid:
815         if (mds->mds_dt_objid_filp && filp_close(mds->mds_dt_objid_filp, 0))
816                 CERROR("can't close %s after error\n", LOV_OBJID);
817 err_virtid_fid:
818         if (mds->mds_virtid_filp && filp_close(mds->mds_virtid_filp, 0))
819                 CERROR("can't close %s after error\n", VIRT_FID);
820 err_last_fid:
821         if (mds->mds_fid_filp && filp_close(mds->mds_fid_filp, 0))
822                 CERROR("can't close %s after error\n", LAST_FID);
823 err_client:
824         class_disconnect_exports(obd, 0);
825 err_last_rcvd:
826         if (mds->mds_rcvd_filp && filp_close(mds->mds_rcvd_filp, 0))
827                 CERROR("can't close %s after error\n", LAST_RCVD);
828 err_unnamed:
829         dput(mds->mds_unnamed_dir);
830 err_id_dir:
831         dput(mds->mds_id_dir);
832 err_objects:
833         dput(mds->mds_objects_dir);
834 err_logs:
835         dput(mds->mds_logs_dir);
836 err_pending:
837         dput(mds->mds_pending_dir);
838 err_id_de:
839         dput(mds->mds_id_de);
840         goto err_pop;
841 }
842
843 static int  mds_fs_post_cleanup(struct obd_device *obd)
844 {
845         int    rc = 0;
846         rc = fsfilt_post_cleanup(obd);
847         return rc; 
848 }
849
850 int mds_fs_cleanup(struct obd_device *obd, int flags)
851 {
852         struct mds_obd *mds = &obd->u.mds;
853         struct lvfs_run_ctxt saved;
854         int rc = 0;
855
856         if (flags & OBD_OPT_FAILOVER)
857                 CERROR("%s: shutting down for failover; client state will"
858                        " be preserved.\n", obd->obd_name);
859
860         class_disconnect_exports(obd, flags); /* cleans up client info too */
861         target_cleanup_recovery(obd);
862         mds_server_free_data(mds);
863
864         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
865         if (mds->mds_virtid_filp) {
866                 rc = filp_close(mds->mds_virtid_filp, 0);
867                 mds->mds_virtid_filp = NULL;
868                 if (rc)
869                         CERROR("%s file won't close, rc = %d\n", VIRT_FID, rc);
870         }
871         if (mds->mds_fid_filp) {
872                 rc = filp_close(mds->mds_fid_filp, 0);
873                 mds->mds_fid_filp = NULL;
874                 if (rc)
875                         CERROR("%s file won't close, rc = %d\n", LAST_FID, rc);
876         }
877         if (mds->mds_rcvd_filp) {
878                 rc = filp_close(mds->mds_rcvd_filp, 0);
879                 mds->mds_rcvd_filp = NULL;
880                 if (rc)
881                         CERROR("%s file won't close, rc = %d\n", LAST_RCVD, rc);
882         }
883         if (mds->mds_dt_objid_filp) {
884                 rc = filp_close(mds->mds_dt_objid_filp, 0);
885                 mds->mds_dt_objid_filp = NULL;
886                 if (rc)
887                         CERROR("%s file won't close, rc=%d\n", LOV_OBJID, rc);
888         }
889         if (mds->mds_unnamed_dir != NULL) {
890                 l_dput(mds->mds_unnamed_dir);
891                 mds->mds_unnamed_dir = NULL;
892         }
893         if (mds->mds_id_dir != NULL) {
894                 l_dput(mds->mds_id_dir);
895                 mds->mds_id_dir = NULL;
896         }
897         if (mds->mds_objects_dir != NULL) {
898                 l_dput(mds->mds_objects_dir);
899                 mds->mds_objects_dir = NULL;
900         }
901         if (mds->mds_logs_dir) {
902                 l_dput(mds->mds_logs_dir);
903                 mds->mds_logs_dir = NULL;
904         }
905         if (mds->mds_pending_dir) {
906                 l_dput(mds->mds_pending_dir);
907                 mds->mds_pending_dir = NULL;
908         }
909         rc = mds_fs_post_cleanup(obd);
910         
911         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
912         shrink_dcache_parent(mds->mds_id_de);
913         dput(mds->mds_id_de);
914
915         return rc;
916 }
917
918 /* Creates an object with the same name as its id.  Because this is not at all
919  * performance sensitive, it is accomplished by creating a file, checking the
920  * id, and renaming it. */
921 int mds_obd_create(struct obd_export *exp, struct obdo *oa,
922                    struct lov_stripe_md **ea, struct obd_trans_info *oti)
923 {
924         struct mds_obd *mds = &exp->exp_obd->u.mds;
925         struct inode *parent_inode = mds->mds_objects_dir->d_inode;
926         struct file *filp;
927         struct dentry *dchild;
928         struct lvfs_run_ctxt saved;
929         char idname[LL_ID_NAMELEN];
930         int rc = 0, err, idlen;
931         void *handle;
932         ENTRY;
933
934         push_ctxt(&saved, &exp->exp_obd->obd_lvfs_ctxt, NULL);
935         down(&parent_inode->i_sem);
936         if (oa->o_id) {
937                 idlen = ll_id2str(idname, oa->o_id, oa->o_generation);
938                 dchild = lookup_one_len(idname, mds->mds_objects_dir, idlen);
939                 if (IS_ERR(dchild))
940                         GOTO(out_pop, rc = PTR_ERR(dchild));
941
942                 if (dchild->d_inode == NULL) {
943                         struct dentry_params dp;
944                         struct inode *inode;
945
946                         CWARN("creating log with ID "LPU64"\n", oa->o_id);
947                         
948                         dchild->d_fsdata = (void *) &dp;
949                         dp.p_ptr = NULL;
950                         dp.p_inum = oa->o_id;
951                         rc = ll_vfs_create(parent_inode, dchild, S_IFREG, NULL);
952                         if (dchild->d_fsdata == (void *)(unsigned long)oa->o_id)
953                                 dchild->d_fsdata = NULL;
954                         if (rc) {
955                                 CDEBUG(D_INODE, "err during create: %d\n", rc);
956                                 dput(dchild);
957                                 GOTO(out_pop, rc);
958                         }
959                         inode = dchild->d_inode;
960                         LASSERT(inode->i_ino == oa->o_id);
961                         inode->i_generation = oa->o_generation;
962                         CDEBUG(D_HA, "recreated ino %lu with gen %u\n",
963                                inode->i_ino, inode->i_generation);
964                         mark_inode_dirty(inode);
965                 } else {
966                         CWARN("it should be here!\n");
967                 }
968                 GOTO(out_pop, rc);
969         }
970
971         sprintf(idname, "OBJECTS/%u.%u", ll_insecure_random_int(), current->pid);
972         filp = filp_open(idname, O_CREAT | O_EXCL, 0644);
973         if (IS_ERR(filp)) {
974                 rc = PTR_ERR(filp);
975                 if (rc == -EEXIST) {
976                         CERROR("impossible object name collision %s\n",
977                                idname);
978                         LBUG();
979                 }
980                 CERROR("error creating tmp object %s: rc %d\n", 
981                        idname, rc);
982                 GOTO(out_pop, rc);
983         }
984
985         LASSERT(mds->mds_objects_dir == filp->f_dentry->d_parent);
986
987         oa->o_id = filp->f_dentry->d_inode->i_ino;
988         oa->o_generation = filp->f_dentry->d_inode->i_generation;
989         idlen = ll_id2str(idname, oa->o_id, oa->o_generation);
990         
991         CWARN("created log anonymous "LPU64"/%u\n",
992               oa->o_id, oa->o_generation);
993
994         dchild = lookup_one_len(idname, mds->mds_objects_dir, idlen);
995         if (IS_ERR(dchild)) {
996                 CERROR("getting neg dentry for obj rename: %d\n", rc);
997                 GOTO(out_close, rc = PTR_ERR(dchild));
998         }
999         if (dchild->d_inode != NULL) {
1000                 CERROR("impossible non-negative obj dentry " LPU64":%u!\n",
1001                        oa->o_id, oa->o_generation);
1002                 LBUG();
1003         }
1004
1005         handle = fsfilt_start(exp->exp_obd, mds->mds_objects_dir->d_inode,
1006                               FSFILT_OP_RENAME, NULL);
1007         if (IS_ERR(handle))
1008                 GOTO(out_dput, rc = PTR_ERR(handle));
1009
1010         lock_kernel();
1011         rc = vfs_rename(mds->mds_objects_dir->d_inode, filp->f_dentry,
1012                         mds->mds_objects_dir->d_inode, dchild);
1013         unlock_kernel();
1014         if (rc)
1015                 CERROR("error renaming new object "LPU64":%u: rc %d\n",
1016                        oa->o_id, oa->o_generation, rc);
1017
1018         err = fsfilt_commit(exp->exp_obd, mds->mds_sb, 
1019                             mds->mds_objects_dir->d_inode, handle, 0);
1020         if (!err) {
1021                 oa->o_gr = FILTER_GROUP_FIRST_MDS + mds->mds_num;
1022                 oa->o_valid |= OBD_MD_FLID | OBD_MD_FLGENER | OBD_MD_FLGROUP;
1023         } else if (!rc)
1024                 rc = err;
1025 out_dput:
1026         dput(dchild);
1027 out_close:
1028         err = filp_close(filp, 0);
1029         if (err) {
1030                 CERROR("closing tmpfile %s: rc %d\n", idname, rc);
1031                 if (!rc)
1032                         rc = err;
1033         }
1034 out_pop:
1035         up(&parent_inode->i_sem);
1036         pop_ctxt(&saved, &exp->exp_obd->obd_lvfs_ctxt, NULL);
1037         RETURN(rc);
1038 }
1039
1040 int mds_obd_destroy(struct obd_export *exp, struct obdo *oa,
1041                     struct lov_stripe_md *ea, struct obd_trans_info *oti)
1042 {
1043         struct mds_obd *mds = &exp->exp_obd->u.mds;
1044         struct inode *parent_inode = mds->mds_objects_dir->d_inode;
1045         struct obd_device *obd = exp->exp_obd;
1046         struct lvfs_run_ctxt saved;
1047         char idname[LL_ID_NAMELEN];
1048         struct dentry *de;
1049         void *handle;
1050         int err, idlen, rc = 0;
1051         ENTRY;
1052
1053         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
1054
1055         idlen = ll_id2str(idname, oa->o_id, oa->o_generation);
1056
1057         down(&parent_inode->i_sem);
1058         de = lookup_one_len(idname, mds->mds_objects_dir, idlen);
1059         if (IS_ERR(de) || de->d_inode == NULL) {
1060                 rc = IS_ERR(de) ? PTR_ERR(de) : -ENOENT;
1061                 CERROR("destroying non-existent object "LPU64" %s: rc %d\n",
1062                        oa->o_id, idname, rc);
1063                 GOTO(out_dput, rc);
1064         }
1065         /* Stripe count is 1 here since this is some MDS specific stuff
1066            that is unlinked, not spanned across multiple OSTs */
1067         handle = fsfilt_start_log(obd, mds->mds_objects_dir->d_inode,
1068                                   FSFILT_OP_UNLINK, oti, 1);
1069
1070         if (IS_ERR(handle))
1071                 GOTO(out_dput, rc = PTR_ERR(handle));
1072         
1073         rc = vfs_unlink(mds->mds_objects_dir->d_inode, de);
1074         if (rc) 
1075                 CERROR("error destroying object "LPU64":%u: rc %d\n",
1076                        oa->o_id, oa->o_generation, rc);
1077         
1078         err = fsfilt_commit(obd, mds->mds_sb, mds->mds_objects_dir->d_inode, 
1079                             handle, exp->exp_sync);
1080         if (err && !rc)
1081                 rc = err;
1082 out_dput:
1083         if (de != NULL)
1084                 l_dput(de);
1085         up(&parent_inode->i_sem);
1086         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
1087         RETURN(rc);
1088 }