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