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