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