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