Whamcloud - gitweb
c258b8f61cdeaa2e87c3b20729545ac5538ecc94
[fs/lustre-release.git] / lustre / obdfilter / filter.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/obdfilter/filter.c
37  *
38  * Author: Peter Braam <braam@clusterfs.com>
39  * Author: Andreas Dilger <adilger@clusterfs.com>
40  */
41
42 /*
43  * Invariant: Get O/R i_mutex for lookup, if needed, before any journal ops
44  *            (which need to get journal_lock, may block if journal full).
45  *
46  * Invariant: Call filter_start_transno() before any journal ops to avoid the
47  *            same deadlock problem.  We can (and want) to get rid of the
48  *            transno sem in favour of the dir/inode i_mutex to avoid single
49  *            threaded operation on the OST.
50  */
51
52 #define DEBUG_SUBSYSTEM S_FILTER
53
54 #ifndef AUTOCONF_INCLUDED
55 #include <linux/config.h>
56 #endif
57 #include <linux/module.h>
58 #include <linux/fs.h>
59 #include <linux/dcache.h>
60 #include <linux/init.h>
61 #include <linux/version.h>
62 #include <linux/sched.h>
63 #include <linux/mount.h>
64 #include <linux/buffer_head.h>
65
66 #include <obd_cksum.h>
67 #include <obd_class.h>
68 #include <obd_lov.h>
69 #include <lustre_dlm.h>
70 #include <lustre_fsfilt.h>
71 #include <lprocfs_status.h>
72 #include <lustre_log.h>
73 #include <libcfs/list.h>
74 #include <lustre_disk.h>
75 #include <lustre_quota.h>
76 #include <linux/slab.h>
77 #include <lustre_param.h>
78 #include <lustre/ll_fiemap.h>
79
80 #include "filter_internal.h"
81
82 /* Group 0 is no longer a legal group, to catch uninitialized IDs */
83 #define FILTER_MIN_GROUPS FILTER_GROUP_MDS1_N_BASE
84 static struct lvfs_callback_ops filter_lvfs_ops;
85 cfs_mem_cache_t *ll_fmd_cachep;
86
87 static void filter_commit_cb(struct obd_device *obd, __u64 transno,
88                              void *cb_data, int error)
89 {
90         obd_transno_commit_cb(obd, transno, error);
91 }
92
93 /* Assumes caller has already pushed us into the kernel context. */
94 int filter_finish_transno(struct obd_export *exp, struct obd_trans_info *oti,
95                           int rc, int force_sync)
96 {
97         struct filter_obd *filter = &exp->exp_obd->u.filter;
98         struct filter_export_data *fed = &exp->exp_filter_data;
99         struct lsd_client_data *lcd = fed->fed_lcd;
100         __u64 last_rcvd;
101         loff_t off;
102         int err, log_pri = D_RPCTRACE;
103
104         /* Propagate error code. */
105         if (rc)
106                 RETURN(rc);
107
108         if (!exp->exp_obd->obd_replayable || oti == NULL)
109                 RETURN(rc);
110
111         /* we don't allocate new transnos for replayed requests */
112         if (oti->oti_transno == 0) {
113                 spin_lock(&filter->fo_translock);
114                 last_rcvd = le64_to_cpu(filter->fo_fsd->lsd_last_transno) + 1;
115                 filter->fo_fsd->lsd_last_transno = cpu_to_le64(last_rcvd);
116                 spin_unlock(&filter->fo_translock);
117                 oti->oti_transno = last_rcvd;
118         } else {
119                 spin_lock(&filter->fo_translock);
120                 last_rcvd = oti->oti_transno;
121                 if (last_rcvd > le64_to_cpu(filter->fo_fsd->lsd_last_transno))
122                         filter->fo_fsd->lsd_last_transno =
123                                 cpu_to_le64(last_rcvd);
124                 spin_unlock(&filter->fo_translock);
125         }
126         lcd->lcd_last_transno = cpu_to_le64(last_rcvd);
127
128         /* could get xid from oti, if it's ever needed */
129         lcd->lcd_last_xid = 0;
130
131         off = fed->fed_lr_off;
132         if (off <= 0) {
133                 CERROR("%s: client idx %d is %lld\n", exp->exp_obd->obd_name,
134                        fed->fed_lr_idx, fed->fed_lr_off);
135                 err = -EINVAL;
136         } else {
137                 if (!force_sync)
138                         force_sync = fsfilt_add_journal_cb(exp->exp_obd,
139                                                            last_rcvd,
140                                                            oti->oti_handle,
141                                                            filter_commit_cb,
142                                                            NULL);
143
144                 err = fsfilt_write_record(exp->exp_obd, filter->fo_rcvd_filp,
145                                           lcd, sizeof(*lcd), &off,
146                                           force_sync | exp->exp_need_sync);
147                 if (force_sync)
148                         filter_commit_cb(exp->exp_obd, last_rcvd, NULL, err);
149         }
150         if (err) {
151                 log_pri = D_ERROR;
152                 if (rc == 0)
153                         rc = err;
154         }
155
156         CDEBUG(log_pri, "wrote trans "LPU64" for client %s at #%d: err = %d\n",
157                last_rcvd, lcd->lcd_uuid, fed->fed_lr_idx, err);
158
159         RETURN(rc);
160 }
161
162 void f_dput(struct dentry *dentry)
163 {
164         /* Can't go inside filter_ddelete because it can block */
165         CDEBUG(D_INODE, "putting %s: %p, count = %d\n",
166                dentry->d_name.name, dentry, atomic_read(&dentry->d_count) - 1);
167         LASSERT(atomic_read(&dentry->d_count) > 0);
168
169         dput(dentry);
170 }
171
172 static void init_brw_stats(struct brw_stats *brw_stats)
173 {
174         int i;
175         for (i = 0; i < BRW_LAST; i++)
176                 spin_lock_init(&brw_stats->hist[i].oh_lock);
177 }
178
179 static int lprocfs_init_rw_stats(struct obd_device *obd,
180                                  struct lprocfs_stats **stats)
181 {
182         int num_stats;
183
184         num_stats = (sizeof(*obd->obd_type->typ_dt_ops) / sizeof(void *)) +
185                                                         LPROC_FILTER_LAST - 1;
186         *stats = lprocfs_alloc_stats(num_stats, 0);
187         if (*stats == NULL)
188                 return -ENOMEM;
189
190         lprocfs_init_ops_stats(LPROC_FILTER_LAST, *stats);
191         lprocfs_counter_init(*stats, LPROC_FILTER_READ_BYTES,
192                              LPROCFS_CNTR_AVGMINMAX, "read_bytes", "bytes");
193         lprocfs_counter_init(*stats, LPROC_FILTER_WRITE_BYTES,
194                              LPROCFS_CNTR_AVGMINMAX, "write_bytes", "bytes");
195
196         return(0);
197 }
198
199 /* brw_stats are 2128, ops are 3916, ldlm are 204, so 6248 bytes per client,
200    plus the procfs overhead :( */
201 static int filter_export_stats_init(struct obd_device *obd,
202                                     struct obd_export *exp,
203                                     void *client_nid)
204 {
205         struct filter_export_data *fed = &exp->exp_filter_data;
206         int rc, newnid = 0;
207         ENTRY;
208
209         init_brw_stats(&fed->fed_brw_stats);
210
211         if (obd_uuid_equals(&exp->exp_client_uuid, &obd->obd_uuid))
212                 /* Self-export gets no proc entry */
213                 RETURN(0);
214
215         rc = lprocfs_exp_setup(exp, client_nid, &newnid);
216         if (rc) {
217                 /* Mask error for already created
218                  * /proc entries */
219                 if (rc == -EALREADY)
220                         rc = 0;
221                 RETURN(rc);
222         }
223
224         if (newnid) {
225                 struct nid_stat *tmp = exp->exp_nid_stats;
226                 LASSERT(tmp != NULL);
227
228                 OBD_ALLOC(tmp->nid_brw_stats, sizeof(struct brw_stats));
229                 if (tmp->nid_brw_stats == NULL)
230                         RETURN(-ENOMEM);
231
232                 init_brw_stats(tmp->nid_brw_stats);
233                 rc = lprocfs_seq_create(exp->exp_nid_stats->nid_proc, "brw_stats",
234                                         0644, &filter_per_nid_stats_fops,
235                                         exp->exp_nid_stats);
236                 if (rc)
237                         CWARN("Error adding the brw_stats file\n");
238
239                 rc = lprocfs_init_rw_stats(obd, &exp->exp_nid_stats->nid_stats);
240                 if (rc)
241                         RETURN(rc);
242
243                 rc = lprocfs_register_stats(tmp->nid_proc, "stats",
244                                             tmp->nid_stats);
245                 if (rc)
246                         RETURN(rc);
247                 /* Always add in ldlm_stats */
248                 tmp->nid_ldlm_stats = lprocfs_alloc_stats(LDLM_LAST_OPC -
249                                                           LDLM_FIRST_OPC, 0);
250                 if (tmp->nid_ldlm_stats == NULL)
251                         return -ENOMEM;
252
253                 lprocfs_init_ldlm_stats(tmp->nid_ldlm_stats);
254                 rc = lprocfs_register_stats(tmp->nid_proc, "ldlm_stats",
255                                             tmp->nid_ldlm_stats);
256                 if (rc)
257                         RETURN(rc);
258         }
259
260         RETURN(0);
261 }
262
263 /* Add client data to the FILTER.  We use a bitmap to locate a free space
264  * in the last_rcvd file if cl_idx is -1 (i.e. a new client).
265  * Otherwise, we have just read the data from the last_rcvd file and
266  * we know its offset. */
267 static int filter_client_add(struct obd_device *obd, struct obd_export *exp,
268                              int cl_idx)
269 {
270         struct filter_obd *filter = &obd->u.filter;
271         struct filter_export_data *fed = &exp->exp_filter_data;
272         unsigned long *bitmap = filter->fo_last_rcvd_slots;
273         int new_client = (cl_idx == -1);
274
275         ENTRY;
276
277         LASSERT(bitmap != NULL);
278         LASSERTF(cl_idx > -2, "%d\n", cl_idx);
279
280         /* Self-export */
281         if (strcmp(fed->fed_lcd->lcd_uuid, obd->obd_uuid.uuid) == 0)
282                 RETURN(0);
283
284         /* the bitmap operations can handle cl_idx > sizeof(long) * 8, so
285          * there's no need for extra complication here
286          */
287         if (new_client) {
288                 cl_idx = find_first_zero_bit(bitmap, LR_MAX_CLIENTS);
289         repeat:
290                 if (cl_idx >= LR_MAX_CLIENTS) {
291                         CERROR("no room for %u client - fix LR_MAX_CLIENTS\n",
292                                cl_idx);
293                         RETURN(-EOVERFLOW);
294                 }
295                 if (test_and_set_bit(cl_idx, bitmap)) {
296                         cl_idx = find_next_zero_bit(bitmap, LR_MAX_CLIENTS,
297                                                     cl_idx);
298                         goto repeat;
299                 }
300         } else {
301                 if (test_and_set_bit(cl_idx, bitmap)) {
302                         CERROR("FILTER client %d: bit already set in bitmap!\n",
303                                cl_idx);
304                         LBUG();
305                 }
306         }
307
308         fed->fed_lr_idx = cl_idx;
309         fed->fed_lr_off = le32_to_cpu(filter->fo_fsd->lsd_client_start) +
310                 cl_idx * le16_to_cpu(filter->fo_fsd->lsd_client_size);
311         LASSERTF(fed->fed_lr_off > 0, "fed_lr_off = %llu\n", fed->fed_lr_off);
312
313         CDEBUG(D_INFO, "client at index %d (%llu) with UUID '%s' added\n",
314                fed->fed_lr_idx, fed->fed_lr_off, fed->fed_lcd->lcd_uuid);
315
316         if (new_client) {
317                 struct lvfs_run_ctxt saved;
318                 loff_t off = fed->fed_lr_off;
319                 int rc;
320                 void *handle;
321
322                 CDEBUG(D_INFO, "writing client lcd at idx %u (%llu) (len %u)\n",
323                        fed->fed_lr_idx,off,(unsigned int)sizeof(*fed->fed_lcd));
324
325                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
326                 /* Transaction needed to fix bug 1403 */
327                 handle = fsfilt_start(obd,
328                                       filter->fo_rcvd_filp->f_dentry->d_inode,
329                                       FSFILT_OP_SETATTR, NULL);
330                 if (IS_ERR(handle)) {
331                         rc = PTR_ERR(handle);
332                         CERROR("unable to start transaction: rc %d\n", rc);
333                 } else {
334                         rc = fsfilt_add_journal_cb(obd, 0, handle,
335                                                    target_client_add_cb, exp);
336                         if (rc == 0) {
337                                 spin_lock(&exp->exp_lock);
338                                 exp->exp_need_sync = 1;
339                                 spin_unlock(&exp->exp_lock);
340                         }
341                         rc = fsfilt_write_record(obd, filter->fo_rcvd_filp,
342                                                  fed->fed_lcd,
343                                                  sizeof(*fed->fed_lcd),
344                                                  &off, rc /* sync if no cb */);
345                         fsfilt_commit(obd,
346                                       filter->fo_rcvd_filp->f_dentry->d_inode,
347                                       handle, 0);
348                 }
349                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
350
351                 if (rc) {
352                         CERROR("error writing %s client idx %u: rc %d\n",
353                                LAST_RCVD, fed->fed_lr_idx, rc);
354                         RETURN(rc);
355                 }
356         }
357         RETURN(0);
358 }
359
360 static int filter_client_free(struct obd_export *exp)
361 {
362         struct filter_export_data *fed = &exp->exp_filter_data;
363         struct filter_obd *filter = &exp->exp_obd->u.filter;
364         struct obd_device *obd = exp->exp_obd;
365         struct lsd_client_data zero_lcd;
366         struct lvfs_run_ctxt saved;
367         int rc;
368         loff_t off;
369         ENTRY;
370
371         if (fed->fed_lcd == NULL)
372                 RETURN(0);
373
374         /* XXX if lcd_uuid were a real obd_uuid, I could use obd_uuid_equals */
375         if (strcmp(fed->fed_lcd->lcd_uuid, obd->obd_uuid.uuid ) == 0)
376                 GOTO(free, 0);
377
378         CDEBUG(D_INFO, "freeing client at idx %u, offset %lld with UUID '%s'\n",
379                fed->fed_lr_idx, fed->fed_lr_off, fed->fed_lcd->lcd_uuid);
380
381         LASSERT(filter->fo_last_rcvd_slots != NULL);
382
383         off = fed->fed_lr_off;
384
385         /* Don't clear fed_lr_idx here as it is likely also unset.  At worst
386          * we leak a client slot that will be cleaned on the next recovery. */
387         if (off <= 0) {
388                 CERROR("%s: client idx %d has med_off %lld\n",
389                        obd->obd_name, fed->fed_lr_idx, off);
390                 GOTO(free, rc = -EINVAL);
391         }
392
393         /* Clear the bit _after_ zeroing out the client so we don't
394            race with filter_client_add and zero out new clients.*/
395         if (!test_bit(fed->fed_lr_idx, filter->fo_last_rcvd_slots)) {
396                 CERROR("FILTER client %u: bit already clear in bitmap!!\n",
397                        fed->fed_lr_idx);
398                 LBUG();
399         }
400
401         if (!(exp->exp_flags & OBD_OPT_FAILOVER)) {
402                 memset(&zero_lcd, 0, sizeof zero_lcd);
403                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
404                 rc = fsfilt_write_record(obd, filter->fo_rcvd_filp, &zero_lcd,
405                                          sizeof(zero_lcd), &off,
406                                          (!exp->exp_libclient ||
407                                           exp->exp_need_sync));
408                 if (rc == 0)
409                         /* update server's transno */
410                         filter_update_server_data(obd, filter->fo_rcvd_filp,
411                                                   filter->fo_fsd,
412                                                   !exp->exp_libclient);
413                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
414
415                 CDEBUG(rc == 0 ? D_INFO : D_ERROR,
416                        "zeroing out client %s at idx %u (%llu) in %s rc %d\n",
417                        fed->fed_lcd->lcd_uuid, fed->fed_lr_idx, fed->fed_lr_off,
418                        LAST_RCVD, rc);
419         }
420
421         if (!test_and_clear_bit(fed->fed_lr_idx, filter->fo_last_rcvd_slots)) {
422                 CERROR("FILTER client %u: bit already clear in bitmap!!\n",
423                        fed->fed_lr_idx);
424                 LBUG();
425         }
426
427         EXIT;
428 free:
429         OBD_FREE_PTR(fed->fed_lcd);
430         fed->fed_lcd = NULL;
431
432         return 0;
433 }
434
435 /* drop fmd reference, free it if last ref. must be called with fed_lock held.*/
436 static inline void filter_fmd_put_nolock(struct filter_export_data *fed,
437                                          struct filter_mod_data *fmd)
438 {
439         LASSERT_SPIN_LOCKED(&fed->fed_lock);
440         if (--fmd->fmd_refcount == 0) {
441                 /* XXX when we have persistent reservations and the handle
442                  * is stored herein we need to drop it here. */
443                 fed->fed_mod_count--;
444                 list_del(&fmd->fmd_list);
445                 OBD_SLAB_FREE(fmd, ll_fmd_cachep, sizeof(*fmd));
446         }
447 }
448
449 /* drop fmd reference, free it if last ref */
450 void filter_fmd_put(struct obd_export *exp, struct filter_mod_data *fmd)
451 {
452         struct filter_export_data *fed;
453
454         if (fmd == NULL)
455                 return;
456
457         fed = &exp->exp_filter_data;
458         spin_lock(&fed->fed_lock);
459         filter_fmd_put_nolock(fed, fmd); /* caller reference */
460         spin_unlock(&fed->fed_lock);
461 }
462
463 /* expire entries from the end of the list if there are too many
464  * or they are too old */
465 static void filter_fmd_expire_nolock(struct filter_obd *filter,
466                                      struct filter_export_data *fed,
467                                      struct filter_mod_data *keep)
468 {
469         struct filter_mod_data *fmd, *tmp;
470
471         list_for_each_entry_safe(fmd, tmp, &fed->fed_mod_list, fmd_list) {
472                 if (fmd == keep)
473                         break;
474
475                 if (time_before(jiffies, fmd->fmd_expire) &&
476                     fed->fed_mod_count < filter->fo_fmd_max_num)
477                         break;
478
479                 list_del_init(&fmd->fmd_list);
480                 filter_fmd_put_nolock(fed, fmd); /* list reference */
481         }
482 }
483
484 void filter_fmd_expire(struct obd_export *exp)
485 {
486         spin_lock(&exp->exp_filter_data.fed_lock);
487         filter_fmd_expire_nolock(&exp->exp_obd->u.filter,
488                                  &exp->exp_filter_data, NULL);
489         spin_unlock(&exp->exp_filter_data.fed_lock);
490 }
491
492 /* find specified objid, group in export fmd list.
493  * caller must hold fed_lock and take fmd reference itself */
494 static struct filter_mod_data *filter_fmd_find_nolock(struct filter_obd *filter,
495                                                 struct filter_export_data *fed,
496                                                 obd_id objid, obd_gr group)
497 {
498         struct filter_mod_data *found = NULL, *fmd;
499
500         LASSERT_SPIN_LOCKED(&fed->fed_lock);
501
502         list_for_each_entry_reverse(fmd, &fed->fed_mod_list, fmd_list) {
503                 if (fmd->fmd_id == objid && fmd->fmd_gr == group) {
504                         found = fmd;
505                         list_del(&fmd->fmd_list);
506                         list_add_tail(&fmd->fmd_list, &fed->fed_mod_list);
507                         fmd->fmd_expire = jiffies + filter->fo_fmd_max_age;
508                         break;
509                 }
510         }
511
512         filter_fmd_expire_nolock(filter, fed, found);
513
514         return found;
515 }
516
517 /* Find fmd based on objid and group, or return NULL if not found. */
518 struct filter_mod_data *filter_fmd_find(struct obd_export *exp,
519                                         obd_id objid, obd_gr group)
520 {
521         struct filter_mod_data *fmd;
522
523         spin_lock(&exp->exp_filter_data.fed_lock);
524         fmd = filter_fmd_find_nolock(&exp->exp_obd->u.filter,
525                                      &exp->exp_filter_data, objid, group);
526         if (fmd)
527                 fmd->fmd_refcount++;    /* caller reference */
528         spin_unlock(&exp->exp_filter_data.fed_lock);
529
530         return fmd;
531 }
532
533 /* Find fmd based on objid and group, or create a new one if none is found.
534  * It is possible for this function to return NULL under memory pressure,
535  * or if objid = 0 is passed (which will only cause old entries to expire).
536  * Currently this is not fatal because any fmd state is transient and
537  * may also be freed when it gets sufficiently old. */
538 struct filter_mod_data *filter_fmd_get(struct obd_export *exp,
539                                        obd_id objid, obd_gr group)
540 {
541         struct filter_export_data *fed = &exp->exp_filter_data;
542         struct filter_mod_data *found = NULL, *fmd_new = NULL;
543
544         OBD_SLAB_ALLOC(fmd_new, ll_fmd_cachep, CFS_ALLOC_IO, sizeof(*fmd_new));
545
546         spin_lock(&fed->fed_lock);
547         found = filter_fmd_find_nolock(&exp->exp_obd->u.filter,fed,objid,group);
548         if (fmd_new) {
549                 if (found == NULL) {
550                         list_add_tail(&fmd_new->fmd_list, &fed->fed_mod_list);
551                         fmd_new->fmd_id = objid;
552                         fmd_new->fmd_gr = group;
553                         fmd_new->fmd_refcount++;   /* list reference */
554                         found = fmd_new;
555                         fed->fed_mod_count++;
556                 } else {
557                         OBD_SLAB_FREE(fmd_new, ll_fmd_cachep, sizeof(*fmd_new));
558                 }
559         }
560         if (found) {
561                 found->fmd_refcount++;          /* caller reference */
562                 found->fmd_expire = jiffies +
563                         exp->exp_obd->u.filter.fo_fmd_max_age;
564         }
565
566         spin_unlock(&fed->fed_lock);
567
568         return found;
569 }
570
571 #ifdef DO_FMD_DROP
572 /* drop fmd list reference so it will disappear when last reference is put.
573  * This isn't so critical because it would in fact only affect the one client
574  * that is doing the unlink and at worst we have an stale entry referencing
575  * an object that should never be used again. */
576 static void filter_fmd_drop(struct obd_export *exp, obd_id objid, obd_gr group)
577 {
578         struct filter_mod_data *found = NULL;
579
580         spin_lock(&exp->exp_filter_data.fed_lock);
581         found = filter_fmd_find_nolock(&exp->exp_filter_data, objid, group);
582         if (found) {
583                 list_del_init(&found->fmd_list);
584                 filter_fmd_put_nolock(&exp->exp_filter_data, found);
585         }
586         spin_unlock(&exp->exp_filter_data.fed_lock);
587 }
588 #else
589 #define filter_fmd_drop(exp, objid, group)
590 #endif
591
592 /* remove all entries from fmd list */
593 static void filter_fmd_cleanup(struct obd_export *exp)
594 {
595         struct filter_export_data *fed = &exp->exp_filter_data;
596         struct filter_mod_data *fmd = NULL, *tmp;
597
598         spin_lock(&fed->fed_lock);
599         list_for_each_entry_safe(fmd, tmp, &fed->fed_mod_list, fmd_list) {
600                 list_del_init(&fmd->fmd_list);
601                 filter_fmd_put_nolock(fed, fmd);
602         }
603         spin_unlock(&fed->fed_lock);
604 }
605
606 static int filter_init_export(struct obd_export *exp)
607 {
608         spin_lock_init(&exp->exp_filter_data.fed_lock);
609         CFS_INIT_LIST_HEAD(&exp->exp_filter_data.fed_mod_list);
610
611         spin_lock(&exp->exp_lock);
612         exp->exp_connecting = 1;
613         spin_unlock(&exp->exp_lock);
614
615         return ldlm_init_export(exp);
616 }
617
618 static int filter_free_server_data(struct filter_obd *filter)
619 {
620         OBD_FREE(filter->fo_fsd, sizeof(*filter->fo_fsd));
621         filter->fo_fsd = NULL;
622         OBD_FREE(filter->fo_last_rcvd_slots, LR_MAX_CLIENTS / 8);
623         filter->fo_last_rcvd_slots = NULL;
624         return 0;
625 }
626
627 /* assumes caller is already in kernel ctxt */
628 int filter_update_server_data(struct obd_device *obd, struct file *filp,
629                               struct lr_server_data *fsd, int force_sync)
630 {
631         loff_t off = 0;
632         int rc;
633         ENTRY;
634
635         CDEBUG(D_INODE, "server uuid      : %s\n", fsd->lsd_uuid);
636         CDEBUG(D_INODE, "server last_rcvd : "LPU64"\n",
637                le64_to_cpu(fsd->lsd_last_transno));
638         CDEBUG(D_INODE, "server last_mount: "LPU64"\n",
639                le64_to_cpu(fsd->lsd_mount_count));
640
641         fsd->lsd_compat14 = fsd->lsd_last_transno;
642         rc = fsfilt_write_record(obd, filp, fsd, sizeof(*fsd), &off, force_sync);
643         if (rc)
644                 CERROR("error writing lr_server_data: rc = %d\n", rc);
645
646         RETURN(rc);
647 }
648
649 int filter_update_last_objid(struct obd_device *obd, obd_gr group,
650                              int force_sync)
651 {
652         struct filter_obd *filter = &obd->u.filter;
653         __u64 tmp;
654         loff_t off = 0;
655         int rc;
656         ENTRY;
657
658         if (filter->fo_last_objid_files[group] == NULL) {
659                 CERROR("Object group "LPU64" not fully setup; not updating "
660                        "last_objid\n", group);
661                 RETURN(-EINVAL);
662         }
663
664         CDEBUG(D_INODE, "%s: server last_objid for group "LPU64": "LPU64"\n",
665                obd->obd_name, group, filter->fo_last_objids[group]);
666
667         tmp = cpu_to_le64(filter->fo_last_objids[group]);
668         rc = fsfilt_write_record(obd, filter->fo_last_objid_files[group],
669                                  &tmp, sizeof(tmp), &off, force_sync);
670         if (rc)
671                 CERROR("error writing group "LPU64" last objid: rc = %d\n",
672                        group, rc);
673         RETURN(rc);
674 }
675 extern int ost_handle(struct ptlrpc_request *req);
676 /* assumes caller has already in kernel ctxt */
677 static int filter_init_server_data(struct obd_device *obd, struct file * filp)
678 {
679         struct filter_obd *filter = &obd->u.filter;
680         struct lr_server_data *fsd;
681         struct lsd_client_data *lcd = NULL;
682         struct inode *inode = filp->f_dentry->d_inode;
683         unsigned long last_rcvd_size = i_size_read(inode);
684         __u64 mount_count;
685         int cl_idx;
686         loff_t off = 0;
687         int rc;
688
689         /* ensure padding in the struct is the correct size */
690         CLASSERT (offsetof(struct lr_server_data, lsd_padding) +
691                  sizeof(fsd->lsd_padding) == LR_SERVER_SIZE);
692         CLASSERT (offsetof(struct lsd_client_data, lcd_padding) +
693                  sizeof(lcd->lcd_padding) == LR_CLIENT_SIZE);
694
695         OBD_ALLOC(fsd, sizeof(*fsd));
696         if (!fsd)
697                 RETURN(-ENOMEM);
698         filter->fo_fsd = fsd;
699
700         OBD_ALLOC(filter->fo_last_rcvd_slots, LR_MAX_CLIENTS / 8);
701         if (filter->fo_last_rcvd_slots == NULL) {
702                 OBD_FREE(fsd, sizeof(*fsd));
703                 RETURN(-ENOMEM);
704         }
705
706         if (last_rcvd_size == 0) {
707                 LCONSOLE_WARN("%s: new disk, initializing\n", obd->obd_name);
708
709                 memcpy(fsd->lsd_uuid, obd->obd_uuid.uuid,sizeof(fsd->lsd_uuid));
710                 fsd->lsd_last_transno = 0;
711                 mount_count = fsd->lsd_mount_count = 0;
712                 fsd->lsd_server_size = cpu_to_le32(LR_SERVER_SIZE);
713                 fsd->lsd_client_start = cpu_to_le32(LR_CLIENT_START);
714                 fsd->lsd_client_size = cpu_to_le16(LR_CLIENT_SIZE);
715                 fsd->lsd_subdir_count = cpu_to_le16(FILTER_SUBDIR_COUNT);
716                 filter->fo_subdir_count = FILTER_SUBDIR_COUNT;
717                 fsd->lsd_feature_incompat = cpu_to_le32(OBD_INCOMPAT_OST);
718         } else {
719                 rc = fsfilt_read_record(obd, filp, fsd, sizeof(*fsd), &off);
720                 if (rc) {
721                         CDEBUG(D_INODE,"OBD filter: error reading %s: rc %d\n",
722                                LAST_RCVD, rc);
723                         GOTO(err_fsd, rc);
724                 }
725                 if (strcmp(fsd->lsd_uuid, obd->obd_uuid.uuid) != 0) {
726                         LCONSOLE_ERROR_MSG(0x134, "Trying to start OBD %s "
727                                            "using the wrong disk %s. Were the "
728                                            "/dev/ assignments rearranged?\n",
729                                            obd->obd_uuid.uuid, fsd->lsd_uuid);
730                         GOTO(err_fsd, rc = -EINVAL);
731                 }
732                 mount_count = le64_to_cpu(fsd->lsd_mount_count);
733                 filter->fo_subdir_count = le16_to_cpu(fsd->lsd_subdir_count);
734                 /* COMPAT_146 */
735                 /* Assume old last_rcvd format unless I_C_LR is set */
736                 if (!(fsd->lsd_feature_incompat &
737                       cpu_to_le32(OBD_INCOMPAT_COMMON_LR)))
738                         fsd->lsd_last_transno = fsd->lsd_compat14;
739                 /* end COMPAT_146 */
740         }
741
742         if (fsd->lsd_feature_incompat & ~cpu_to_le32(FILTER_INCOMPAT_SUPP)) {
743                 CERROR("%s: unsupported incompat filesystem feature(s) %x\n",
744                        obd->obd_name, le32_to_cpu(fsd->lsd_feature_incompat) &
745                        ~FILTER_INCOMPAT_SUPP);
746                 GOTO(err_fsd, rc = -EINVAL);
747         }
748         if (fsd->lsd_feature_rocompat & ~cpu_to_le32(FILTER_ROCOMPAT_SUPP)) {
749                 CERROR("%s: unsupported read-only filesystem feature(s) %x\n",
750                        obd->obd_name, le32_to_cpu(fsd->lsd_feature_rocompat) &
751                        ~FILTER_ROCOMPAT_SUPP);
752                 /* Do something like remount filesystem read-only */
753                 GOTO(err_fsd, rc = -EINVAL);
754         }
755
756         CDEBUG(D_INODE, "%s: server last_transno : "LPU64"\n",
757                obd->obd_name, le64_to_cpu(fsd->lsd_last_transno));
758         CDEBUG(D_INODE, "%s: server mount_count: "LPU64"\n",
759                obd->obd_name, mount_count + 1);
760         CDEBUG(D_INODE, "%s: server data size: %u\n",
761                obd->obd_name, le32_to_cpu(fsd->lsd_server_size));
762         CDEBUG(D_INODE, "%s: per-client data start: %u\n",
763                obd->obd_name, le32_to_cpu(fsd->lsd_client_start));
764         CDEBUG(D_INODE, "%s: per-client data size: %u\n",
765                obd->obd_name, le32_to_cpu(fsd->lsd_client_size));
766         CDEBUG(D_INODE, "%s: server subdir_count: %u\n",
767                obd->obd_name, le16_to_cpu(fsd->lsd_subdir_count));
768         CDEBUG(D_INODE, "%s: last_rcvd clients: %lu\n", obd->obd_name,
769                last_rcvd_size <= le32_to_cpu(fsd->lsd_client_start) ? 0 :
770                (last_rcvd_size - le32_to_cpu(fsd->lsd_client_start)) /
771                 le16_to_cpu(fsd->lsd_client_size));
772
773         if (!obd->obd_replayable) {
774                 CWARN("%s: recovery support OFF\n", obd->obd_name);
775                 GOTO(out, rc = 0);
776         }
777
778         for (cl_idx = 0, off = le32_to_cpu(fsd->lsd_client_start);
779              off < last_rcvd_size; cl_idx++) {
780                 __u64 last_rcvd;
781                 struct obd_export *exp;
782                 struct filter_export_data *fed;
783
784                 if (!lcd) {
785                         OBD_ALLOC_PTR(lcd);
786                         if (!lcd)
787                                 GOTO(err_client, rc = -ENOMEM);
788                 }
789
790                 /* Don't assume off is incremented properly by
791                  * fsfilt_read_record(), in case sizeof(*lcd)
792                  * isn't the same as fsd->lsd_client_size.  */
793                 off = le32_to_cpu(fsd->lsd_client_start) +
794                         cl_idx * le16_to_cpu(fsd->lsd_client_size);
795                 rc = fsfilt_read_record(obd, filp, lcd, sizeof(*lcd), &off);
796                 if (rc) {
797                         CERROR("error reading FILT %s idx %d off %llu: rc %d\n",
798                                LAST_RCVD, cl_idx, off, rc);
799                         break; /* read error shouldn't cause startup to fail */
800                 }
801
802                 if (lcd->lcd_uuid[0] == '\0') {
803                         CDEBUG(D_INFO, "skipping zeroed client at offset %d\n",
804                                cl_idx);
805                         continue;
806                 }
807
808                 last_rcvd = le64_to_cpu(lcd->lcd_last_transno);
809
810                 /* These exports are cleaned up by filter_disconnect(), so they
811                  * need to be set up like real exports as filter_connect() does.
812                  */
813                 exp = class_new_export(obd, (struct obd_uuid *)lcd->lcd_uuid);
814
815                 CDEBUG(D_HA, "RCVRNG CLIENT uuid: %s idx: %d lr: "LPU64
816                        " srv lr: "LPU64"\n", lcd->lcd_uuid, cl_idx,
817                        last_rcvd, le64_to_cpu(fsd->lsd_last_transno));
818                 if (IS_ERR(exp)) {
819                         if (PTR_ERR(exp) == -EALREADY) {
820                                 /* export already exists, zero out this one */
821                                 CERROR("Zeroing out duplicate export due to "
822                                        "bug 10479.\n");
823                                 lcd->lcd_uuid[0] = '\0';
824                         } else {
825                                 GOTO(err_client, rc = PTR_ERR(exp));
826                         }
827                 } else {
828                         fed = &exp->exp_filter_data;
829                         fed->fed_lcd = lcd;
830                         fed->fed_group = 0; /* will be assigned at connect */
831                         filter_export_stats_init(obd, exp, NULL);
832                         rc = filter_client_add(obd, exp, cl_idx);
833                         /* can't fail for existing client */
834                         LASSERTF(rc == 0, "rc = %d\n", rc);
835
836                         lcd = NULL;
837                         spin_lock(&exp->exp_lock);
838                         exp->exp_connecting = 0;
839                         exp->exp_in_recovery = 0;
840                         spin_unlock(&exp->exp_lock);
841                         obd->obd_max_recoverable_clients++;
842                         class_export_put(exp);
843                 }
844
845                 /* Need to check last_rcvd even for duplicated exports. */
846                 CDEBUG(D_OTHER, "client at idx %d has last_rcvd = "LPU64"\n",
847                        cl_idx, last_rcvd);
848
849                 if (last_rcvd > le64_to_cpu(fsd->lsd_last_transno))
850                         fsd->lsd_last_transno = cpu_to_le64(last_rcvd);
851         }
852
853         if (lcd)
854                 OBD_FREE_PTR(lcd);
855
856         obd->obd_last_committed = le64_to_cpu(fsd->lsd_last_transno);
857
858         target_recovery_init(obd, ost_handle);
859
860 out:
861         filter->fo_mount_count = mount_count + 1;
862         fsd->lsd_mount_count = cpu_to_le64(filter->fo_mount_count);
863
864         /* save it, so mount count and last_transno is current */
865         rc = filter_update_server_data(obd, filp, filter->fo_fsd, 1);
866         if (rc)
867                 GOTO(err_client, rc);
868
869         RETURN(0);
870
871 err_client:
872         target_recovery_fini(obd);
873 err_fsd:
874         filter_free_server_data(filter);
875         RETURN(rc);
876 }
877
878 static int filter_cleanup_groups(struct obd_device *obd)
879 {
880         struct filter_obd *filter = &obd->u.filter;
881         struct file *filp;
882         struct dentry *dentry;
883         int i, j;
884         ENTRY;
885
886         if (filter->fo_dentry_O_groups != NULL) {
887                 for (i = 0; i < filter->fo_group_count; i++) {
888                         dentry = filter->fo_dentry_O_groups[i];
889                         if (dentry != NULL)
890                                 f_dput(dentry);
891                 }
892                 OBD_FREE(filter->fo_dentry_O_groups,
893                          filter->fo_group_count *
894                          sizeof(*filter->fo_dentry_O_groups));
895                 filter->fo_dentry_O_groups = NULL;
896         }
897         if (filter->fo_last_objid_files != NULL) {
898                 for (i = 0; i < filter->fo_group_count; i++) {
899                         filp = filter->fo_last_objid_files[i];
900                         if (filp != NULL)
901                                 filp_close(filp, 0);
902                 }
903                 OBD_FREE(filter->fo_last_objid_files,
904                          filter->fo_group_count *
905                          sizeof(*filter->fo_last_objid_files));
906                 filter->fo_last_objid_files = NULL;
907         }
908         if (filter->fo_dentry_O_sub != NULL) {
909                 for (i = 0; i < filter->fo_group_count; i++) {
910                         for (j = 0; j < filter->fo_subdir_count; j++) {
911                                 dentry = filter->fo_dentry_O_sub[i].dentry[j];
912                                 if (dentry != NULL)
913                                         f_dput(dentry);
914                         }
915                 }
916                 OBD_FREE(filter->fo_dentry_O_sub,
917                          filter->fo_group_count *
918                          sizeof(*filter->fo_dentry_O_sub));
919                 filter->fo_dentry_O_sub = NULL;
920         }
921         if (filter->fo_last_objids != NULL) {
922                 OBD_FREE(filter->fo_last_objids,
923                          filter->fo_group_count *
924                          sizeof(*filter->fo_last_objids));
925                 filter->fo_last_objids = NULL;
926         }
927         if (filter->fo_dentry_O != NULL) {
928                 f_dput(filter->fo_dentry_O);
929                 filter->fo_dentry_O = NULL;
930         }
931         RETURN(0);
932 }
933
934 static int filter_update_last_group(struct obd_device *obd, int group)
935 {
936         struct filter_obd *filter = &obd->u.filter;
937         struct file *filp = NULL;
938         int last_group = 0, rc;
939         loff_t off = 0;
940         ENTRY;
941
942         if (group <= filter->fo_committed_group)
943                 RETURN(0);
944
945         filp = filp_open("LAST_GROUP", O_RDWR, 0700);
946         if (IS_ERR(filp)) {
947                 rc = PTR_ERR(filp);
948                 filp = NULL;
949                 CERROR("cannot open LAST_GROUP: rc = %d\n", rc);
950                 GOTO(cleanup, rc);
951         }
952
953         rc = fsfilt_read_record(obd, filp, &last_group, sizeof(__u32), &off);
954         if (rc) {
955                 CDEBUG(D_INODE, "error reading LAST_GROUP: rc %d\n",rc);
956                 GOTO(cleanup, rc);
957         }
958         LASSERTF(off == 0 || CHECK_MDS_GROUP(last_group),
959                  "off = %llu and last_group = %d\n", off, last_group);
960
961         CDEBUG(D_INODE, "%s: previous %d, new %d\n",
962                obd->obd_name, last_group, group);
963
964         off = 0;
965         last_group = group;
966         /* must be sync: bXXXX */
967         rc = fsfilt_write_record(obd, filp, &last_group, sizeof(__u32), &off, 1);
968         if (rc) {
969                 CDEBUG(D_INODE, "error updating LAST_GROUP: rc %d\n", rc);
970                 GOTO(cleanup, rc);
971         }
972
973         filter->fo_committed_group = group;
974 cleanup:
975         if (filp)
976                 filp_close(filp, 0);
977         RETURN(rc);
978 }
979
980 static int filter_read_group_internal(struct obd_device *obd, int group,
981                                       int create)
982 {
983         struct filter_obd *filter = &obd->u.filter;
984         __u64 *new_objids = NULL;
985         struct filter_subdirs *new_subdirs = NULL, *tmp_subdirs = NULL;
986         struct dentry **new_groups = NULL;
987         struct file **new_files = NULL;
988         struct dentry *dentry;
989         struct file *filp;
990         int old_count = filter->fo_group_count, rc, stage = 0, i;
991         char name[25];
992         __u64 last_objid;
993         loff_t off = 0;
994         int len = group + 1;
995
996         snprintf(name, 24, "%d", group);
997         name[24] = '\0';
998
999         if (!create) {
1000                 dentry = ll_lookup_one_len(name, filter->fo_dentry_O,
1001                                            strlen(name));
1002                 if (IS_ERR(dentry)) {
1003                         CERROR("Cannot lookup expected object group %d: %ld\n",
1004                                group, PTR_ERR(dentry));
1005                         RETURN(PTR_ERR(dentry));
1006                 }
1007         } else {
1008                 dentry = simple_mkdir(filter->fo_dentry_O, filter->fo_vfsmnt,
1009                                       name, 0700, 1);
1010                 if (IS_ERR(dentry)) {
1011                         CERROR("cannot lookup/create O/%s: rc = %ld\n", name,
1012                                PTR_ERR(dentry));
1013                         RETURN(PTR_ERR(dentry));
1014                 }
1015         }
1016         stage = 1;
1017
1018         snprintf(name, 24, "O/%d/LAST_ID", group);
1019         name[24] = '\0';
1020         filp = filp_open(name, O_CREAT | O_RDWR, 0700);
1021         if (IS_ERR(filp)) {
1022                 CERROR("cannot create %s: rc = %ld\n", name, PTR_ERR(filp));
1023                 GOTO(cleanup, rc = PTR_ERR(filp));
1024         }
1025         stage = 2;
1026
1027         rc = fsfilt_read_record(obd, filp, &last_objid, sizeof(__u64), &off);
1028         if (rc) {
1029                 CDEBUG(D_INODE, "error reading %s: rc %d\n", name, rc);
1030                 GOTO(cleanup, rc);
1031         }
1032
1033         if (filter->fo_subdir_count) {
1034                 OBD_ALLOC(tmp_subdirs, sizeof(*tmp_subdirs));
1035                 if (tmp_subdirs == NULL)
1036                         GOTO(cleanup, rc = -ENOMEM);
1037                 stage = 3;
1038
1039                 for (i = 0; i < filter->fo_subdir_count; i++) {
1040                         char dir[20];
1041                         snprintf(dir, sizeof(dir), "d%u", i);
1042
1043                         tmp_subdirs->dentry[i] = simple_mkdir(dentry,
1044                                                               filter->fo_vfsmnt,
1045                                                               dir, 0700, 1);
1046                         if (IS_ERR(tmp_subdirs->dentry[i])) {
1047                                 rc = PTR_ERR(tmp_subdirs->dentry[i]);
1048                                 CERROR("can't lookup/create O/%d/%s: rc = %d\n",
1049                                        group, dir, rc);
1050                                 GOTO(cleanup, rc);
1051                         }
1052
1053                         CDEBUG(D_INODE, "got/created O/%d/%s: %p\n", group, dir,
1054                                tmp_subdirs->dentry[i]);
1055                 }
1056         }
1057
1058         /* 'group' is an index; we need an array of length 'group + 1' */
1059         if (group + 1 > old_count) {
1060                 OBD_ALLOC(new_objids, len * sizeof(*new_objids));
1061                 OBD_ALLOC(new_subdirs, len * sizeof(*new_subdirs));
1062                 OBD_ALLOC(new_groups, len * sizeof(*new_groups));
1063                 OBD_ALLOC(new_files, len * sizeof(*new_files));
1064                 stage = 4;
1065                 if (new_objids == NULL || new_subdirs == NULL ||
1066                     new_groups == NULL || new_files == NULL)
1067                         GOTO(cleanup, rc = -ENOMEM);
1068
1069                 if (old_count) {
1070                         memcpy(new_objids, filter->fo_last_objids,
1071                                old_count * sizeof(*new_objids));
1072                         memcpy(new_subdirs, filter->fo_dentry_O_sub,
1073                                old_count * sizeof(*new_subdirs));
1074                         memcpy(new_groups, filter->fo_dentry_O_groups,
1075                                old_count * sizeof(*new_groups));
1076                         memcpy(new_files, filter->fo_last_objid_files,
1077                                old_count * sizeof(*new_files));
1078
1079                         OBD_FREE(filter->fo_last_objids,
1080                                  old_count * sizeof(*new_objids));
1081                         OBD_FREE(filter->fo_dentry_O_sub,
1082                                  old_count * sizeof(*new_subdirs));
1083                         OBD_FREE(filter->fo_dentry_O_groups,
1084                                  old_count * sizeof(*new_groups));
1085                         OBD_FREE(filter->fo_last_objid_files,
1086                                  old_count * sizeof(*new_files));
1087                 }
1088                 filter->fo_last_objids = new_objids;
1089                 filter->fo_dentry_O_sub = new_subdirs;
1090                 filter->fo_dentry_O_groups = new_groups;
1091                 filter->fo_last_objid_files = new_files;
1092                 filter->fo_group_count = len;
1093         }
1094
1095         filter->fo_dentry_O_groups[group] = dentry;
1096         filter->fo_last_objid_files[group] = filp;
1097         if (filter->fo_subdir_count) {
1098                 filter->fo_dentry_O_sub[group] = *tmp_subdirs;
1099                 OBD_FREE(tmp_subdirs, sizeof(*tmp_subdirs));
1100         }
1101
1102         filter_update_last_group(obd, group);
1103
1104         if (i_size_read(filp->f_dentry->d_inode) == 0) {
1105                 filter->fo_last_objids[group] = FILTER_INIT_OBJID;
1106                 rc = filter_update_last_objid(obd, group, 1);
1107                 RETURN(rc);
1108         }
1109
1110         filter->fo_last_objids[group] = le64_to_cpu(last_objid);
1111         CDEBUG(D_INODE, "%s: server last_objid group %d: "LPU64"\n",
1112                obd->obd_name, group, last_objid);
1113         RETURN(0);
1114  cleanup:
1115         switch (stage) {
1116         case 4:
1117                 if (new_objids != NULL)
1118                         OBD_FREE(new_objids, len * sizeof(*new_objids));
1119                 if (new_subdirs != NULL)
1120                         OBD_FREE(new_subdirs, len * sizeof(*new_subdirs));
1121                 if (new_groups != NULL)
1122                         OBD_FREE(new_groups, len * sizeof(*new_groups));
1123                 if (new_files != NULL)
1124                         OBD_FREE(new_files, len * sizeof(*new_files));
1125         case 3:
1126                 if (filter->fo_subdir_count) {
1127                         for (i = 0; i < filter->fo_subdir_count; i++) {
1128                                 if (tmp_subdirs->dentry[i] != NULL)
1129                                         dput(tmp_subdirs->dentry[i]);
1130                         }
1131                         OBD_FREE(tmp_subdirs, sizeof(*tmp_subdirs));
1132                 }
1133         case 2:
1134                 filp_close(filp, 0);
1135         case 1:
1136                 dput(dentry);
1137         }
1138         RETURN(rc);
1139 }
1140
1141 static int filter_read_groups(struct obd_device *obd, int last_group,
1142                               int create)
1143 {
1144         struct filter_obd *filter = &obd->u.filter;
1145         int old_count, group, rc = 0;
1146
1147         down(&filter->fo_init_lock);
1148         old_count = filter->fo_group_count;
1149         for (group = old_count; group <= last_group; group++) {
1150
1151                 rc = filter_read_group_internal(obd, group, create);
1152                 if (rc != 0)
1153                         break;
1154         }
1155         up(&filter->fo_init_lock);
1156         return rc;
1157 }
1158
1159 /* FIXME: object groups */
1160 static int filter_prep_groups(struct obd_device *obd)
1161 {
1162         struct filter_obd *filter = &obd->u.filter;
1163         struct dentry *dentry, *O_dentry;
1164         struct file *filp;
1165         int    last_group, rc = 0, cleanup_phase = 0;
1166         loff_t off = 0;
1167         ENTRY;
1168
1169         O_dentry = simple_mkdir(current->fs->pwd, filter->fo_vfsmnt,
1170                                 "O", 0700, 1);
1171         CDEBUG(D_INODE, "got/created O: %p\n", O_dentry);
1172         if (IS_ERR(O_dentry)) {
1173                 rc = PTR_ERR(O_dentry);
1174                 CERROR("cannot open/create O: rc = %d\n", rc);
1175                 GOTO(cleanup, rc);
1176         }
1177         filter->fo_dentry_O = O_dentry;
1178         cleanup_phase = 1; /* O_dentry */
1179
1180         /* Lookup "R" to tell if we're on an old OST FS and need to convert
1181          * from O/R/<dir>/<objid> to O/0/<dir>/<objid>.  This can be removed
1182          * some time post 1.0 when all old-style OSTs have converted along
1183          * with the init_objid hack. */
1184         dentry = ll_lookup_one_len("R", O_dentry, 1);
1185         if (IS_ERR(dentry))
1186                 GOTO(cleanup, rc = PTR_ERR(dentry));
1187         if (dentry->d_inode && S_ISDIR(dentry->d_inode->i_mode)) {
1188                 struct dentry *O0_dentry = lookup_one_len("0", O_dentry, 1);
1189                 ENTRY;
1190
1191                 CWARN("converting OST to new object layout\n");
1192                 if (IS_ERR(O0_dentry)) {
1193                         rc = PTR_ERR(O0_dentry);
1194                         CERROR("error looking up O/0: rc %d\n", rc);
1195                         GOTO(cleanup_R, rc);
1196                 }
1197
1198                 if (O0_dentry->d_inode) {
1199                         CERROR("Both O/R and O/0 exist. Fix manually.\n");
1200                         GOTO(cleanup_O0, rc = -EEXIST);
1201                 }
1202
1203                 LOCK_INODE_MUTEX(O_dentry->d_inode);
1204                 rc = ll_vfs_rename(O_dentry->d_inode, dentry, filter->fo_vfsmnt,
1205                                    O_dentry->d_inode, O0_dentry,
1206                                    filter->fo_vfsmnt);
1207                 UNLOCK_INODE_MUTEX(O_dentry->d_inode);
1208
1209                 if (rc) {
1210                         CERROR("error renaming O/R to O/0: rc %d\n", rc);
1211                         GOTO(cleanup_O0, rc);
1212                 }
1213                 filter->fo_fsd->lsd_feature_incompat |=
1214                         cpu_to_le32(OBD_INCOMPAT_GROUPS);
1215                 rc = filter_update_server_data(obd, filter->fo_rcvd_filp,
1216                                                filter->fo_fsd, 1);
1217                 GOTO(cleanup_O0, rc);
1218
1219         cleanup_O0:
1220                 f_dput(O0_dentry);
1221         cleanup_R:
1222                 f_dput(dentry);
1223                 if (rc)
1224                         GOTO(cleanup, rc);
1225         } else {
1226                 f_dput(dentry);
1227         }
1228
1229         cleanup_phase = 2; /* groups */
1230
1231         /* we have to initialize all groups before first connections from
1232          * clients because they may send create/destroy for any group -bzzz */
1233         filp = filp_open("LAST_GROUP", O_CREAT | O_RDWR, 0700);
1234         if (IS_ERR(filp)) {
1235                 CERROR("cannot create LAST_GROUP: rc = %ld\n", PTR_ERR(filp));
1236                 GOTO(cleanup, rc = PTR_ERR(filp));
1237         }
1238         cleanup_phase = 3; /* filp */
1239
1240         rc = fsfilt_read_record(obd, filp, &last_group, sizeof(__u32), &off);
1241         if (rc) {
1242                 CDEBUG(D_INODE, "error reading LAST_GROUP: rc %d\n", rc);
1243                 GOTO(cleanup, rc);
1244         }
1245         if (off == 0) {
1246                 last_group = FILTER_MIN_GROUPS;
1247         } else {
1248                 LASSERT_MDS_GROUP(last_group);
1249         }
1250
1251         CWARN("%s: initialize groups [%d,%d]\n", obd->obd_name,
1252               FILTER_MIN_GROUPS, last_group);
1253         filter->fo_committed_group = last_group;
1254         rc = filter_read_groups(obd, last_group, 1);
1255         if (rc)
1256                 GOTO(cleanup, rc);
1257
1258         filp_close(filp, 0);
1259         RETURN(0);
1260
1261  cleanup:
1262         switch (cleanup_phase) {
1263         case 3:
1264                 filp_close(filp, 0);
1265         case 2:
1266                 filter_cleanup_groups(obd);
1267         case 1:
1268                 f_dput(filter->fo_dentry_O);
1269                 filter->fo_dentry_O = NULL;
1270         default:
1271                 break;
1272         }
1273         return rc;
1274
1275 }
1276
1277 /* setup the object store with correct subdirectories */
1278 static int filter_prep(struct obd_device *obd)
1279 {
1280         struct lvfs_run_ctxt saved;
1281         struct filter_obd *filter = &obd->u.filter;
1282         struct file *file;
1283         struct inode *inode;
1284         int rc = 0;
1285         ENTRY;
1286
1287         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
1288         file = filp_open(LAST_RCVD, O_RDWR | O_CREAT | O_LARGEFILE, 0700);
1289         if (!file || IS_ERR(file)) {
1290                 rc = PTR_ERR(file);
1291                 CERROR("OBD filter: cannot open/create %s: rc = %d\n",
1292                        LAST_RCVD, rc);
1293                 GOTO(out, rc);
1294         }
1295         filter->fo_rcvd_filp = file;
1296         if (!S_ISREG(file->f_dentry->d_inode->i_mode)) {
1297                 CERROR("%s is not a regular file!: mode = %o\n", LAST_RCVD,
1298                        file->f_dentry->d_inode->i_mode);
1299                 GOTO(err_filp, rc = -ENOENT);
1300         }
1301
1302         inode = file->f_dentry->d_parent->d_inode;
1303         /* We use i_op->unlink directly in filter_vfs_unlink() */
1304         if (!inode->i_op || !inode->i_op->create || !inode->i_op->unlink) {
1305                 CERROR("%s: filesystem does not support create/unlink ops\n",
1306                        obd->obd_name);
1307                 GOTO(err_filp, rc = -EOPNOTSUPP);
1308         }
1309
1310         rc = filter_init_server_data(obd, file);
1311         if (rc) {
1312                 CERROR("cannot read %s: rc = %d\n", LAST_RCVD, rc);
1313                 GOTO(err_filp, rc);
1314         }
1315         /* open and create health check io file*/
1316         file = filp_open(HEALTH_CHECK, O_RDWR | O_CREAT, 0644);
1317         if (IS_ERR(file)) {
1318                 rc = PTR_ERR(file);
1319                 CERROR("OBD filter: cannot open/create %s rc = %d\n",
1320                        HEALTH_CHECK, rc);
1321                 GOTO(err_server_data, rc);
1322         }
1323         filter->fo_health_check_filp = file;
1324         if (!S_ISREG(file->f_dentry->d_inode->i_mode)) {
1325                 CERROR("%s is not a regular file!: mode = %o\n", HEALTH_CHECK,
1326                        file->f_dentry->d_inode->i_mode);
1327                 GOTO(err_health_check, rc = -ENOENT);
1328         }
1329         rc = lvfs_check_io_health(obd, file);
1330         if (rc)
1331                 GOTO(err_health_check, rc);
1332
1333         rc = filter_prep_groups(obd);
1334         if (rc)
1335                 GOTO(err_health_check, rc);
1336 out:
1337         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
1338
1339         return(rc);
1340
1341 err_health_check:
1342         if (filp_close(filter->fo_health_check_filp, 0))
1343                 CERROR("can't close %s after error\n", HEALTH_CHECK);
1344         filter->fo_health_check_filp = NULL;
1345 err_server_data:
1346         target_recovery_fini(obd);
1347         filter_free_server_data(filter);
1348 err_filp:
1349         if (filp_close(filter->fo_rcvd_filp, 0))
1350                 CERROR("can't close %s after error\n", LAST_RCVD);
1351         filter->fo_rcvd_filp = NULL;
1352         goto out;
1353 }
1354
1355 /* cleanup the filter: write last used object id to status file */
1356 static void filter_post(struct obd_device *obd)
1357 {
1358         struct lvfs_run_ctxt saved;
1359         struct filter_obd *filter = &obd->u.filter;
1360         int rc, i;
1361
1362         /* XXX: filter_update_lastobjid used to call fsync_dev.  It might be
1363          * best to start a transaction with h_sync, because we removed this
1364          * from lastobjid */
1365
1366         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
1367         rc = filter_update_server_data(obd, filter->fo_rcvd_filp,
1368                                        filter->fo_fsd, 0);
1369         if (rc)
1370                 CERROR("error writing server data: rc = %d\n", rc);
1371
1372         for (i = 0; i < filter->fo_group_count; i++) {
1373                 rc = filter_update_last_objid(obd, i,
1374                                 (i == filter->fo_group_count - 1));
1375                 if (rc)
1376                         CERROR("error writing group %d lastobjid: rc = %d\n",
1377                                i, rc);
1378         }
1379
1380         rc = filp_close(filter->fo_rcvd_filp, 0);
1381         filter->fo_rcvd_filp = NULL;
1382         if (rc)
1383                 CERROR("error closing %s: rc = %d\n", LAST_RCVD, rc);
1384
1385         rc = filp_close(filter->fo_health_check_filp, 0);
1386         filter->fo_health_check_filp = NULL;
1387         if (rc)
1388                 CERROR("error closing %s: rc = %d\n", HEALTH_CHECK, rc);
1389
1390         filter_cleanup_groups(obd);
1391         filter_free_server_data(filter);
1392         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
1393
1394         filter_free_capa_keys(filter);
1395         cleanup_capa_hash(filter->fo_capa_hash);
1396 }
1397
1398 static void filter_set_last_id(struct filter_obd *filter,
1399                                obd_id id, obd_gr group)
1400 {
1401         LASSERT(filter->fo_fsd != NULL);
1402         LASSERT(group <= filter->fo_group_count);
1403
1404         spin_lock(&filter->fo_objidlock);
1405         filter->fo_last_objids[group] = id;
1406         spin_unlock(&filter->fo_objidlock);
1407 }
1408
1409 obd_id filter_last_id(struct filter_obd *filter, obd_gr group)
1410 {
1411         obd_id id;
1412         LASSERT(filter->fo_fsd != NULL);
1413         LASSERT(group <= filter->fo_group_count);
1414
1415         /* FIXME: object groups */
1416         spin_lock(&filter->fo_objidlock);
1417         id = filter->fo_last_objids[group];
1418         spin_unlock(&filter->fo_objidlock);
1419         return id;
1420 }
1421
1422 static int filter_lock_dentry(struct obd_device *obd, struct dentry *dparent)
1423 {
1424         LOCK_INODE_MUTEX_PARENT(dparent->d_inode);
1425         return 0;
1426 }
1427
1428 /* We never dget the object parent, so DON'T dput it either */
1429 struct dentry *filter_parent(struct obd_device *obd, obd_gr group, obd_id objid)
1430 {
1431         struct filter_obd *filter = &obd->u.filter;
1432         struct filter_subdirs *subdirs;
1433         LASSERT(group < filter->fo_group_count); /* FIXME: object groups */
1434
1435         if ((group > FILTER_GROUP_MDS0 && group < FILTER_GROUP_MDS1_N_BASE) ||
1436              filter->fo_subdir_count == 0)
1437                 return filter->fo_dentry_O_groups[group];
1438
1439         subdirs = &filter->fo_dentry_O_sub[group];
1440         return subdirs->dentry[objid & (filter->fo_subdir_count - 1)];
1441 }
1442
1443 /* We never dget the object parent, so DON'T dput it either */
1444 struct dentry *filter_parent_lock(struct obd_device *obd, obd_gr group,
1445                                   obd_id objid)
1446 {
1447         unsigned long now = jiffies;
1448         struct dentry *dparent = filter_parent(obd, group, objid);
1449         int rc;
1450
1451         if (IS_ERR(dparent))
1452                 return dparent;
1453         if (dparent == NULL)
1454                 return ERR_PTR(-ENOENT);
1455
1456         rc = filter_lock_dentry(obd, dparent);
1457         fsfilt_check_slow(obd, now, "parent lock");
1458         return rc ? ERR_PTR(rc) : dparent;
1459 }
1460
1461 /* We never dget the object parent, so DON'T dput it either */
1462 static void filter_parent_unlock(struct dentry *dparent)
1463 {
1464         UNLOCK_INODE_MUTEX(dparent->d_inode);
1465 }
1466
1467 /* How to get files, dentries, inodes from object id's.
1468  *
1469  * If dir_dentry is passed, the caller has already locked the parent
1470  * appropriately for this operation (normally a write lock).  If
1471  * dir_dentry is NULL, we do a read lock while we do the lookup to
1472  * avoid races with create/destroy and such changing the directory
1473  * internal to the filesystem code. */
1474 struct dentry *filter_fid2dentry(struct obd_device *obd,
1475                                  struct dentry *dir_dentry,
1476                                  obd_gr group, obd_id id)
1477 {
1478         struct dentry *dparent = dir_dentry;
1479         struct dentry *dchild;
1480         char name[32];
1481         int len;
1482         ENTRY;
1483
1484         if (OBD_FAIL_CHECK(OBD_FAIL_OST_ENOENT) &&
1485             obd->u.filter.fo_destroys_in_progress == 0) {
1486                 /* don't fail lookups for orphan recovery, it causes
1487                  * later LBUGs when objects still exist during precreate */
1488                 CDEBUG(D_INFO, "*** obd_fail_loc=%x ***\n",OBD_FAIL_OST_ENOENT);
1489                 RETURN(ERR_PTR(-ENOENT));
1490         }
1491         if (id == 0) {
1492                 CERROR("fatal: invalid object id 0\n");
1493                 RETURN(ERR_PTR(-ESTALE));
1494         }
1495
1496         len = sprintf(name, LPU64, id);
1497         if (dir_dentry == NULL) {
1498                 dparent = filter_parent_lock(obd, group, id);
1499                 if (IS_ERR(dparent)) {
1500                         CERROR("%s: error getting object "LPU64":"LPU64
1501                                " parent: rc %ld\n", obd->obd_name,
1502                                id, group, PTR_ERR(dparent));
1503                         RETURN(dparent);
1504                 }
1505         }
1506         CDEBUG(D_INODE, "looking up object O/%.*s/%s\n",
1507                dparent->d_name.len, dparent->d_name.name, name);
1508         dchild = /*ll_*/lookup_one_len(name, dparent, len);
1509         if (dir_dentry == NULL)
1510                 filter_parent_unlock(dparent);
1511         if (IS_ERR(dchild)) {
1512                 CERROR("%s: child lookup error %ld\n", obd->obd_name,
1513                        PTR_ERR(dchild));
1514                 RETURN(dchild);
1515         }
1516
1517         if (dchild->d_inode != NULL && is_bad_inode(dchild->d_inode)) {
1518                 CERROR("%s: got bad object "LPU64" inode %lu\n",
1519                        obd->obd_name, id, dchild->d_inode->i_ino);
1520                 f_dput(dchild);
1521                 RETURN(ERR_PTR(-ENOENT));
1522         }
1523
1524         CDEBUG(D_INODE, "got child objid %s: %p, count = %d\n",
1525                name, dchild, atomic_read(&dchild->d_count));
1526
1527         LASSERT(atomic_read(&dchild->d_count) > 0);
1528
1529         RETURN(dchild);
1530 }
1531
1532 static int filter_prepare_destroy(struct obd_device *obd, obd_id objid,
1533                                   obd_id group)
1534 {
1535         struct lustre_handle lockh;
1536         int flags = LDLM_AST_DISCARD_DATA, rc;
1537         struct ldlm_res_id res_id;
1538         ldlm_policy_data_t policy = { .l_extent = { 0, OBD_OBJECT_EOF } };
1539         ENTRY;
1540
1541         osc_build_res_name(objid, group, &res_id);
1542         /* Tell the clients that the object is gone now and that they should
1543          * throw away any cached pages. */
1544         rc = ldlm_cli_enqueue_local(obd->obd_namespace, &res_id, LDLM_EXTENT,
1545                                     &policy, LCK_PW, &flags, ldlm_blocking_ast,
1546                                     ldlm_completion_ast, NULL, NULL, 0, NULL,
1547                                     NULL, &lockh);
1548
1549         /* We only care about the side-effects, just drop the lock. */
1550         if (rc == ELDLM_OK)
1551                 ldlm_lock_decref(&lockh, LCK_PW);
1552
1553         RETURN(rc);
1554 }
1555
1556 /* This is vfs_unlink() without down(i_sem).  If we call regular vfs_unlink()
1557  * we have 2.6 lock ordering issues with filter_commitrw_write() as it takes
1558  * i_sem before starting a handle, while filter_destroy() + vfs_unlink do the
1559  * reverse.  Caller must take i_sem before starting the transaction and we
1560  * drop it here before the inode is removed from the dentry.  bug 4180/6984 */
1561 int filter_vfs_unlink(struct inode *dir, struct dentry *dentry,
1562                       struct vfsmount *mnt)
1563 {
1564         int rc;
1565         ENTRY;
1566
1567         /* don't need dir->i_zombie for 2.4, it is for rename/unlink of dir
1568          * itself we already hold dir->i_mutex for child create/unlink ops */
1569         LASSERT(dentry->d_inode != NULL);
1570         LASSERT(TRYLOCK_INODE_MUTEX(dir) == 0);
1571         LASSERT(TRYLOCK_INODE_MUTEX(dentry->d_inode) == 0);
1572
1573
1574         /* may_delete() */
1575         if (/*!dentry->d_inode ||*/dentry->d_parent->d_inode != dir)
1576                 GOTO(out, rc = -ENOENT);
1577
1578         rc = ll_permission(dir, MAY_WRITE | MAY_EXEC, NULL);
1579         if (rc)
1580                 GOTO(out, rc);
1581
1582         if (IS_APPEND(dir))
1583                 GOTO(out, rc = -EPERM);
1584
1585         /* check_sticky() */
1586         if ((dentry->d_inode->i_uid != current->fsuid &&
1587              !cfs_capable(CFS_CAP_FOWNER)) || IS_APPEND(dentry->d_inode) ||
1588             IS_IMMUTABLE(dentry->d_inode))
1589                 GOTO(out, rc = -EPERM);
1590
1591         /* NOTE: This might need to go outside i_mutex, though it isn't clear if
1592          *       that was done because of journal_start (which is already done
1593          *       here) or some other ordering issue. */
1594         DQUOT_INIT(dir);
1595
1596         rc = ll_security_inode_unlink(dir, dentry, mnt);
1597         if (rc)
1598                 GOTO(out, rc);
1599
1600         rc = dir->i_op->unlink(dir, dentry);
1601 out:
1602         /* need to drop i_mutex before we lose inode reference */
1603         UNLOCK_INODE_MUTEX(dentry->d_inode);
1604         if (rc == 0)
1605                 d_delete(dentry);
1606
1607         RETURN(rc);
1608 }
1609
1610 /* Caller must hold LCK_PW on parent and push us into kernel context.
1611  * Caller must hold child i_mutex, we drop it always.
1612  * Caller is also required to ensure that dchild->d_inode exists. */
1613 static int filter_destroy_internal(struct obd_device *obd, obd_id objid,
1614                                    obd_gr group, struct dentry *dparent,
1615                                    struct dentry *dchild)
1616 {
1617         struct inode *inode = dchild->d_inode;
1618         struct filter_obd *filter = &obd->u.filter;
1619         int rc;
1620
1621         if (inode->i_nlink != 1 || atomic_read(&inode->i_count) != 1) {
1622                 CERROR("destroying objid %.*s ino %lu nlink %lu count %d\n",
1623                        dchild->d_name.len, dchild->d_name.name, inode->i_ino,
1624                        (unsigned long)inode->i_nlink,
1625                        atomic_read(&inode->i_count));
1626         }
1627
1628         rc = filter_vfs_unlink(dparent->d_inode, dchild, filter->fo_vfsmnt);
1629         if (rc)
1630                 CERROR("error unlinking objid %.*s: rc %d\n",
1631                        dchild->d_name.len, dchild->d_name.name, rc);
1632         return(rc);
1633 }
1634
1635 struct filter_intent_args {
1636         struct ldlm_lock **victim;
1637         __u64 size;
1638         int *liblustre;
1639 };
1640
1641 static enum interval_iter filter_intent_cb(struct interval_node *n,
1642                                            void *args)
1643 {
1644         struct ldlm_interval *node = (struct ldlm_interval *)n;
1645         struct filter_intent_args *arg = (struct filter_intent_args*)args;
1646         __u64 size = arg->size;
1647         struct ldlm_lock **v = arg->victim;
1648         struct ldlm_lock *lck;
1649
1650         /* If the interval is lower than the current file size,
1651          * just break. */
1652         if (interval_high(n) <= size)
1653                 return INTERVAL_ITER_STOP;
1654
1655         list_for_each_entry(lck, &node->li_group, l_sl_policy) {
1656                 /* Don't send glimpse ASTs to liblustre clients.
1657                  * They aren't listening for them, and they do
1658                  * entirely synchronous I/O anyways. */
1659                 if (lck->l_export == NULL ||
1660                     lck->l_export->exp_libclient == 1)
1661                         continue;
1662
1663                 if (*arg->liblustre)
1664                         *arg->liblustre = 0;
1665
1666                 if (*v == NULL) {
1667                         *v = LDLM_LOCK_GET(lck);
1668                 } else if ((*v)->l_policy_data.l_extent.start <
1669                            lck->l_policy_data.l_extent.start) {
1670                         LDLM_LOCK_RELEASE(*v);
1671                         *v = LDLM_LOCK_GET(lck);
1672                 }
1673
1674                 /* the same policy group - every lock has the
1675                  * same extent, so needn't do it any more */
1676                 break;
1677         }
1678
1679         return INTERVAL_ITER_CONT;
1680 }
1681
1682 static int filter_intent_policy(struct ldlm_namespace *ns,
1683                                 struct ldlm_lock **lockp, void *req_cookie,
1684                                 ldlm_mode_t mode, int flags, void *data)
1685 {
1686         CFS_LIST_HEAD(rpc_list);
1687         struct ptlrpc_request *req = req_cookie;
1688         struct ldlm_lock *lock = *lockp, *l = NULL;
1689         struct ldlm_resource *res = lock->l_resource;
1690         ldlm_processing_policy policy;
1691         struct ost_lvb *res_lvb, *reply_lvb;
1692         struct ldlm_reply *rep;
1693         ldlm_error_t err;
1694         int idx, rc, tmpflags = 0, only_liblustre = 1;
1695         struct ldlm_interval_tree *tree;
1696         struct filter_intent_args arg;
1697         __u32 repsize[3] = { [MSG_PTLRPC_BODY_OFF] = sizeof(struct ptlrpc_body),
1698                            [DLM_LOCKREPLY_OFF]   = sizeof(*rep),
1699                            [DLM_REPLY_REC_OFF]   = sizeof(*reply_lvb) };
1700         ENTRY;
1701
1702         policy = ldlm_get_processing_policy(res);
1703         LASSERT(policy != NULL);
1704         LASSERT(req != NULL);
1705
1706         rc = lustre_pack_reply(req, 3, repsize, NULL);
1707         if (rc)
1708                 RETURN(req->rq_status = rc);
1709
1710         rep = lustre_msg_buf(req->rq_repmsg, DLM_LOCKREPLY_OFF, sizeof(*rep));
1711         LASSERT(rep != NULL);
1712
1713         reply_lvb = lustre_msg_buf(req->rq_repmsg, DLM_REPLY_REC_OFF,
1714                                    sizeof(*reply_lvb));
1715         LASSERT(reply_lvb != NULL);
1716
1717         //fixup_handle_for_resent_req(req, lock, &lockh);
1718
1719         /* Call the extent policy function to see if our request can be
1720          * granted, or is blocked.
1721          * If the OST lock has LDLM_FL_HAS_INTENT set, it means a glimpse
1722          * lock, and should not be granted if the lock will be blocked.
1723          */
1724
1725         LASSERT(ns == res->lr_namespace);
1726         lock_res(res);
1727         rc = policy(lock, &tmpflags, 0, &err, &rpc_list);
1728         check_res_locked(res);
1729
1730         /* FIXME: we should change the policy function slightly, to not make
1731          * this list at all, since we just turn around and free it */
1732         while (!list_empty(&rpc_list)) {
1733                 struct ldlm_lock *wlock =
1734                         list_entry(rpc_list.next, struct ldlm_lock, l_cp_ast);
1735                 LASSERT((lock->l_flags & LDLM_FL_AST_SENT) == 0);
1736                 LASSERT(lock->l_flags & LDLM_FL_CP_REQD);
1737                 lock->l_flags &= ~LDLM_FL_CP_REQD;
1738                 list_del_init(&wlock->l_cp_ast);
1739                 LDLM_LOCK_RELEASE(wlock);
1740         }
1741
1742         /* The lock met with no resistance; we're finished. */
1743         if (rc == LDLM_ITER_CONTINUE) {
1744                 /* do not grant locks to the liblustre clients: they cannot
1745                  * handle ASTs robustly.  We need to do this while still
1746                  * holding ns_lock to avoid the lock remaining on the res_link
1747                  * list (and potentially being added to l_pending_list by an
1748                  * AST) when we are going to drop this lock ASAP. */
1749                 if (lock->l_export->exp_libclient ||
1750                     OBD_FAIL_TIMEOUT(OBD_FAIL_LDLM_GLIMPSE, 2)) {
1751                         ldlm_resource_unlink_lock(lock);
1752                         err = ELDLM_LOCK_ABORTED;
1753                 } else {
1754                         err = ELDLM_LOCK_REPLACED;
1755                 }
1756                 unlock_res(res);
1757                 RETURN(err);
1758         }
1759
1760         /* Do not grant any lock, but instead send GL callbacks.  The extent
1761          * policy nicely created a list of all PW locks for us.  We will choose
1762          * the highest of those which are larger than the size in the LVB, if
1763          * any, and perform a glimpse callback. */
1764         res_lvb = res->lr_lvb_data;
1765         LASSERT(res_lvb != NULL);
1766         *reply_lvb = *res_lvb;
1767
1768         /*
1769          * ->ns_lock guarantees that no new locks are granted, and,
1770          * therefore, that res->lr_lvb_data cannot increase beyond the
1771          * end of already granted lock. As a result, it is safe to
1772          * check against "stale" reply_lvb->lvb_size value without
1773          * res->lr_lvb_sem.
1774          */
1775         arg.size = reply_lvb->lvb_size;
1776         arg.victim = &l;
1777         arg.liblustre = &only_liblustre;
1778         for (idx = 0; idx < LCK_MODE_NUM; idx++) {
1779                 tree = &res->lr_itree[idx];
1780                 if (tree->lit_mode == LCK_PR)
1781                         continue;
1782
1783                 interval_iterate_reverse(tree->lit_root,
1784                                          filter_intent_cb, &arg);
1785         }
1786         unlock_res(res);
1787
1788         /* There were no PW locks beyond the size in the LVB; finished. */
1789         if (l == NULL) {
1790                 if (only_liblustre) {
1791                         /* If we discovered a liblustre client with a PW lock,
1792                          * however, the LVB may be out of date!  The LVB is
1793                          * updated only on glimpse (which we don't do for
1794                          * liblustre clients) and cancel (which the client
1795                          * obviously has not yet done).  So if it has written
1796                          * data but kept the lock, the LVB is stale and needs
1797                          * to be updated from disk.
1798                          *
1799                          * Of course, this will all disappear when we switch to
1800                          * taking liblustre locks on the OST. */
1801                         ldlm_res_lvbo_update(res, NULL, 0, 1);
1802                 }
1803                 RETURN(ELDLM_LOCK_ABORTED);
1804         }
1805
1806         /*
1807          * This check is for lock taken in filter_prepare_destroy() that does
1808          * not have l_glimpse_ast set. So the logic is: if there is a lock
1809          * with no l_glimpse_ast set, this object is being destroyed already.
1810          *
1811          * Hence, if you are grabbing DLM locks on the server, always set
1812          * non-NULL glimpse_ast (e.g., ldlm_request.c:ldlm_glimpse_ast()).
1813          */
1814         if (l->l_glimpse_ast == NULL) {
1815                 /* We are racing with unlink(); just return -ENOENT */
1816                 rep->lock_policy_res1 = -ENOENT;
1817                 goto out;
1818         }
1819
1820         LASSERTF(l->l_glimpse_ast != NULL, "l == %p", l);
1821         rc = l->l_glimpse_ast(l, NULL); /* this will update the LVB */
1822         /* Update the LVB from disk if the AST failed (this is a legal race) */
1823         /*
1824          * XXX nikita: situation when ldlm_server_glimpse_ast() failed before
1825          * sending ast is not handled. This can result in lost client writes.
1826          */
1827         if (rc != 0)
1828                 ldlm_res_lvbo_update(res, NULL, 0, 1);
1829
1830         lock_res(res);
1831         *reply_lvb = *res_lvb;
1832         unlock_res(res);
1833
1834  out:
1835         LDLM_LOCK_RELEASE(l);
1836
1837         RETURN(ELDLM_LOCK_ABORTED);
1838 }
1839
1840 /*
1841  * per-obd_device iobuf pool.
1842  *
1843  * To avoid memory deadlocks in low-memory setups, amount of dynamic
1844  * allocations in write-path has to be minimized (see bug 5137).
1845  *
1846  * Pages, niobuf_local's and niobuf_remote's are pre-allocated and attached to
1847  * OST threads (see ost_thread_{init,done}()).
1848  *
1849  * "iobuf's" used by filter cannot be attached to OST thread, however, because
1850  * at the OST layer there are only (potentially) multiple obd_device of type
1851  * unknown at the time of OST thread creation.
1852  *
1853  * Instead array of iobuf's is attached to struct filter_obd (->fo_iobuf_pool
1854  * field). This array has size OST_MAX_THREADS, so that each OST thread uses
1855  * it's very own iobuf.
1856  *
1857  * Functions below
1858  *
1859  *     filter_kiobuf_pool_init()
1860  *
1861  *     filter_kiobuf_pool_done()
1862  *
1863  *     filter_iobuf_get()
1864  *
1865  * operate on this array. They are "generic" in a sense that they don't depend
1866  * on actual type of iobuf's (the latter depending on Linux kernel version).
1867  */
1868
1869 /*
1870  * destroy pool created by filter_iobuf_pool_init
1871  */
1872 static void filter_iobuf_pool_done(struct filter_obd *filter)
1873 {
1874         struct filter_iobuf **pool;
1875         int i;
1876
1877         ENTRY;
1878
1879         pool = filter->fo_iobuf_pool;
1880         if (pool != NULL) {
1881                 for (i = 0; i < filter->fo_iobuf_count; ++ i) {
1882                         if (pool[i] != NULL)
1883                                 filter_free_iobuf(pool[i]);
1884                 }
1885                 OBD_FREE(pool, filter->fo_iobuf_count * sizeof pool[0]);
1886                 filter->fo_iobuf_pool = NULL;
1887         }
1888         EXIT;
1889 }
1890
1891 static int filter_adapt_sptlrpc_conf(struct obd_device *obd, int initial)
1892 {
1893         struct filter_obd       *filter = &obd->u.filter;
1894         struct sptlrpc_rule_set  tmp_rset;
1895         int                      rc;
1896
1897         sptlrpc_rule_set_init(&tmp_rset);
1898         rc = sptlrpc_conf_target_get_rules(obd, &tmp_rset, initial);
1899         if (rc) {
1900                 CERROR("obd %s: failed get sptlrpc rules: %d\n",
1901                        obd->obd_name, rc);
1902                 return rc;
1903         }
1904
1905         sptlrpc_target_update_exp_flavor(obd, &tmp_rset);
1906
1907         write_lock(&filter->fo_sptlrpc_lock);
1908         sptlrpc_rule_set_free(&filter->fo_sptlrpc_rset);
1909         filter->fo_sptlrpc_rset = tmp_rset;
1910         write_unlock(&filter->fo_sptlrpc_lock);
1911
1912         return 0;
1913 }
1914
1915 /*
1916  * pre-allocate pool of iobuf's to be used by filter_{prep,commit}rw_write().
1917  */
1918 static int filter_iobuf_pool_init(struct filter_obd *filter)
1919 {
1920         void **pool;
1921
1922         ENTRY;
1923
1924
1925         OBD_ALLOC_GFP(filter->fo_iobuf_pool, OSS_THREADS_MAX * sizeof(*pool),
1926                       GFP_KERNEL);
1927         if (filter->fo_iobuf_pool == NULL)
1928                 RETURN(-ENOMEM);
1929
1930         filter->fo_iobuf_count = OSS_THREADS_MAX;
1931
1932         RETURN(0);
1933 }
1934
1935 /* Return iobuf allocated for @thread_id.  We don't know in advance how
1936  * many threads there will be so we allocate a large empty array and only
1937  * fill in those slots that are actually in use.
1938  * If we haven't allocated a pool entry for this thread before, do so now. */
1939 void *filter_iobuf_get(struct filter_obd *filter, struct obd_trans_info *oti)
1940 {
1941         int thread_id                    = (oti && oti->oti_thread) ?
1942                                            oti->oti_thread->t_id : -1;
1943         struct filter_iobuf  *pool       = NULL;
1944         struct filter_iobuf **pool_place = NULL;
1945
1946         if (thread_id >= 0) {
1947                 LASSERT(thread_id < filter->fo_iobuf_count);
1948                 pool = *(pool_place = &filter->fo_iobuf_pool[thread_id]);
1949         }
1950
1951         if (unlikely(pool == NULL)) {
1952                 pool = filter_alloc_iobuf(filter, OBD_BRW_WRITE,
1953                                           PTLRPC_MAX_BRW_PAGES);
1954                 if (pool_place != NULL)
1955                         *pool_place = pool;
1956         }
1957
1958         return pool;
1959 }
1960
1961 /* mount the file system (secretly).  lustre_cfg parameters are:
1962  * 1 = device
1963  * 2 = fstype
1964  * 3 = flags: failover=f, failout=n
1965  * 4 = mount options
1966  */
1967 int filter_common_setup(struct obd_device *obd, struct lustre_cfg* lcfg,
1968                         void *option)
1969 {
1970         struct filter_obd *filter = &obd->u.filter;
1971         struct vfsmount *mnt;
1972         struct lustre_mount_info *lmi;
1973         struct obd_uuid uuid;
1974         __u8 *uuid_ptr;
1975         char *str, *label;
1976         char ns_name[48];
1977         request_queue_t *q;
1978         int rc, i;
1979         ENTRY;
1980
1981         if (lcfg->lcfg_bufcount < 3 ||
1982             LUSTRE_CFG_BUFLEN(lcfg, 1) < 1 ||
1983             LUSTRE_CFG_BUFLEN(lcfg, 2) < 1)
1984                 RETURN(-EINVAL);
1985
1986         lmi = server_get_mount(obd->obd_name);
1987         if (lmi) {
1988                 /* We already mounted in lustre_fill_super.
1989                    lcfg bufs 1, 2, 4 (device, fstype, mount opts) are ignored.*/
1990                 struct lustre_sb_info *lsi = s2lsi(lmi->lmi_sb);
1991                 mnt = lmi->lmi_mnt;
1992                 obd->obd_fsops = fsfilt_get_ops(MT_STR(lsi->lsi_ldd));
1993         } else {
1994                 /* old path - used by lctl */
1995                 CERROR("Using old MDS mount method\n");
1996                 mnt = ll_kern_mount(lustre_cfg_string(lcfg, 2),
1997                                     MS_NOATIME|MS_NODIRATIME,
1998                                     lustre_cfg_string(lcfg, 1), option);
1999                 if (IS_ERR(mnt)) {
2000                         rc = PTR_ERR(mnt);
2001                         LCONSOLE_ERROR_MSG(0x135, "Can't mount disk %s (%d)\n",
2002                                            lustre_cfg_string(lcfg, 1), rc);
2003                         RETURN(rc);
2004                 }
2005
2006                 obd->obd_fsops = fsfilt_get_ops(lustre_cfg_string(lcfg, 2));
2007         }
2008         if (IS_ERR(obd->obd_fsops))
2009                 GOTO(err_mntput, rc = PTR_ERR(obd->obd_fsops));
2010
2011         rc = filter_iobuf_pool_init(filter);
2012         if (rc != 0)
2013                 GOTO(err_ops, rc);
2014
2015         if (lvfs_check_rdonly(lvfs_sbdev(mnt->mnt_sb))) {
2016                 CERROR("%s: Underlying device is marked as read-only. "
2017                        "Setup failed\n", obd->obd_name);
2018                 GOTO(err_ops, rc = -EROFS);
2019         }
2020
2021         /* failover is the default */
2022         obd->obd_replayable = 1;
2023
2024         if (lcfg->lcfg_bufcount > 3 && LUSTRE_CFG_BUFLEN(lcfg, 3) > 0) {
2025                 str = lustre_cfg_string(lcfg, 3);
2026                 if (strchr(str, 'n')) {
2027                         CWARN("%s: recovery disabled\n", obd->obd_name);
2028                         obd->obd_replayable = 0;
2029                 }
2030         }
2031
2032         filter->fo_vfsmnt = mnt;
2033         obd->u.obt.obt_sb = mnt->mnt_sb;
2034         filter->fo_fstype = mnt->mnt_sb->s_type->name;
2035         CDEBUG(D_SUPER, "%s: mnt = %p\n", filter->fo_fstype, mnt);
2036
2037         fsfilt_setup(obd, obd->u.obt.obt_sb);
2038
2039         OBD_SET_CTXT_MAGIC(&obd->obd_lvfs_ctxt);
2040         obd->obd_lvfs_ctxt.pwdmnt = mnt;
2041         obd->obd_lvfs_ctxt.pwd = mnt->mnt_root;
2042         obd->obd_lvfs_ctxt.fs = get_ds();
2043         obd->obd_lvfs_ctxt.cb_ops = filter_lvfs_ops;
2044
2045         init_mutex(&filter->fo_init_lock);
2046         filter->fo_committed_group = 0;
2047
2048         rc = filter_prep(obd);
2049         if (rc)
2050                 GOTO(err_ops, rc);
2051
2052         filter->fo_destroys_in_progress = 0;
2053         for (i = 0; i < 32; i++)
2054                 sema_init(&filter->fo_create_locks[i], 1);
2055
2056         spin_lock_init(&filter->fo_translock);
2057         spin_lock_init(&filter->fo_objidlock);
2058         CFS_INIT_LIST_HEAD(&filter->fo_export_list);
2059         sema_init(&filter->fo_alloc_lock, 1);
2060         init_brw_stats(&filter->fo_filter_stats);
2061         filter->fo_read_cache = 1; /* enable read-only cache by default */
2062         filter->fo_writethrough_cache = 1; /* enable writethrough cache */
2063         filter->fo_readcache_max_filesize = FILTER_MAX_CACHE_SIZE;
2064         filter->fo_fmd_max_num = FILTER_FMD_MAX_NUM_DEFAULT;
2065         filter->fo_fmd_max_age = FILTER_FMD_MAX_AGE_DEFAULT;
2066
2067         CFS_INIT_LIST_HEAD(&filter->fo_llog_list);
2068         spin_lock_init(&filter->fo_llog_list_lock);
2069
2070         filter->fo_fl_oss_capa = 1;
2071         CFS_INIT_LIST_HEAD(&filter->fo_capa_keys);
2072         filter->fo_capa_hash = init_capa_hash();
2073         if (filter->fo_capa_hash == NULL)
2074                 GOTO(err_ops, rc = -ENOMEM);
2075
2076         sprintf(ns_name, "filter-%s", obd->obd_uuid.uuid);
2077         obd->obd_namespace = ldlm_namespace_new(obd, ns_name, LDLM_NAMESPACE_SERVER,
2078                                                 LDLM_NAMESPACE_GREEDY);
2079         if (obd->obd_namespace == NULL)
2080                 GOTO(err_post, rc = -ENOMEM);
2081         obd->obd_namespace->ns_lvbp = obd;
2082         obd->obd_namespace->ns_lvbo = &filter_lvbo;
2083         ldlm_register_intent(obd->obd_namespace, filter_intent_policy);
2084
2085         ptlrpc_init_client(LDLM_CB_REQUEST_PORTAL, LDLM_CB_REPLY_PORTAL,
2086                            "filter_ldlm_cb_client", &obd->obd_ldlm_client);
2087
2088         rc = obd_llog_init(obd, &obd->obd_olg, obd, 1, NULL, NULL);
2089         if (rc) {
2090                 CERROR("failed to setup llogging subsystems\n");
2091                 GOTO(err_post, rc);
2092         }
2093
2094         rwlock_init(&filter->fo_sptlrpc_lock);
2095         sptlrpc_rule_set_init(&filter->fo_sptlrpc_rset);
2096         /* do this after llog being initialized */
2097         filter_adapt_sptlrpc_conf(obd, 1);
2098
2099         rc = lquota_setup(filter_quota_interface_ref, obd);
2100         if (rc)
2101                 GOTO(err_post, rc);
2102
2103         q = bdev_get_queue(mnt->mnt_sb->s_bdev);
2104         if (q->max_sectors < q->max_hw_sectors &&
2105             q->max_sectors < PTLRPC_MAX_BRW_SIZE >> 9)
2106                 LCONSOLE_INFO("%s: underlying device %s should be tuned "
2107                               "for larger I/O requests: max_sectors = %u "
2108                               "could be up to max_hw_sectors=%u\n",
2109                               obd->obd_name, mnt->mnt_sb->s_id,
2110                               q->max_sectors, q->max_hw_sectors);
2111
2112         uuid_ptr = fsfilt_uuid(obd, obd->u.obt.obt_sb);
2113         if (uuid_ptr != NULL) {
2114                 class_uuid_unparse(uuid_ptr, &uuid);
2115                 str = uuid.uuid;
2116         } else {
2117                 str = "no UUID";
2118         }
2119
2120         label = fsfilt_get_label(obd, obd->u.obt.obt_sb);
2121
2122         if (obd->obd_recovering) {
2123                 LCONSOLE_WARN("OST %s now serving %s (%s%s%s), but will be in "
2124                               "recovery for at least %d:%.02d, or until %d "
2125                               "client%s reconnect. During this time new clients"
2126                               " will not be allowed to connect. "
2127                               "Recovery progress can be monitored by watching "
2128                               "/proc/fs/lustre/obdfilter/%s/recovery_status.\n",
2129                               obd->obd_name, lustre_cfg_string(lcfg, 1),
2130                               label ?: "", label ? "/" : "", str,
2131                               obd->obd_recovery_timeout / 60,
2132                               obd->obd_recovery_timeout % 60,
2133                               obd->obd_max_recoverable_clients,
2134                               (obd->obd_max_recoverable_clients == 1) ? "":"s",
2135                               obd->obd_name);
2136         } else {
2137                 LCONSOLE_INFO("OST %s now serving %s (%s%s%s) with recovery "
2138                               "%s\n", obd->obd_name, lustre_cfg_string(lcfg, 1),
2139                               label ?: "", label ? "/" : "", str,
2140                               obd->obd_replayable ? "enabled" : "disabled");
2141         }
2142
2143         RETURN(0);
2144
2145 err_post:
2146         filter_post(obd);
2147 err_ops:
2148         fsfilt_put_ops(obd->obd_fsops);
2149         filter_iobuf_pool_done(filter);
2150 err_mntput:
2151         server_put_mount(obd->obd_name, mnt);
2152         obd->u.obt.obt_sb = 0;
2153         return rc;
2154 }
2155
2156 static int filter_setup(struct obd_device *obd, struct lustre_cfg* lcfg)
2157 {
2158         struct lprocfs_static_vars lvars;
2159         unsigned long addr;
2160         struct page *page;
2161         int rc;
2162
2163         CLASSERT(offsetof(struct obd_device, u.obt) ==
2164                  offsetof(struct obd_device, u.filter.fo_obt));
2165
2166         if (!LUSTRE_CFG_BUFLEN(lcfg, 1) || !LUSTRE_CFG_BUFLEN(lcfg, 2))
2167                 RETURN(-EINVAL);
2168
2169         /* 2.6.9 selinux wants a full option page for do_kern_mount (bug6471) */
2170         OBD_PAGE_ALLOC(page, CFS_ALLOC_STD);
2171         if (!page)
2172                 RETURN(-ENOMEM);
2173         addr = (unsigned long)cfs_page_address(page);
2174         clear_page((void *)addr);
2175
2176         /* lprocfs must be setup before the filter so state can be safely added
2177          * to /proc incrementally as the filter is setup */
2178         lprocfs_filter_init_vars(&lvars);
2179         if (lprocfs_obd_setup(obd, lvars.obd_vars) == 0 &&
2180             lprocfs_alloc_obd_stats(obd, LPROC_FILTER_LAST) == 0) {
2181                 /* Init obdfilter private stats here */
2182                 lprocfs_counter_init(obd->obd_stats, LPROC_FILTER_READ_BYTES,
2183                                      LPROCFS_CNTR_AVGMINMAX,
2184                                      "read_bytes", "bytes");
2185                 lprocfs_counter_init(obd->obd_stats, LPROC_FILTER_WRITE_BYTES,
2186                                      LPROCFS_CNTR_AVGMINMAX,
2187                                      "write_bytes", "bytes");
2188                 lprocfs_counter_init(obd->obd_stats, LPROC_FILTER_GET_PAGE,
2189                                      LPROCFS_CNTR_AVGMINMAX|LPROCFS_CNTR_STDDEV,
2190                                      "get_page", "usec");
2191                 lprocfs_counter_init(obd->obd_stats, LPROC_FILTER_NO_PAGE,
2192                                      LPROCFS_CNTR_AVGMINMAX,
2193                                      "get_page_failures", "num");
2194                 lprocfs_counter_init(obd->obd_stats, LPROC_FILTER_CACHE_ACCESS,
2195                                      LPROCFS_CNTR_AVGMINMAX,
2196                                      "cache_access", "pages");
2197                 lprocfs_counter_init(obd->obd_stats, LPROC_FILTER_CACHE_HIT,
2198                                      LPROCFS_CNTR_AVGMINMAX,
2199                                      "cache_hit", "pages");
2200                 lprocfs_counter_init(obd->obd_stats, LPROC_FILTER_CACHE_MISS,
2201                                      LPROCFS_CNTR_AVGMINMAX,
2202                                      "cache_miss", "pages");
2203
2204                 lproc_filter_attach_seqstat(obd);
2205                 obd->obd_proc_exports_entry = lprocfs_register("exports",
2206                                                         obd->obd_proc_entry,
2207                                                         NULL, NULL);
2208                 if (IS_ERR(obd->obd_proc_exports_entry)) {
2209                         rc = PTR_ERR(obd->obd_proc_exports_entry);
2210                         CERROR("error %d setting up lprocfs for %s\n",
2211                                rc, "exports");
2212                         obd->obd_proc_exports_entry = NULL;
2213                 }
2214         }
2215         if (obd->obd_proc_exports_entry)
2216                 lprocfs_add_simple(obd->obd_proc_exports_entry, "clear",
2217                                    lprocfs_nid_stats_clear_read,
2218                                    lprocfs_nid_stats_clear_write, obd, NULL);
2219
2220         memcpy((void *)addr, lustre_cfg_buf(lcfg, 4),
2221                LUSTRE_CFG_BUFLEN(lcfg, 4));
2222         rc = filter_common_setup(obd, lcfg, (void *)addr);
2223         OBD_PAGE_FREE(page);
2224
2225         if (rc) {
2226                 lprocfs_remove_proc_entry("clear", obd->obd_proc_exports_entry);
2227                 lprocfs_free_per_client_stats(obd);
2228                 lprocfs_free_obd_stats(obd);
2229                 lprocfs_obd_cleanup(obd);
2230         }
2231
2232         return rc;
2233 }
2234
2235 static struct llog_operations filter_mds_ost_repl_logops;
2236
2237 static struct llog_operations filter_size_orig_logops = {
2238         .lop_setup   = llog_obd_origin_setup,
2239         .lop_cleanup = llog_obd_origin_cleanup,
2240         .lop_add     = llog_obd_origin_add
2241 };
2242
2243 static int filter_olg_fini(struct obd_llog_group *olg)
2244 {
2245         struct llog_ctxt *ctxt;
2246         int rc = 0, rc2 = 0;
2247         ENTRY;
2248
2249         ctxt = llog_group_get_ctxt(olg, LLOG_MDS_OST_REPL_CTXT);
2250         if (ctxt)
2251                 rc = llog_cleanup(ctxt);
2252
2253         ctxt = llog_group_get_ctxt(olg, LLOG_SIZE_ORIG_CTXT);
2254         if (ctxt) {
2255                 rc2 = llog_cleanup(ctxt);
2256                 if (!rc)
2257                         rc = rc2;
2258         }
2259
2260         ctxt = llog_group_get_ctxt(olg, LLOG_CONFIG_ORIG_CTXT);
2261         if (ctxt) {
2262                 rc2 = llog_cleanup(ctxt);
2263                 if (!rc)
2264                         rc = rc2;
2265         }
2266
2267         RETURN(rc);
2268 }
2269
2270 static int
2271 filter_olg_init(struct obd_device *obd, struct obd_llog_group *olg,
2272                 struct obd_device *tgt)
2273 {
2274         int rc;
2275         ENTRY;
2276
2277         rc = llog_setup(obd, olg, LLOG_MDS_OST_REPL_CTXT, tgt, 0, NULL,
2278                         &filter_mds_ost_repl_logops);
2279         if (rc)
2280                 GOTO(cleanup, rc);
2281
2282         rc = llog_setup(obd, olg, LLOG_SIZE_ORIG_CTXT, tgt, 0, NULL,
2283                         &filter_size_orig_logops);
2284         if (rc)
2285                 GOTO(cleanup, rc);
2286         EXIT;
2287 cleanup:
2288         if (rc)
2289                 filter_olg_fini(olg);
2290         return rc;
2291 }
2292
2293 /**
2294  * Init the default olg, which is embeded in the obd_device, for filter.
2295  */
2296 static int
2297 filter_default_olg_init(struct obd_device *obd, struct obd_llog_group *olg,
2298                         struct obd_device *tgt)
2299 {
2300         struct filter_obd *filter = &obd->u.filter;
2301         struct llog_ctxt *ctxt;
2302         int rc;
2303         ENTRY;
2304
2305         filter->fo_lcm = llog_recov_thread_init(obd->obd_name);
2306         if (!filter->fo_lcm)
2307                 RETURN(-ENOMEM);
2308
2309         filter_mds_ost_repl_logops = llog_client_ops;
2310         filter_mds_ost_repl_logops.lop_cancel = llog_obd_repl_cancel;
2311         filter_mds_ost_repl_logops.lop_connect = llog_obd_repl_connect;
2312         filter_mds_ost_repl_logops.lop_sync = llog_obd_repl_sync;
2313
2314         rc = filter_olg_init(obd, olg, tgt);
2315         if (rc)
2316                 GOTO(cleanup_lcm, rc);
2317
2318         rc = llog_setup(obd, olg, LLOG_CONFIG_ORIG_CTXT, tgt, 0, NULL,
2319                         &llog_lvfs_ops);
2320         if (rc)
2321                 GOTO(cleanup_olg, rc);
2322
2323         ctxt = llog_group_get_ctxt(olg, LLOG_MDS_OST_REPL_CTXT);
2324         if (!ctxt) {
2325                 CERROR("Can't get ctxt for %p:%x\n", olg,
2326                        LLOG_MDS_OST_REPL_CTXT);
2327                 GOTO(cleanup_olg, rc = -ENODEV);
2328         }
2329         ctxt->loc_lcm = filter->fo_lcm;
2330         ctxt->llog_proc_cb = filter_recov_log_mds_ost_cb;
2331         llog_ctxt_put(ctxt);
2332
2333         RETURN(0);
2334 cleanup_olg:
2335         filter_olg_fini(olg);
2336 cleanup_lcm:
2337         llog_recov_thread_fini(filter->fo_lcm, 1);
2338         filter->fo_lcm = NULL;
2339         return rc;
2340 }
2341
2342 static int
2343 filter_llog_init(struct obd_device *obd, struct obd_llog_group *olg,
2344                  struct obd_device *tgt, int count, struct llog_catid *catid,
2345                  struct obd_uuid *uuid)
2346 {
2347         struct filter_obd *filter = &obd->u.filter;
2348         struct llog_ctxt *ctxt;
2349         int rc;
2350         ENTRY;
2351
2352         LASSERT(olg != NULL);
2353         if (olg == &obd->obd_olg)
2354                 return filter_default_olg_init(obd, olg, tgt);
2355
2356         LASSERT(filter->fo_lcm != NULL);
2357         rc = filter_olg_init(obd, olg, tgt);
2358         if (rc)
2359                 RETURN(rc);
2360         ctxt = llog_group_get_ctxt(olg, LLOG_MDS_OST_REPL_CTXT);
2361         if (!ctxt) {
2362                 CERROR("Can't get ctxt for %p:%x\n", olg,
2363                        LLOG_MDS_OST_REPL_CTXT);
2364                 filter_olg_fini(olg);
2365                 RETURN(-ENODEV);
2366         }
2367         ctxt->llog_proc_cb = filter_recov_log_mds_ost_cb;
2368         ctxt->loc_lcm = filter->fo_lcm;
2369         llog_ctxt_put(ctxt);
2370         RETURN(rc);
2371 }
2372
2373 static int filter_llog_finish(struct obd_device *obd, int count)
2374 {
2375         struct filter_obd *filter = &obd->u.filter;
2376         struct llog_ctxt *ctxt;
2377         ENTRY;
2378
2379         ctxt = llog_group_get_ctxt(&obd->obd_olg, LLOG_MDS_OST_REPL_CTXT);
2380         if (ctxt) {
2381                 /*
2382                  * Make sure that no cached llcds left in recov_thread.
2383                  * We actually do sync in disconnect time, but disconnect
2384                  * may not come being marked rq_no_resend = 1.
2385                  */
2386                 llog_sync(ctxt, NULL);
2387
2388                 /*
2389                  * Balance class_import_get() in llog_receptor_accept().
2390                  * This is safe to do, as llog is already synchronized
2391                  * and its import may go.
2392                  */
2393                 mutex_down(&ctxt->loc_sem);
2394                 if (ctxt->loc_imp) {
2395                         class_import_put(ctxt->loc_imp);
2396                         ctxt->loc_imp = NULL;
2397                 }
2398                 mutex_up(&ctxt->loc_sem);
2399                 llog_ctxt_put(ctxt);
2400         }
2401
2402         if (filter->fo_lcm) {
2403                 llog_recov_thread_fini(filter->fo_lcm, obd->obd_force);
2404                 filter->fo_lcm = NULL;
2405         }
2406         RETURN(filter_olg_fini(&obd->obd_olg));
2407 }
2408
2409 /**
2410  * Find the group llog according to group index in the llog group list.
2411  */
2412 static struct obd_llog_group *
2413 filter_find_olg_internal(struct filter_obd *filter, int group)
2414 {
2415         struct obd_llog_group *olg;
2416
2417         LASSERT_SPIN_LOCKED(&filter->fo_llog_list_lock);
2418         list_for_each_entry(olg, &filter->fo_llog_list, olg_list) {
2419                 if (olg->olg_group == group)
2420                         RETURN(olg);
2421         }
2422         RETURN(NULL);
2423 }
2424
2425 /**
2426  * Find the group llog according to group index on the filter
2427  */
2428 struct obd_llog_group *filter_find_olg(struct obd_device *obd, int group)
2429 {
2430         struct obd_llog_group *olg = NULL;
2431         struct filter_obd *filter;
2432
2433         filter = &obd->u.filter;
2434
2435         if (group == FILTER_GROUP_LLOG)
2436                 RETURN(&obd->obd_olg);
2437
2438         spin_lock(&filter->fo_llog_list_lock);
2439         olg = filter_find_olg_internal(filter, group);
2440         spin_unlock(&filter->fo_llog_list_lock);
2441
2442         RETURN(olg);
2443 }
2444 /**
2445  * Find the llog_group of the filter according to the group. If it can not
2446  * find, create the llog_group, which only happens when mds is being synced
2447  * with OST.
2448  */
2449 struct obd_llog_group *filter_find_create_olg(struct obd_device *obd, int group)
2450 {
2451         struct obd_llog_group *olg = NULL;
2452         struct filter_obd *filter;
2453         int rc;
2454
2455         filter = &obd->u.filter;
2456
2457         if (group == FILTER_GROUP_LLOG)
2458                 RETURN(&obd->obd_olg);
2459
2460         spin_lock(&filter->fo_llog_list_lock);
2461         olg = filter_find_olg_internal(filter, group);
2462         if (olg) {
2463                 if (olg->olg_initializing) {
2464                         GOTO(out_unlock, olg = ERR_PTR(-EBUSY));
2465                 } else {
2466                         GOTO(out_unlock, olg);
2467                 }
2468         }
2469         OBD_ALLOC_PTR(olg);
2470         if (olg == NULL)
2471                GOTO(out_unlock, olg = ERR_PTR(-ENOMEM));
2472
2473         llog_group_init(olg, group);
2474         list_add(&olg->olg_list, &filter->fo_llog_list);
2475         olg->olg_initializing = 1;
2476         spin_unlock(&filter->fo_llog_list_lock);
2477
2478         rc = llog_cat_initialize(obd, olg, 1, NULL);
2479         if (rc) {
2480                spin_lock(&filter->fo_llog_list_lock);
2481                list_del(&olg->olg_list);
2482                spin_unlock(&filter->fo_llog_list_lock);
2483                OBD_FREE_PTR(olg);
2484                GOTO(out, olg = ERR_PTR(-ENOMEM));
2485         }
2486         spin_lock(&filter->fo_llog_list_lock);
2487         olg->olg_initializing = 0;
2488         spin_unlock(&filter->fo_llog_list_lock);
2489         CDEBUG(D_OTHER, "%s: new llog group %u (0x%p)\n",
2490               obd->obd_name, group, olg);
2491 out:
2492         RETURN(olg);
2493
2494 out_unlock:
2495         spin_unlock(&filter->fo_llog_list_lock);
2496         GOTO(out, olg);
2497 }
2498
2499 static int filter_llog_connect(struct obd_export *exp,
2500                                struct llogd_conn_body *body)
2501 {
2502         struct obd_device *obd = exp->exp_obd;
2503         struct llog_ctxt *ctxt;
2504         struct obd_llog_group *olg;
2505         int rc;
2506         ENTRY;
2507
2508         CDEBUG(D_OTHER, "%s: LLog connect for: "LPX64"/"LPX64":%x\n",
2509                obd->obd_name, body->lgdc_logid.lgl_oid,
2510                body->lgdc_logid.lgl_ogr, body->lgdc_logid.lgl_ogen);
2511
2512         olg = filter_find_olg(obd, body->lgdc_logid.lgl_ogr);
2513         if (!olg) {
2514                 CERROR(" %s: can not find olg of group %d\n",
2515                        obd->obd_name, (int)body->lgdc_logid.lgl_ogr);
2516                 RETURN(-ENOENT);
2517         }
2518         llog_group_set_export(olg, exp);
2519
2520         ctxt = llog_group_get_ctxt(olg, body->lgdc_ctxt_idx);
2521         LASSERTF(ctxt != NULL, "ctxt is not null, ctxt idx %d \n",
2522                  body->lgdc_ctxt_idx);
2523
2524         CWARN("%s: Recovery from log "LPX64"/"LPX64":%x\n",
2525               obd->obd_name, body->lgdc_logid.lgl_oid,
2526               body->lgdc_logid.lgl_ogr, body->lgdc_logid.lgl_ogen);
2527
2528         rc = llog_connect(ctxt, &body->lgdc_logid,
2529                           &body->lgdc_gen, NULL);
2530         llog_ctxt_put(ctxt);
2531         if (rc != 0)
2532                 CERROR("failed to connect rc %d idx %d\n", rc,
2533                                 body->lgdc_ctxt_idx);
2534
2535         RETURN(rc);
2536 }
2537
2538 static int filter_llog_preclean(struct obd_device *obd)
2539 {
2540         struct obd_llog_group *olg, *tmp;
2541         struct filter_obd *filter;
2542         struct list_head  remove_list;
2543         int rc = 0;
2544         ENTRY;
2545
2546         rc = obd_llog_finish(obd, 0);
2547         if (rc)
2548                 CERROR("failed to cleanup llogging subsystem\n");
2549
2550         filter = &obd->u.filter;
2551         CFS_INIT_LIST_HEAD(&remove_list);
2552
2553         spin_lock(&filter->fo_llog_list_lock);
2554         while (!list_empty(&filter->fo_llog_list)) {
2555                 olg = list_entry(filter->fo_llog_list.next,
2556                                  struct obd_llog_group, olg_list);
2557                 list_del(&olg->olg_list);
2558                 list_add(&olg->olg_list, &remove_list);
2559         }
2560         spin_unlock(&filter->fo_llog_list_lock);
2561
2562         list_for_each_entry_safe(olg, tmp, &remove_list, olg_list) {
2563                 list_del_init(&olg->olg_list);
2564                 rc = filter_olg_fini(olg);
2565                 if (rc)
2566                         CERROR("failed to cleanup llogging subsystem for %u\n",
2567                                olg->olg_group);
2568                 OBD_FREE_PTR(olg);
2569         }
2570
2571         RETURN(rc);
2572 }
2573
2574 static int filter_precleanup(struct obd_device *obd,
2575                              enum obd_cleanup_stage stage)
2576 {
2577         int rc = 0;
2578         ENTRY;
2579
2580         switch(stage) {
2581         case OBD_CLEANUP_EARLY:
2582                 break;
2583         case OBD_CLEANUP_EXPORTS:
2584                 target_cleanup_recovery(obd);
2585                 rc = filter_llog_preclean(obd);
2586                 break;
2587         }
2588         RETURN(rc);
2589 }
2590
2591 static int filter_cleanup(struct obd_device *obd)
2592 {
2593         struct filter_obd *filter = &obd->u.filter;
2594         ENTRY;
2595
2596         if (obd->obd_fail)
2597                 LCONSOLE_WARN("%s: shutting down for failover; client state "
2598                               "will be preserved.\n", obd->obd_name);
2599
2600         if (!list_empty(&obd->obd_exports)) {
2601                 CERROR("%s: still has clients!\n", obd->obd_name);
2602                 class_disconnect_exports(obd);
2603                 if (!list_empty(&obd->obd_exports)) {
2604                         CERROR("still has exports after forced cleanup?\n");
2605                         RETURN(-EBUSY);
2606                 }
2607         }
2608
2609         lprocfs_remove_proc_entry("clear", obd->obd_proc_exports_entry);
2610         lprocfs_free_per_client_stats(obd);
2611         lprocfs_free_obd_stats(obd);
2612         lprocfs_obd_cleanup(obd);
2613         lquota_cleanup(filter_quota_interface_ref, obd);
2614
2615         /* Stop recovery before namespace cleanup. */
2616         target_stop_recovery_thread(obd);
2617         target_cleanup_recovery(obd);
2618
2619         ldlm_namespace_free(obd->obd_namespace, NULL, obd->obd_force);
2620         obd->obd_namespace = NULL;
2621
2622         sptlrpc_rule_set_free(&filter->fo_sptlrpc_rset);
2623
2624         if (obd->u.obt.obt_sb == NULL)
2625                 RETURN(0);
2626
2627         filter_post(obd);
2628
2629         LL_DQUOT_OFF(obd->u.obt.obt_sb);
2630         shrink_dcache_sb(obd->u.obt.obt_sb);
2631
2632         server_put_mount(obd->obd_name, filter->fo_vfsmnt);
2633         obd->u.obt.obt_sb = NULL;
2634
2635         fsfilt_put_ops(obd->obd_fsops);
2636
2637         filter_iobuf_pool_done(filter);
2638
2639         LCONSOLE_INFO("OST %s has stopped.\n", obd->obd_name);
2640
2641         RETURN(0);
2642 }
2643
2644 static int filter_connect_internal(struct obd_export *exp,
2645                                    struct obd_connect_data *data)
2646 {
2647         struct filter_export_data *fed = &exp->exp_filter_data;
2648
2649         if (!data)
2650                 RETURN(0);
2651
2652         CDEBUG(D_RPCTRACE, "%s: cli %s/%p ocd_connect_flags: "LPX64
2653                " ocd_version: %x ocd_grant: %d ocd_index: %u\n",
2654                exp->exp_obd->obd_name, exp->exp_client_uuid.uuid, exp,
2655                data->ocd_connect_flags, data->ocd_version,
2656                data->ocd_grant, data->ocd_index);
2657
2658         if (fed->fed_group != 0 && fed->fed_group != data->ocd_group) {
2659                 CWARN("!!! This export (nid %s) used object group %d "
2660                        "earlier; now it's trying to use group %d!  This could "
2661                        "be a bug in the MDS. Please report to "
2662                        "http://bugzilla.lustre.org/\n",
2663                        obd_export_nid2str(exp), fed->fed_group,data->ocd_group);
2664                 RETURN(-EPROTO);
2665         }
2666         fed->fed_group = data->ocd_group;
2667
2668         data->ocd_connect_flags &= OST_CONNECT_SUPPORTED;
2669         exp->exp_connect_flags = data->ocd_connect_flags;
2670         data->ocd_version = LUSTRE_VERSION_CODE;
2671
2672         if (exp->exp_connect_flags & OBD_CONNECT_GRANT) {
2673                 obd_size left, want;
2674
2675                 spin_lock(&exp->exp_obd->obd_osfs_lock);
2676                 left = filter_grant_space_left(exp);
2677                 want = data->ocd_grant;
2678                 filter_grant(exp, fed->fed_grant, want, left);
2679                 data->ocd_grant = fed->fed_grant;
2680                 spin_unlock(&exp->exp_obd->obd_osfs_lock);
2681
2682                 CDEBUG(D_CACHE, "%s: cli %s/%p ocd_grant: %d want: "
2683                        LPU64" left: "LPU64"\n", exp->exp_obd->obd_name,
2684                        exp->exp_client_uuid.uuid, exp,
2685                        data->ocd_grant, want, left);
2686         }
2687
2688         if (data->ocd_connect_flags & OBD_CONNECT_INDEX) {
2689                 struct filter_obd *filter = &exp->exp_obd->u.filter;
2690                 struct lr_server_data *lsd = filter->fo_fsd;
2691                 int index = le32_to_cpu(lsd->lsd_ost_index);
2692
2693                 if (!(lsd->lsd_feature_compat &
2694                       cpu_to_le32(OBD_COMPAT_OST))) {
2695                         /* this will only happen on the first connect */
2696                         lsd->lsd_ost_index = cpu_to_le32(data->ocd_index);
2697                         lsd->lsd_feature_compat |= cpu_to_le32(OBD_COMPAT_OST);
2698                         filter_update_server_data(exp->exp_obd,
2699                                                   filter->fo_rcvd_filp, lsd, 1);
2700                 } else if (index != data->ocd_index) {
2701                         LCONSOLE_ERROR_MSG(0x136, "Connection from %s to index"
2702                                            " %u doesn't match actual OST index"
2703                                            " %u in last_rcvd file, bad "
2704                                            "configuration?\n",
2705                                            obd_export_nid2str(exp), index,
2706                                            data->ocd_index);
2707                         RETURN(-EBADF);
2708                 }
2709         }
2710
2711         if (OBD_FAIL_CHECK(OBD_FAIL_OST_BRW_SIZE)) {
2712                 data->ocd_brw_size = 65536;
2713         } else if (data->ocd_connect_flags & OBD_CONNECT_BRW_SIZE) {
2714                 data->ocd_brw_size = min(data->ocd_brw_size,
2715                                (__u32)(PTLRPC_MAX_BRW_PAGES << CFS_PAGE_SHIFT));
2716                 LASSERT(data->ocd_brw_size);
2717         }
2718
2719         if (data->ocd_connect_flags & OBD_CONNECT_CKSUM) {
2720                 __u32 cksum_types = data->ocd_cksum_types;
2721
2722                 /* The client set in ocd_cksum_types the checksum types it
2723                  * supports. We have to mask off the algorithms that we don't
2724                  * support */
2725                 if (cksum_types & OBD_CKSUM_ALL)
2726                         data->ocd_cksum_types &= OBD_CKSUM_ALL;
2727                 else
2728                         data->ocd_cksum_types = OBD_CKSUM_CRC32;
2729
2730                 CDEBUG(D_RPCTRACE, "%s: cli %s supports cksum type %x, return "
2731                                    "%x\n", exp->exp_obd->obd_name,
2732                                    obd_export_nid2str(exp), cksum_types,
2733                                    data->ocd_cksum_types);
2734         } else {
2735                 /* This client does not support OBD_CONNECT_CKSUM
2736                  * fall back to CRC32 */
2737                 CDEBUG(D_RPCTRACE, "%s: cli %s does not support "
2738                                    "OBD_CONNECT_CKSUM, CRC32 will be used\n",
2739                                    exp->exp_obd->obd_name,
2740                                    obd_export_nid2str(exp));
2741         }
2742
2743         /* FIXME: Do the same with the MDS UUID and fsd_peeruuid.
2744          * FIXME: We don't strictly need the COMPAT flag for that,
2745          * FIXME: as fsd_peeruuid[0] will tell us if that is set.
2746          * FIXME: We needed it for the index, as index 0 is valid. */
2747
2748         RETURN(0);
2749 }
2750
2751 static int filter_reconnect(const struct lu_env *env,
2752                             struct obd_export *exp, struct obd_device *obd,
2753                             struct obd_uuid *cluuid,
2754                             struct obd_connect_data *data,
2755                             void *localdata)
2756 {
2757         int rc;
2758         ENTRY;
2759
2760         if (exp == NULL || obd == NULL || cluuid == NULL)
2761                 RETURN(-EINVAL);
2762
2763         rc = filter_connect_internal(exp, data);
2764         if (rc == 0)
2765                 filter_export_stats_init(obd, exp, localdata);
2766
2767         RETURN(rc);
2768 }
2769
2770 /* nearly identical to mds_connect */
2771 static int filter_connect(const struct lu_env *env,
2772                           struct lustre_handle *conn, struct obd_device *obd,
2773                           struct obd_uuid *cluuid,
2774                           struct obd_connect_data *data, void *localdata)
2775 {
2776         struct lvfs_run_ctxt saved;
2777         struct obd_export *exp;
2778         struct filter_export_data *fed;
2779         struct lsd_client_data *lcd = NULL;
2780         __u32 group;
2781         int rc;
2782         ENTRY;
2783
2784         if (conn == NULL || obd == NULL || cluuid == NULL)
2785                 RETURN(-EINVAL);
2786
2787         rc = class_connect(conn, obd, cluuid);
2788         if (rc)
2789                 RETURN(rc);
2790         exp = class_conn2export(conn);
2791         LASSERT(exp != NULL);
2792
2793         fed = &exp->exp_filter_data;
2794
2795         rc = filter_connect_internal(exp, data);
2796         if (rc)
2797                 GOTO(cleanup, rc);
2798
2799         filter_export_stats_init(obd, exp, localdata);
2800         if (obd->obd_replayable) {
2801                 OBD_ALLOC(lcd, sizeof(*lcd));
2802                 if (!lcd) {
2803                         CERROR("filter: out of memory for client data\n");
2804                         GOTO(cleanup, rc = -ENOMEM);
2805                 }
2806
2807                 memcpy(lcd->lcd_uuid, cluuid, sizeof(lcd->lcd_uuid));
2808                 fed->fed_lcd = lcd;
2809                 rc = filter_client_add(obd, exp, -1);
2810                 if (rc)
2811                         GOTO(cleanup, rc);
2812         }
2813
2814         group = data->ocd_group;
2815
2816         CWARN("%s: Received MDS connection ("LPX64"); group %d\n",
2817               obd->obd_name, exp->exp_handle.h_cookie, group);
2818
2819         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
2820         rc = filter_read_groups(obd, group, 1);
2821         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
2822         if (rc != 0) {
2823                 CERROR("can't read group %u\n", group);
2824                 GOTO(cleanup, rc);
2825         }
2826
2827         GOTO(cleanup, rc);
2828
2829 cleanup:
2830         if (rc) {
2831                 if (lcd) {
2832                         OBD_FREE_PTR(lcd);
2833                         fed->fed_lcd = NULL;
2834                 }
2835                 class_disconnect(exp);
2836         } else {
2837                 class_export_put(exp);
2838         }
2839
2840         RETURN(rc);
2841 }
2842
2843 /* Do extra sanity checks for grant accounting.  We do this at connect,
2844  * disconnect, and statfs RPC time, so it shouldn't be too bad.  We can
2845  * always get rid of it or turn it off when we know accounting is good. */
2846 static void filter_grant_sanity_check(struct obd_device *obd, const char *func)
2847 {
2848         struct filter_export_data *fed;
2849         struct obd_export *exp;
2850         obd_size maxsize = obd->obd_osfs.os_blocks * obd->obd_osfs.os_bsize;
2851         obd_size tot_dirty = 0, tot_pending = 0, tot_granted = 0;
2852         obd_size fo_tot_dirty, fo_tot_pending, fo_tot_granted;
2853
2854         if (list_empty(&obd->obd_exports))
2855                 return;
2856
2857         /* We don't want to do this for large machines that do lots of
2858            mounts or unmounts.  It burns... */
2859         if (obd->obd_num_exports > 100)
2860                 return;
2861
2862         spin_lock(&obd->obd_osfs_lock);
2863         spin_lock(&obd->obd_dev_lock);
2864         list_for_each_entry(exp, &obd->obd_exports, exp_obd_chain) {
2865                 int error = 0;
2866                 fed = &exp->exp_filter_data;
2867                 if (fed->fed_grant < 0 || fed->fed_pending < 0 ||
2868                     fed->fed_dirty < 0)
2869                         error = 1;
2870                 if (maxsize > 0) { /* we may not have done a statfs yet */
2871                         LASSERTF(fed->fed_grant + fed->fed_pending <= maxsize,
2872                                  "%s: cli %s/%p %ld+%ld > "LPU64"\n", func,
2873                                  exp->exp_client_uuid.uuid, exp,
2874                                  fed->fed_grant, fed->fed_pending, maxsize);
2875                         LASSERTF(fed->fed_dirty <= maxsize,
2876                                  "%s: cli %s/%p %ld > "LPU64"\n", func,
2877                                  exp->exp_client_uuid.uuid, exp,
2878                                  fed->fed_dirty, maxsize);
2879                 }
2880                 if (error)
2881                         CERROR("%s: cli %s/%p dirty %ld pend %ld grant %ld\n",
2882                                obd->obd_name, exp->exp_client_uuid.uuid, exp,
2883                                fed->fed_dirty, fed->fed_pending,fed->fed_grant);
2884                 else
2885                         CDEBUG(D_CACHE, "%s: cli %s/%p dirty %ld pend %ld grant %ld\n",
2886                                obd->obd_name, exp->exp_client_uuid.uuid, exp,
2887                                fed->fed_dirty, fed->fed_pending,fed->fed_grant);
2888                 tot_granted += fed->fed_grant + fed->fed_pending;
2889                 tot_pending += fed->fed_pending;
2890                 tot_dirty += fed->fed_dirty;
2891         }
2892         fo_tot_granted = obd->u.filter.fo_tot_granted;
2893         fo_tot_pending = obd->u.filter.fo_tot_pending;
2894         fo_tot_dirty = obd->u.filter.fo_tot_dirty;
2895         spin_unlock(&obd->obd_dev_lock);
2896         spin_unlock(&obd->obd_osfs_lock);
2897
2898         /* Do these assertions outside the spinlocks so we don't kill system */
2899         if (tot_granted != fo_tot_granted)
2900                 CERROR("%s: tot_granted "LPU64" != fo_tot_granted "LPU64"\n",
2901                        func, tot_granted, fo_tot_granted);
2902         if (tot_pending != fo_tot_pending)
2903                 CERROR("%s: tot_pending "LPU64" != fo_tot_pending "LPU64"\n",
2904                        func, tot_pending, fo_tot_pending);
2905         if (tot_dirty != fo_tot_dirty)
2906                 CERROR("%s: tot_dirty "LPU64" != fo_tot_dirty "LPU64"\n",
2907                        func, tot_dirty, fo_tot_dirty);
2908         if (tot_pending > tot_granted)
2909                 CERROR("%s: tot_pending "LPU64" > tot_granted "LPU64"\n",
2910                        func, tot_pending, tot_granted);
2911         if (tot_granted > maxsize)
2912                 CERROR("%s: tot_granted "LPU64" > maxsize "LPU64"\n",
2913                        func, tot_granted, maxsize);
2914         if (tot_dirty > maxsize)
2915                 CERROR("%s: tot_dirty "LPU64" > maxsize "LPU64"\n",
2916                        func, tot_dirty, maxsize);
2917 }
2918
2919 /* Remove this client from the grant accounting totals.  We also remove
2920  * the export from the obd device under the osfs and dev locks to ensure
2921  * that the filter_grant_sanity_check() calculations are always valid.
2922  * The client should do something similar when it invalidates its import. */
2923 static void filter_grant_discard(struct obd_export *exp)
2924 {
2925         struct obd_device *obd = exp->exp_obd;
2926         struct filter_obd *filter = &obd->u.filter;
2927         struct filter_export_data *fed = &exp->exp_filter_data;
2928
2929         spin_lock(&obd->obd_osfs_lock);
2930         spin_lock(&obd->obd_dev_lock);
2931         list_del_init(&exp->exp_obd_chain);
2932         spin_unlock(&obd->obd_dev_lock);
2933
2934         LASSERTF(filter->fo_tot_granted >= fed->fed_grant,
2935                  "%s: tot_granted "LPU64" cli %s/%p fed_grant %ld\n",
2936                  obd->obd_name, filter->fo_tot_granted,
2937                  exp->exp_client_uuid.uuid, exp, fed->fed_grant);
2938         filter->fo_tot_granted -= fed->fed_grant;
2939         LASSERTF(filter->fo_tot_pending >= fed->fed_pending,
2940                  "%s: tot_pending "LPU64" cli %s/%p fed_pending %ld\n",
2941                  obd->obd_name, filter->fo_tot_pending,
2942                  exp->exp_client_uuid.uuid, exp, fed->fed_pending);
2943         /* fo_tot_pending is handled in filter_grant_commit as bulk finishes */
2944         LASSERTF(filter->fo_tot_dirty >= fed->fed_dirty,
2945                  "%s: tot_dirty "LPU64" cli %s/%p fed_dirty %ld\n",
2946                  obd->obd_name, filter->fo_tot_dirty,
2947                  exp->exp_client_uuid.uuid, exp, fed->fed_dirty);
2948         filter->fo_tot_dirty -= fed->fed_dirty;
2949         fed->fed_dirty = 0;
2950         fed->fed_grant = 0;
2951
2952         spin_unlock(&obd->obd_osfs_lock);
2953 }
2954
2955 static int filter_destroy_export(struct obd_export *exp)
2956 {
2957         ENTRY;
2958
2959         if (exp->exp_filter_data.fed_pending)
2960                 CERROR("%s: cli %s/%p has %lu pending on destroyed export\n",
2961                        exp->exp_obd->obd_name, exp->exp_client_uuid.uuid,
2962                        exp, exp->exp_filter_data.fed_pending);
2963
2964         lquota_clearinfo(filter_quota_interface_ref, exp, exp->exp_obd);
2965
2966         target_destroy_export(exp);
2967         ldlm_destroy_export(exp);
2968
2969         if (obd_uuid_equals(&exp->exp_client_uuid, &exp->exp_obd->obd_uuid))
2970                 RETURN(0);
2971
2972
2973         if (exp->exp_obd->obd_replayable)
2974                 filter_client_free(exp);
2975         else
2976                 fsfilt_sync(exp->exp_obd, exp->exp_obd->u.obt.obt_sb);
2977
2978         filter_grant_discard(exp);
2979         filter_fmd_cleanup(exp);
2980
2981         if (!(exp->exp_flags & OBD_OPT_FORCE))
2982                 filter_grant_sanity_check(exp->exp_obd, __FUNCTION__);
2983
2984         RETURN(0);
2985 }
2986
2987 static void filter_sync_llogs(struct obd_device *obd, struct obd_export *dexp)
2988 {
2989         struct obd_llog_group *olg_min, *olg;
2990         struct filter_obd *filter;
2991         int worked = -1, group;
2992         struct llog_ctxt *ctxt;
2993         ENTRY;
2994
2995         filter = &obd->u.filter;
2996
2997         /* we can't sync log holding spinlock. also, we do not want to get
2998          * into livelock. so we do following: loop over MDS's exports in
2999          * group order and skip already synced llogs -bzzz */
3000         do {
3001                 /* look for group with min. number, but > worked */
3002                 olg_min = NULL;
3003                 group = 1 << 30;
3004                 spin_lock(&filter->fo_llog_list_lock);
3005                 list_for_each_entry(olg, &filter->fo_llog_list, olg_list) {
3006                         if (olg->olg_group <= worked) {
3007                                 /* this group is already synced */
3008                                 continue;
3009                         }
3010                         if (group < olg->olg_group) {
3011                                 /* we have group with smaller number to sync */
3012                                 continue;
3013                         }
3014                         /* store current minimal group */
3015                         olg_min = olg;
3016                         group = olg->olg_group;
3017                 }
3018                 spin_unlock(&filter->fo_llog_list_lock);
3019
3020                 if (olg_min == NULL)
3021                         break;
3022
3023                 worked = olg_min->olg_group;
3024                 if (olg_min->olg_exp &&
3025                     (dexp == olg_min->olg_exp || dexp == NULL)) {
3026                         int err;
3027                         ctxt = llog_group_get_ctxt(olg_min,
3028                                                    LLOG_MDS_OST_REPL_CTXT);
3029                         if (ctxt) {
3030                                 err = llog_sync(ctxt, olg_min->olg_exp);
3031                                 llog_ctxt_put(ctxt);
3032                                 if (err) {
3033                                         CERROR("error flushing logs to MDS: "
3034                                                "rc %d\n", err);
3035                                 }
3036                         }
3037                 }
3038         } while (olg_min != NULL);
3039 }
3040
3041 /* Also incredibly similar to mds_disconnect */
3042 static int filter_disconnect(struct obd_export *exp)
3043 {
3044         struct obd_device *obd = exp->exp_obd;
3045         int rc;
3046         ENTRY;
3047
3048         LASSERT(exp);
3049         class_export_get(exp);
3050
3051         if (!(exp->exp_flags & OBD_OPT_FORCE))
3052                 filter_grant_sanity_check(obd, __FUNCTION__);
3053         filter_grant_discard(exp);
3054
3055         /* Flush any remaining cancel messages out to the target */
3056         filter_sync_llogs(obd, exp);
3057
3058         /* Disconnect early so that clients can't keep using export */
3059         rc = class_disconnect(exp);
3060         if (exp->exp_obd->obd_namespace != NULL)
3061                 ldlm_cancel_locks_for_export(exp);
3062
3063         fsfilt_sync(obd, obd->u.obt.obt_sb);
3064
3065         lprocfs_exp_cleanup(exp);
3066
3067         class_export_put(exp);
3068         RETURN(rc);
3069 }
3070
3071 /* reverse import is changed, sync all cancels */
3072 static void filter_revimp_update(struct obd_export *exp)
3073 {
3074         ENTRY;
3075
3076         LASSERT(exp);
3077         class_export_get(exp);
3078
3079         /* flush any remaining cancel messages out to the target */
3080         filter_sync_llogs(exp->exp_obd, exp);
3081         class_export_put(exp);
3082         EXIT;
3083 }
3084
3085 static int filter_ping(struct obd_export *exp)
3086 {
3087         filter_fmd_expire(exp);
3088
3089         return 0;
3090 }
3091
3092 struct dentry *__filter_oa2dentry(struct obd_device *obd, struct obdo *oa,
3093                                   const char *what, int quiet)
3094 {
3095         struct dentry *dchild = NULL;
3096         obd_gr group = 0;
3097
3098         if (oa->o_valid & OBD_MD_FLGROUP)
3099                 group = oa->o_gr;
3100
3101         dchild = filter_fid2dentry(obd, NULL, group, oa->o_id);
3102
3103         if (IS_ERR(dchild)) {
3104                 CERROR("%s error looking up object: "LPU64":"LPU64"\n",
3105                        what, group, oa->o_id);
3106                 RETURN(dchild);
3107         }
3108
3109         if (dchild->d_inode == NULL) {
3110                 if (!quiet)
3111                         CERROR("%s: %s on non-existent object: "LPU64"\n",
3112                                obd->obd_name, what, oa->o_id);
3113                 f_dput(dchild);
3114                 RETURN(ERR_PTR(-ENOENT));
3115         }
3116
3117         return dchild;
3118 }
3119
3120 static int filter_getattr(struct obd_export *exp, struct obd_info *oinfo)
3121 {
3122         struct dentry *dentry = NULL;
3123         struct obd_device *obd;
3124         int rc = 0;
3125         ENTRY;
3126
3127         rc = filter_auth_capa(exp, NULL, oinfo_mdsno(oinfo),
3128                               oinfo_capa(oinfo), CAPA_OPC_META_READ);
3129         if (rc)
3130                 RETURN(rc);
3131
3132         obd = class_exp2obd(exp);
3133         if (obd == NULL) {
3134                 CDEBUG(D_IOCTL, "invalid client export %p\n", exp);
3135                 RETURN(-EINVAL);
3136         }
3137
3138         dentry = filter_oa2dentry(obd, oinfo->oi_oa);
3139         if (IS_ERR(dentry))
3140                 RETURN(PTR_ERR(dentry));
3141
3142         /* Limit the valid bits in the return data to what we actually use */
3143         oinfo->oi_oa->o_valid = OBD_MD_FLID;
3144         obdo_from_inode(oinfo->oi_oa, dentry->d_inode, FILTER_VALID_FLAGS);
3145
3146         f_dput(dentry);
3147         RETURN(rc);
3148 }
3149
3150 /* this should be enabled/disabled in condition to enabled/disabled large
3151  * inodes (fast EAs) in backing store FS. */
3152 int filter_update_fidea(struct obd_export *exp, struct inode *inode,
3153                         void *handle, struct obdo *oa)
3154 {
3155         struct obd_device *obd = exp->exp_obd;
3156         int rc = 0;
3157         ENTRY;
3158
3159         if (oa->o_valid & OBD_MD_FLFID) {
3160                 struct filter_fid ff;
3161
3162                 if (!(oa->o_valid & OBD_MD_FLGROUP))
3163                         oa->o_gr = 0;
3164                 /* packing fid and converting it to LE for storing into EA.
3165                  * Here ->o_stripe_idx should be filled by LOV and rest of
3166                  * fields - by client. */
3167                 ff.ff_fid.id = cpu_to_le64(oa->o_fid);
3168                 ff.ff_fid.f_type = cpu_to_le32(oa->o_stripe_idx);
3169                 ff.ff_fid.generation = cpu_to_le32(oa->o_generation);
3170                 ff.ff_objid = cpu_to_le64(oa->o_id);
3171                 ff.ff_group = cpu_to_le64(oa->o_gr);
3172
3173                 CDEBUG(D_INODE, "storing filter fid EA ("LPU64"/%u/%u"
3174                        LPU64"/"LPU64")\n", oa->o_fid, oa->o_stripe_idx,
3175                        oa->o_generation, oa->o_id, oa->o_gr);
3176
3177                 rc = fsfilt_set_md(obd, inode, handle, &ff, sizeof(ff), "fid");
3178                 if (rc)
3179                         CERROR("store fid in object failed! rc: %d\n", rc);
3180         } else {
3181                 CDEBUG(D_HA, "OSS object without fid info!\n");
3182         }
3183
3184         RETURN(rc);
3185 }
3186
3187 /* this is called from filter_truncate() until we have filter_punch() */
3188 int filter_setattr_internal(struct obd_export *exp, struct dentry *dentry,
3189                             struct obdo *oa, struct obd_trans_info *oti)
3190 {
3191         unsigned int orig_ids[MAXQUOTAS] = {0, 0};
3192         struct llog_cookie *fcc = NULL;
3193         struct filter_obd *filter;
3194         int rc, err, locked = 0, sync = 0;
3195         loff_t old_size = 0;
3196         unsigned int ia_valid;
3197         struct inode *inode;
3198         struct iattr iattr;
3199         void *handle;
3200         ENTRY;
3201
3202         LASSERT(dentry != NULL);
3203         LASSERT(!IS_ERR(dentry));
3204
3205         inode = dentry->d_inode;
3206         LASSERT(inode != NULL);
3207
3208         filter = &exp->exp_obd->u.filter;
3209         iattr_from_obdo(&iattr, oa, oa->o_valid);
3210         ia_valid = iattr.ia_valid;
3211
3212         if (oa->o_valid & OBD_MD_FLCOOKIE) {
3213                 OBD_ALLOC(fcc, sizeof(*fcc));
3214                 if (fcc != NULL)
3215                         *fcc = oa->o_lcookie;
3216         }
3217
3218         if (ia_valid & ATTR_SIZE || ia_valid & (ATTR_UID | ATTR_GID)) {
3219                 DQUOT_INIT(inode);
3220                 LOCK_INODE_MUTEX(inode);
3221                 old_size = i_size_read(inode);
3222                 locked = 1;
3223         }
3224
3225         /* If the inode still has SUID+SGID bits set (see filter_precreate())
3226          * then we will accept the UID+GID sent by the client during write for
3227          * initializing the ownership of this inode.  We only allow this to
3228          * happen once so clear these bits in setattr. In 2.6 kernels it is
3229          * possible to get ATTR_UID and ATTR_GID separately, so we only clear
3230          * the flags that are actually being set. */
3231         if (ia_valid & (ATTR_UID | ATTR_GID)) {
3232                 CDEBUG(D_INODE, "update UID/GID to %lu/%lu\n",
3233                        (unsigned long)oa->o_uid, (unsigned long)oa->o_gid);
3234
3235                 if ((inode->i_mode & S_ISUID) && (ia_valid & ATTR_UID)) {
3236                         if (!(ia_valid & ATTR_MODE)) {
3237                                 iattr.ia_mode = inode->i_mode;
3238                                 iattr.ia_valid |= ATTR_MODE;
3239                         }
3240                         iattr.ia_mode &= ~S_ISUID;
3241                 }
3242                 if ((inode->i_mode & S_ISGID) && (ia_valid & ATTR_GID)) {
3243                         if (!(iattr.ia_valid & ATTR_MODE)) {
3244                                 iattr.ia_mode = inode->i_mode;
3245                                 iattr.ia_valid |= ATTR_MODE;
3246                         }
3247                         iattr.ia_mode &= ~S_ISGID;
3248                 }
3249
3250                 orig_ids[USRQUOTA] = inode->i_uid;
3251                 orig_ids[GRPQUOTA] = inode->i_gid;
3252                 handle = fsfilt_start_log(exp->exp_obd, inode,
3253                                           FSFILT_OP_SETATTR, oti, 1);
3254                 if (IS_ERR(handle))
3255                         GOTO(out_unlock, rc = PTR_ERR(handle));
3256
3257                 /* update inode EA only once when inode is suid bit marked. As
3258                  * on 2.6.x UID and GID may be set separately, we check here
3259                  * only one of them to avoid double setting. */
3260                 if (inode->i_mode & S_ISUID)
3261                         filter_update_fidea(exp, inode, handle, oa);
3262         } else {
3263                 handle = fsfilt_start(exp->exp_obd, inode,
3264                                       FSFILT_OP_SETATTR, oti);
3265                 if (IS_ERR(handle))
3266                         GOTO(out_unlock, rc = PTR_ERR(handle));
3267         }
3268         if (oa->o_valid & OBD_MD_FLFLAGS) {
3269                 rc = fsfilt_iocontrol(exp->exp_obd, inode, NULL,
3270                                       EXT3_IOC_SETFLAGS, (long)&oa->o_flags);
3271         } else {
3272                 rc = fsfilt_setattr(exp->exp_obd, dentry, handle, &iattr, 1);
3273                 if (fcc != NULL)
3274                         /* set cancel cookie callback function */
3275                         sync = fsfilt_add_journal_cb(exp->exp_obd, 0, handle,
3276                                                      filter_cancel_cookies_cb,
3277                                                      fcc);
3278         }
3279
3280         if (OBD_FAIL_CHECK(OBD_FAIL_OST_SETATTR_CREDITS))
3281                 fsfilt_extend(exp->exp_obd, inode, 0, handle);
3282
3283         /* The truncate might have used up our transaction credits.  Make
3284          * sure we have one left for the last_rcvd update. */
3285         err = fsfilt_extend(exp->exp_obd, inode, 1, handle);
3286
3287         rc = filter_finish_transno(exp, oti, rc, sync);
3288         if (sync) {
3289                 filter_cancel_cookies_cb(exp->exp_obd, 0, fcc, rc);
3290                 fcc = NULL;
3291         }
3292
3293         err = fsfilt_commit(exp->exp_obd, inode, handle, 0);
3294         if (err) {
3295                 CERROR("error on commit, err = %d\n", err);
3296                 if (!rc)
3297                         rc = err;
3298         } else {
3299                 fcc = NULL;
3300         }
3301
3302         /* For a partial-page truncate flush the page to disk immediately
3303          * to avoid data corruption during direct disk write. b=17397 */
3304         if (!sync && (iattr.ia_valid & ATTR_SIZE) &&
3305             old_size != iattr.ia_size && (iattr.ia_size & ~CFS_PAGE_MASK)) {
3306                 err = filemap_fdatawrite_range(inode->i_mapping, iattr.ia_size,
3307                                                iattr.ia_size + 1);
3308                 if (!rc)
3309                         rc = err;
3310         }
3311
3312         if (locked) {
3313                 UNLOCK_INODE_MUTEX(inode);
3314                 locked = 0;
3315         }
3316
3317         EXIT;
3318 out_unlock:
3319         if (locked)
3320                 UNLOCK_INODE_MUTEX(inode);
3321
3322         if (fcc)
3323                 OBD_FREE(fcc, sizeof(*fcc));
3324
3325         /* trigger quota release */
3326         if (ia_valid & (ATTR_SIZE | ATTR_UID | ATTR_GID)) {
3327                 unsigned int cur_ids[MAXQUOTAS] = {oa->o_uid, oa->o_gid};
3328                 int rc2 = lquota_adjust(filter_quota_interface_ref,
3329                                         exp->exp_obd, cur_ids,
3330                                         orig_ids, rc, FSFILT_OP_SETATTR);
3331                 CDEBUG(rc2 ? D_ERROR : D_QUOTA,
3332                        "filter adjust qunit. (rc:%d)\n", rc2);
3333         }
3334         return rc;
3335 }
3336
3337 /* this is called from filter_truncate() until we have filter_punch() */
3338 int filter_setattr(struct obd_export *exp, struct obd_info *oinfo,
3339                    struct obd_trans_info *oti)
3340 {
3341         struct obdo *oa = oinfo->oi_oa;
3342         struct lustre_capa *capa = oinfo_capa(oinfo);
3343         struct ldlm_res_id res_id;
3344         struct filter_mod_data *fmd;
3345         struct lvfs_run_ctxt saved;
3346         struct filter_obd *filter;
3347         struct ldlm_resource *res;
3348         struct dentry *dentry;
3349         __u64 opc = CAPA_OPC_META_WRITE;
3350         int rc;
3351         ENTRY;
3352
3353         if (oa->o_valid & OBD_FL_TRUNC)
3354                 opc |= CAPA_OPC_OSS_TRUNC;
3355         rc = filter_auth_capa(exp, NULL, obdo_mdsno(oa), capa, opc);
3356         if (rc)
3357                 RETURN(rc);
3358
3359         if (oa->o_valid & (OBD_MD_FLUID | OBD_MD_FLGID)) {
3360                 rc = filter_capa_fixoa(exp, oa, obdo_mdsno(oa), capa);
3361                 if (rc)
3362                         RETURN(rc);
3363         }
3364
3365         osc_build_res_name(oa->o_id, oa->o_gr, &res_id);
3366         /* This would be very bad - accidentally truncating a file when
3367          * changing the time or similar - bug 12203. */
3368         if (oa->o_valid & OBD_MD_FLSIZE &&
3369             oinfo->oi_policy.l_extent.end != OBD_OBJECT_EOF) {
3370                 static char mdsinum[48];
3371
3372                 if (oa->o_valid & OBD_MD_FLFID)
3373                         snprintf(mdsinum, sizeof(mdsinum) - 1,
3374                                  " of inode "LPU64"/%u", oa->o_fid,
3375                                  oa->o_generation);
3376                 else
3377                         mdsinum[0] = '\0';
3378
3379                 CERROR("%s: setattr from %s trying to truncate objid "LPU64
3380                        " %s\n",
3381                        exp->exp_obd->obd_name, obd_export_nid2str(exp),
3382                        oa->o_id, mdsinum);
3383                 RETURN(-EPERM);
3384         }
3385
3386         dentry = __filter_oa2dentry(exp->exp_obd, oa, __FUNCTION__, 1);
3387         if (IS_ERR(dentry))
3388                 RETURN(PTR_ERR(dentry));
3389
3390         filter = &exp->exp_obd->u.filter;
3391         push_ctxt(&saved, &exp->exp_obd->obd_lvfs_ctxt, NULL);
3392         lock_kernel();
3393
3394         if (oa->o_valid &
3395             (OBD_MD_FLMTIME | OBD_MD_FLATIME | OBD_MD_FLCTIME)) {
3396                 fmd = filter_fmd_get(exp, oa->o_id, oa->o_gr);
3397                 if (fmd && fmd->fmd_mactime_xid < oti->oti_xid)
3398                         fmd->fmd_mactime_xid = oti->oti_xid;
3399                 filter_fmd_put(exp, fmd);
3400         }
3401
3402         /* setting objects attributes (including owner/group) */
3403         rc = filter_setattr_internal(exp, dentry, oa, oti);
3404         if (rc)
3405                 GOTO(out_unlock, rc);
3406
3407         res = ldlm_resource_get(exp->exp_obd->obd_namespace, NULL,
3408                                 &res_id, LDLM_EXTENT, 0);
3409
3410         if (res != NULL) {
3411                 LDLM_RESOURCE_ADDREF(res);
3412                 rc = ldlm_res_lvbo_update(res, NULL, 0, 0);
3413                 LDLM_RESOURCE_DELREF(res);
3414                 ldlm_resource_putref(res);
3415         }
3416
3417         oa->o_valid = OBD_MD_FLID;
3418
3419         /* Quota release need uid/gid info */
3420         obdo_from_inode(oa, dentry->d_inode,
3421                         FILTER_VALID_FLAGS | OBD_MD_FLUID | OBD_MD_FLGID);
3422
3423         EXIT;
3424 out_unlock:
3425         unlock_kernel();
3426         f_dput(dentry);
3427         pop_ctxt(&saved, &exp->exp_obd->obd_lvfs_ctxt, NULL);
3428         return rc;
3429 }
3430
3431 /* XXX identical to osc_unpackmd */
3432 static int filter_unpackmd(struct obd_export *exp, struct lov_stripe_md **lsmp,
3433                            struct lov_mds_md *lmm, int lmm_bytes)
3434 {
3435         int lsm_size;
3436         ENTRY;
3437
3438         if (lmm != NULL) {
3439                 if (lmm_bytes < sizeof (*lmm)) {
3440                         CERROR("lov_mds_md too small: %d, need %d\n",
3441                                lmm_bytes, (int)sizeof(*lmm));
3442                         RETURN(-EINVAL);
3443                 }
3444                 /* XXX LOV_MAGIC etc check? */
3445
3446                 if (lmm->lmm_object_id == cpu_to_le64(0)) {
3447                         CERROR("lov_mds_md: zero lmm_object_id\n");
3448                         RETURN(-EINVAL);
3449                 }
3450         }
3451
3452         lsm_size = lov_stripe_md_size(1);
3453         if (lsmp == NULL)
3454                 RETURN(lsm_size);
3455
3456         if (*lsmp != NULL && lmm == NULL) {
3457                 OBD_FREE((*lsmp)->lsm_oinfo[0], sizeof(struct lov_oinfo));
3458                 OBD_FREE(*lsmp, lsm_size);
3459                 *lsmp = NULL;
3460                 RETURN(0);
3461         }
3462
3463         if (*lsmp == NULL) {
3464                 OBD_ALLOC(*lsmp, lsm_size);
3465                 if (*lsmp == NULL)
3466                         RETURN(-ENOMEM);
3467
3468                 OBD_ALLOC((*lsmp)->lsm_oinfo[0], sizeof(struct lov_oinfo));
3469                 if ((*lsmp)->lsm_oinfo[0] == NULL) {
3470                         OBD_FREE(*lsmp, lsm_size);
3471                         RETURN(-ENOMEM);
3472                 }
3473                 loi_init((*lsmp)->lsm_oinfo[0]);
3474         }
3475
3476         if (lmm != NULL) {
3477                 /* XXX zero *lsmp? */
3478                 (*lsmp)->lsm_object_id = le64_to_cpu (lmm->lmm_object_id);
3479                 LASSERT((*lsmp)->lsm_object_id);
3480         }
3481
3482         (*lsmp)->lsm_maxbytes = LUSTRE_STRIPE_MAXBYTES;
3483
3484         RETURN(lsm_size);
3485 }
3486
3487 /* caller must hold fo_create_locks[oa->o_gr] */
3488 static int filter_destroy_precreated(struct obd_export *exp, struct obdo *oa,
3489                                       struct filter_obd *filter)
3490 {
3491         struct obdo doa; /* XXX obdo on stack */
3492         obd_id last, id;
3493         int rc;
3494         ENTRY;
3495
3496         LASSERT(oa);
3497         LASSERT_MDS_GROUP(oa->o_gr);
3498         LASSERT(oa->o_valid & OBD_MD_FLGROUP);
3499         LASSERT(down_trylock(&filter->fo_create_locks[oa->o_gr]) != 0);
3500
3501         memset(&doa, 0, sizeof(doa));
3502
3503         doa.o_valid |= OBD_MD_FLGROUP;
3504         doa.o_gr = oa->o_gr;
3505         doa.o_mode = S_IFREG;
3506
3507         if (!test_bit(doa.o_gr, &filter->fo_destroys_in_progress)) {
3508                 CERROR("%s:["LPU64"] destroys_in_progress already cleared\n",
3509                        exp->exp_obd->obd_name, doa.o_gr);
3510                 RETURN(0);
3511         }
3512
3513         last = filter_last_id(filter, doa.o_gr);
3514
3515         CWARN("%s: deleting orphan objects from "LPU64" to "LPU64"\n",
3516                exp->exp_obd->obd_name, oa->o_id + 1, last);
3517
3518         for (id = last; id > oa->o_id; id--) {
3519                 doa.o_id = id;
3520                 rc = filter_destroy(exp, &doa, NULL, NULL, NULL, NULL);
3521                 if (rc && rc != -ENOENT) /* this is pretty fatal... */
3522                         CEMERG("error destroying precreate objid "LPU64": %d\n",
3523                                id, rc);
3524                 filter_set_last_id(filter, id - 1, doa.o_gr);
3525                 /* update last_id on disk periodically so that if we restart
3526                  * we don't need to re-scan all of the just-deleted objects. */
3527                 if ((id & 511) == 0)
3528                         filter_update_last_objid(exp->exp_obd, doa.o_gr, 0);
3529         }
3530
3531         CDEBUG(D_HA, "%s: after destroy: set last_objids["LPU64"] = "LPU64"\n",
3532                exp->exp_obd->obd_name, doa.o_gr, oa->o_id);
3533
3534         rc = filter_update_last_objid(exp->exp_obd, doa.o_gr, 1);
3535         clear_bit(doa.o_gr, &filter->fo_destroys_in_progress);
3536
3537         RETURN(rc);
3538 }
3539
3540 static int filter_precreate(struct obd_device *obd, struct obdo *oa,
3541                             obd_gr group, int *num);
3542 /* returns a negative error or a nonnegative number of files to create */
3543 static int filter_handle_precreate(struct obd_export *exp, struct obdo *oa,
3544                                    obd_gr group, struct obd_trans_info *oti)
3545 {
3546         struct obd_device *obd = exp->exp_obd;
3547         struct filter_obd *filter = &obd->u.filter;
3548         int diff, rc;
3549         ENTRY;
3550
3551         /* delete orphans request */
3552         if ((oa->o_valid & OBD_MD_FLFLAGS) && (oa->o_flags & OBD_FL_DELORPHAN)){
3553                 if (oti->oti_conn_cnt < exp->exp_conn_cnt) {
3554                         CERROR("%s: dropping old orphan cleanup request\n",
3555                                obd->obd_name);
3556                         RETURN(0);
3557                 }
3558                 /* This causes inflight precreates to abort and drop lock */
3559                 set_bit(group, &filter->fo_destroys_in_progress);
3560                 down(&filter->fo_create_locks[group]);
3561                 if (!test_bit(group, &filter->fo_destroys_in_progress)) {
3562                         CERROR("%s:["LPU64"] destroys_in_progress already cleared\n",
3563                                exp->exp_obd->obd_name, group);
3564                         up(&filter->fo_create_locks[group]);
3565                         RETURN(0);
3566                 }
3567                 diff = oa->o_id - filter_last_id(filter, group);
3568                 CDEBUG(D_HA, "filter_last_id() = "LPU64" -> diff = %d\n",
3569                        filter_last_id(filter, group), diff);
3570
3571                 if (-diff > OST_MAX_PRECREATE) {
3572                         CERROR("%s: ignoring bogus orphan destroy request: "
3573                                "obdid "LPU64" last_id "LPU64"\n", obd->obd_name,
3574                                oa->o_id, filter_last_id(filter, group));
3575                         /* FIXME: should reset precreate_next_id on MDS */
3576                         GOTO(out, rc = -EINVAL);
3577                 }
3578                 if (diff < 0) {
3579                         rc = filter_destroy_precreated(exp, oa, filter);
3580                         if (rc)
3581                                 CERROR("%s: unable to write lastobjid, but "
3582                                        "orphans were deleted\n", obd->obd_name);
3583                         GOTO(out, rc);
3584                 } else {
3585                         /* XXX: Used by MDS for the first time! */
3586                         clear_bit(group, &filter->fo_destroys_in_progress);
3587                 }
3588         } else {
3589                 down(&filter->fo_create_locks[group]);
3590                 if (oti->oti_conn_cnt < exp->exp_conn_cnt) {
3591                         CERROR("%s: dropping old precreate request\n",
3592                                obd->obd_name);
3593                         GOTO(out, rc = 0);
3594                 }
3595                 /* only precreate if group == 0 and o_id is specfied */
3596                 if (group == FILTER_GROUP_LLOG || oa->o_id == 0)
3597                         diff = 1;
3598                 else
3599                         diff = oa->o_id - filter_last_id(filter, group);
3600                 CDEBUG(D_RPCTRACE, "filter_last_id() = "LPU64" -> diff = %d\n",
3601                        filter_last_id(filter, group), diff);
3602
3603                 LASSERTF(diff >= 0,"%s: "LPU64" - "LPU64" = %d\n",obd->obd_name,
3604                          oa->o_id, filter_last_id(filter, group), diff);
3605         }
3606
3607         if (diff > 0) {
3608                 oa->o_id = filter_last_id(&obd->u.filter, group);
3609                 rc = filter_precreate(obd, oa, group, &diff);
3610                 oa->o_id = filter_last_id(&obd->u.filter, group);
3611                 oa->o_gr = group;
3612                 oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
3613                 GOTO(out, rc);
3614         }
3615         /* else diff == 0 */
3616         GOTO(out, rc = 0);
3617 out:
3618         up(&filter->fo_create_locks[group]);
3619         return rc;
3620 }
3621
3622 static int filter_statfs(struct obd_device *obd, struct obd_statfs *osfs,
3623                          __u64 max_age, __u32 flags)
3624 {
3625         struct filter_obd *filter = &obd->u.filter;
3626         int blockbits = obd->u.obt.obt_sb->s_blocksize_bits;
3627         int rc;
3628         ENTRY;
3629
3630         /* at least try to account for cached pages.  its still racey and
3631          * might be under-reporting if clients haven't announced their
3632          * caches with brw recently */
3633         spin_lock(&obd->obd_osfs_lock);
3634         rc = fsfilt_statfs(obd, obd->u.obt.obt_sb, max_age);
3635         memcpy(osfs, &obd->obd_osfs, sizeof(*osfs));
3636         spin_unlock(&obd->obd_osfs_lock);
3637
3638         CDEBUG(D_SUPER | D_CACHE, "blocks cached "LPU64" granted "LPU64
3639                " pending "LPU64" free "LPU64" avail "LPU64"\n",
3640                filter->fo_tot_dirty, filter->fo_tot_granted,
3641                filter->fo_tot_pending,
3642                osfs->os_bfree << blockbits, osfs->os_bavail << blockbits);
3643
3644         filter_grant_sanity_check(obd, __FUNCTION__);
3645
3646         osfs->os_bavail -= min(osfs->os_bavail, GRANT_FOR_LLOG(obd) +
3647                                ((filter->fo_tot_dirty + filter->fo_tot_pending +
3648                                  osfs->os_bsize - 1) >> blockbits));
3649
3650         /* set EROFS to state field if FS is mounted as RDONLY. The goal is to
3651          * stop creating files on MDS if OST is not good shape to create
3652          * objects.*/
3653         osfs->os_state = (filter->fo_obt.obt_sb->s_flags & MS_RDONLY) ?
3654                 EROFS : 0;
3655         RETURN(rc);
3656 }
3657
3658 static int filter_use_existing_obj(struct obd_device *obd,
3659                                    struct dentry *dchild, void **handle,
3660                                    int *cleanup_phase)
3661 {
3662         struct inode *inode = dchild->d_inode;
3663         struct iattr iattr;
3664         int rc;
3665
3666         if ((inode->i_mode & (S_ISUID | S_ISGID)) == (S_ISUID|S_ISGID))
3667                 return 0;
3668
3669         *handle = fsfilt_start_log(obd, inode, FSFILT_OP_SETATTR, NULL, 1);
3670         if (IS_ERR(*handle))
3671                 return PTR_ERR(*handle);
3672
3673         iattr.ia_valid = ATTR_MODE;
3674         iattr.ia_mode = S_ISUID | S_ISGID |0666;
3675         rc = fsfilt_setattr(obd, dchild, *handle, &iattr, 1);
3676         if (rc == 0)
3677                 *cleanup_phase = 3;
3678
3679         return rc;
3680 }
3681
3682
3683 /* We rely on the fact that only one thread will be creating files in a given
3684  * group at a time, which is why we don't need an atomic filter_get_new_id.
3685  * Even if we had that atomic function, the following race would exist:
3686  *
3687  * thread 1: gets id x from filter_next_id
3688  * thread 2: gets id (x + 1) from filter_next_id
3689  * thread 2: creates object (x + 1)
3690  * thread 1: tries to create object x, gets -ENOSPC
3691  *
3692  * Caller must hold fo_create_locks[group]
3693  */
3694 static int filter_precreate(struct obd_device *obd, struct obdo *oa,
3695                             obd_gr group, int *num)
3696 {
3697         struct dentry *dchild = NULL, *dparent = NULL;
3698         struct filter_obd *filter;
3699         struct obd_statfs *osfs;
3700         int err = 0, rc = 0, recreate_obj = 0, i;
3701         cfs_time_t enough_time = cfs_time_shift(DISK_TIMEOUT/2);
3702         obd_id next_id;
3703         void *handle = NULL;
3704         ENTRY;
3705
3706         filter = &obd->u.filter;
3707
3708         LASSERT(down_trylock(&filter->fo_create_locks[group]) != 0);
3709
3710         OBD_FAIL_TIMEOUT(OBD_FAIL_TGT_DELAY_PRECREATE, obd_timeout / 2);
3711
3712         if ((oa->o_valid & OBD_MD_FLFLAGS) &&
3713             (oa->o_flags & OBD_FL_RECREATE_OBJS)) {
3714                 recreate_obj = 1;
3715         } else {
3716                 OBD_ALLOC(osfs, sizeof(*osfs));
3717                 if (osfs == NULL)
3718                         RETURN(-ENOMEM);
3719                 rc = filter_statfs(obd, osfs, cfs_time_current_64() - HZ, 0);
3720                 if (rc == 0 && osfs->os_bavail < (osfs->os_blocks >> 10)) {
3721                         CDEBUG(D_RPCTRACE,"%s: not enough space for create "
3722                                LPU64"\n", obd->obd_name, osfs->os_bavail <<
3723                                filter->fo_vfsmnt->mnt_sb->s_blocksize_bits);
3724                         *num = 0;
3725                         rc = -ENOSPC;
3726                 }
3727                 OBD_FREE(osfs, sizeof(*osfs));
3728                 if (rc)
3729                         RETURN(rc);
3730         }
3731
3732         CDEBUG(D_RPCTRACE, "%s: precreating %d objects in group "LPU64
3733                " at "LPU64"\n", obd->obd_name, *num, group, oa->o_id);
3734
3735         for (i = 0; i < *num && err == 0; i++) {
3736                 int cleanup_phase = 0;
3737
3738                 if (test_bit(group, &filter->fo_destroys_in_progress)) {
3739                         CWARN("%s: create aborted by destroy\n",
3740                               obd->obd_name);
3741                         rc = -EAGAIN;
3742                         break;
3743                 }
3744
3745                 if (recreate_obj) {
3746                         __u64 last_id;
3747                         next_id = oa->o_id;
3748                         last_id = filter_last_id(filter, group);
3749                         if (next_id > last_id) {
3750                                 CERROR("Error: Trying to recreate obj greater"
3751                                        "than last id "LPD64" > "LPD64"\n",
3752                                        next_id, last_id);
3753                                 GOTO(cleanup, rc = -EINVAL);
3754                         }
3755                 } else
3756                         next_id = filter_last_id(filter, group) + 1;
3757
3758                 dparent = filter_parent_lock(obd, group, next_id);
3759                 if (IS_ERR(dparent))
3760                         GOTO(cleanup, rc = PTR_ERR(dparent));
3761                 cleanup_phase = 1; /* filter_parent_unlock(dparent) */
3762
3763                 dchild = filter_fid2dentry(obd, dparent, group, next_id);
3764                 if (IS_ERR(dchild))
3765                         GOTO(cleanup, rc = PTR_ERR(dchild));
3766                 cleanup_phase = 2;  /* f_dput(dchild) */
3767
3768                 if (dchild->d_inode != NULL) {
3769                         /* This would only happen if lastobjid was bad on disk*/
3770                         /* Could also happen if recreating missing obj but it
3771                          * already exists. */
3772                         if (recreate_obj) {
3773                                 CERROR("%s: recreating existing object %.*s?\n",
3774                                        obd->obd_name, dchild->d_name.len,
3775                                        dchild->d_name.name);
3776                         } else {
3777                                 /* Use these existing objects if they are
3778                                  * zero length. */
3779                                 if (dchild->d_inode->i_size == 0) {
3780                                         rc = filter_use_existing_obj(obd,dchild,
3781                                                       &handle, &cleanup_phase);
3782                                         if (rc == 0)
3783                                                 goto set_last_id;
3784                                         else
3785                                                 GOTO(cleanup, rc);
3786                                 }
3787
3788                                 CERROR("%s: Serious error: objid %.*s already "
3789                                        "exists; is this filesystem corrupt?\n",
3790                                        obd->obd_name, dchild->d_name.len,
3791                                        dchild->d_name.name);
3792                                 LBUG();
3793                         }
3794                         GOTO(cleanup, rc = -EEXIST);
3795                 }
3796
3797                 handle = fsfilt_start_log(obd, dparent->d_inode,
3798                                           FSFILT_OP_CREATE, NULL, 1);
3799                 if (IS_ERR(handle))
3800                         GOTO(cleanup, rc = PTR_ERR(handle));
3801                 cleanup_phase = 3;
3802
3803                 CDEBUG(D_INODE, "%s: filter_precreate(od->o_gr="LPU64
3804                        ",od->o_id="LPU64")\n", obd->obd_name, group,
3805                        next_id);
3806
3807                 /* We mark object SUID+SGID to flag it for accepting UID+GID
3808                  * from client on first write.  Currently the permission bits
3809                  * on the OST are never used, so this is OK. */
3810                 rc = ll_vfs_create(dparent->d_inode, dchild,
3811                                    S_IFREG |  S_ISUID | S_ISGID | 0666, NULL);
3812                 if (rc) {
3813                         CERROR("create failed rc = %d\n", rc);
3814                         GOTO(cleanup, rc);
3815                 }
3816
3817 set_last_id:
3818                 if (!recreate_obj) {
3819                         filter_set_last_id(filter, next_id, group);
3820                         err = filter_update_last_objid(obd, group, 0);
3821                         if (err)
3822                                 CERROR("unable to write lastobjid "
3823                                        "but file created\n");
3824                 }
3825
3826         cleanup:
3827                 switch(cleanup_phase) {
3828                 case 3:
3829                         err = fsfilt_commit(obd, dparent->d_inode, handle, 0);
3830                         if (err) {
3831                                 CERROR("error on commit, err = %d\n", err);
3832                                 if (!rc)
3833                                         rc = err;
3834                         }
3835                 case 2:
3836                         f_dput(dchild);
3837                 case 1:
3838                         filter_parent_unlock(dparent);
3839                 case 0:
3840                         break;
3841                 }
3842
3843                 if (rc)
3844                         break;
3845                 if (time_after(jiffies, enough_time)) {
3846                         CDEBUG(D_RPCTRACE,
3847                                "%s: precreate slow - want %d got %d \n",
3848                                obd->obd_name, *num, i);
3849                         break;
3850                 }
3851         }
3852         *num = i;
3853
3854         CDEBUG(D_RPCTRACE,
3855                "%s: created %d objects for group "LPU64": "LPU64" rc %d\n",
3856                obd->obd_name, i, group, filter->fo_last_objids[group], rc);
3857
3858         RETURN(rc);
3859 }
3860
3861 static int filter_create(struct obd_export *exp, struct obdo *oa,
3862                          struct lov_stripe_md **ea, struct obd_trans_info *oti)
3863 {
3864         struct obd_device *obd = exp->exp_obd;
3865         struct filter_export_data *fed;
3866         struct filter_obd *filter;
3867         struct lvfs_run_ctxt saved;
3868         struct lov_stripe_md *lsm = NULL;
3869         int rc = 0, diff, group = oa->o_gr;
3870         ENTRY;
3871
3872         CDEBUG(D_INODE, "%s: filter_create(od->o_gr="LPU64",od->o_id="
3873                LPU64")\n", obd->obd_name, oa->o_gr, oa->o_id);
3874
3875         if (!(oa->o_valid & OBD_MD_FLGROUP)) {
3876                 CERROR("!!! nid %s sent invalid object group %d\n",
3877                         obd_export_nid2str(exp), group);
3878                 RETURN(-EINVAL);
3879         }
3880
3881         fed = &exp->exp_filter_data;
3882         filter = &obd->u.filter;
3883
3884         if (fed->fed_group != group) {
3885                 CERROR("!!! this export (nid %s) used object group %d "
3886                         "earlier; now it's trying to use group %d!  This could "
3887                         "be a bug in the MDS. Please report to "
3888                         "http://bugzilla.lustre.org/\n",
3889                         obd_export_nid2str(exp), fed->fed_group, group);
3890                 RETURN(-ENOTUNIQ);
3891         }
3892
3893         if (ea != NULL) {
3894                 lsm = *ea;
3895                 if (lsm == NULL) {
3896                         rc = obd_alloc_memmd(exp, &lsm);
3897                         if (rc < 0)
3898                                 RETURN(rc);
3899                 }
3900         }
3901
3902         obd = exp->exp_obd;
3903         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
3904
3905         if ((oa->o_valid & OBD_MD_FLFLAGS) &&
3906             (oa->o_flags & OBD_FL_RECREATE_OBJS)) {
3907                 if (oa->o_id > filter_last_id(filter, oa->o_gr)) {
3908                         CERROR("recreate objid "LPU64" > last id "LPU64"\n",
3909                                oa->o_id, filter_last_id(filter,
3910                                                         oa->o_gr));
3911                         rc = -EINVAL;
3912                 } else {
3913                         diff = 1;
3914                         down(&filter->fo_create_locks[oa->o_gr]);
3915                         rc = filter_precreate(obd, oa, oa->o_gr, &diff);
3916                         up(&filter->fo_create_locks[oa->o_gr]);
3917                 }
3918         } else {
3919                 rc = filter_handle_precreate(exp, oa, oa->o_gr, oti);
3920         }
3921
3922         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
3923         if (rc && ea != NULL && *ea != lsm) {
3924                 obd_free_memmd(exp, &lsm);
3925         } else if (rc == 0 && ea != NULL) {
3926                 /* XXX LOV STACKING: the lsm that is passed to us from
3927                  * LOV does not have valid lsm_oinfo data structs, so
3928                  * don't go touching that.  This needs to be fixed in a
3929                  * big way. */
3930                 lsm->lsm_object_id = oa->o_id;
3931                 *ea = lsm;
3932         }
3933
3934         RETURN(rc);
3935 }
3936
3937 int filter_destroy(struct obd_export *exp, struct obdo *oa,
3938                    struct lov_stripe_md *md, struct obd_trans_info *oti,
3939                    struct obd_export *md_exp, void *capa)
3940 {
3941         unsigned int qcids[MAXQUOTAS] = {0, 0};
3942         struct obd_device *obd;
3943         struct filter_obd *filter;
3944         struct dentry *dchild = NULL, *dparent = NULL;
3945         struct lvfs_run_ctxt saved;
3946         void *handle = NULL;
3947         struct llog_cookie *fcc = NULL;
3948         int rc, rc2, cleanup_phase = 0, sync = 0;
3949         struct iattr iattr;
3950         ENTRY;
3951
3952         LASSERT(oa->o_valid & OBD_MD_FLGROUP);
3953
3954         rc = filter_auth_capa(exp, NULL, obdo_mdsno(oa),
3955                               (struct lustre_capa *)capa, CAPA_OPC_OSS_DESTROY);
3956         if (rc)
3957                 RETURN(rc);
3958
3959         obd = exp->exp_obd;
3960         filter = &obd->u.filter;
3961
3962         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
3963         cleanup_phase = 1;
3964
3965         CDEBUG(D_INODE, "%s: filter_destroy(od->o_gr="LPU64",od->o_id="
3966                LPU64")\n", obd->obd_name, oa->o_gr, oa->o_id);
3967
3968         dchild = filter_fid2dentry(obd, NULL, oa->o_gr, oa->o_id);
3969         if (IS_ERR(dchild))
3970                 GOTO(cleanup, rc = PTR_ERR(dchild));
3971         cleanup_phase = 2;
3972
3973         if (dchild->d_inode == NULL) {
3974                 CDEBUG(D_INODE, "destroying non-existent object "LPU64"\n",
3975                        oa->o_id);
3976                 /* If object already gone, cancel cookie right now */
3977                 if (oa->o_valid & OBD_MD_FLCOOKIE) {
3978                         struct llog_ctxt *ctxt;
3979                         struct obd_llog_group *olg;
3980                         fcc = &oa->o_lcookie;
3981                         olg = filter_find_olg(obd, oa->o_gr);
3982                         if (!olg) {
3983                                CERROR(" %s: can not find olg of group %d\n",
3984                                       obd->obd_name, (int)oa->o_gr);
3985                                GOTO(cleanup, rc = PTR_ERR(olg));
3986                         }
3987                         llog_group_set_export(olg, exp);
3988
3989                         ctxt = llog_group_get_ctxt(olg, fcc->lgc_subsys + 1);
3990                         llog_cancel(ctxt, NULL, 1, fcc, 0);
3991                         llog_ctxt_put(ctxt);
3992                         fcc = NULL; /* we didn't allocate fcc, don't free it */
3993                 }
3994                 GOTO(cleanup, rc = -ENOENT);
3995         }
3996
3997         filter_prepare_destroy(obd, oa->o_id, oa->o_gr);
3998
3999         /* Our MDC connection is established by the MDS to us */
4000         if (oa->o_valid & OBD_MD_FLCOOKIE) {
4001                 OBD_ALLOC(fcc, sizeof(*fcc));
4002                 if (fcc != NULL)
4003                         *fcc = oa->o_lcookie;
4004         }
4005         DQUOT_INIT(dchild->d_inode);
4006
4007         /* we're gonna truncate it first in order to avoid possible deadlock:
4008          *      P1                      P2
4009          * open trasaction      open transaction
4010          * down(i_zombie)       down(i_zombie)
4011          *                      restart transaction
4012          * (see BUG 4180) -bzzz
4013          */
4014         LOCK_INODE_MUTEX(dchild->d_inode);
4015         handle = fsfilt_start_log(obd, dchild->d_inode, FSFILT_OP_SETATTR,
4016                                   NULL, 1);
4017         if (IS_ERR(handle)) {
4018                 UNLOCK_INODE_MUTEX(dchild->d_inode);
4019                 GOTO(cleanup, rc = PTR_ERR(handle));
4020         }
4021
4022         iattr.ia_valid = ATTR_SIZE;
4023         iattr.ia_size = 0;
4024         rc = fsfilt_setattr(obd, dchild, handle, &iattr, 1);
4025         rc2 = fsfilt_commit(obd, dchild->d_inode, handle, 0);
4026         UNLOCK_INODE_MUTEX(dchild->d_inode);
4027         if (rc)
4028                 GOTO(cleanup, rc);
4029         if (rc2)
4030                 GOTO(cleanup, rc = rc2);
4031
4032         /* We don't actually need to lock the parent until we are unlinking
4033          * here, and not while truncating above.  That avoids holding the
4034          * parent lock for a long time during truncate, which can block other
4035          * threads from doing anything to objects in that directory. bug 7171 */
4036         dparent = filter_parent_lock(obd, oa->o_gr, oa->o_id);
4037         if (IS_ERR(dparent))
4038                 GOTO(cleanup, rc = PTR_ERR(dparent));
4039         cleanup_phase = 3; /* filter_parent_unlock */
4040
4041         LOCK_INODE_MUTEX(dchild->d_inode);
4042         handle = fsfilt_start_log(obd, dparent->d_inode,FSFILT_OP_UNLINK,oti,1);
4043         if (IS_ERR(handle)) {
4044                 UNLOCK_INODE_MUTEX(dchild->d_inode);
4045                 GOTO(cleanup, rc = PTR_ERR(handle));
4046         }
4047         cleanup_phase = 4; /* fsfilt_commit */
4048
4049         /* Quota release need uid/gid of inode */
4050         obdo_from_inode(oa, dchild->d_inode, OBD_MD_FLUID|OBD_MD_FLGID);
4051
4052         filter_fmd_drop(exp, oa->o_id, oa->o_gr);
4053
4054         /* this drops dchild->d_inode->i_mutex unconditionally */
4055         rc = filter_destroy_internal(obd, oa->o_id, oa->o_gr, dparent, dchild);
4056
4057         EXIT;
4058 cleanup:
4059         switch(cleanup_phase) {
4060         case 4:
4061                 if (fcc != NULL)
4062                         sync = fsfilt_add_journal_cb(obd, 0, oti ?
4063                                                      oti->oti_handle : handle,
4064                                                      filter_cancel_cookies_cb,
4065                                                      fcc);
4066                 /* If add_journal_cb failed, then filter_finish_transno
4067                  * will commit the handle and we will do a sync
4068                  * on commit. then we call callback directly to free
4069                  * the fcc.
4070                  */
4071                 rc = filter_finish_transno(exp, oti, rc, sync);
4072                 if (sync) {
4073                         filter_cancel_cookies_cb(obd, 0, fcc, rc);
4074                         fcc = NULL;
4075                 }
4076                 rc2 = fsfilt_commit(obd, dparent->d_inode, handle, 0);
4077                 if (rc2) {
4078                         CERROR("error on commit, err = %d\n", rc2);
4079                         if (!rc)
4080                                 rc = rc2;
4081                 } else {
4082                         fcc = NULL;
4083                 }
4084         case 3:
4085                 filter_parent_unlock(dparent);
4086         case 2:
4087                 f_dput(dchild);
4088                 if (fcc != NULL)
4089                         OBD_FREE(fcc, sizeof(*fcc));
4090         case 1:
4091                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
4092                 break;
4093         default:
4094                 CERROR("invalid cleanup_phase %d\n", cleanup_phase);
4095                 LBUG();
4096         }
4097
4098         /* trigger quota release */
4099         qcids[USRQUOTA] = oa->o_uid;
4100         qcids[GRPQUOTA] = oa->o_gid;
4101         rc2 = lquota_adjust(filter_quota_interface_ref, obd, qcids, NULL, rc,
4102                             FSFILT_OP_UNLINK);
4103         if (rc2)
4104                 CERROR("filter adjust qunit! (rc:%d)\n", rc2);
4105         return rc;
4106 }
4107
4108 /* NB start and end are used for punch, but not truncate */
4109 static int filter_truncate(struct obd_export *exp, struct obd_info *oinfo,
4110                            struct obd_trans_info *oti,
4111                            struct ptlrpc_request_set *rqset)
4112 {
4113         int rc;
4114         ENTRY;
4115
4116         if (oinfo->oi_policy.l_extent.end != OBD_OBJECT_EOF) {
4117                 CERROR("PUNCH not supported, only truncate: end = "LPX64"\n",
4118                        oinfo->oi_policy.l_extent.end);
4119                 RETURN(-EFAULT);
4120         }
4121
4122         CDEBUG(D_INODE, "calling truncate for object "LPU64", valid = "LPX64
4123                ", o_size = "LPD64"\n", oinfo->oi_oa->o_id,
4124                oinfo->oi_oa->o_valid, oinfo->oi_policy.l_extent.start);
4125
4126         oinfo->oi_oa->o_size = oinfo->oi_policy.l_extent.start;
4127         oinfo->oi_oa->o_valid |= OBD_FL_TRUNC;
4128         rc = filter_setattr(exp, oinfo, oti);
4129         oinfo->oi_oa->o_valid &= ~OBD_FL_TRUNC;
4130         RETURN(rc);
4131 }
4132
4133 static int filter_sync(struct obd_export *exp, struct obdo *oa,
4134                        struct lov_stripe_md *lsm, obd_off start, obd_off end,
4135                        void *capa)
4136 {
4137         struct lvfs_run_ctxt saved;
4138         struct filter_obd *filter;
4139         struct dentry *dentry;
4140         int rc, rc2;
4141         ENTRY;
4142
4143         rc = filter_auth_capa(exp, NULL, obdo_mdsno(oa),
4144                               (struct lustre_capa *)capa, CAPA_OPC_OSS_WRITE);
4145         if (rc)
4146                 RETURN(rc);
4147
4148         filter = &exp->exp_obd->u.filter;
4149
4150         /* An objid of zero is taken to mean "sync whole filesystem" */
4151         if (!oa || !(oa->o_valid & OBD_MD_FLID)) {
4152                 rc = fsfilt_sync(exp->exp_obd, filter->fo_obt.obt_sb);
4153                 /* Flush any remaining cancel messages out to the target */
4154                 filter_sync_llogs(exp->exp_obd, exp);
4155                 RETURN(rc);
4156         }
4157
4158         dentry = filter_oa2dentry(exp->exp_obd, oa);
4159         if (IS_ERR(dentry))
4160                 RETURN(PTR_ERR(dentry));
4161
4162         push_ctxt(&saved, &exp->exp_obd->obd_lvfs_ctxt, NULL);
4163
4164         LOCK_INODE_MUTEX(dentry->d_inode);
4165
4166         rc = filemap_fdatawrite(dentry->d_inode->i_mapping);
4167         if (rc == 0) {
4168                 /* just any file to grab fsync method - "file" arg unused */
4169                 struct file *file = filter->fo_rcvd_filp;
4170
4171                 if (file->f_op && file->f_op->fsync)
4172                         rc = file->f_op->fsync(NULL, dentry, 1);
4173
4174                 rc2 = filemap_fdatawait(dentry->d_inode->i_mapping);
4175                 if (!rc)
4176                         rc = rc2;
4177         }
4178         UNLOCK_INODE_MUTEX(dentry->d_inode);
4179
4180         oa->o_valid = OBD_MD_FLID;
4181         obdo_from_inode(oa, dentry->d_inode, FILTER_VALID_FLAGS);
4182
4183         pop_ctxt(&saved, &exp->exp_obd->obd_lvfs_ctxt, NULL);
4184
4185         f_dput(dentry);
4186         RETURN(rc);
4187 }
4188
4189 static int filter_get_info(struct obd_export *exp, __u32 keylen,
4190                            void *key, __u32 *vallen, void *val,
4191                            struct lov_stripe_md *lsm)
4192 {
4193         struct obd_device *obd;
4194         ENTRY;
4195
4196         obd = class_exp2obd(exp);
4197         if (obd == NULL) {
4198                 CDEBUG(D_IOCTL, "invalid client export %p\n", exp);
4199                 RETURN(-EINVAL);
4200         }
4201
4202         if (KEY_IS(KEY_BLOCKSIZE)) {
4203                 __u32 *blocksize = val;
4204                 if (blocksize) {
4205                         if (*vallen < sizeof(*blocksize))
4206                                 RETURN(-EOVERFLOW);
4207                         *blocksize = obd->u.obt.obt_sb->s_blocksize;
4208                 }
4209                 *vallen = sizeof(*blocksize);
4210                 RETURN(0);
4211         }
4212
4213         if (KEY_IS(KEY_BLOCKSIZE_BITS)) {
4214                 __u32 *blocksize_bits = val;
4215                 if (blocksize_bits) {
4216                         if (*vallen < sizeof(*blocksize_bits))
4217                                 RETURN(-EOVERFLOW);
4218                         *blocksize_bits = obd->u.obt.obt_sb->s_blocksize_bits;
4219                 }
4220                 *vallen = sizeof(*blocksize_bits);
4221                 RETURN(0);
4222         }
4223
4224         if (KEY_IS(KEY_LAST_ID)) {
4225                 obd_id *last_id = val;
4226                 /* FIXME: object groups */
4227                 if (last_id) {
4228                         if (*vallen < sizeof(*last_id))
4229                                 RETURN(-EOVERFLOW);
4230                         *last_id = filter_last_id(&obd->u.filter,
4231                                                   exp->exp_filter_data.fed_group);
4232                 }
4233                 *vallen = sizeof(*last_id);
4234                 RETURN(0);
4235         }
4236
4237         if (KEY_IS(KEY_FIEMAP)) {
4238                 struct ll_fiemap_info_key *fm_key = key;
4239                 struct dentry *dentry;
4240                 struct ll_user_fiemap *fiemap = val;
4241                 struct lvfs_run_ctxt saved;
4242                 int rc;
4243
4244                 if (fiemap == NULL) {
4245                         *vallen = fiemap_count_to_size(
4246                                                 fm_key->fiemap.fm_extent_count);
4247                         RETURN(0);
4248                 }
4249
4250                 dentry = __filter_oa2dentry(exp->exp_obd, &fm_key->oa,
4251                                             __FUNCTION__, 1);
4252                 if (IS_ERR(dentry))
4253                         RETURN(PTR_ERR(dentry));
4254
4255                 memcpy(fiemap, &fm_key->fiemap, sizeof(*fiemap));
4256                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
4257                 rc = fsfilt_iocontrol(obd, dentry->d_inode, NULL,
4258                                       EXT3_IOC_FIEMAP, (long)fiemap);
4259                 if (rc) {
4260                         f_dput(dentry);
4261                         RETURN(rc);
4262                 }
4263                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
4264
4265                 f_dput(dentry);
4266                 RETURN(0);
4267         }
4268
4269         CDEBUG(D_IOCTL, "invalid key\n");
4270         RETURN(-EINVAL);
4271 }
4272
4273 static inline int filter_setup_llog_group(struct obd_export *exp,
4274                                           struct obd_device *obd,
4275                                            int group)
4276 {
4277         struct obd_llog_group *olg;
4278         struct llog_ctxt *ctxt;
4279         int rc;
4280
4281         olg = filter_find_create_olg(obd, group);
4282         if (IS_ERR(olg))
4283                 RETURN(PTR_ERR(olg));
4284
4285         llog_group_set_export(olg, exp);
4286
4287         ctxt = llog_group_get_ctxt(olg, LLOG_MDS_OST_REPL_CTXT);
4288         LASSERTF(ctxt != NULL, "ctxt is null\n");
4289
4290         rc = llog_receptor_accept(ctxt, exp->exp_imp_reverse);
4291         llog_ctxt_put(ctxt);
4292         return rc;
4293 }
4294 static int filter_set_info_async(struct obd_export *exp, __u32 keylen,
4295                                  void *key, __u32 vallen, void *val,
4296                                  struct ptlrpc_request_set *set)
4297 {
4298         struct obd_device *obd;
4299         int rc = 0, group;
4300         ENTRY;
4301
4302         obd = exp->exp_obd;
4303         if (obd == NULL) {
4304                 CDEBUG(D_IOCTL, "invalid export %p\n", exp);
4305                 RETURN(-EINVAL);
4306         }
4307
4308         if (KEY_IS(KEY_CAPA_KEY)) {
4309                 rc = filter_update_capa_key(obd, (struct lustre_capa_key *)val);
4310                 if (rc)
4311                         CERROR("filter update capability key failed: %d\n", rc);
4312                 RETURN(rc);
4313         }
4314
4315         if (KEY_IS(KEY_REVIMP_UPD)) {
4316                 filter_revimp_update(exp);
4317                 lquota_clearinfo(filter_quota_interface_ref, exp, exp->exp_obd);
4318                 RETURN(0);
4319         }
4320
4321         if (KEY_IS(KEY_SPTLRPC_CONF)) {
4322                 filter_adapt_sptlrpc_conf(obd, 0);
4323                 RETURN(0);
4324         }
4325
4326         if (!KEY_IS(KEY_MDS_CONN))
4327                 RETURN(-EINVAL);
4328
4329         LCONSOLE_WARN("%s: received MDS connection from %s\n", obd->obd_name,
4330                       obd_export_nid2str(exp));
4331         obd->u.filter.fo_mdc_conn.cookie = exp->exp_handle.h_cookie;
4332
4333         /* setup llog imports */
4334         if (val != NULL)
4335                 group = (int)(*(__u32 *)val);
4336         else
4337                 group = 0; /* default value */
4338
4339         LASSERT_MDS_GROUP(group);
4340         rc = filter_setup_llog_group(exp, obd, group);
4341         if (rc)
4342                 goto out;
4343
4344         lquota_setinfo(filter_quota_interface_ref, obd, exp);
4345
4346         if (group == FILTER_GROUP_MDS0) {
4347                 /* setup llog group 1 for interop */
4348                 filter_setup_llog_group(exp, obd, FILTER_GROUP_LLOG);
4349         }
4350 out:
4351         RETURN(rc);
4352 }
4353
4354 int filter_iocontrol(unsigned int cmd, struct obd_export *exp,
4355                      int len, void *karg, void *uarg)
4356 {
4357         struct obd_device *obd = exp->exp_obd;
4358         struct obd_ioctl_data *data = karg;
4359         int rc = 0;
4360
4361         switch (cmd) {
4362         case OBD_IOC_ABORT_RECOVERY: {
4363                 CERROR("aborting recovery for device %s\n", obd->obd_name);
4364                 target_stop_recovery_thread(obd);
4365                 RETURN(0);
4366         }
4367
4368         case OBD_IOC_SYNC: {
4369                 CDEBUG(D_RPCTRACE, "syncing ost %s\n", obd->obd_name);
4370                 rc = fsfilt_sync(obd, obd->u.obt.obt_sb);
4371                 RETURN(rc);
4372         }
4373
4374         case OBD_IOC_SET_READONLY: {
4375                 void *handle;
4376                 struct super_block *sb = obd->u.obt.obt_sb;
4377                 struct inode *inode = sb->s_root->d_inode;
4378                 BDEVNAME_DECLARE_STORAGE(tmp);
4379                 CERROR("*** setting device %s read-only ***\n",
4380                        ll_bdevname(sb, tmp));
4381
4382                 handle = fsfilt_start(obd, inode, FSFILT_OP_MKNOD, NULL);
4383                 if (!IS_ERR(handle))
4384                         rc = fsfilt_commit(obd, inode, handle, 1);
4385
4386                 CDEBUG(D_HA, "syncing ost %s\n", obd->obd_name);
4387                 rc = fsfilt_sync(obd, obd->u.obt.obt_sb);
4388
4389                 lvfs_set_rdonly(obd, obd->u.obt.obt_sb);
4390                 RETURN(0);
4391         }
4392
4393         case OBD_IOC_CATLOGLIST: {
4394                 rc = llog_catalog_list(obd, 1, data);
4395                 RETURN(rc);
4396         }
4397
4398         case OBD_IOC_LLOG_CANCEL:
4399         case OBD_IOC_LLOG_REMOVE:
4400         case OBD_IOC_LLOG_INFO:
4401         case OBD_IOC_LLOG_PRINT: {
4402                 /* FIXME to be finished */
4403                 RETURN(-EOPNOTSUPP);
4404 /*
4405                 struct llog_ctxt *ctxt = NULL;
4406
4407                 push_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_lvfs_ctxt, NULL);
4408                 rc = llog_ioctl(ctxt, cmd, data);
4409                 pop_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_lvfs_ctxt, NULL);
4410
4411                 RETURN(rc);
4412 */
4413         }
4414
4415
4416         default:
4417                 RETURN(-EINVAL);
4418         }
4419         RETURN(0);
4420 }
4421
4422 static int filter_health_check(struct obd_device *obd)
4423 {
4424 #ifdef USE_HEALTH_CHECK_WRITE
4425         struct filter_obd *filter = &obd->u.filter;
4426 #endif
4427         int rc = 0;
4428
4429         /*
4430          * health_check to return 0 on healthy
4431          * and 1 on unhealthy.
4432          */
4433         if (obd->u.obt.obt_sb->s_flags & MS_RDONLY)
4434                 rc = 1;
4435
4436 #ifdef USE_HEALTH_CHECK_WRITE
4437         LASSERT(filter->fo_health_check_filp != NULL);
4438         rc |= !!lvfs_check_io_health(obd, filter->fo_health_check_filp);
4439 #endif
4440         return rc;
4441 }
4442
4443 static struct dentry *filter_lvfs_fid2dentry(__u64 id, __u32 gen, __u64 gr,
4444                                              void *data)
4445 {
4446         return filter_fid2dentry(data, NULL, gr, id);
4447 }
4448
4449 static int filter_process_config(struct obd_device *obd, obd_count len,
4450                                  void *buf)
4451 {
4452         struct lustre_cfg *lcfg = buf;
4453         struct lprocfs_static_vars lvars;
4454         int rc = 0;
4455
4456         switch (lcfg->lcfg_command) {
4457         default:
4458                 lprocfs_filter_init_vars(&lvars);
4459
4460                 rc = class_process_proc_param(PARAM_OST, lvars.obd_vars,
4461                                               lcfg, obd);
4462                 if (rc > 0)
4463                         rc = 0;
4464                 break;
4465         }
4466
4467         return rc;
4468 }
4469
4470 static struct lvfs_callback_ops filter_lvfs_ops = {
4471         l_fid2dentry:     filter_lvfs_fid2dentry,
4472 };
4473
4474 static struct obd_ops filter_obd_ops = {
4475         .o_owner          = THIS_MODULE,
4476         .o_get_info       = filter_get_info,
4477         .o_set_info_async = filter_set_info_async,
4478         .o_setup          = filter_setup,
4479         .o_precleanup     = filter_precleanup,
4480         .o_cleanup        = filter_cleanup,
4481         .o_connect        = filter_connect,
4482         .o_reconnect      = filter_reconnect,
4483         .o_disconnect     = filter_disconnect,
4484         .o_ping           = filter_ping,
4485         .o_init_export    = filter_init_export,
4486         .o_destroy_export = filter_destroy_export,
4487         .o_statfs         = filter_statfs,
4488         .o_getattr        = filter_getattr,
4489         .o_unpackmd       = filter_unpackmd,
4490         .o_create         = filter_create,
4491         .o_setattr        = filter_setattr,
4492         .o_destroy        = filter_destroy,
4493         .o_brw            = filter_brw,
4494         .o_punch          = filter_truncate,
4495         .o_sync           = filter_sync,
4496         .o_preprw         = filter_preprw,
4497         .o_commitrw       = filter_commitrw,
4498         .o_llog_init      = filter_llog_init,
4499         .o_llog_connect   = filter_llog_connect,
4500         .o_llog_finish    = filter_llog_finish,
4501         .o_iocontrol      = filter_iocontrol,
4502         .o_health_check   = filter_health_check,
4503         .o_process_config = filter_process_config,
4504 };
4505
4506 quota_interface_t *filter_quota_interface_ref;
4507 extern quota_interface_t filter_quota_interface;
4508
4509 static int __init obdfilter_init(void)
4510 {
4511         struct lprocfs_static_vars lvars;
4512         int rc;
4513
4514         lprocfs_filter_init_vars(&lvars);
4515
4516         request_module("lquota");
4517         OBD_ALLOC(obdfilter_created_scratchpad,
4518                   OBDFILTER_CREATED_SCRATCHPAD_ENTRIES *
4519                   sizeof(*obdfilter_created_scratchpad));
4520         if (obdfilter_created_scratchpad == NULL)
4521                 return -ENOMEM;
4522
4523         ll_fmd_cachep = cfs_mem_cache_create("ll_fmd_cache",
4524                                              sizeof(struct filter_mod_data),
4525                                              0, 0);
4526         if (!ll_fmd_cachep)
4527                 GOTO(out, rc = -ENOMEM);
4528
4529         filter_quota_interface_ref = PORTAL_SYMBOL_GET(filter_quota_interface);
4530         init_obd_quota_ops(filter_quota_interface_ref, &filter_obd_ops);
4531
4532         rc = class_register_type(&filter_obd_ops, NULL, lvars.module_vars,
4533                                  LUSTRE_OST_NAME, NULL);
4534         if (rc) {
4535                 int err;
4536
4537                 err = cfs_mem_cache_destroy(ll_fmd_cachep);
4538                 LASSERTF(err == 0, "Cannot destroy ll_fmd_cachep: rc %d\n",err);
4539                 ll_fmd_cachep = NULL;
4540 out:
4541                 if (filter_quota_interface_ref)
4542                         PORTAL_SYMBOL_PUT(filter_quota_interface);
4543
4544                 OBD_FREE(obdfilter_created_scratchpad,
4545                          OBDFILTER_CREATED_SCRATCHPAD_ENTRIES *
4546                          sizeof(*obdfilter_created_scratchpad));
4547         }
4548
4549         return rc;
4550 }
4551
4552 static void __exit obdfilter_exit(void)
4553 {
4554         if (filter_quota_interface_ref)
4555                 PORTAL_SYMBOL_PUT(filter_quota_interface);
4556
4557         if (ll_fmd_cachep) {
4558                 int rc = cfs_mem_cache_destroy(ll_fmd_cachep);
4559                 LASSERTF(rc == 0, "Cannot destroy ll_fmd_cachep: rc %d\n", rc);
4560                 ll_fmd_cachep = NULL;
4561         }
4562
4563         class_unregister_type(LUSTRE_OST_NAME);
4564         OBD_FREE(obdfilter_created_scratchpad,
4565                  OBDFILTER_CREATED_SCRATCHPAD_ENTRIES *
4566                  sizeof(*obdfilter_created_scratchpad));
4567 }
4568
4569 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
4570 MODULE_DESCRIPTION("Lustre Filtering OBD driver");
4571 MODULE_LICENSE("GPL");
4572
4573 module_init(obdfilter_init);
4574 module_exit(obdfilter_exit);