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