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