Whamcloud - gitweb
simplify disconnecting client export and avoid sending requests after client is
[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         rc = server_disconnect_export(exp);
3062
3063         fsfilt_sync(obd, obd->u.obt.obt_sb);
3064
3065         class_export_put(exp);
3066         RETURN(rc);
3067 }
3068
3069 /* reverse import is changed, sync all cancels */
3070 static void filter_revimp_update(struct obd_export *exp)
3071 {
3072         ENTRY;
3073
3074         LASSERT(exp);
3075         class_export_get(exp);
3076
3077         /* flush any remaining cancel messages out to the target */
3078         filter_sync_llogs(exp->exp_obd, exp);
3079         class_export_put(exp);
3080         EXIT;
3081 }
3082
3083 static int filter_ping(struct obd_export *exp)
3084 {
3085         filter_fmd_expire(exp);
3086         return 0;
3087 }
3088
3089 struct dentry *__filter_oa2dentry(struct obd_device *obd, struct obdo *oa,
3090                                   const char *what, int quiet)
3091 {
3092         struct dentry *dchild = NULL;
3093         obd_gr group = 0;
3094
3095         if (oa->o_valid & OBD_MD_FLGROUP)
3096                 group = oa->o_gr;
3097
3098         dchild = filter_fid2dentry(obd, NULL, group, oa->o_id);
3099
3100         if (IS_ERR(dchild)) {
3101                 CERROR("%s error looking up object: "LPU64":"LPU64"\n",
3102                        what, group, oa->o_id);
3103                 RETURN(dchild);
3104         }
3105
3106         if (dchild->d_inode == NULL) {
3107                 if (!quiet)
3108                         CERROR("%s: %s on non-existent object: "LPU64"\n",
3109                                obd->obd_name, what, oa->o_id);
3110                 f_dput(dchild);
3111                 RETURN(ERR_PTR(-ENOENT));
3112         }
3113
3114         return dchild;
3115 }
3116
3117 static int filter_getattr(struct obd_export *exp, struct obd_info *oinfo)
3118 {
3119         struct dentry *dentry = NULL;
3120         struct obd_device *obd;
3121         int rc = 0;
3122         ENTRY;
3123
3124         LASSERT(oinfo->oi_oa->o_valid & OBD_MD_FLGROUP);
3125         rc = filter_auth_capa(exp, NULL, oinfo->oi_oa->o_gr,
3126                               oinfo_capa(oinfo), CAPA_OPC_META_READ);
3127         if (rc)
3128                 RETURN(rc);
3129
3130         obd = class_exp2obd(exp);
3131         if (obd == NULL) {
3132                 CDEBUG(D_IOCTL, "invalid client export %p\n", exp);
3133                 RETURN(-EINVAL);
3134         }
3135
3136         dentry = filter_oa2dentry(obd, oinfo->oi_oa);
3137         if (IS_ERR(dentry))
3138                 RETURN(PTR_ERR(dentry));
3139
3140         /* Limit the valid bits in the return data to what we actually use */
3141         oinfo->oi_oa->o_valid = OBD_MD_FLID;
3142         obdo_from_inode(oinfo->oi_oa, dentry->d_inode, FILTER_VALID_FLAGS);
3143
3144         f_dput(dentry);
3145         RETURN(rc);
3146 }
3147
3148 /* this should be enabled/disabled in condition to enabled/disabled large
3149  * inodes (fast EAs) in backing store FS. */
3150 int filter_update_fidea(struct obd_export *exp, struct inode *inode,
3151                         void *handle, struct obdo *oa)
3152 {
3153         struct obd_device *obd = exp->exp_obd;
3154         int rc = 0;
3155         ENTRY;
3156
3157         if (oa->o_valid & OBD_MD_FLFID) {
3158                 struct filter_fid ff;
3159
3160                 if (!(oa->o_valid & OBD_MD_FLGROUP))
3161                         oa->o_gr = 0;
3162                 /* packing fid and converting it to LE for storing into EA.
3163                  * Here ->o_stripe_idx should be filled by LOV and rest of
3164                  * fields - by client. */
3165                 ff.ff_fid.id = cpu_to_le64(oa->o_fid);
3166                 ff.ff_fid.f_type = cpu_to_le32(oa->o_stripe_idx);
3167                 ff.ff_fid.generation = cpu_to_le32(oa->o_generation);
3168                 ff.ff_objid = cpu_to_le64(oa->o_id);
3169                 ff.ff_group = cpu_to_le64(oa->o_gr);
3170
3171                 CDEBUG(D_INODE, "storing filter fid EA ("LPU64"/%u/%u"
3172                        LPU64"/"LPU64")\n", oa->o_fid, oa->o_stripe_idx,
3173                        oa->o_generation, oa->o_id, oa->o_gr);
3174
3175                 rc = fsfilt_set_md(obd, inode, handle, &ff, sizeof(ff), "fid");
3176                 if (rc)
3177                         CERROR("store fid in object failed! rc: %d\n", rc);
3178         } else {
3179                 CDEBUG(D_HA, "OSS object without fid info!\n");
3180         }
3181
3182         RETURN(rc);
3183 }
3184
3185 /* this is called from filter_truncate() until we have filter_punch() */
3186 int filter_setattr_internal(struct obd_export *exp, struct dentry *dentry,
3187                             struct obdo *oa, struct obd_trans_info *oti)
3188 {
3189         unsigned int orig_ids[MAXQUOTAS] = {0, 0};
3190         struct llog_cookie *fcc = NULL;
3191         struct filter_obd *filter;
3192         int rc, err, sync = 0;
3193         loff_t old_size = 0;
3194         unsigned int ia_valid;
3195         struct inode *inode;
3196         struct page *page = NULL;
3197         struct iattr iattr;
3198         void *handle;
3199         ENTRY;
3200
3201         LASSERT(dentry != NULL);
3202         LASSERT(!IS_ERR(dentry));
3203
3204         inode = dentry->d_inode;
3205         LASSERT(inode != NULL);
3206
3207         filter = &exp->exp_obd->u.filter;
3208         iattr_from_obdo(&iattr, oa, oa->o_valid);
3209         ia_valid = iattr.ia_valid;
3210
3211         if (oa->o_valid & OBD_MD_FLCOOKIE) {
3212                 OBD_ALLOC(fcc, sizeof(*fcc));
3213                 if (fcc != NULL)
3214                         *fcc = oa->o_lcookie;
3215         }
3216         if (ia_valid & (ATTR_SIZE | ATTR_UID | ATTR_GID)) {
3217                 DQUOT_INIT(inode);
3218                 /* Filter truncates and writes are serialized by
3219                  * i_alloc_sem, see the comment in
3220                  * filter_preprw_write.*/
3221                 if (ia_valid & ATTR_SIZE)
3222                         down_write(&inode->i_alloc_sem);
3223                 LOCK_INODE_MUTEX(inode);
3224                 old_size = i_size_read(inode);
3225         }
3226
3227         /* VBR: version recovery check */
3228         rc = filter_version_get_check(exp, oti, inode);
3229         if (rc)
3230                 GOTO(out_unlock, rc);
3231
3232         /* Let's pin the last page so that ldiskfs_truncate
3233          * should not start GFP_FS allocation. */
3234         if (ia_valid & ATTR_SIZE) {
3235                 page = grab_cache_page(inode->i_mapping,
3236                                        iattr.ia_size >> PAGE_CACHE_SHIFT);
3237                 if (page == NULL)
3238                         GOTO(out_unlock, rc = -ENOMEM);
3239
3240                 unlock_page(page);
3241         }
3242
3243         /* If the inode still has SUID+SGID bits set (see filter_precreate())
3244          * then we will accept the UID+GID sent by the client during write for
3245          * initializing the ownership of this inode.  We only allow this to
3246          * happen once so clear these bits in setattr. In 2.6 kernels it is
3247          * possible to get ATTR_UID and ATTR_GID separately, so we only clear
3248          * the flags that are actually being set. */
3249         if (ia_valid & (ATTR_UID | ATTR_GID)) {
3250                 CDEBUG(D_INODE, "update UID/GID to %lu/%lu\n",
3251                        (unsigned long)oa->o_uid, (unsigned long)oa->o_gid);
3252
3253                 if ((inode->i_mode & S_ISUID) && (ia_valid & ATTR_UID)) {
3254                         if (!(ia_valid & ATTR_MODE)) {
3255                                 iattr.ia_mode = inode->i_mode;
3256                                 iattr.ia_valid |= ATTR_MODE;
3257                         }
3258                         iattr.ia_mode &= ~S_ISUID;
3259                 }
3260                 if ((inode->i_mode & S_ISGID) && (ia_valid & ATTR_GID)) {
3261                         if (!(iattr.ia_valid & ATTR_MODE)) {
3262                                 iattr.ia_mode = inode->i_mode;
3263                                 iattr.ia_valid |= ATTR_MODE;
3264                         }
3265                         iattr.ia_mode &= ~S_ISGID;
3266                 }
3267
3268                 orig_ids[USRQUOTA] = inode->i_uid;
3269                 orig_ids[GRPQUOTA] = inode->i_gid;
3270                 handle = fsfilt_start_log(exp->exp_obd, inode,
3271                                           FSFILT_OP_SETATTR, oti, 1);
3272                 if (IS_ERR(handle))
3273                         GOTO(out_unlock, rc = PTR_ERR(handle));
3274
3275                 /* update inode EA only once when inode is suid bit marked. As
3276                  * on 2.6.x UID and GID may be set separately, we check here
3277                  * only one of them to avoid double setting. */
3278                 if (inode->i_mode & S_ISUID)
3279                         filter_update_fidea(exp, inode, handle, oa);
3280         } else {
3281                 handle = fsfilt_start(exp->exp_obd, inode,
3282                                       FSFILT_OP_SETATTR, oti);
3283                 if (IS_ERR(handle))
3284                         GOTO(out_unlock, rc = PTR_ERR(handle));
3285         }
3286         if (oa->o_valid & OBD_MD_FLFLAGS) {
3287                 rc = fsfilt_iocontrol(exp->exp_obd, dentry,
3288                                       FSFILT_IOC_SETFLAGS, (long)&oa->o_flags);
3289         } else {
3290                 rc = fsfilt_setattr(exp->exp_obd, dentry, handle, &iattr, 1);
3291                 if (fcc != NULL)
3292                         /* set cancel cookie callback function */
3293                         sync = fsfilt_add_journal_cb(exp->exp_obd, 0, handle,
3294                                                      filter_cancel_cookies_cb,
3295                                                      fcc);
3296         }
3297
3298         if (OBD_FAIL_CHECK(OBD_FAIL_OST_SETATTR_CREDITS))
3299                 fsfilt_extend(exp->exp_obd, inode, 0, handle);
3300
3301         /* The truncate might have used up our transaction credits.  Make
3302          * sure we have one left for the last_rcvd update. */
3303         err = fsfilt_extend(exp->exp_obd, inode, 1, handle);
3304
3305         rc = filter_finish_transno(exp, inode, oti, rc, sync);
3306         if (sync) {
3307                 filter_cancel_cookies_cb(exp->exp_obd, 0, fcc, rc);
3308                 fcc = NULL;
3309         }
3310
3311         err = fsfilt_commit(exp->exp_obd, inode, handle, 0);
3312         if (err) {
3313                 CERROR("error on commit, err = %d\n", err);
3314                 if (!rc)
3315                         rc = err;
3316         } else {
3317                 fcc = NULL;
3318         }
3319
3320         /* For a partial-page truncate flush the page to disk immediately
3321          * to avoid data corruption during direct disk write. b=17397 */
3322         if (!sync && (iattr.ia_valid & ATTR_SIZE) &&
3323             old_size != iattr.ia_size && (iattr.ia_size & ~CFS_PAGE_MASK)) {
3324                 err = filemap_fdatawrite_range(inode->i_mapping, iattr.ia_size,
3325                                                iattr.ia_size + 1);
3326                 if (!rc)
3327                         rc = err;
3328         }
3329
3330         EXIT;
3331
3332 out_unlock:
3333         if (page)
3334                 page_cache_release(page);
3335
3336         if (ia_valid & (ATTR_SIZE | ATTR_UID | ATTR_GID))
3337                 UNLOCK_INODE_MUTEX(inode);
3338         if (ia_valid & ATTR_SIZE)
3339                 up_write(&inode->i_alloc_sem);
3340         if (fcc)
3341                 OBD_FREE(fcc, sizeof(*fcc));
3342
3343         /* trigger quota release */
3344         if (ia_valid & (ATTR_SIZE | ATTR_UID | ATTR_GID)) {
3345                 unsigned int cur_ids[MAXQUOTAS] = {oa->o_uid, oa->o_gid};
3346                 int rc2 = lquota_adjust(filter_quota_interface_ref,
3347                                         exp->exp_obd, cur_ids,
3348                                         orig_ids, rc, FSFILT_OP_SETATTR);
3349                 CDEBUG(rc2 ? D_ERROR : D_QUOTA,
3350                        "filter adjust qunit. (rc:%d)\n", rc2);
3351         }
3352         return rc;
3353 }
3354
3355 /* this is called from filter_truncate() until we have filter_punch() */
3356 int filter_setattr(struct obd_export *exp, struct obd_info *oinfo,
3357                    struct obd_trans_info *oti)
3358 {
3359         struct obdo *oa = oinfo->oi_oa;
3360         struct lustre_capa *capa = oinfo_capa(oinfo);
3361         struct ldlm_res_id res_id;
3362         struct filter_mod_data *fmd;
3363         struct lvfs_run_ctxt saved;
3364         struct filter_obd *filter;
3365         struct ldlm_resource *res;
3366         struct dentry *dentry;
3367         __u64 opc = CAPA_OPC_META_WRITE;
3368         int rc;
3369         ENTRY;
3370
3371         if (oa->o_valid & OBD_FL_TRUNC)
3372                 opc |= CAPA_OPC_OSS_TRUNC;
3373
3374         LASSERT(oa->o_valid & OBD_MD_FLGROUP);
3375         rc = filter_auth_capa(exp, NULL, oa->o_gr, capa, opc);
3376         if (rc)
3377                 RETURN(rc);
3378
3379         if (oa->o_valid & (OBD_MD_FLUID | OBD_MD_FLGID)) {
3380                 rc = filter_capa_fixoa(exp, oa, oa->o_gr, capa);
3381                 if (rc)
3382                         RETURN(rc);
3383         }
3384
3385         osc_build_res_name(oa->o_id, oa->o_gr, &res_id);
3386         /* This would be very bad - accidentally truncating a file when
3387          * changing the time or similar - bug 12203. */
3388         if (oa->o_valid & OBD_MD_FLSIZE &&
3389             oinfo->oi_policy.l_extent.end != OBD_OBJECT_EOF) {
3390                 static char mdsinum[48];
3391
3392                 if (oa->o_valid & OBD_MD_FLFID)
3393                         snprintf(mdsinum, sizeof(mdsinum) - 1,
3394                                  " of inode "LPU64"/%u", oa->o_fid,
3395                                  oa->o_generation);
3396                 else
3397                         mdsinum[0] = '\0';
3398
3399                 CERROR("%s: setattr from %s trying to truncate objid "LPU64
3400                        " %s\n",
3401                        exp->exp_obd->obd_name, obd_export_nid2str(exp),
3402                        oa->o_id, mdsinum);
3403                 RETURN(-EPERM);
3404         }
3405
3406         dentry = __filter_oa2dentry(exp->exp_obd, oa, __FUNCTION__, 1);
3407         if (IS_ERR(dentry))
3408                 RETURN(PTR_ERR(dentry));
3409
3410         filter = &exp->exp_obd->u.filter;
3411         push_ctxt(&saved, &exp->exp_obd->obd_lvfs_ctxt, NULL);
3412
3413         if (oa->o_valid &
3414             (OBD_MD_FLMTIME | OBD_MD_FLATIME | OBD_MD_FLCTIME)) {
3415                 fmd = filter_fmd_get(exp, oa->o_id, oa->o_gr);
3416                 if (fmd && fmd->fmd_mactime_xid < oti->oti_xid)
3417                         fmd->fmd_mactime_xid = oti->oti_xid;
3418                 filter_fmd_put(exp, fmd);
3419         }
3420
3421         /* setting objects attributes (including owner/group) */
3422         rc = filter_setattr_internal(exp, dentry, oa, oti);
3423         if (rc)
3424                 GOTO(out_unlock, rc);
3425
3426         res = ldlm_resource_get(exp->exp_obd->obd_namespace, NULL,
3427                                 &res_id, LDLM_EXTENT, 0);
3428
3429         if (res != NULL) {
3430                 LDLM_RESOURCE_ADDREF(res);
3431                 rc = ldlm_res_lvbo_update(res, NULL, 0, 0);
3432                 LDLM_RESOURCE_DELREF(res);
3433                 ldlm_resource_putref(res);
3434         }
3435
3436         oa->o_valid = OBD_MD_FLID;
3437
3438         /* Quota release need uid/gid info */
3439         obdo_from_inode(oa, dentry->d_inode,
3440                         FILTER_VALID_FLAGS | OBD_MD_FLUID | OBD_MD_FLGID);
3441
3442         EXIT;
3443 out_unlock:
3444         f_dput(dentry);
3445         pop_ctxt(&saved, &exp->exp_obd->obd_lvfs_ctxt, NULL);
3446         return rc;
3447 }
3448
3449 /* XXX identical to osc_unpackmd */
3450 static int filter_unpackmd(struct obd_export *exp, struct lov_stripe_md **lsmp,
3451                            struct lov_mds_md *lmm, int lmm_bytes)
3452 {
3453         int lsm_size;
3454         ENTRY;
3455
3456         if (lmm != NULL) {
3457                 if (lmm_bytes < sizeof (*lmm)) {
3458                         CERROR("lov_mds_md too small: %d, need %d\n",
3459                                lmm_bytes, (int)sizeof(*lmm));
3460                         RETURN(-EINVAL);
3461                 }
3462                 /* XXX LOV_MAGIC etc check? */
3463
3464                 if (lmm->lmm_object_id == cpu_to_le64(0)) {
3465                         CERROR("lov_mds_md: zero lmm_object_id\n");
3466                         RETURN(-EINVAL);
3467                 }
3468         }
3469
3470         lsm_size = lov_stripe_md_size(1);
3471         if (lsmp == NULL)
3472                 RETURN(lsm_size);
3473
3474         if (*lsmp != NULL && lmm == NULL) {
3475                 OBD_FREE((*lsmp)->lsm_oinfo[0], sizeof(struct lov_oinfo));
3476                 OBD_FREE(*lsmp, lsm_size);
3477                 *lsmp = NULL;
3478                 RETURN(0);
3479         }
3480
3481         if (*lsmp == NULL) {
3482                 OBD_ALLOC(*lsmp, lsm_size);
3483                 if (*lsmp == NULL)
3484                         RETURN(-ENOMEM);
3485
3486                 OBD_ALLOC((*lsmp)->lsm_oinfo[0], sizeof(struct lov_oinfo));
3487                 if ((*lsmp)->lsm_oinfo[0] == NULL) {
3488                         OBD_FREE(*lsmp, lsm_size);
3489                         RETURN(-ENOMEM);
3490                 }
3491                 loi_init((*lsmp)->lsm_oinfo[0]);
3492         }
3493
3494         if (lmm != NULL) {
3495                 /* XXX zero *lsmp? */
3496                 (*lsmp)->lsm_object_id = le64_to_cpu (lmm->lmm_object_id);
3497                 LASSERT((*lsmp)->lsm_object_id);
3498         }
3499
3500         (*lsmp)->lsm_maxbytes = LUSTRE_STRIPE_MAXBYTES;
3501
3502         RETURN(lsm_size);
3503 }
3504
3505 /* caller must hold fo_create_locks[oa->o_gr] */
3506 static int filter_destroy_precreated(struct obd_export *exp, struct obdo *oa,
3507                                      struct filter_obd *filter)
3508 {
3509         struct obdo doa = { 0 }; /* XXX obdo on stack */
3510         obd_id last, id;
3511         int rc = 0;
3512         int skip_orphan;
3513         ENTRY;
3514
3515         LASSERT(oa);
3516         LASSERT_MDS_GROUP(oa->o_gr);
3517         LASSERT(oa->o_valid & OBD_MD_FLGROUP);
3518         LASSERT(down_trylock(&filter->fo_create_locks[oa->o_gr]) != 0);
3519
3520         memset(&doa, 0, sizeof(doa));
3521
3522         doa.o_valid |= OBD_MD_FLGROUP;
3523         doa.o_gr = oa->o_gr;
3524         doa.o_mode = S_IFREG;
3525
3526         if (!test_bit(doa.o_gr, &filter->fo_destroys_in_progress)) {
3527                 CERROR("%s:["LPU64"] destroys_in_progress already cleared\n",
3528                        exp->exp_obd->obd_name, doa.o_gr);
3529                 RETURN(0);
3530         }
3531
3532         last = filter_last_id(filter, doa.o_gr);
3533
3534         skip_orphan = !!(exp->exp_connect_flags & OBD_CONNECT_SKIP_ORPHAN);
3535
3536         CDEBUG(D_HA, "%s: deleting orphan objects from "LPU64" to "LPU64"%s\n",
3537                exp->exp_obd->obd_name, oa->o_id + 1, last,
3538                skip_orphan ? ", orphan objids won't be reused any more." : ".");
3539
3540         for (id = last; id > oa->o_id; id--) {
3541                 doa.o_id = id;
3542                 rc = filter_destroy(exp, &doa, NULL, NULL, NULL, NULL);
3543                 if (rc && rc != -ENOENT) /* this is pretty fatal... */
3544                         CEMERG("error destroying precreate objid "LPU64": %d\n",
3545                                id, rc);
3546
3547                 /* update last_id on disk periodically so that if we restart
3548                  * we don't need to re-scan all of the just-deleted objects. */
3549                 if ((id & 511) == 0 && !skip_orphan) {
3550                         filter_set_last_id(filter, id - 1, doa.o_gr);
3551                         filter_update_last_objid(exp->exp_obd, doa.o_gr, 0);
3552                 }
3553         }
3554
3555         CDEBUG(D_HA, "%s: after destroy: set last_objids["LPU64"] = "LPU64"\n",
3556                exp->exp_obd->obd_name, doa.o_gr, oa->o_id);
3557
3558         if (!skip_orphan) {
3559                 filter_set_last_id(filter, id, doa.o_gr);
3560                 rc = filter_update_last_objid(exp->exp_obd, doa.o_gr, 1);
3561         } else {
3562                 /* don't reuse orphan object, return last used objid */
3563                 oa->o_id = last;
3564                 rc = 0;
3565         }
3566         clear_bit(doa.o_gr, &filter->fo_destroys_in_progress);
3567
3568         RETURN(rc);
3569 }
3570
3571 static int filter_precreate(struct obd_device *obd, struct obdo *oa,
3572                             obd_gr group, int *num);
3573 /* returns a negative error or a nonnegative number of files to create */
3574 static int filter_handle_precreate(struct obd_export *exp, struct obdo *oa,
3575                                    obd_gr group, struct obd_trans_info *oti)
3576 {
3577         struct obd_device *obd = exp->exp_obd;
3578         struct filter_obd *filter = &obd->u.filter;
3579         int diff, rc;
3580         ENTRY;
3581
3582         /* delete orphans request */
3583         if ((oa->o_valid & OBD_MD_FLFLAGS) && (oa->o_flags & OBD_FL_DELORPHAN)){
3584                 obd_id last = filter_last_id(filter, group);
3585
3586                 if (oti->oti_conn_cnt < exp->exp_conn_cnt) {
3587                         CERROR("%s: dropping old orphan cleanup request\n",
3588                                obd->obd_name);
3589                         RETURN(0);
3590                 }
3591                 /* This causes inflight precreates to abort and drop lock */
3592                 set_bit(group, &filter->fo_destroys_in_progress);
3593                 down(&filter->fo_create_locks[group]);
3594                 if (!test_bit(group, &filter->fo_destroys_in_progress)) {
3595                         CERROR("%s:["LPU64"] destroys_in_progress already cleared\n",
3596                                exp->exp_obd->obd_name, group);
3597                         up(&filter->fo_create_locks[group]);
3598                         RETURN(0);
3599                 }
3600                 diff = oa->o_id - last;
3601                 CDEBUG(D_HA, "filter_last_id() = "LPU64" -> diff = %d\n",
3602                        last, diff);
3603
3604                 if (-diff > OST_MAX_PRECREATE) {
3605                         CERROR("%s: ignoring bogus orphan destroy request: "
3606                                "obdid "LPU64" last_id "LPU64"\n", obd->obd_name,
3607                                oa->o_id, last);
3608                         /* FIXME: should reset precreate_next_id on MDS */
3609                         GOTO(out, rc = -EINVAL);
3610                 }
3611                 if (diff < 0) {
3612                         rc = filter_destroy_precreated(exp, oa, filter);
3613                         if (rc)
3614                                 CERROR("%s: unable to write lastobjid, but "
3615                                        "orphans were deleted\n", obd->obd_name);
3616                         GOTO(out, rc);
3617                 } else {
3618                         /* XXX: Used by MDS for the first time! */
3619                         clear_bit(group, &filter->fo_destroys_in_progress);
3620                 }
3621         } else {
3622                 down(&filter->fo_create_locks[group]);
3623                 if (oti->oti_conn_cnt < exp->exp_conn_cnt) {
3624                         CERROR("%s: dropping old precreate request\n",
3625                                obd->obd_name);
3626                         GOTO(out, rc = 0);
3627                 }
3628                 /* only precreate if group == 0 and o_id is specfied */
3629                 if (!filter_group_is_mds(group) || oa->o_id == 0)
3630                         diff = 1;
3631                 else
3632                         diff = oa->o_id - filter_last_id(filter, group);
3633                 CDEBUG(D_RPCTRACE, "filter_last_id() = "LPU64" -> diff = %d\n",
3634                        filter_last_id(filter, group), diff);
3635
3636                 LASSERTF(diff >= 0,"%s: "LPU64" - "LPU64" = %d\n",obd->obd_name,
3637                          oa->o_id, filter_last_id(filter, group), diff);
3638         }
3639
3640         if (diff > 0) {
3641                 oa->o_id = filter_last_id(&obd->u.filter, group);
3642                 rc = filter_precreate(obd, oa, group, &diff);
3643                 oa->o_id = filter_last_id(&obd->u.filter, group);
3644                 oa->o_gr = group;
3645                 oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
3646                 GOTO(out, rc);
3647         }
3648         /* else diff == 0 */
3649         GOTO(out, rc = 0);
3650 out:
3651         up(&filter->fo_create_locks[group]);
3652         return rc;
3653 }
3654
3655 static int filter_statfs(struct obd_device *obd, struct obd_statfs *osfs,
3656                          __u64 max_age, __u32 flags)
3657 {
3658         struct filter_obd *filter = &obd->u.filter;
3659         int blockbits = obd->u.obt.obt_sb->s_blocksize_bits;
3660         int rc;
3661         ENTRY;
3662
3663         /* at least try to account for cached pages.  its still racey and
3664          * might be under-reporting if clients haven't announced their
3665          * caches with brw recently */
3666         spin_lock(&obd->obd_osfs_lock);
3667         rc = fsfilt_statfs(obd, obd->u.obt.obt_sb, max_age);
3668         memcpy(osfs, &obd->obd_osfs, sizeof(*osfs));
3669         spin_unlock(&obd->obd_osfs_lock);
3670
3671         CDEBUG(D_SUPER | D_CACHE, "blocks cached "LPU64" granted "LPU64
3672                " pending "LPU64" free "LPU64" avail "LPU64"\n",
3673                filter->fo_tot_dirty, filter->fo_tot_granted,
3674                filter->fo_tot_pending,
3675                osfs->os_bfree << blockbits, osfs->os_bavail << blockbits);
3676
3677         filter_grant_sanity_check(obd, __FUNCTION__);
3678
3679         osfs->os_bavail -= min(osfs->os_bavail, GRANT_FOR_LLOG(obd) +
3680                                ((filter->fo_tot_dirty + filter->fo_tot_pending +
3681                                  osfs->os_bsize - 1) >> blockbits));
3682
3683         /* set EROFS to state field if FS is mounted as RDONLY. The goal is to
3684          * stop creating files on MDS if OST is not good shape to create
3685          * objects.*/
3686         osfs->os_state = 0;
3687
3688         if (filter->fo_obt.obt_sb->s_flags & MS_RDONLY)
3689                 osfs->os_state = OS_STATE_READONLY;
3690
3691         if (filter->fo_raid_degraded)
3692                 osfs->os_state |= OS_STATE_DEGRADED;
3693         RETURN(rc);
3694 }
3695
3696 static int filter_use_existing_obj(struct obd_device *obd,
3697                                    struct dentry *dchild, void **handle,
3698                                    int *cleanup_phase)
3699 {
3700         struct inode *inode = dchild->d_inode;
3701         struct iattr iattr;
3702         int rc;
3703
3704         if ((inode->i_mode & (S_ISUID | S_ISGID)) == (S_ISUID|S_ISGID))
3705                 return 0;
3706
3707         *handle = fsfilt_start_log(obd, inode, FSFILT_OP_SETATTR, NULL, 1);
3708         if (IS_ERR(*handle))
3709                 return PTR_ERR(*handle);
3710
3711         iattr.ia_valid = ATTR_MODE;
3712         iattr.ia_mode = S_ISUID | S_ISGID |0666;
3713         rc = fsfilt_setattr(obd, dchild, *handle, &iattr, 1);
3714         if (rc == 0)
3715                 *cleanup_phase = 3;
3716
3717         return rc;
3718 }
3719
3720 static __u64 filter_calc_free_inodes(struct obd_device *obd)
3721 {
3722         int rc;
3723         __u64 os_ffree = -1;
3724
3725         spin_lock(&obd->obd_osfs_lock);
3726         rc = fsfilt_statfs(obd, obd->u.obt.obt_sb, cfs_time_shift_64(1));
3727         if (rc == 0)
3728                 os_ffree = obd->obd_osfs.os_ffree;
3729         spin_unlock(&obd->obd_osfs_lock);
3730
3731         return os_ffree;
3732 }
3733
3734 /* We rely on the fact that only one thread will be creating files in a given
3735  * group at a time, which is why we don't need an atomic filter_get_new_id.
3736  * Even if we had that atomic function, the following race would exist:
3737  *
3738  * thread 1: gets id x from filter_next_id
3739  * thread 2: gets id (x + 1) from filter_next_id
3740  * thread 2: creates object (x + 1)
3741  * thread 1: tries to create object x, gets -ENOSPC
3742  *
3743  * Caller must hold fo_create_locks[group]
3744  */
3745 static int filter_precreate(struct obd_device *obd, struct obdo *oa,
3746                             obd_gr group, int *num)
3747 {
3748         struct dentry *dchild = NULL, *dparent = NULL;
3749         struct filter_obd *filter;
3750         struct obd_statfs *osfs;
3751         int err = 0, rc = 0, recreate_obj = 0, i;
3752         cfs_time_t enough_time = cfs_time_shift(DISK_TIMEOUT/2);
3753         __u64 os_ffree;
3754         obd_id next_id;
3755         void *handle = NULL;
3756         ENTRY;
3757
3758         filter = &obd->u.filter;
3759
3760         LASSERT(down_trylock(&filter->fo_create_locks[group]) != 0);
3761
3762         OBD_FAIL_TIMEOUT(OBD_FAIL_TGT_DELAY_PRECREATE, obd_timeout / 2);
3763
3764         if ((oa->o_valid & OBD_MD_FLFLAGS) &&
3765             (oa->o_flags & OBD_FL_RECREATE_OBJS)) {
3766                 recreate_obj = 1;
3767         } else {
3768                 OBD_ALLOC(osfs, sizeof(*osfs));
3769                 if (osfs == NULL)
3770                         RETURN(-ENOMEM);
3771                 rc = filter_statfs(obd, osfs, cfs_time_current_64() - HZ, 0);
3772                 if (rc == 0 && osfs->os_bavail < (osfs->os_blocks >> 10)) {
3773                         CDEBUG(D_RPCTRACE,"%s: not enough space for create "
3774                                LPU64"\n", obd->obd_name, osfs->os_bavail <<
3775                                filter->fo_vfsmnt->mnt_sb->s_blocksize_bits);
3776                         *num = 0;
3777                         rc = -ENOSPC;
3778                 }
3779                 OBD_FREE(osfs, sizeof(*osfs));
3780                 if (rc)
3781                         RETURN(rc);
3782         }
3783
3784         CDEBUG(D_RPCTRACE, "%s: precreating %d objects in group "LPU64
3785                " at "LPU64"\n", obd->obd_name, *num, group, oa->o_id);
3786
3787         for (i = 0; i < *num && err == 0; i++) {
3788                 int cleanup_phase = 0;
3789
3790                 if (test_bit(group, &filter->fo_destroys_in_progress)) {
3791                         CWARN("%s: create aborted by destroy\n",
3792                               obd->obd_name);
3793                         rc = -EAGAIN;
3794                         break;
3795                 }
3796
3797                 if (recreate_obj) {
3798                         __u64 last_id;
3799                         next_id = oa->o_id;
3800                         last_id = filter_last_id(filter, group);
3801                         if (next_id > last_id) {
3802                                 CERROR("Error: Trying to recreate obj greater"
3803                                        "than last id "LPD64" > "LPD64"\n",
3804                                        next_id, last_id);
3805                                 GOTO(cleanup, rc = -EINVAL);
3806                         }
3807                 } else
3808                         next_id = filter_last_id(filter, group) + 1;
3809
3810                 dparent = filter_parent_lock(obd, group, next_id);
3811                 if (IS_ERR(dparent))
3812                         GOTO(cleanup, rc = PTR_ERR(dparent));
3813                 cleanup_phase = 1; /* filter_parent_unlock(dparent) */
3814
3815                 dchild = filter_fid2dentry(obd, dparent, group, next_id);
3816                 if (IS_ERR(dchild))
3817                         GOTO(cleanup, rc = PTR_ERR(dchild));
3818                 cleanup_phase = 2;  /* f_dput(dchild) */
3819
3820                 if (dchild->d_inode != NULL) {
3821                         /* This would only happen if lastobjid was bad on disk*/
3822                         /* Could also happen if recreating missing obj but it
3823                          * already exists. */
3824                         if (recreate_obj) {
3825                                 CERROR("%s: recreating existing object %.*s?\n",
3826                                        obd->obd_name, dchild->d_name.len,
3827                                        dchild->d_name.name);
3828                         } else {
3829                                 /* Use these existing objects if they are
3830                                  * zero length. */
3831                                 if (dchild->d_inode->i_size == 0) {
3832                                         rc = filter_use_existing_obj(obd,dchild,
3833                                                       &handle, &cleanup_phase);
3834                                         if (rc == 0)
3835                                                 goto set_last_id;
3836                                         else
3837                                                 GOTO(cleanup, rc);
3838                                 }
3839
3840                                 CERROR("%s: Serious error: objid %.*s already "
3841                                        "exists; is this filesystem corrupt?\n",
3842                                        obd->obd_name, dchild->d_name.len,
3843                                        dchild->d_name.name);
3844                                 LBUG();
3845                         }
3846                         GOTO(cleanup, rc = -EEXIST);
3847                 }
3848
3849                 handle = fsfilt_start_log(obd, dparent->d_inode,
3850                                           FSFILT_OP_CREATE, NULL, 1);
3851                 if (IS_ERR(handle))
3852                         GOTO(cleanup, rc = PTR_ERR(handle));
3853                 cleanup_phase = 3;
3854
3855                 CDEBUG(D_INODE, "%s: filter_precreate(od->o_gr="LPU64
3856                        ",od->o_id="LPU64")\n", obd->obd_name, group,
3857                        next_id);
3858
3859                 /* We mark object SUID+SGID to flag it for accepting UID+GID
3860                  * from client on first write.  Currently the permission bits
3861                  * on the OST are never used, so this is OK. */
3862                 rc = ll_vfs_create(dparent->d_inode, dchild,
3863                                    S_IFREG |  S_ISUID | S_ISGID | 0666, NULL);
3864                 if (rc) {
3865                         CERROR("create failed rc = %d\n", rc);
3866                         if (rc == -ENOSPC) {
3867                                 os_ffree = filter_calc_free_inodes(obd);
3868                                 if (os_ffree != -1)
3869                                         CERROR("%s: free inode "LPU64"\n",
3870                                                obd->obd_name, os_ffree);
3871                         }
3872                         GOTO(cleanup, rc);
3873                 }
3874
3875                 if (dchild->d_inode)
3876                         CDEBUG(D_INFO, "objid "LPU64" got inum %lu\n", next_id,
3877                                        dchild->d_inode->i_ino);
3878
3879 set_last_id:
3880                 if (!recreate_obj) {
3881                         filter_set_last_id(filter, next_id, group);
3882                         err = filter_update_last_objid(obd, group, 0);
3883                         if (err)
3884                                 CERROR("unable to write lastobjid "
3885                                        "but file created\n");
3886                 }
3887
3888         cleanup:
3889                 switch(cleanup_phase) {
3890                 case 3:
3891                         err = fsfilt_commit(obd, dparent->d_inode, handle, 0);
3892                         if (err) {
3893                                 CERROR("error on commit, err = %d\n", err);
3894                                 if (!rc)
3895                                         rc = err;
3896                         }
3897                 case 2:
3898                         f_dput(dchild);
3899                 case 1:
3900                         filter_parent_unlock(dparent);
3901                 case 0:
3902                         break;
3903                 }
3904
3905                 if (rc)
3906                         break;
3907                 if (time_after(jiffies, enough_time)) {
3908                         CDEBUG(D_RPCTRACE,
3909                                "%s: precreate slow - want %d got %d \n",
3910                                obd->obd_name, *num, i);
3911                         break;
3912                 }
3913         }
3914         *num = i;
3915
3916         CDEBUG(D_RPCTRACE,
3917                "%s: created %d objects for group "LPU64": "LPU64" rc %d\n",
3918                obd->obd_name, i, group, filter->fo_last_objids[group], rc);
3919
3920         RETURN(rc);
3921 }
3922
3923 static int filter_create(struct obd_export *exp, struct obdo *oa,
3924                          struct lov_stripe_md **ea, struct obd_trans_info *oti)
3925 {
3926         struct obd_device *obd = exp->exp_obd;
3927         struct filter_export_data *fed;
3928         struct filter_obd *filter;
3929         struct lvfs_run_ctxt saved;
3930         struct lov_stripe_md *lsm = NULL;
3931         int rc = 0, diff, group = oa->o_gr;
3932         ENTRY;
3933
3934         CDEBUG(D_INODE, "%s: filter_create(od->o_gr="LPU64",od->o_id="
3935                LPU64")\n", obd->obd_name, oa->o_gr, oa->o_id);
3936
3937         if (!(oa->o_valid & OBD_MD_FLGROUP)) {
3938                 CERROR("!!! nid %s sent invalid object group %d\n",
3939                         obd_export_nid2str(exp), group);
3940                 RETURN(-EINVAL);
3941         }
3942
3943         fed = &exp->exp_filter_data;
3944         filter = &obd->u.filter;
3945
3946         if (fed->fed_group != group) {
3947                 CERROR("!!! this export (nid %s) used object group %d "
3948                         "earlier; now it's trying to use group %d!  This could "
3949                         "be a bug in the MDS. Please report to "
3950                         "http://bugzilla.lustre.org/\n",
3951                         obd_export_nid2str(exp), fed->fed_group, group);
3952                 RETURN(-ENOTUNIQ);
3953         }
3954
3955         if (ea != NULL) {
3956                 lsm = *ea;
3957                 if (lsm == NULL) {
3958                         rc = obd_alloc_memmd(exp, &lsm);
3959                         if (rc < 0)
3960                                 RETURN(rc);
3961                 }
3962         }
3963
3964         obd = exp->exp_obd;
3965         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
3966
3967         if ((oa->o_valid & OBD_MD_FLFLAGS) &&
3968             (oa->o_flags & OBD_FL_RECREATE_OBJS)) {
3969                 if (oa->o_id > filter_last_id(filter, oa->o_gr)) {
3970                         CERROR("recreate objid "LPU64" > last id "LPU64"\n",
3971                                oa->o_id, filter_last_id(filter,
3972                                                         oa->o_gr));
3973                         rc = -EINVAL;
3974                 } else {
3975                         diff = 1;
3976                         down(&filter->fo_create_locks[oa->o_gr]);
3977                         rc = filter_precreate(obd, oa, oa->o_gr, &diff);
3978                         up(&filter->fo_create_locks[oa->o_gr]);
3979                 }
3980         } else {
3981                 rc = filter_handle_precreate(exp, oa, oa->o_gr, oti);
3982         }
3983
3984         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
3985         if (rc && ea != NULL && *ea != lsm) {
3986                 obd_free_memmd(exp, &lsm);
3987         } else if (rc == 0 && ea != NULL) {
3988                 /* XXX LOV STACKING: the lsm that is passed to us from
3989                  * LOV does not have valid lsm_oinfo data structs, so
3990                  * don't go touching that.  This needs to be fixed in a
3991                  * big way. */
3992                 lsm->lsm_object_id = oa->o_id;
3993                 *ea = lsm;
3994         }
3995
3996         RETURN(rc);
3997 }
3998
3999 int filter_destroy(struct obd_export *exp, struct obdo *oa,
4000                    struct lov_stripe_md *md, struct obd_trans_info *oti,
4001                    struct obd_export *md_exp, void *capa)
4002 {
4003         unsigned int qcids[MAXQUOTAS] = {0, 0};
4004         struct obd_device *obd;
4005         struct filter_obd *filter;
4006         struct dentry *dchild = NULL, *dparent = NULL;
4007         struct lustre_handle lockh = { 0 };
4008         struct lvfs_run_ctxt saved;
4009         void *handle = NULL;
4010         struct llog_cookie *fcc = NULL;
4011         int rc, rc2, cleanup_phase = 0, sync = 0;
4012         struct iattr iattr;
4013         ENTRY;
4014
4015         LASSERT(oa->o_valid & OBD_MD_FLGROUP);
4016         rc = filter_auth_capa(exp, NULL, oa->o_gr,
4017                               (struct lustre_capa *)capa, CAPA_OPC_OSS_DESTROY);
4018         if (rc)
4019                 RETURN(rc);
4020
4021         obd = exp->exp_obd;
4022         filter = &obd->u.filter;
4023
4024         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
4025         cleanup_phase = 1;
4026
4027         CDEBUG(D_INODE, "%s: filter_destroy(od->o_gr="LPU64",od->o_id="
4028                LPU64")\n", obd->obd_name, oa->o_gr, oa->o_id);
4029
4030         dchild = filter_fid2dentry(obd, NULL, oa->o_gr, oa->o_id);
4031         if (IS_ERR(dchild))
4032                 GOTO(cleanup, rc = PTR_ERR(dchild));
4033         cleanup_phase = 2;
4034
4035         if (dchild->d_inode == NULL) {
4036                 CDEBUG(D_INODE, "destroying non-existent object "LPU64"\n",
4037                        oa->o_id);
4038                 /* If object already gone, cancel cookie right now */
4039                 if (oa->o_valid & OBD_MD_FLCOOKIE) {
4040                         struct llog_ctxt *ctxt;
4041                         struct obd_llog_group *olg;
4042
4043                         olg = filter_find_olg(obd, oa->o_gr);
4044                         if (!olg) {
4045                                CERROR(" %s: can not find olg of group %d\n",
4046                                       obd->obd_name, (int)oa->o_gr);
4047                                GOTO(cleanup, rc = PTR_ERR(olg));
4048                         }
4049                         fcc = &oa->o_lcookie;
4050                         ctxt = llog_group_get_ctxt(olg, fcc->lgc_subsys + 1);
4051                         llog_cancel(ctxt, NULL, 1, fcc, 0);
4052                         llog_ctxt_put(ctxt);
4053                         fcc = NULL; /* we didn't allocate fcc, don't free it */
4054                 }
4055                 GOTO(cleanup, rc = -ENOENT);
4056         }
4057
4058         filter_prepare_destroy(obd, oa->o_id, oa->o_gr, &lockh);
4059
4060         /* Our MDC connection is established by the MDS to us */
4061         if (oa->o_valid & OBD_MD_FLCOOKIE) {
4062                 OBD_ALLOC(fcc, sizeof(*fcc));
4063                 if (fcc != NULL)
4064                         *fcc = oa->o_lcookie;
4065         }
4066         DQUOT_INIT(dchild->d_inode);
4067
4068         /* we're gonna truncate it first in order to avoid possible deadlock:
4069          *      P1                      P2
4070          * open trasaction      open transaction
4071          * down(i_zombie)       down(i_zombie)
4072          *                      restart transaction
4073          * (see BUG 4180) -bzzz
4074          *
4075          * take i_alloc_sem too to prevent other threads from writing to the
4076          * file while we are truncating it. This can cause lock ordering issue
4077          * between page lock, i_mutex & starting new journal handle.
4078          * (see bug 20321) -johann
4079          */
4080         down_write(&dchild->d_inode->i_alloc_sem);
4081         LOCK_INODE_MUTEX(dchild->d_inode);
4082
4083         /* VBR: version recovery check */
4084         rc = filter_version_get_check(exp, oti, dchild->d_inode);
4085         if (rc) {
4086                 UNLOCK_INODE_MUTEX(dchild->d_inode);
4087                 up_write(&dchild->d_inode->i_alloc_sem);
4088                 GOTO(cleanup, rc);
4089         }
4090
4091         handle = fsfilt_start_log(obd, dchild->d_inode, FSFILT_OP_SETATTR,
4092                                   NULL, 1);
4093         if (IS_ERR(handle)) {
4094                 UNLOCK_INODE_MUTEX(dchild->d_inode);
4095                 up_write(&dchild->d_inode->i_alloc_sem);
4096                 GOTO(cleanup, rc = PTR_ERR(handle));
4097         }
4098
4099         iattr.ia_valid = ATTR_SIZE;
4100         iattr.ia_size = 0;
4101         rc = fsfilt_setattr(obd, dchild, handle, &iattr, 1);
4102         rc2 = fsfilt_commit(obd, dchild->d_inode, handle, 0);
4103         UNLOCK_INODE_MUTEX(dchild->d_inode);
4104         up_write(&dchild->d_inode->i_alloc_sem);
4105         if (rc)
4106                 GOTO(cleanup, rc);
4107         if (rc2)
4108                 GOTO(cleanup, rc = rc2);
4109
4110         /* We don't actually need to lock the parent until we are unlinking
4111          * here, and not while truncating above.  That avoids holding the
4112          * parent lock for a long time during truncate, which can block other
4113          * threads from doing anything to objects in that directory. bug 7171 */
4114         dparent = filter_parent_lock(obd, oa->o_gr, oa->o_id);
4115         if (IS_ERR(dparent))
4116                 GOTO(cleanup, rc = PTR_ERR(dparent));
4117         cleanup_phase = 3; /* filter_parent_unlock */
4118
4119         LOCK_INODE_MUTEX(dchild->d_inode);
4120         handle = fsfilt_start_log(obd, dparent->d_inode,FSFILT_OP_UNLINK,oti,1);
4121         if (IS_ERR(handle)) {
4122                 UNLOCK_INODE_MUTEX(dchild->d_inode);
4123                 GOTO(cleanup, rc = PTR_ERR(handle));
4124         }
4125         cleanup_phase = 4; /* fsfilt_commit */
4126
4127         /* Quota release need uid/gid of inode */
4128         obdo_from_inode(oa, dchild->d_inode, OBD_MD_FLUID|OBD_MD_FLGID);
4129
4130         filter_fmd_drop(exp, oa->o_id, oa->o_gr);
4131
4132         /* this drops dchild->d_inode->i_mutex unconditionally */
4133         rc = filter_destroy_internal(obd, oa->o_id, oa->o_gr, dparent, dchild);
4134
4135         EXIT;
4136 cleanup:
4137         switch(cleanup_phase) {
4138         case 4:
4139                 if (fcc != NULL)
4140                         sync = fsfilt_add_journal_cb(obd, 0, oti ?
4141                                                      oti->oti_handle : handle,
4142                                                      filter_cancel_cookies_cb,
4143                                                      fcc);
4144                 /* If add_journal_cb failed, then filter_finish_transno
4145                  * will commit the handle and we will do a sync
4146                  * on commit. then we call callback directly to free
4147                  * the fcc.
4148                  */
4149                 rc = filter_finish_transno(exp, NULL, oti, rc, sync);
4150                 if (sync) {
4151                         filter_cancel_cookies_cb(obd, 0, fcc, rc);
4152                         fcc = NULL;
4153                 }
4154                 rc2 = fsfilt_commit(obd, dparent->d_inode, handle, 0);
4155                 if (rc2) {
4156                         CERROR("error on commit, err = %d\n", rc2);
4157                         if (!rc)
4158                                 rc = rc2;
4159                 } else {
4160                         fcc = NULL;
4161                 }
4162         case 3:
4163                 filter_parent_unlock(dparent);
4164         case 2:
4165                 filter_fini_destroy(obd, &lockh);
4166
4167                 f_dput(dchild);
4168                 if (fcc != NULL)
4169                         OBD_FREE(fcc, sizeof(*fcc));
4170         case 1:
4171                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
4172                 break;
4173         default:
4174                 CERROR("invalid cleanup_phase %d\n", cleanup_phase);
4175                 LBUG();
4176         }
4177
4178         /* trigger quota release */
4179         qcids[USRQUOTA] = oa->o_uid;
4180         qcids[GRPQUOTA] = oa->o_gid;
4181         rc2 = lquota_adjust(filter_quota_interface_ref, obd, qcids, NULL, rc,
4182                             FSFILT_OP_UNLINK);
4183         if (rc2)
4184                 CERROR("filter adjust qunit! (rc:%d)\n", rc2);
4185         return rc;
4186 }
4187
4188 /* NB start and end are used for punch, but not truncate */
4189 static int filter_truncate(struct obd_export *exp, struct obd_info *oinfo,
4190                            struct obd_trans_info *oti,
4191                            struct ptlrpc_request_set *rqset)
4192 {
4193         int rc;
4194         ENTRY;
4195
4196         if (oinfo->oi_policy.l_extent.end != OBD_OBJECT_EOF) {
4197                 CERROR("PUNCH not supported, only truncate: end = "LPX64"\n",
4198                        oinfo->oi_policy.l_extent.end);
4199                 RETURN(-EFAULT);
4200         }
4201
4202         CDEBUG(D_INODE, "calling truncate for object "LPU64", valid = "LPX64
4203                ", o_size = "LPD64"\n", oinfo->oi_oa->o_id,
4204                oinfo->oi_oa->o_valid, oinfo->oi_policy.l_extent.start);
4205
4206         oinfo->oi_oa->o_size = oinfo->oi_policy.l_extent.start;
4207         oinfo->oi_oa->o_valid |= OBD_FL_TRUNC;
4208         rc = filter_setattr(exp, oinfo, oti);
4209         oinfo->oi_oa->o_valid &= ~OBD_FL_TRUNC;
4210         RETURN(rc);
4211 }
4212
4213 static int filter_sync(struct obd_export *exp, struct obdo *oa,
4214                        struct lov_stripe_md *lsm, obd_off start, obd_off end,
4215                        void *capa)
4216 {
4217         struct lvfs_run_ctxt saved;
4218         struct filter_obd *filter;
4219         struct dentry *dentry;
4220         int rc, rc2;
4221         ENTRY;
4222
4223         LASSERT(oa->o_valid & OBD_MD_FLGROUP);
4224         rc = filter_auth_capa(exp, NULL, oa->o_gr,
4225                               (struct lustre_capa *)capa, CAPA_OPC_OSS_WRITE);
4226         if (rc)
4227                 RETURN(rc);
4228
4229         filter = &exp->exp_obd->u.filter;
4230
4231         /* An objid of zero is taken to mean "sync whole filesystem" */
4232         if (!oa || !(oa->o_valid & OBD_MD_FLID)) {
4233                 rc = fsfilt_sync(exp->exp_obd, filter->fo_obt.obt_sb);
4234                 /* Flush any remaining cancel messages out to the target */
4235                 filter_sync_llogs(exp->exp_obd, exp);
4236                 RETURN(rc);
4237         }
4238
4239         dentry = filter_oa2dentry(exp->exp_obd, oa);
4240         if (IS_ERR(dentry))
4241                 RETURN(PTR_ERR(dentry));
4242
4243         push_ctxt(&saved, &exp->exp_obd->obd_lvfs_ctxt, NULL);
4244
4245         LOCK_INODE_MUTEX(dentry->d_inode);
4246
4247         rc = filemap_fdatawrite(dentry->d_inode->i_mapping);
4248         if (rc == 0) {
4249                 /* just any file to grab fsync method - "file" arg unused */
4250                 struct file *file = filter->fo_rcvd_filp;
4251
4252                 if (file->f_op && file->f_op->fsync)
4253                         rc = file->f_op->fsync(NULL, dentry, 1);
4254
4255                 rc2 = filemap_fdatawait(dentry->d_inode->i_mapping);
4256                 if (!rc)
4257                         rc = rc2;
4258         }
4259         UNLOCK_INODE_MUTEX(dentry->d_inode);
4260
4261         oa->o_valid = OBD_MD_FLID;
4262         obdo_from_inode(oa, dentry->d_inode, FILTER_VALID_FLAGS);
4263
4264         pop_ctxt(&saved, &exp->exp_obd->obd_lvfs_ctxt, NULL);
4265
4266         f_dput(dentry);
4267         RETURN(rc);
4268 }
4269
4270 static int filter_get_info(struct obd_export *exp, __u32 keylen,
4271                            void *key, __u32 *vallen, void *val,
4272                            struct lov_stripe_md *lsm)
4273 {
4274         struct obd_device *obd;
4275         ENTRY;
4276
4277         obd = class_exp2obd(exp);
4278         if (obd == NULL) {
4279                 CDEBUG(D_IOCTL, "invalid client export %p\n", exp);
4280                 RETURN(-EINVAL);
4281         }
4282
4283         if (KEY_IS(KEY_BLOCKSIZE)) {
4284                 __u32 *blocksize = val;
4285                 if (blocksize) {
4286                         if (*vallen < sizeof(*blocksize))
4287                                 RETURN(-EOVERFLOW);
4288                         *blocksize = obd->u.obt.obt_sb->s_blocksize;
4289                 }
4290                 *vallen = sizeof(*blocksize);
4291                 RETURN(0);
4292         }
4293
4294         if (KEY_IS(KEY_BLOCKSIZE_BITS)) {
4295                 __u32 *blocksize_bits = val;
4296                 if (blocksize_bits) {
4297                         if (*vallen < sizeof(*blocksize_bits))
4298                                 RETURN(-EOVERFLOW);
4299                         *blocksize_bits = obd->u.obt.obt_sb->s_blocksize_bits;
4300                 }
4301                 *vallen = sizeof(*blocksize_bits);
4302                 RETURN(0);
4303         }
4304
4305         if (KEY_IS(KEY_LAST_ID)) {
4306                 obd_id *last_id = val;
4307                 /* FIXME: object groups */
4308                 if (last_id) {
4309                         if (*vallen < sizeof(*last_id))
4310                                 RETURN(-EOVERFLOW);
4311                         *last_id = filter_last_id(&obd->u.filter,
4312                                                   exp->exp_filter_data.fed_group);
4313                 }
4314                 *vallen = sizeof(*last_id);
4315                 RETURN(0);
4316         }
4317
4318         if (KEY_IS(KEY_FIEMAP)) {
4319                 struct ll_fiemap_info_key *fm_key = key;
4320                 struct dentry *dentry;
4321                 struct ll_user_fiemap *fiemap = val;
4322                 struct lvfs_run_ctxt saved;
4323                 int rc;
4324
4325                 if (fiemap == NULL) {
4326                         *vallen = fiemap_count_to_size(
4327                                                 fm_key->fiemap.fm_extent_count);
4328                         RETURN(0);
4329                 }
4330
4331                 dentry = __filter_oa2dentry(exp->exp_obd, &fm_key->oa,
4332                                             __FUNCTION__, 1);
4333                 if (IS_ERR(dentry))
4334                         RETURN(PTR_ERR(dentry));
4335
4336                 memcpy(fiemap, &fm_key->fiemap, sizeof(*fiemap));
4337                 push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
4338                 rc = fsfilt_iocontrol(obd, dentry, FSFILT_IOC_FIEMAP,
4339                                       (long)fiemap);
4340                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
4341
4342                 f_dput(dentry);
4343                 RETURN(rc);
4344         }
4345
4346         CDEBUG(D_IOCTL, "invalid key\n");
4347         RETURN(-EINVAL);
4348 }
4349
4350 static inline int filter_setup_llog_group(struct obd_export *exp,
4351                                           struct obd_device *obd,
4352                                            int group)
4353 {
4354         struct obd_llog_group *olg;
4355         struct llog_ctxt *ctxt;
4356         int rc;
4357
4358         olg = filter_find_create_olg(obd, group);
4359         if (IS_ERR(olg))
4360                 RETURN(PTR_ERR(olg));
4361
4362         llog_group_set_export(olg, exp);
4363
4364         ctxt = llog_group_get_ctxt(olg, LLOG_MDS_OST_REPL_CTXT);
4365         LASSERTF(ctxt != NULL, "ctxt is null\n");
4366
4367         rc = llog_receptor_accept(ctxt, exp->exp_imp_reverse);
4368         llog_ctxt_put(ctxt);
4369         return rc;
4370 }
4371
4372 static int filter_set_grant_shrink(struct obd_export *exp,
4373                                    struct ost_body *body)
4374 {
4375         /* handle shrink grant */
4376         spin_lock(&exp->exp_obd->obd_osfs_lock);
4377         filter_grant_incoming(exp, &body->oa);
4378         spin_unlock(&exp->exp_obd->obd_osfs_lock);
4379
4380         RETURN(0);
4381
4382 }
4383
4384 static int filter_set_mds_conn(struct obd_export *exp, void *val)
4385 {
4386         struct obd_device *obd;
4387         int rc = 0, group;
4388         ENTRY;
4389
4390         obd = exp->exp_obd;
4391         if (obd == NULL) {
4392                 CDEBUG(D_IOCTL, "invalid export %p\n", exp);
4393                 RETURN(-EINVAL);
4394         }
4395
4396         LCONSOLE_WARN("%s: received MDS connection from %s\n", obd->obd_name,
4397                       obd_export_nid2str(exp));
4398         obd->u.filter.fo_mdc_conn.cookie = exp->exp_handle.h_cookie;
4399
4400         /* setup llog imports */
4401         if (val != NULL)
4402                 group = (int)(*(__u32 *)val);
4403         else
4404                 group = 0; /* default value */
4405
4406         LASSERT_MDS_GROUP(group);
4407         rc = filter_setup_llog_group(exp, obd, group);
4408         if (rc)
4409                 goto out;
4410
4411         if (group == FILTER_GROUP_MDS0) {
4412                 /* setup llog group 1 for interop */
4413                 filter_setup_llog_group(exp, obd, FILTER_GROUP_LLOG);
4414         }
4415
4416         lquota_setinfo(filter_quota_interface_ref, obd, exp);
4417 out:
4418         RETURN(rc);
4419 }
4420
4421 static int filter_set_info_async(struct obd_export *exp, __u32 keylen,
4422                                  void *key, __u32 vallen, void *val,
4423                                  struct ptlrpc_request_set *set)
4424 {
4425         struct obd_device *obd;
4426         ENTRY;
4427
4428         obd = exp->exp_obd;
4429         if (obd == NULL) {
4430                 CDEBUG(D_IOCTL, "invalid export %p\n", exp);
4431                 RETURN(-EINVAL);
4432         }
4433
4434         if (KEY_IS(KEY_CAPA_KEY)) {
4435                 int rc;
4436                 rc = filter_update_capa_key(obd, (struct lustre_capa_key *)val);
4437                 if (rc)
4438                         CERROR("filter update capability key failed: %d\n", rc);
4439                 RETURN(rc);
4440         }
4441
4442         if (KEY_IS(KEY_REVIMP_UPD)) {
4443                 filter_revimp_update(exp);
4444                 lquota_clearinfo(filter_quota_interface_ref, exp, exp->exp_obd);
4445                 RETURN(0);
4446         }
4447
4448         if (KEY_IS(KEY_SPTLRPC_CONF)) {
4449                 filter_adapt_sptlrpc_conf(obd, 0);
4450                 RETURN(0);
4451         }
4452
4453         if (KEY_IS(KEY_MDS_CONN))
4454                 RETURN(filter_set_mds_conn(exp, val));
4455
4456         if (KEY_IS(KEY_GRANT_SHRINK))
4457                 RETURN(filter_set_grant_shrink(exp, val));
4458
4459         RETURN(-EINVAL);
4460 }
4461
4462 int filter_iocontrol(unsigned int cmd, struct obd_export *exp,
4463                      int len, void *karg, void *uarg)
4464 {
4465         struct obd_device *obd = exp->exp_obd;
4466         struct obd_ioctl_data *data = karg;
4467         int rc = 0;
4468
4469         switch (cmd) {
4470         case OBD_IOC_ABORT_RECOVERY: {
4471                 LCONSOLE_WARN("%s: Aborting recovery.\n", obd->obd_name);
4472                 target_stop_recovery_thread(obd);
4473                 RETURN(0);
4474         }
4475
4476         case OBD_IOC_SYNC: {
4477                 CDEBUG(D_RPCTRACE, "syncing ost %s\n", obd->obd_name);
4478                 rc = fsfilt_sync(obd, obd->u.obt.obt_sb);
4479                 RETURN(rc);
4480         }
4481
4482         case OBD_IOC_SET_READONLY: {
4483                 void *handle;
4484                 struct super_block *sb = obd->u.obt.obt_sb;
4485                 struct inode *inode = sb->s_root->d_inode;
4486                 BDEVNAME_DECLARE_STORAGE(tmp);
4487                 CERROR("*** setting device %s read-only ***\n",
4488                        ll_bdevname(sb, tmp));
4489
4490                 handle = fsfilt_start(obd, inode, FSFILT_OP_MKNOD, NULL);
4491                 if (!IS_ERR(handle))
4492                         rc = fsfilt_commit(obd, inode, handle, 1);
4493
4494                 CDEBUG(D_HA, "syncing ost %s\n", obd->obd_name);
4495                 rc = fsfilt_sync(obd, obd->u.obt.obt_sb);
4496
4497                 lvfs_set_rdonly(obd, obd->u.obt.obt_sb);
4498                 RETURN(0);
4499         }
4500
4501         case OBD_IOC_CATLOGLIST: {
4502                 rc = llog_catalog_list(obd, 1, data);
4503                 RETURN(rc);
4504         }
4505
4506         case OBD_IOC_LLOG_CANCEL:
4507         case OBD_IOC_LLOG_REMOVE:
4508         case OBD_IOC_LLOG_INFO:
4509         case OBD_IOC_LLOG_PRINT: {
4510                 /* FIXME to be finished */
4511                 RETURN(-EOPNOTSUPP);
4512 /*
4513                 struct llog_ctxt *ctxt = NULL;
4514
4515                 push_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_lvfs_ctxt, NULL);
4516                 rc = llog_ioctl(ctxt, cmd, data);
4517                 pop_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_lvfs_ctxt, NULL);
4518
4519                 RETURN(rc);
4520 */
4521         }
4522
4523
4524         default:
4525                 RETURN(-EINVAL);
4526         }
4527         RETURN(0);
4528 }
4529
4530 static int filter_health_check(struct obd_device *obd)
4531 {
4532 #ifdef USE_HEALTH_CHECK_WRITE
4533         struct filter_obd *filter = &obd->u.filter;
4534 #endif
4535         int rc = 0;
4536
4537         /*
4538          * health_check to return 0 on healthy
4539          * and 1 on unhealthy.
4540          */
4541         if (obd->u.obt.obt_sb->s_flags & MS_RDONLY)
4542                 rc = 1;
4543
4544 #ifdef USE_HEALTH_CHECK_WRITE
4545         LASSERT(filter->fo_obt.obt_health_check_filp != NULL);
4546         rc |= !!lvfs_check_io_health(obd, filter->fo_obt.obt_health_check_filp);
4547 #endif
4548         return rc;
4549 }
4550
4551 static struct dentry *filter_lvfs_fid2dentry(__u64 id, __u32 gen, __u64 gr,
4552                                              void *data)
4553 {
4554         return filter_fid2dentry(data, NULL, gr, id);
4555 }
4556
4557 static int filter_process_config(struct obd_device *obd, obd_count len,
4558                                  void *buf)
4559 {
4560         struct lustre_cfg *lcfg = buf;
4561         struct lprocfs_static_vars lvars;
4562         int rc = 0;
4563
4564         switch (lcfg->lcfg_command) {
4565         default:
4566                 lprocfs_filter_init_vars(&lvars);
4567
4568                 rc = class_process_proc_param(PARAM_OST, lvars.obd_vars,
4569                                               lcfg, obd);
4570                 if (rc > 0)
4571                         rc = 0;
4572                 break;
4573         }
4574
4575         return rc;
4576 }
4577
4578 static struct lvfs_callback_ops filter_lvfs_ops = {
4579         l_fid2dentry:     filter_lvfs_fid2dentry,
4580 };
4581
4582 static struct obd_ops filter_obd_ops = {
4583         .o_owner          = THIS_MODULE,
4584         .o_get_info       = filter_get_info,
4585         .o_set_info_async = filter_set_info_async,
4586         .o_setup          = filter_setup,
4587         .o_precleanup     = filter_precleanup,
4588         .o_cleanup        = filter_cleanup,
4589         .o_connect        = filter_connect,
4590         .o_reconnect      = filter_reconnect,
4591         .o_disconnect     = filter_disconnect,
4592         .o_ping           = filter_ping,
4593         .o_init_export    = filter_init_export,
4594         .o_destroy_export = filter_destroy_export,
4595         .o_statfs         = filter_statfs,
4596         .o_getattr        = filter_getattr,
4597         .o_unpackmd       = filter_unpackmd,
4598         .o_create         = filter_create,
4599         .o_setattr        = filter_setattr,
4600         .o_destroy        = filter_destroy,
4601         .o_brw            = filter_brw,
4602         .o_punch          = filter_truncate,
4603         .o_sync           = filter_sync,
4604         .o_preprw         = filter_preprw,
4605         .o_commitrw       = filter_commitrw,
4606         .o_llog_init      = filter_llog_init,
4607         .o_llog_connect   = filter_llog_connect,
4608         .o_llog_finish    = filter_llog_finish,
4609         .o_iocontrol      = filter_iocontrol,
4610         .o_health_check   = filter_health_check,
4611         .o_process_config = filter_process_config,
4612 };
4613
4614 quota_interface_t *filter_quota_interface_ref;
4615 extern quota_interface_t filter_quota_interface;
4616
4617 static int __init obdfilter_init(void)
4618 {
4619         struct lprocfs_static_vars lvars;
4620         int rc, i;
4621
4622         /** sanity check for group<->mdsno conversion */
4623         for (i = 0; i < 32; i++)
4624                  LASSERT(objgrp_to_mdsno(mdt_to_obd_objgrp(i)) == i);
4625
4626         lprocfs_filter_init_vars(&lvars);
4627
4628         request_module("%s", "lquota");
4629         OBD_ALLOC(obdfilter_created_scratchpad,
4630                   OBDFILTER_CREATED_SCRATCHPAD_ENTRIES *
4631                   sizeof(*obdfilter_created_scratchpad));
4632         if (obdfilter_created_scratchpad == NULL)
4633                 return -ENOMEM;
4634
4635         ll_fmd_cachep = cfs_mem_cache_create("ll_fmd_cache",
4636                                              sizeof(struct filter_mod_data),
4637                                              0, 0);
4638         if (!ll_fmd_cachep)
4639                 GOTO(out, rc = -ENOMEM);
4640
4641         filter_quota_interface_ref = PORTAL_SYMBOL_GET(filter_quota_interface);
4642         init_obd_quota_ops(filter_quota_interface_ref, &filter_obd_ops);
4643
4644         rc = class_register_type(&filter_obd_ops, NULL, lvars.module_vars,
4645                                  LUSTRE_OST_NAME, NULL);
4646         if (rc) {
4647                 int err;
4648
4649                 err = cfs_mem_cache_destroy(ll_fmd_cachep);
4650                 LASSERTF(err == 0, "Cannot destroy ll_fmd_cachep: rc %d\n",err);
4651                 ll_fmd_cachep = NULL;
4652 out:
4653                 if (filter_quota_interface_ref)
4654                         PORTAL_SYMBOL_PUT(filter_quota_interface);
4655
4656                 OBD_FREE(obdfilter_created_scratchpad,
4657                          OBDFILTER_CREATED_SCRATCHPAD_ENTRIES *
4658                          sizeof(*obdfilter_created_scratchpad));
4659         }
4660
4661         return rc;
4662 }
4663
4664 static void __exit obdfilter_exit(void)
4665 {
4666         if (filter_quota_interface_ref)
4667                 PORTAL_SYMBOL_PUT(filter_quota_interface);
4668
4669         if (ll_fmd_cachep) {
4670                 int rc = cfs_mem_cache_destroy(ll_fmd_cachep);
4671                 LASSERTF(rc == 0, "Cannot destroy ll_fmd_cachep: rc %d\n", rc);
4672                 ll_fmd_cachep = NULL;
4673         }
4674
4675         class_unregister_type(LUSTRE_OST_NAME);
4676         OBD_FREE(obdfilter_created_scratchpad,
4677                  OBDFILTER_CREATED_SCRATCHPAD_ENTRIES *
4678                  sizeof(*obdfilter_created_scratchpad));
4679 }
4680
4681 MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
4682 MODULE_DESCRIPTION("Lustre Filtering OBD driver");
4683 MODULE_LICENSE("GPL");
4684
4685 module_init(obdfilter_init);
4686 module_exit(obdfilter_exit);