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