Whamcloud - gitweb
b=3869,1742
[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 <portals/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 #define MDS_MAX_CLIENT_WORDS (MDS_MAX_CLIENTS / sizeof(unsigned long))
50
51 #define LAST_RCVD "last_rcvd"
52 #define LOV_OBJID "lov_objid"
53
54 /* Add client data to the MDS.  We use a bitmap to locate a free space
55  * in the last_rcvd file if cl_off is -1 (i.e. a new client).
56  * Otherwise, we have just read the data from the last_rcvd file and
57  * we know its offset.
58  */
59 int mds_client_add(struct obd_device *obd, struct mds_obd *mds,
60                    struct mds_export_data *med, int cl_idx)
61 {
62         unsigned long *bitmap = mds->mds_client_bitmap;
63         int new_client = (cl_idx == -1);
64         ENTRY;
65
66         LASSERT(bitmap != NULL);
67
68         /* XXX if mcd_uuid were a real obd_uuid, I could use obd_uuid_equals */
69         if (!strcmp(med->med_mcd->mcd_uuid, obd->obd_uuid.uuid))
70                 RETURN(0);
71
72         /* the bitmap operations can handle cl_idx > sizeof(long) * 8, so
73          * there's no need for extra complication here
74          */
75         if (new_client) {
76                 cl_idx = find_first_zero_bit(bitmap, MDS_MAX_CLIENTS);
77         repeat:
78                 if (cl_idx >= MDS_MAX_CLIENTS) {
79                         CERROR("no room for clients - fix MDS_MAX_CLIENTS\n");
80                         return -ENOMEM;
81                 }
82                 if (test_and_set_bit(cl_idx, bitmap)) {
83                         cl_idx = find_next_zero_bit(bitmap, MDS_MAX_CLIENTS,
84                                                     cl_idx);
85                         goto repeat;
86                 }
87         } else {
88                 if (test_and_set_bit(cl_idx, bitmap)) {
89                         CERROR("MDS client %d: bit already set in bitmap!!\n",
90                                cl_idx);
91                         LBUG();
92                 }
93         }
94
95         CDEBUG(D_INFO, "client at idx %d with UUID '%s' added\n",
96                cl_idx, med->med_mcd->mcd_uuid);
97
98         med->med_idx = cl_idx;
99         med->med_off = le32_to_cpu(mds->mds_server_data->msd_client_start) +
100                 (cl_idx * le16_to_cpu(mds->mds_server_data->msd_client_size));
101
102         if (new_client) {
103                 struct lvfs_run_ctxt saved;
104                 loff_t off = med->med_off;
105                 struct file *file = mds->mds_rcvd_filp;
106                 int rc;
107
108                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
109                 rc = fsfilt_write_record(obd, file, med->med_mcd,
110                                          sizeof(*med->med_mcd), &off, 1);
111                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
112
113                 if (rc)
114                         return rc;
115                 CDEBUG(D_INFO, "wrote client mcd at idx %u off %llu (len %u)\n",
116                        med->med_idx, med->med_off,
117                        (unsigned int)sizeof(*med->med_mcd));
118         }
119         return 0;
120 }
121
122 int mds_client_free(struct obd_export *exp, int clear_client)
123 {
124         struct mds_export_data *med = &exp->exp_mds_data;
125         struct mds_obd *mds = &exp->exp_obd->u.mds;
126         struct obd_device *obd = exp->exp_obd;
127         struct mds_client_data zero_mcd;
128         struct lvfs_run_ctxt saved;
129         int rc;
130         unsigned long *bitmap = mds->mds_client_bitmap;
131
132         if (!med->med_mcd)
133                 RETURN(0);
134
135         /* XXX if mcd_uuid were a real obd_uuid, I could use obd_uuid_equals */
136         if (!strcmp(med->med_mcd->mcd_uuid, obd->obd_uuid.uuid))
137                 GOTO(free_and_out, 0);
138
139         CDEBUG(D_INFO, "freeing client at idx %u (%lld)with UUID '%s'\n",
140                med->med_idx, med->med_off, med->med_mcd->mcd_uuid);
141
142         LASSERT(bitmap);
143
144         /* Clear the bit _after_ zeroing out the client so we don't
145            race with mds_client_add and zero out new clients.*/
146         if (!test_bit(med->med_idx, bitmap)) {
147                 CERROR("MDS client %u: bit already clear in bitmap!!\n",
148                        med->med_idx);
149                 LBUG();
150         }
151
152         if (clear_client) {
153                 memset(&zero_mcd, 0, sizeof zero_mcd);
154                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
155                 rc = fsfilt_write_record(obd, mds->mds_rcvd_filp, &zero_mcd,
156                                          sizeof(zero_mcd), &med->med_off, 1);
157                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
158
159                 CDEBUG(rc == 0 ? D_INFO : D_ERROR,
160                        "zeroing out client %s idx %u in %s rc %d\n",
161                        med->med_mcd->mcd_uuid, med->med_idx, LAST_RCVD, rc);
162         }
163
164         if (!test_and_clear_bit(med->med_idx, bitmap)) {
165                 CERROR("MDS client %u: bit already clear in bitmap!!\n",
166                        med->med_idx);
167                 LBUG();
168         }
169
170  free_and_out:
171         OBD_FREE(med->med_mcd, sizeof(*med->med_mcd));
172
173         return 0;
174 }
175
176 static int mds_server_free_data(struct mds_obd *mds)
177 {
178         OBD_FREE(mds->mds_client_bitmap,
179                  MDS_MAX_CLIENT_WORDS * sizeof(unsigned long));
180         OBD_FREE(mds->mds_server_data, sizeof(*mds->mds_server_data));
181         mds->mds_server_data = NULL;
182
183         return 0;
184 }
185
186 static int mds_read_last_rcvd(struct obd_device *obd, struct file *file)
187 {
188         struct mds_obd *mds = &obd->u.mds;
189         struct mds_server_data *msd;
190         struct mds_client_data *mcd = NULL;
191         loff_t off = 0;
192         unsigned long last_rcvd_size = file->f_dentry->d_inode->i_size;
193         __u64 mount_count;
194         int cl_idx, rc = 0;
195         ENTRY;
196
197         /* ensure padding in the struct is the correct size */
198         LASSERT(offsetof(struct mds_server_data, msd_padding) +
199                 sizeof(msd->msd_padding) == MDS_LR_SERVER_SIZE);
200         LASSERT(offsetof(struct mds_client_data, mcd_padding) +
201                 sizeof(mcd->mcd_padding) == MDS_LR_CLIENT_SIZE);
202
203         OBD_ALLOC_WAIT(msd, sizeof(*msd));
204         if (!msd)
205                 RETURN(-ENOMEM);
206
207         OBD_ALLOC_WAIT(mds->mds_client_bitmap,
208                   MDS_MAX_CLIENT_WORDS * sizeof(unsigned long));
209         if (!mds->mds_client_bitmap) {
210                 OBD_FREE(msd, sizeof(*msd));
211                 RETURN(-ENOMEM);
212         }
213
214         mds->mds_server_data = msd;
215
216         if (last_rcvd_size == 0) {
217                 CWARN("%s: initializing new %s\n", obd->obd_name, LAST_RCVD);
218
219                 memcpy(msd->msd_uuid, obd->obd_uuid.uuid,sizeof(msd->msd_uuid));
220                 msd->msd_last_transno = 0;
221                 mount_count = msd->msd_mount_count = 0;
222                 msd->msd_server_size = cpu_to_le32(MDS_LR_SERVER_SIZE);
223                 msd->msd_client_start = cpu_to_le32(MDS_LR_CLIENT_START);
224                 msd->msd_client_size = cpu_to_le16(MDS_LR_CLIENT_SIZE);
225                 msd->msd_feature_rocompat = cpu_to_le32(MDS_ROCOMPAT_LOVOBJID);
226         } else {
227                 rc = fsfilt_read_record(obd, file, msd, sizeof(*msd), &off);
228                 if (rc) {
229                         CERROR("error reading MDS %s: rc = %d\n", LAST_RCVD, rc);
230                         GOTO(err_msd, rc);
231                 }
232                 if (strcmp(msd->msd_uuid, obd->obd_uuid.uuid) != 0) {
233                         CERROR("OBD UUID %s does not match last_rcvd UUID %s\n",
234                                obd->obd_uuid.uuid, msd->msd_uuid);
235                         GOTO(err_msd, rc = -EINVAL);
236                 }
237                 mount_count = le64_to_cpu(msd->msd_mount_count);
238         }
239         if (msd->msd_feature_incompat & ~cpu_to_le32(MDS_INCOMPAT_SUPP)) {
240                 CERROR("unsupported incompat feature %x\n",
241                        le32_to_cpu(msd->msd_feature_incompat) &
242                        ~MDS_INCOMPAT_SUPP);
243                 GOTO(err_msd, rc = -EINVAL);
244         }
245         /* XXX updating existing b_devel fs only, can be removed in future */
246         msd->msd_feature_rocompat = cpu_to_le32(MDS_ROCOMPAT_LOVOBJID);
247         if (msd->msd_feature_rocompat & ~cpu_to_le32(MDS_ROCOMPAT_SUPP)) {
248                 CERROR("unsupported read-only feature %x\n",
249                        le32_to_cpu(msd->msd_feature_rocompat) &
250                        ~MDS_ROCOMPAT_SUPP);
251                 /* Do something like remount filesystem read-only */
252                 GOTO(err_msd, rc = -EINVAL);
253         }
254
255         mds->mds_last_transno = le64_to_cpu(msd->msd_last_transno);
256
257         CDEBUG(D_INODE, "%s: server last_transno: "LPU64"\n",
258                obd->obd_name, mds->mds_last_transno);
259         CDEBUG(D_INODE, "%s: server mount_count: "LPU64"\n",
260                obd->obd_name, mount_count + 1);
261         CDEBUG(D_INODE, "%s: server data size: %u\n",
262                obd->obd_name, le32_to_cpu(msd->msd_server_size));
263         CDEBUG(D_INODE, "%s: per-client data start: %u\n",
264                obd->obd_name, le32_to_cpu(msd->msd_client_start));
265         CDEBUG(D_INODE, "%s: per-client data size: %u\n",
266                obd->obd_name, le32_to_cpu(msd->msd_client_size));
267         CDEBUG(D_INODE, "%s: last_rcvd size: %lu\n",
268                obd->obd_name, last_rcvd_size);
269         CDEBUG(D_INODE, "%s: last_rcvd clients: %lu\n", obd->obd_name,
270                last_rcvd_size <= le32_to_cpu(msd->msd_client_start) ? 0 :
271                (last_rcvd_size - le32_to_cpu(msd->msd_client_start)) /
272                 le16_to_cpu(msd->msd_client_size));
273
274         /* When we do a clean MDS shutdown, we save the last_transno into
275          * the header.  If we find clients with higher last_transno values
276          * then those clients may need recovery done. */
277         for (cl_idx = 0, off = le32_to_cpu(msd->msd_client_start);
278              off < last_rcvd_size; cl_idx++) {
279                 __u64 last_transno;
280                 struct obd_export *exp;
281                 struct mds_export_data *med;
282
283                 if (!mcd) {
284                         OBD_ALLOC_WAIT(mcd, sizeof(*mcd));
285                         if (!mcd)
286                                 GOTO(err_client, rc = -ENOMEM);
287                 }
288
289                 /* Don't assume off is incremented properly by
290                  * fsfilt_read_record(), in case sizeof(*mcd)
291                  * isn't the same as msd->msd_client_size.  */
292                 off = le32_to_cpu(msd->msd_client_start) +
293                         cl_idx * le16_to_cpu(msd->msd_client_size);
294                 rc = fsfilt_read_record(obd, file, mcd, sizeof(*mcd), &off);
295                 if (rc) {
296                         CERROR("error reading MDS %s idx %d, off %llu: rc %d\n",
297                                LAST_RCVD, cl_idx, off, rc);
298                         break; /* read error shouldn't cause startup to fail */
299                 }
300
301                 if (mcd->mcd_uuid[0] == '\0') {
302                         CDEBUG(D_INFO, "skipping zeroed client at offset %d\n",
303                                cl_idx);
304                         continue;
305                 }
306
307                 last_transno = le64_to_cpu(mcd->mcd_last_transno);
308
309                 /* These exports are cleaned up by mds_disconnect(), so they
310                  * need to be set up like real exports as mds_connect() does.
311                  */
312                 CDEBUG(D_HA, "RCVRNG CLIENT uuid: %s idx: %d lr: "LPU64
313                        " srv lr: "LPU64"\n", mcd->mcd_uuid, cl_idx,
314                        last_transno, le64_to_cpu(msd->msd_last_transno));
315
316                 exp = class_new_export(obd);
317                 if (exp == NULL)
318                         GOTO(err_client, rc = -ENOMEM);
319
320                 memcpy(&exp->exp_client_uuid.uuid, mcd->mcd_uuid,
321                        sizeof exp->exp_client_uuid.uuid);
322                 med = &exp->exp_mds_data;
323                 med->med_mcd = mcd;
324                 mds_client_add(obd, mds, med, cl_idx);
325                 /* create helper if export init gets more complex */
326                 INIT_LIST_HEAD(&med->med_open_head);
327                 spin_lock_init(&med->med_open_lock);
328
329                 mcd = NULL;
330                 exp->exp_replay_needed = 1;
331                 obd->obd_recoverable_clients++;
332                 obd->obd_max_recoverable_clients++;
333                 class_export_put(exp);
334
335                 CDEBUG(D_OTHER, "client at idx %d has last_transno = "LPU64"\n",
336                        cl_idx, last_transno);
337
338                 if (last_transno > mds->mds_last_transno)
339                        mds->mds_last_transno = last_transno;
340         }
341
342         obd->obd_last_committed = mds->mds_last_transno;
343         if (obd->obd_recoverable_clients) {
344                 CWARN("RECOVERY: service %s, %d recoverable clients, "
345                       "last_transno "LPU64"\n", obd->obd_name,
346                       obd->obd_recoverable_clients, mds->mds_last_transno);
347                 obd->obd_next_recovery_transno = obd->obd_last_committed + 1;
348                 obd->obd_recovering = 1;
349         }
350
351         if (mcd)
352                 OBD_FREE(mcd, sizeof(*mcd));
353         
354         mds->mds_mount_count = mount_count + 1;
355         msd->msd_mount_count = cpu_to_le64(mds->mds_mount_count);
356
357         /* save it, so mount count and last_transno is current */
358         rc = mds_update_server_data(obd, 1);
359
360         RETURN(rc);
361
362 err_client:
363         class_disconnect_exports(obd, 0);
364 err_msd:
365         mds_server_free_data(mds);
366         RETURN(rc);
367 }
368
369 static int  mds_fs_post_setup(struct obd_device *obd)
370 {
371         struct mds_obd *mds = &obd->u.mds;
372         struct dentry *de = mds_fid2dentry(mds, &mds->mds_rootfid, NULL);
373         int    rc = 0;
374        
375         rc = fsfilt_post_setup(obd);
376         if (rc)
377                 GOTO(out, rc);
378  
379         fsfilt_set_fs_flags(obd, de->d_inode, 
380                               SM_DO_REC | SM_DO_COW);
381         fsfilt_set_fs_flags(obd, mds->mds_pending_dir->d_inode, 
382                               SM_DO_REC | SM_DO_COW);
383         fsfilt_set_mds_flags(obd, mds->mds_sb);
384 out:
385         l_dput(de);
386         return rc; 
387 }
388
389 int mds_fs_setup(struct obd_device *obd, struct vfsmount *mnt)
390 {
391         struct mds_obd *mds = &obd->u.mds;
392         struct lvfs_run_ctxt saved;
393         struct dentry *dentry;
394         struct file *file;
395         int rc;
396         ENTRY;
397
398         rc = cleanup_group_info();
399         if (rc)
400                 RETURN(rc);
401
402         mds->mds_vfsmnt = mnt;
403         mds->mds_sb = mnt->mnt_root->d_inode->i_sb;
404
405         fsfilt_setup(obd, mds->mds_sb);
406
407         OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
408         obd->obd_lvfs_ctxt.pwdmnt = mnt;
409         obd->obd_lvfs_ctxt.pwd = mnt->mnt_root;
410         obd->obd_lvfs_ctxt.fs = get_ds();
411         obd->obd_lvfs_ctxt.cb_ops = mds_lvfs_ops;
412
413         /* setup the directory tree */
414         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
415         dentry = simple_mkdir(current->fs->pwd, "ROOT", 0755, 0);
416         if (IS_ERR(dentry)) {
417                 rc = PTR_ERR(dentry);
418                 CERROR("cannot create ROOT directory: rc = %d\n", rc);
419                 GOTO(err_pop, rc);
420         }
421
422         mds->mds_rootfid.id = dentry->d_inode->i_ino;
423         mds->mds_rootfid.generation = dentry->d_inode->i_generation;
424         mds->mds_rootfid.f_type = S_IFDIR;
425
426         dput(dentry);
427
428         dentry = lookup_one_len("__iopen__", current->fs->pwd,
429                                 strlen("__iopen__"));
430         if (IS_ERR(dentry)) {
431                 rc = PTR_ERR(dentry);
432                 CERROR("cannot lookup __iopen__ directory: rc = %d\n", rc);
433                 GOTO(err_pop, rc);
434         }
435         if (!dentry->d_inode) {
436                 rc = -ENOENT;
437                 CERROR("__iopen__ directory has no inode? rc = %d\n", rc);
438                 GOTO(err_fid, rc);
439         }
440         mds->mds_fid_de = dentry;
441
442         dentry = simple_mkdir(current->fs->pwd, "PENDING", 0777, 1);
443         if (IS_ERR(dentry)) {
444                 rc = PTR_ERR(dentry);
445                 CERROR("cannot create PENDING directory: rc = %d\n", rc);
446                 GOTO(err_fid, rc);
447         }
448         mds->mds_pending_dir = dentry;
449       
450         dentry = simple_mkdir(current->fs->pwd, "LOGS", 0777, 1);
451         if (IS_ERR(dentry)) {
452                 rc = PTR_ERR(dentry);
453                 CERROR("cannot create LOGS directory: rc = %d\n", rc);
454                 GOTO(err_pending, rc);
455         }
456         mds->mds_logs_dir = dentry;
457
458         dentry = simple_mkdir(current->fs->pwd, "OBJECTS", 0777, 1);
459         if (IS_ERR(dentry)) {
460                 rc = PTR_ERR(dentry);
461                 CERROR("cannot create OBJECTS directory: rc = %d\n", rc);
462                 GOTO(err_logs, rc);
463         }
464         mds->mds_objects_dir = dentry;
465
466         dentry = simple_mkdir(current->fs->pwd, "FIDS", 0777, 1);
467         if (IS_ERR(dentry)) {
468                 rc = PTR_ERR(dentry);
469                 CERROR("cannot create FIDS directory: rc = %d\n", rc);
470                 GOTO(err_fids, rc);
471         }
472         mds->mds_fids_dir = dentry;
473
474         /* open and test the last rcvd file */
475         file = filp_open(LAST_RCVD, O_RDWR | O_CREAT, 0644);
476         if (IS_ERR(file)) {
477                 rc = PTR_ERR(file);
478                 CERROR("cannot open/create %s file: rc = %d\n", LAST_RCVD, rc);
479                 GOTO(err_objects, rc = PTR_ERR(file));
480         }
481         mds->mds_rcvd_filp = file;
482         if (!S_ISREG(file->f_dentry->d_inode->i_mode)) {
483                 CERROR("%s is not a regular file!: mode = %o\n", LAST_RCVD,
484                        file->f_dentry->d_inode->i_mode);
485                 GOTO(err_last_rcvd, rc = -ENOENT);
486         }
487
488         rc = mds_read_last_rcvd(obd, file);
489         if (rc) {
490                 CERROR("cannot read %s: rc = %d\n", LAST_RCVD, rc);
491                 GOTO(err_last_rcvd, rc);
492         }
493
494         /* open and test the lov objd file */
495         file = filp_open(LOV_OBJID, O_RDWR | O_CREAT, 0644);
496         if (IS_ERR(file)) {
497                 rc = PTR_ERR(file);
498                 CERROR("cannot open/create %s file: rc = %d\n", LOV_OBJID, rc);
499                 GOTO(err_client, rc = PTR_ERR(file));
500         }
501         mds->mds_lov_objid_filp = file;
502         if (!S_ISREG(file->f_dentry->d_inode->i_mode)) {
503                 CERROR("%s is not a regular file!: mode = %o\n", LOV_OBJID,
504                        file->f_dentry->d_inode->i_mode);
505                 GOTO(err_lov_objid, rc = -ENOENT);
506         }
507 err_pop:
508         if (!rc) {
509                 rc = mds_fs_post_setup(obd);
510                 if (rc)
511                         CERROR("can not post setup fsfilt\n");        
512         }
513         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
514         return rc;
515
516 err_lov_objid:
517         if (mds->mds_lov_objid_filp && filp_close(mds->mds_lov_objid_filp, 0))
518                 CERROR("can't close %s after error\n", LOV_OBJID);
519 err_client:
520         class_disconnect_exports(obd, 0);
521 err_last_rcvd:
522         if (mds->mds_rcvd_filp && filp_close(mds->mds_rcvd_filp, 0))
523                 CERROR("can't close %s after error\n", LAST_RCVD);
524 err_fids:
525         dput(mds->mds_fids_dir);
526 err_objects:
527         dput(mds->mds_objects_dir);
528 err_logs:
529         dput(mds->mds_logs_dir);
530 err_pending:
531         dput(mds->mds_pending_dir);
532 err_fid:
533         dput(mds->mds_fid_de);
534         goto err_pop;
535 }
536
537 static int  mds_fs_post_cleanup(struct obd_device *obd)
538 {
539         int    rc = 0;
540         rc = fsfilt_post_cleanup(obd);
541         return rc; 
542 }
543
544 int mds_fs_cleanup(struct obd_device *obd, int flags)
545 {
546         struct mds_obd *mds = &obd->u.mds;
547         struct lvfs_run_ctxt saved;
548         int rc = 0;
549
550         if (flags & OBD_OPT_FAILOVER)
551                 CERROR("%s: shutting down for failover; client state will"
552                        " be preserved.\n", obd->obd_name);
553
554         class_disconnect_exports(obd, flags); /* cleans up client info too */
555         mds_server_free_data(mds);
556
557         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
558         if (mds->mds_rcvd_filp) {
559                 rc = filp_close(mds->mds_rcvd_filp, 0);
560                 mds->mds_rcvd_filp = NULL;
561                 if (rc)
562                         CERROR("%s file won't close, rc=%d\n", LAST_RCVD, rc);
563         }
564         if (mds->mds_lov_objid_filp) {
565                 rc = filp_close(mds->mds_lov_objid_filp, 0);
566                 mds->mds_lov_objid_filp = NULL;
567                 if (rc)
568                         CERROR("%s file won't close, rc=%d\n", LOV_OBJID, rc);
569         }
570         if (mds->mds_fids_dir != NULL) {
571                 l_dput(mds->mds_fids_dir);
572                 mds->mds_fids_dir = NULL;
573         }
574         if (mds->mds_objects_dir != NULL) {
575                 l_dput(mds->mds_objects_dir);
576                 mds->mds_objects_dir = NULL;
577         }
578         if (mds->mds_logs_dir) {
579                 l_dput(mds->mds_logs_dir);
580                 mds->mds_logs_dir = NULL;
581         }
582         if (mds->mds_pending_dir) {
583                 l_dput(mds->mds_pending_dir);
584                 mds->mds_pending_dir = NULL;
585         }
586         rc = mds_fs_post_cleanup(obd);
587         
588         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
589         shrink_dcache_parent(mds->mds_fid_de);
590         dput(mds->mds_fid_de);
591
592         return rc;
593 }
594
595 /* Creates an object with the same name as its fid.  Because this is not at all
596  * performance sensitive, it is accomplished by creating a file, checking the
597  * fid, and renaming it. */
598 int mds_obd_create(struct obd_export *exp, struct obdo *oa,
599                    struct lov_stripe_md **ea, struct obd_trans_info *oti)
600 {
601         struct mds_obd *mds = &exp->exp_obd->u.mds;
602         struct inode *parent_inode = mds->mds_objects_dir->d_inode;
603         unsigned int tmpname = ll_insecure_random_int();
604         struct file *filp;
605         struct dentry *new_child;
606         struct lvfs_run_ctxt saved;
607         char fidname[LL_FID_NAMELEN];
608         void *handle;
609         int rc = 0, err, namelen;
610         ENTRY;
611
612         push_ctxt(&saved, &exp->exp_obd->obd_lvfs_ctxt, NULL);
613         
614         sprintf(fidname, "OBJECTS/%u", tmpname);
615         filp = filp_open(fidname, O_CREAT | O_EXCL, 0644);
616         if (IS_ERR(filp)) {
617                 rc = PTR_ERR(filp);
618                 if (rc == -EEXIST) {
619                         CERROR("impossible object name collision %u\n",
620                                tmpname);
621                         LBUG();
622                 }
623                 CERROR("error creating tmp object %u: rc %d\n", tmpname, rc);
624                 GOTO(out_pop, rc);
625         }
626
627         LASSERT(mds->mds_objects_dir == filp->f_dentry->d_parent);
628
629         oa->o_id = filp->f_dentry->d_inode->i_ino;
630         oa->o_generation = filp->f_dentry->d_inode->i_generation;
631         namelen = ll_fid2str(fidname, oa->o_id, oa->o_generation);
632
633         down(&parent_inode->i_sem);
634         new_child = lookup_one_len(fidname, mds->mds_objects_dir, namelen);
635
636         if (IS_ERR(new_child)) {
637                 CERROR("getting neg dentry for obj rename: %d\n", rc);
638                 GOTO(out_close, rc = PTR_ERR(new_child));
639         }
640         if (new_child->d_inode != NULL) {
641                 CERROR("impossible non-negative obj dentry " LPU64":%u!\n",
642                        oa->o_id, oa->o_generation);
643                 LBUG();
644         }
645
646         handle = fsfilt_start(exp->exp_obd, mds->mds_objects_dir->d_inode,
647                               FSFILT_OP_RENAME, NULL);
648         if (IS_ERR(handle))
649                 GOTO(out_dput, rc = PTR_ERR(handle));
650
651         lock_kernel();
652         rc = vfs_rename(mds->mds_objects_dir->d_inode, filp->f_dentry,
653                         mds->mds_objects_dir->d_inode, new_child);
654         unlock_kernel();
655         if (rc)
656                 CERROR("error renaming new object "LPU64":%u: rc %d\n",
657                        oa->o_id, oa->o_generation, rc);
658
659         err = fsfilt_commit(exp->exp_obd, mds->mds_sb, 
660                             mds->mds_objects_dir->d_inode, handle, 0);
661         if (!err) {
662                 oa->o_gr = FILTER_GROUP_FIRST_MDS + mds->mds_num;
663                 oa->o_valid |= OBD_MD_FLID | OBD_MD_FLGENER | OBD_MD_FLGROUP;
664         }
665         else if (!rc)
666                 rc = err;
667 out_dput:
668         dput(new_child);
669 out_close:
670         up(&parent_inode->i_sem);
671         err = filp_close(filp, 0);
672         if (err) {
673                 CERROR("closing tmpfile %u: rc %d\n", tmpname, rc);
674                 if (!rc)
675                         rc = err;
676         }
677 out_pop:
678         pop_ctxt(&saved, &exp->exp_obd->obd_lvfs_ctxt, NULL);
679         RETURN(rc);
680 }
681
682 int mds_obd_destroy(struct obd_export *exp, struct obdo *oa,
683                     struct lov_stripe_md *ea, struct obd_trans_info *oti)
684 {
685         struct mds_obd *mds = &exp->exp_obd->u.mds;
686         struct inode *parent_inode = mds->mds_objects_dir->d_inode;
687         struct obd_device *obd = exp->exp_obd;
688         struct lvfs_run_ctxt saved;
689         char fidname[LL_FID_NAMELEN];
690         struct dentry *de;
691         void *handle;
692         int err, namelen, rc = 0;
693         ENTRY;
694
695         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
696
697         namelen = ll_fid2str(fidname, oa->o_id, oa->o_generation);
698
699         down(&parent_inode->i_sem);
700         de = lookup_one_len(fidname, mds->mds_objects_dir, namelen);
701         if (de == NULL || de->d_inode == NULL) {
702                 CERROR("destroying non-existent object "LPU64" %s\n", 
703                        oa->o_id, fidname);
704                 GOTO(out_dput, rc = IS_ERR(de) ? PTR_ERR(de) : -ENOENT);
705         }
706
707         /* Stripe count is 1 here since this is some MDS specific stuff
708            that is unlinked, not spanned across multiple OSTs */
709         handle = fsfilt_start_log(obd, mds->mds_objects_dir->d_inode,
710                                   FSFILT_OP_UNLINK, oti, 1);
711
712         if (IS_ERR(handle))
713                 GOTO(out_dput, rc = PTR_ERR(handle));
714         
715         rc = vfs_unlink(mds->mds_objects_dir->d_inode, de);
716         if (rc) 
717                 CERROR("error destroying object "LPU64":%u: rc %d\n",
718                        oa->o_id, oa->o_generation, rc);
719         
720         err = fsfilt_commit(obd, mds->mds_sb, mds->mds_objects_dir->d_inode, 
721                             handle, 0);
722         if (err && !rc)
723                 rc = err;
724 out_dput:
725         if (de != NULL)
726                 l_dput(de);
727         up(&parent_inode->i_sem);
728         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
729         RETURN(rc);
730 }