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