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