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