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