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