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