Whamcloud - gitweb
LU-812 kernel: AUTOCONF_INCLUDED removed
[fs/lustre-release.git] / lustre / obdfilter / filter_io.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  */
30 /*
31  * This file is part of Lustre, http://www.lustre.org/
32  * Lustre is a trademark of Sun Microsystems, Inc.
33  *
34  * lustre/obdfilter/filter_io.c
35  *
36  * Author: Peter Braam <braam@clusterfs.com>
37  * Author: Andreas Dilger <adilger@clusterfs.com>
38  * Author: Phil Schwan <phil@clusterfs.com>
39  */
40
41 #define DEBUG_SUBSYSTEM S_FILTER
42
43 #include <linux/module.h>
44 #include <linux/pagemap.h> // XXX kill me soon
45 #include <linux/version.h>
46
47 #include <obd_class.h>
48 #include <obd_ost.h>
49 #include <lustre_fsfilt.h>
50 #include "filter_internal.h"
51
52 int *obdfilter_created_scratchpad;
53
54 /* Grab the dirty and seen grant announcements from the incoming obdo.
55  * We will later calculate the clients new grant and return it.
56  * Caller must hold osfs lock */
57 void filter_grant_incoming(struct obd_export *exp, struct obdo *oa)
58 {
59         struct filter_export_data *fed;
60         struct obd_device *obd = exp->exp_obd;
61         ENTRY;
62
63         LASSERT_SPIN_LOCKED(&obd->obd_osfs_lock);
64
65         if ((oa->o_valid & (OBD_MD_FLBLOCKS|OBD_MD_FLGRANT)) !=
66                                         (OBD_MD_FLBLOCKS|OBD_MD_FLGRANT)) {
67                 oa->o_valid &= ~OBD_MD_FLGRANT;
68                 EXIT;
69                 return;
70         }
71
72         fed = &exp->exp_filter_data;
73
74         /* Add some margin, since there is a small race if other RPCs arrive
75          * out-or-order and have already consumed some grant.  We want to
76          * leave this here in case there is a large error in accounting. */
77         CDEBUG(D_CACHE,
78                "%s: cli %s/%p reports grant: "LPU64" dropped: %u, local: %lu\n",
79                obd->obd_name, exp->exp_client_uuid.uuid, exp, oa->o_grant,
80                oa->o_dropped, fed->fed_grant);
81
82         /* Update our accounting now so that statfs takes it into account.
83          * Note that fed_dirty is only approximate and can become incorrect
84          * if RPCs arrive out-of-order.  No important calculations depend
85          * on fed_dirty however, but we must check sanity to not assert. */
86         if ((long long)oa->o_dirty < 0)
87                 oa->o_dirty = 0;
88         else if (oa->o_dirty > fed->fed_grant + 4 * FILTER_GRANT_CHUNK)
89                 oa->o_dirty = fed->fed_grant + 4 * FILTER_GRANT_CHUNK;
90         obd->u.filter.fo_tot_dirty += oa->o_dirty - fed->fed_dirty;
91         if (fed->fed_grant < oa->o_dropped) {
92                 CDEBUG(D_CACHE,"%s: cli %s/%p reports %u dropped > grant %lu\n",
93                        obd->obd_name, exp->exp_client_uuid.uuid, exp,
94                        oa->o_dropped, fed->fed_grant);
95                 oa->o_dropped = 0;
96         }
97         if (obd->u.filter.fo_tot_granted < oa->o_dropped) {
98                 CERROR("%s: cli %s/%p reports %u dropped > tot_grant "LPU64"\n",
99                        obd->obd_name, exp->exp_client_uuid.uuid, exp,
100                        oa->o_dropped, obd->u.filter.fo_tot_granted);
101                 oa->o_dropped = 0;
102         }
103         obd->u.filter.fo_tot_granted -= oa->o_dropped;
104         fed->fed_grant -= oa->o_dropped;
105         fed->fed_dirty = oa->o_dirty;
106
107         if (oa->o_valid & OBD_MD_FLFLAGS && oa->o_flags & OBD_FL_SHRINK_GRANT) {
108                 obd_size left_space = filter_grant_space_left(exp);
109                 struct filter_obd *filter = &exp->exp_obd->u.filter;
110
111                 /*Only if left_space < fo_tot_clients * 32M,
112                  *then the grant space could be shrinked */
113                 if (left_space < filter->fo_tot_granted_clients *
114                                  FILTER_GRANT_SHRINK_LIMIT) {
115                         fed->fed_grant -= oa->o_grant;
116                         filter->fo_tot_granted -= oa->o_grant;
117                         CDEBUG(D_CACHE, "%s: cli %s/%p shrink "LPU64
118                                "fed_grant %ld total "LPU64"\n",
119                                obd->obd_name, exp->exp_client_uuid.uuid,
120                                exp, oa->o_grant, fed->fed_grant,
121                                filter->fo_tot_granted);
122                         oa->o_grant = 0;
123                 }
124         }
125
126         if (fed->fed_dirty < 0 || fed->fed_grant < 0 || fed->fed_pending < 0) {
127                 CERROR("%s: cli %s/%p dirty %ld pend %ld grant %ld\n",
128                        obd->obd_name, exp->exp_client_uuid.uuid, exp,
129                        fed->fed_dirty, fed->fed_pending, fed->fed_grant);
130                 cfs_spin_unlock(&obd->obd_osfs_lock);
131                 LBUG();
132         }
133         EXIT;
134 }
135
136 /* Figure out how much space is available between what we've granted
137  * and what remains in the filesystem.  Compensate for ext3 indirect
138  * block overhead when computing how much free space is left ungranted.
139  *
140  * Caller must hold obd_osfs_lock. */
141 obd_size filter_grant_space_left(struct obd_export *exp)
142 {
143         struct obd_device *obd = exp->exp_obd;
144         int blockbits = obd->u.obt.obt_sb->s_blocksize_bits;
145         obd_size tot_granted = obd->u.filter.fo_tot_granted, avail, left = 0;
146         int rc, statfs_done = 0;
147
148         LASSERT_SPIN_LOCKED(&obd->obd_osfs_lock);
149
150         if (cfs_time_before_64(obd->obd_osfs_age,
151                                cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS))) {
152 restat:
153                 rc = fsfilt_statfs(obd, obd->u.obt.obt_sb,
154                                    cfs_time_shift_64(OBD_STATFS_CACHE_SECONDS));
155                 if (rc) /* N.B. statfs can't really fail */
156                         RETURN(0);
157                 statfs_done = 1;
158         }
159
160         avail = obd->obd_osfs.os_bavail;
161         left = avail - (avail >> (blockbits - 3)); /* (d)indirect */
162         if (left > GRANT_FOR_LLOG(obd)) {
163                 left = (left - GRANT_FOR_LLOG(obd)) << blockbits;
164         } else {
165                 left = 0 /* << blockbits */;
166         }
167
168         if (!statfs_done && left < 32 * FILTER_GRANT_CHUNK + tot_granted) {
169                 CDEBUG(D_CACHE, "fs has no space left and statfs too old\n");
170                 goto restat;
171         }
172
173         if (left >= tot_granted) {
174                 left -= tot_granted;
175         } else {
176                 if (left < tot_granted - obd->u.filter.fo_tot_pending) {
177                         CERROR("%s: cli %s/%p grant "LPU64" > available "
178                                LPU64" and pending "LPU64"\n", obd->obd_name,
179                                exp->exp_client_uuid.uuid, exp, tot_granted,
180                                left, obd->u.filter.fo_tot_pending);
181                 }
182                 left = 0;
183         }
184
185         CDEBUG(D_CACHE, "%s: cli %s/%p free: "LPU64" avail: "LPU64" grant "LPU64
186                " left: "LPU64" pending: "LPU64"\n", obd->obd_name,
187                exp->exp_client_uuid.uuid, exp,
188                obd->obd_osfs.os_bfree << blockbits, avail << blockbits,
189                tot_granted, left, obd->u.filter.fo_tot_pending);
190
191         return left;
192 }
193
194 /* Calculate how much grant space to allocate to this client, based on how
195  * much space is currently free and how much of that is already granted.
196  *
197  * if @conservative != 0, we limit the maximum grant to FILTER_GRANT_CHUNK;
198  * otherwise we'll satisfy the requested amount as possible as we can, this
199  * is usually due to client reconnect.
200  *
201  * Caller must hold obd_osfs_lock. */
202 long filter_grant(struct obd_export *exp, obd_size current_grant,
203                   obd_size want, obd_size fs_space_left, int conservative)
204 {
205         struct obd_device *obd = exp->exp_obd;
206         struct filter_export_data *fed = &exp->exp_filter_data;
207         int blockbits = obd->u.obt.obt_sb->s_blocksize_bits;
208         __u64 grant = 0;
209
210         LASSERT_SPIN_LOCKED(&obd->obd_osfs_lock);
211
212         /* Grant some fraction of the client's requested grant space so that
213          * they are not always waiting for write credits (not all of it to
214          * avoid overgranting in face of multiple RPCs in flight).  This
215          * essentially will be able to control the OSC_MAX_RIF for a client.
216          *
217          * If we do have a large disparity between what the client thinks it
218          * has and what we think it has, don't grant very much and let the
219          * client consume its grant first.  Either it just has lots of RPCs
220          * in flight, or it was evicted and its grants will soon be used up. */
221         if (want > 0x7fffffff) {
222                 CERROR("%s: client %s/%p requesting > 2GB grant "LPU64"\n",
223                        obd->obd_name, exp->exp_client_uuid.uuid, exp, want);
224         } else if (current_grant < want &&
225                    current_grant < fed->fed_grant + FILTER_GRANT_CHUNK) {
226                 grant = min(want + (1 << blockbits) - 1, fs_space_left / 8);
227                 grant &= ~((1ULL << blockbits) - 1);
228
229                 if (grant) {
230                         if (grant > FILTER_GRANT_CHUNK && conservative)
231                                 grant = FILTER_GRANT_CHUNK;
232
233                         obd->u.filter.fo_tot_granted += grant;
234                         fed->fed_grant += grant;
235                         if (fed->fed_grant < 0) {
236                                 CERROR("%s: cli %s/%p grant %ld want "LPU64
237                                        "current"LPU64"\n",
238                                        obd->obd_name, exp->exp_client_uuid.uuid,
239                                        exp, fed->fed_grant, want,current_grant);
240                                 cfs_spin_unlock(&obd->obd_osfs_lock);
241                                 LBUG();
242                         }
243                 }
244         }
245
246         CDEBUG(D_CACHE,
247                "%s: cli %s/%p wants: "LPU64" current grant "LPU64
248                " granting: "LPU64"\n", obd->obd_name, exp->exp_client_uuid.uuid,
249                exp, want, current_grant, grant);
250         CDEBUG(D_CACHE,
251                "%s: cli %s/%p tot cached:"LPU64" granted:"LPU64
252                " num_exports: %d\n", obd->obd_name, exp->exp_client_uuid.uuid,
253                exp, obd->u.filter.fo_tot_dirty,
254                obd->u.filter.fo_tot_granted, obd->obd_num_exports);
255
256         return grant;
257 }
258
259 /*
260  * the routine is used to request pages from pagecache
261  *
262  * use GFP_NOFS for requests from a local client not allowing to enter FS
263  * as we might end up waiting on a page he sent in the request we're serving.
264  * use __GFP_HIGHMEM so that the pages can use all of the available memory
265  * on 32-bit machines
266  * use more aggressive GFP_HIGHUSER flags from non-local clients to be able to
267  * generate more memory pressure.
268  *
269  * See Bug 19529 and Bug 19917 for details.
270  */
271 static struct page *filter_get_page(struct obd_device *obd,
272                                     struct inode *inode,
273                                     obd_off offset,
274                                     int localreq)
275 {
276         struct page *page;
277
278         page = find_or_create_page(inode->i_mapping, offset >> CFS_PAGE_SHIFT,
279                                    (localreq ? (GFP_NOFS | __GFP_HIGHMEM)
280                                              : GFP_HIGHUSER));
281         if (unlikely(page == NULL))
282                 lprocfs_counter_add(obd->obd_stats, LPROC_FILTER_NO_PAGE, 1);
283
284         return page;
285 }
286
287 /*
288  * the routine initializes array of local_niobuf from remote_niobuf
289  */
290 static int filter_map_remote_to_local(int objcount, struct obd_ioobj *obj,
291                                       struct niobuf_remote *nb,
292                                       int *nrpages, struct niobuf_local *res)
293 {
294         struct niobuf_remote *rnb;
295         struct niobuf_local *lnb;
296         int i, max;
297         ENTRY;
298
299         /* we don't support multiobject RPC yet
300          * ost_brw_read() and ost_brw_write() check this */
301         LASSERT(objcount == 1);
302
303         max = *nrpages;
304         *nrpages = 0;
305         for (i = 0, rnb = nb, lnb = res; i < obj->ioo_bufcnt; i++, rnb++) {
306                 obd_off offset = rnb->offset;
307                 unsigned int len = rnb->len;
308
309                 while (len > 0) {
310                         int poff = offset & (CFS_PAGE_SIZE - 1);
311                         int plen = CFS_PAGE_SIZE - poff;
312
313                         if (*nrpages >= max) {
314                                 CERROR("small array of local bufs: %d\n", max);
315                                 RETURN(-EINVAL);
316                         }
317
318                         if (plen > len)
319                                 plen = len;
320                         lnb->offset = offset;
321                         lnb->len = plen;
322                         lnb->flags = rnb->flags;
323                         lnb->page = NULL;
324                         lnb->rc = 0;
325                         lnb->lnb_grant_used = 0;
326
327                         LASSERTF(plen <= len, "plen %u, len %u\n", plen, len);
328                         offset += plen;
329                         len -= plen;
330                         lnb++;
331                         (*nrpages)++;
332                 }
333         }
334         RETURN(0);
335 }
336
337 /*
338  * the invalidate above doesn't work during read because lnet pins pages.
339  * The truncate is used here instead to drop pages from cache
340  */
341 void filter_release_cache(struct obd_device *obd, struct obd_ioobj *obj,
342                           struct niobuf_remote *rnb, struct inode *inode)
343 {
344         int i;
345
346         LASSERT(inode != NULL);
347         for (i = 0; i < obj->ioo_bufcnt; i++, rnb++) {
348                 /* remove pages in which range is fit */
349                 truncate_inode_pages_range(inode->i_mapping,
350                                            rnb->offset & CFS_PAGE_MASK,
351                                            (rnb->offset + rnb->len - 1) |
352                                            ~CFS_PAGE_MASK);
353         }
354 }
355
356 static int filter_preprw_read(int cmd, struct obd_export *exp, struct obdo *oa,
357                               int objcount, struct obd_ioobj *obj,
358                               struct niobuf_remote *nb,
359                               int *npages, struct niobuf_local *res,
360                               struct obd_trans_info *oti,
361                               struct lustre_capa *capa)
362 {
363         struct obd_device *obd = exp->exp_obd;
364         struct timeval start, end;
365         struct lvfs_run_ctxt saved;
366         struct niobuf_local *lnb;
367         struct dentry *dentry = NULL;
368         struct inode *inode = NULL;
369         void *iobuf = NULL;
370         int rc = 0, i, tot_bytes = 0;
371         unsigned long now = jiffies;
372         long timediff;
373         loff_t isize;
374         ENTRY;
375
376         /* We are currently not supporting multi-obj BRW_READ RPCS at all.
377          * When we do this function's dentry cleanup will need to be fixed.
378          * These values are verified in ost_brw_write() from the wire. */
379         LASSERTF(objcount == 1, "%d\n", objcount);
380         LASSERTF(obj->ioo_bufcnt > 0, "%d\n", obj->ioo_bufcnt);
381
382         rc = filter_auth_capa(exp, NULL, oa->o_seq, capa,
383                               CAPA_OPC_OSS_READ);
384         if (rc)
385                 RETURN(rc);
386
387         if (oa && oa->o_valid & OBD_MD_FLGRANT) {
388                 cfs_spin_lock(&obd->obd_osfs_lock);
389                 filter_grant_incoming(exp, oa);
390
391                 if (!(oa->o_valid & OBD_MD_FLFLAGS) ||
392                     !(oa->o_flags & OBD_FL_SHRINK_GRANT))
393                         oa->o_grant = 0;
394                 cfs_spin_unlock(&obd->obd_osfs_lock);
395         }
396
397         iobuf = filter_iobuf_get(&obd->u.filter, oti);
398         if (IS_ERR(iobuf))
399                 RETURN(PTR_ERR(iobuf));
400
401         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
402         dentry = filter_oa2dentry(obd, &oa->o_oi);
403         if (IS_ERR(dentry)) {
404                 rc = PTR_ERR(dentry);
405                 dentry = NULL;
406                 GOTO(cleanup, rc);
407         }
408
409         inode = dentry->d_inode;
410         isize = i_size_read(inode);
411
412         obdo_to_inode(inode, oa, OBD_MD_FLATIME);
413
414         rc = filter_map_remote_to_local(objcount, obj, nb, npages, res);
415         if (rc)
416                 GOTO(cleanup, rc);
417
418         fsfilt_check_slow(obd, now, "preprw_read setup");
419
420         /* find pages for all segments, fill array with them */
421         cfs_gettimeofday(&start);
422         for (i = 0, lnb = res; i < *npages; i++, lnb++) {
423
424                 lnb->dentry = dentry;
425
426                 if (isize <= lnb->offset)
427                         /* If there's no more data, abort early.  lnb->rc == 0,
428                          * so it's easy to detect later. */
429                         break;
430
431                 lnb->page = filter_get_page(obd, inode, lnb->offset, 0);
432                 if (lnb->page == NULL)
433                         GOTO(cleanup, rc = -ENOMEM);
434
435                 lprocfs_counter_add(obd->obd_stats, LPROC_FILTER_CACHE_ACCESS, 1);
436
437                 if (isize < lnb->offset + lnb->len - 1)
438                         lnb->rc = isize - lnb->offset;
439                 else
440                         lnb->rc = lnb->len;
441
442                 tot_bytes += lnb->rc;
443
444                 if (PageUptodate(lnb->page)) {
445                         lprocfs_counter_add(obd->obd_stats,
446                                             LPROC_FILTER_CACHE_HIT, 1);
447                         continue;
448                 }
449
450                 lprocfs_counter_add(obd->obd_stats, LPROC_FILTER_CACHE_MISS, 1);
451                 filter_iobuf_add_page(obd, iobuf, inode, lnb->page);
452         }
453         cfs_gettimeofday(&end);
454         timediff = cfs_timeval_sub(&end, &start, NULL);
455         lprocfs_counter_add(obd->obd_stats, LPROC_FILTER_GET_PAGE, timediff);
456
457         if (OBD_FAIL_CHECK(OBD_FAIL_OST_NOMEM))
458                 GOTO(cleanup, rc = -ENOMEM);
459
460         fsfilt_check_slow(obd, now, "start_page_read");
461
462         rc = filter_direct_io(OBD_BRW_READ, dentry, iobuf,
463                               exp, NULL, NULL, NULL);
464         if (rc)
465                 GOTO(cleanup, rc);
466
467         lprocfs_counter_add(obd->obd_stats, LPROC_FILTER_READ_BYTES, tot_bytes);
468
469         if (exp->exp_nid_stats && exp->exp_nid_stats->nid_stats)
470                 lprocfs_counter_add(exp->exp_nid_stats->nid_stats,
471                                     LPROC_FILTER_READ_BYTES, tot_bytes);
472         filter_counter_incr(exp, LPROC_FILTER_STATS_READ,
473                             oti ? oti->oti_jobid : NULL, tot_bytes);
474         EXIT;
475
476  cleanup:
477         /* unlock pages to allow access from concurrent OST_READ */
478         for (i = 0, lnb = res; i < *npages; i++, lnb++) {
479                 if (lnb->page) {
480                         LASSERT(PageLocked(lnb->page));
481                         unlock_page(lnb->page);
482
483                         if (rc) {
484                                 page_cache_release(lnb->page);
485                                 lnb->page = NULL;
486                         }
487                 }
488         }
489
490         if (rc != 0) {
491                 if (dentry != NULL)
492                         f_dput(dentry);
493         }
494
495         filter_iobuf_put(&obd->u.filter, iobuf, oti);
496
497         pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
498         if (rc)
499                 CERROR("io error %d\n", rc);
500
501         return rc;
502 }
503
504 /* When clients have dirtied as much space as they've been granted they
505  * fall through to sync writes.  These sync writes haven't been expressed
506  * in grants and need to error with ENOSPC when there isn't room in the
507  * filesystem for them after grants are taken into account.  However,
508  * writeback of the dirty data that was already granted space can write
509  * right on through.
510  *
511  * Caller must hold obd_osfs_lock. */
512 static int filter_grant_check(struct obd_export *exp, struct obdo *oa,
513                               int objcount, struct fsfilt_objinfo *fso,
514                               int niocount, struct niobuf_local *lnb,
515                               obd_size *left, struct inode *inode)
516 {
517         struct filter_export_data *fed = &exp->exp_filter_data;
518         int blocksize = exp->exp_obd->u.obt.obt_sb->s_blocksize;
519         unsigned long used = 0, ungranted = 0, using;
520         int i, rc = -ENOSPC, obj, n = 0;
521         int resend = 0;
522
523         if ((oa->o_valid & OBD_MD_FLFLAGS) &&
524             (oa->o_flags & OBD_FL_RECOV_RESEND)) {
525                 resend = 1;
526                 CDEBUG(D_CACHE, "Recoverable resend arrived, skipping "
527                        "accounting\n");
528         }
529
530         LASSERT_SPIN_LOCKED(&exp->exp_obd->obd_osfs_lock);
531
532         for (obj = 0; obj < objcount; obj++) {
533                 for (i = 0; i < fso[obj].fso_bufcnt; i++, n++) {
534                         int tmp, bytes;
535
536                         /* should match the code in osc_exit_cache */
537                         bytes = lnb[n].len;
538                         bytes += lnb[n].offset & (blocksize - 1);
539                         tmp = (lnb[n].offset + lnb[n].len) & (blocksize - 1);
540                         if (tmp)
541                                 bytes += blocksize - tmp;
542
543                         if ((lnb[n].flags & OBD_BRW_FROM_GRANT) &&
544                             (oa->o_valid & OBD_MD_FLGRANT)) {
545                                 if (resend) {
546                                         /* this is a recoverable resent */
547                                         lnb[n].flags |= OBD_BRW_GRANTED;
548                                         rc = 0;
549                                         continue;
550                                 } else if (fed->fed_grant < used + bytes) {
551                                         CDEBUG(D_CACHE,
552                                                "%s: cli %s/%p claims %ld+%d "
553                                                "GRANT, real grant %lu idx %d\n",
554                                                exp->exp_obd->obd_name,
555                                                exp->exp_client_uuid.uuid, exp,
556                                                used, bytes, fed->fed_grant, n);
557                                 } else {
558                                         used += bytes;
559                                         lnb[n].flags |= OBD_BRW_GRANTED;
560                                         lnb[n].lnb_grant_used = bytes;
561                                         CDEBUG(0, "idx %d used=%lu\n", n, used);
562                                         rc = 0;
563                                         continue;
564                                 }
565                         }
566                         if (*left > ungranted + bytes) {
567                                 /* if enough space, pretend it was granted */
568                                 ungranted += bytes;
569                                 lnb[n].flags |= OBD_BRW_GRANTED;
570                                 lnb[n].lnb_grant_used = bytes;
571                                 CDEBUG(0, "idx %d ungranted=%lu\n",n,ungranted);
572                                 rc = 0;
573                                 continue;
574                         }
575
576                         /* We can't check for already-mapped blocks here, as
577                          * it requires dropping the osfs lock to do the bmap.
578                          * Instead, we return ENOSPC and in that case we need
579                          * to go through and verify if all of the blocks not
580                          * marked BRW_GRANTED are already mapped and we can
581                          * ignore this error. */
582                         lnb[n].rc = -ENOSPC;
583                         lnb[n].flags &= ~OBD_BRW_GRANTED;
584                         CDEBUG(D_CACHE,"%s: cli %s/%p idx %d no space for %d\n",
585                                exp->exp_obd->obd_name,
586                                exp->exp_client_uuid.uuid, exp, n, bytes);
587                 }
588         }
589
590         /* Now substract what client have used already.  We don't subtract
591          * this from the tot_granted yet, so that other client's can't grab
592          * that space before we have actually allocated our blocks.  That
593          * happens in filter_grant_commit() after the writes are done. */
594         *left -= ungranted;
595         fed->fed_grant -= used;
596         fed->fed_pending += used + ungranted;
597         exp->exp_obd->u.filter.fo_tot_granted += ungranted;
598         exp->exp_obd->u.filter.fo_tot_pending += used + ungranted;
599
600         CDEBUG(D_CACHE,
601                "%s: cli %s/%p used: %lu ungranted: %lu grant: %lu dirty: %lu\n",
602                exp->exp_obd->obd_name, exp->exp_client_uuid.uuid, exp, used,
603                ungranted, fed->fed_grant, fed->fed_dirty);
604
605         /* Rough calc in case we don't refresh cached statfs data */
606         using = (used + ungranted + 1 ) >>
607                 exp->exp_obd->u.obt.obt_sb->s_blocksize_bits;
608         if (exp->exp_obd->obd_osfs.os_bavail > using)
609                 exp->exp_obd->obd_osfs.os_bavail -= using;
610         else
611                 exp->exp_obd->obd_osfs.os_bavail = 0;
612
613         if (fed->fed_dirty < used) {
614                 CERROR("%s: cli %s/%p claims used %lu > fed_dirty %lu\n",
615                        exp->exp_obd->obd_name, exp->exp_client_uuid.uuid, exp,
616                        used, fed->fed_dirty);
617                 used = fed->fed_dirty;
618         }
619         exp->exp_obd->u.filter.fo_tot_dirty -= used;
620         fed->fed_dirty -= used;
621
622         if (fed->fed_dirty < 0 || fed->fed_grant < 0 || fed->fed_pending < 0) {
623                 CERROR("%s: cli %s/%p dirty %ld pend %ld grant %ld\n",
624                        exp->exp_obd->obd_name, exp->exp_client_uuid.uuid, exp,
625                        fed->fed_dirty, fed->fed_pending, fed->fed_grant);
626                 cfs_spin_unlock(&exp->exp_obd->obd_osfs_lock);
627                 LBUG();
628         }
629         return rc;
630 }
631
632 /* If we ever start to support multi-object BRW RPCs, we will need to get locks
633  * on mulitple inodes.  That isn't all, because there still exists the
634  * possibility of a truncate starting a new transaction while holding the ext3
635  * rwsem = write while some writes (which have started their transactions here)
636  * blocking on the ext3 rwsem = read => lock inversion.
637  *
638  * The handling gets very ugly when dealing with locked pages.  It may be easier
639  * to just get rid of the locked page code (which has problems of its own) and
640  * either discover we do not need it anymore (i.e. it was a symptom of another
641  * bug) or ensure we get the page locks in an appropriate order. */
642 static int filter_preprw_write(int cmd, struct obd_export *exp, struct obdo *oa,
643                                int objcount, struct obd_ioobj *obj,
644                                struct niobuf_remote *nb, int *npages,
645                                struct niobuf_local *res,
646                                struct obd_trans_info *oti,
647                                struct lustre_capa *capa)
648 {
649         struct obd_device *obd = exp->exp_obd;
650         struct timeval start, end;
651         struct lvfs_run_ctxt saved;
652         struct niobuf_local *lnb = res;
653         struct fsfilt_objinfo fso;
654         struct filter_mod_data *fmd;
655         struct dentry *dentry = NULL;
656         void *iobuf;
657         obd_size left;
658         unsigned long now = jiffies, timediff;
659         int rc = 0, i, tot_bytes = 0, cleanup_phase = 0, localreq = 0;
660         ENTRY;
661         LASSERT(objcount == 1);
662         LASSERT(obj->ioo_bufcnt > 0);
663
664         rc = filter_auth_capa(exp, NULL, oa->o_seq, capa,
665                               CAPA_OPC_OSS_WRITE);
666         if (rc)
667                 RETURN(rc);
668
669         if (exp->exp_connection &&
670             exp->exp_connection->c_peer.nid == exp->exp_connection->c_self)
671                 localreq = 1;
672
673         push_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
674         iobuf = filter_iobuf_get(&obd->u.filter, oti);
675         if (IS_ERR(iobuf))
676                 GOTO(cleanup, rc = PTR_ERR(iobuf));
677         cleanup_phase = 1;
678
679         dentry = filter_fid2dentry(obd, NULL, obj->ioo_seq,
680                                    obj->ioo_id);
681         if (IS_ERR(dentry))
682                 GOTO(cleanup, rc = PTR_ERR(dentry));
683         cleanup_phase = 2;
684
685         if (dentry->d_inode == NULL) {
686                 if (exp->exp_obd->obd_recovering) {
687                         struct obdo *noa = oa;
688
689                         if (oa == NULL) {
690                                 OBDO_ALLOC(noa);
691                                 if (noa == NULL)
692                                         GOTO(recreate_out, rc = -ENOMEM);
693                                 noa->o_id = obj->ioo_id;
694                                 noa->o_valid = OBD_MD_FLID;
695                         }
696
697                         if (filter_create(NULL, exp, noa, NULL, oti) == 0) {
698                                 f_dput(dentry);
699                                 dentry = filter_fid2dentry(exp->exp_obd, NULL,
700                                                            obj->ioo_seq,
701                                                            obj->ioo_id);
702                         }
703                         if (oa == NULL)
704                                 OBDO_FREE(noa);
705                 }
706     recreate_out:
707                 if (IS_ERR(dentry) || dentry->d_inode == NULL) {
708                         CERROR("%s: BRW to missing obj "LPU64"/"LPU64":rc %d\n",
709                                exp->exp_obd->obd_name,
710                                obj->ioo_id, obj->ioo_seq,
711                                IS_ERR(dentry) ? (int)PTR_ERR(dentry) : -ENOENT);
712                         if (IS_ERR(dentry))
713                                 cleanup_phase = 1;
714                         GOTO(cleanup, rc = -ENOENT);
715                 }
716         }
717
718         if (oa->o_valid & (OBD_MD_FLUID | OBD_MD_FLGID) &&
719             dentry->d_inode->i_mode & (S_ISUID | S_ISGID)) {
720                 rc = filter_capa_fixoa(exp, oa, oa->o_seq, capa);
721                 if (rc)
722                         GOTO(cleanup, rc);
723         }
724
725         rc = filter_map_remote_to_local(objcount, obj, nb, npages, res);
726         if (rc)
727                 GOTO(cleanup, rc);
728
729         fsfilt_check_slow(obd, now, "preprw_write setup");
730
731         /* Filter truncate first locks i_mutex then partially truncated
732          * page, filter write code first locks pages then take
733          * i_mutex.  To avoid a deadlock in case of concurrent
734          * punch/write requests from one client, filter writes and
735          * filter truncates are serialized by i_alloc_sem, allowing
736          * multiple writes or single truncate. */
737         down_read(&dentry->d_inode->i_alloc_sem);
738         fsfilt_check_slow(obd, now, "i_alloc_sem");
739
740         /* Don't update inode timestamps if this write is older than a
741          * setattr which modifies the timestamps. b=10150 */
742         /* XXX when we start having persistent reservations this needs to
743          * be changed to filter_fmd_get() to create the fmd if it doesn't
744          * already exist so we can store the reservation handle there. */
745         fmd = filter_fmd_find(exp, obj->ioo_id, obj->ioo_seq);
746
747         LASSERT(oa != NULL);
748         cfs_spin_lock(&obd->obd_osfs_lock);
749         filter_grant_incoming(exp, oa);
750         if (fmd && fmd->fmd_mactime_xid > oti->oti_xid)
751                 oa->o_valid &= ~(OBD_MD_FLMTIME | OBD_MD_FLCTIME |
752                                  OBD_MD_FLATIME);
753         else
754                 obdo_to_inode(dentry->d_inode, oa, OBD_MD_FLATIME |
755                               OBD_MD_FLMTIME | OBD_MD_FLCTIME);
756         cleanup_phase = 3;
757
758         left = filter_grant_space_left(exp);
759
760         fso.fso_dentry = dentry;
761         fso.fso_bufcnt = *npages;
762
763         rc = filter_grant_check(exp, oa, objcount, &fso, *npages, res,
764                                 &left, dentry->d_inode);
765
766         /* do not zero out oa->o_valid as it is used in filter_commitrw_write()
767          * for setting UID/GID and fid EA in first write time. */
768         /* If OBD_FL_SHRINK_GRANT is set, the client just returned us some grant
769          * so no sense in allocating it some more. We either return the grant
770          * back to the client if we have plenty of space or we don't return
771          * anything if we are short. This was decided in filter_grant_incoming*/
772         if ((oa->o_valid & OBD_MD_FLGRANT) &&
773             (!(oa->o_valid & OBD_MD_FLFLAGS) ||
774              !(oa->o_flags & OBD_FL_SHRINK_GRANT)))
775                 oa->o_grant = filter_grant(exp, oa->o_grant, oa->o_undirty,
776                                            left, 1);
777
778         cfs_spin_unlock(&obd->obd_osfs_lock);
779         filter_fmd_put(exp, fmd);
780
781         OBD_FAIL_TIMEOUT(OBD_FAIL_OST_BRW_PAUSE_BULK2, (obd_timeout + 1) / 4);
782
783         if (rc)
784                 GOTO(cleanup, rc);
785         cleanup_phase = 4;
786
787         cfs_gettimeofday(&start);
788         for (i = 0, lnb = res; i < *npages; i++, lnb++) {
789
790                 /* We still set up for ungranted pages so that granted pages
791                  * can be written to disk as they were promised, and portals
792                  * needs to keep the pages all aligned properly. */
793                 lnb->dentry = dentry;
794
795                 lnb->page = filter_get_page(obd, dentry->d_inode, lnb->offset,
796                                             localreq);
797                 if (lnb->page == NULL)
798                         GOTO(cleanup, rc = -ENOMEM);
799
800                 /* DLM locking protects us from write and truncate competing
801                  * for same region, but truncate can leave dirty page in the
802                  * cache. it's possible the writeout on a such a page is in
803                  * progress when we access it. it's also possible that during
804                  * this writeout we put new (partial) data, but then won't
805                  * be able to proceed in filter_commitrw_write(). thus let's
806                  * just wait for writeout completion, should be rare enough.
807                  * -bzzz */
808                 wait_on_page_writeback(lnb->page);
809                 BUG_ON(PageWriteback(lnb->page));
810
811                 /* If the filter writes a partial page, then has the file
812                  * extended, the client will read in the whole page.  the
813                  * filter has to be careful to zero the rest of the partial
814                  * page on disk.  we do it by hand for partial extending
815                  * writes, send_bio() is responsible for zeroing pages when
816                  * asked to read unmapped blocks -- brw_kiovec() does this. */
817                 if (lnb->len != CFS_PAGE_SIZE) {
818                         __s64 maxidx;
819
820                         maxidx = ((i_size_read(dentry->d_inode) +
821                                    CFS_PAGE_SIZE - 1) >> CFS_PAGE_SHIFT) - 1;
822                         if (maxidx >= lnb->page->index) {
823                                 LL_CDEBUG_PAGE(D_PAGE, lnb->page, "write %u @ "
824                                                LPU64" flg %x before EOF %llu\n",
825                                                lnb->len, lnb->offset,lnb->flags,
826                                                i_size_read(dentry->d_inode));
827                                 filter_iobuf_add_page(obd, iobuf,
828                                                       dentry->d_inode,
829                                                       lnb->page);
830                         } else {
831                                 long off;
832                                 char *p = kmap(lnb->page);
833
834                                 off = lnb->offset & ~CFS_PAGE_MASK;
835                                 if (off)
836                                         memset(p, 0, off);
837                                 off = (lnb->offset + lnb->len) & ~CFS_PAGE_MASK;
838                                 if (off)
839                                         memset(p + off, 0, CFS_PAGE_SIZE - off);
840                                 kunmap(lnb->page);
841                         }
842                 }
843                 if (lnb->rc == 0)
844                         tot_bytes += lnb->len;
845         }
846         cfs_gettimeofday(&end);
847         timediff = cfs_timeval_sub(&end, &start, NULL);
848         lprocfs_counter_add(obd->obd_stats, LPROC_FILTER_GET_PAGE, timediff);
849
850         if (OBD_FAIL_CHECK(OBD_FAIL_OST_NOMEM))
851                 GOTO(cleanup, rc = -ENOMEM);
852
853         /* don't unlock pages to prevent any access */
854         rc = filter_direct_io(OBD_BRW_READ, dentry, iobuf, exp,
855                               NULL, NULL, NULL);
856
857         fsfilt_check_slow(obd, now, "start_page_write");
858
859         lprocfs_counter_add(obd->obd_stats, LPROC_FILTER_WRITE_BYTES,
860                             tot_bytes);
861
862         if (exp->exp_nid_stats && exp->exp_nid_stats->nid_stats)
863                 lprocfs_counter_add(exp->exp_nid_stats->nid_stats,
864                                     LPROC_FILTER_WRITE_BYTES, tot_bytes);
865         filter_counter_incr(exp, LPROC_FILTER_STATS_WRITE,
866                             oti ? oti->oti_jobid : NULL, tot_bytes);
867         EXIT;
868 cleanup:
869         switch(cleanup_phase) {
870         case 4:
871                 if (rc) {
872                         for (i = 0, lnb = res; i < *npages; i++, lnb++) {
873                                 if (lnb->page != NULL) {
874                                         unlock_page(lnb->page);
875                                         page_cache_release(lnb->page);
876                                         lnb->page = NULL;
877                                 }
878                         }
879                 }
880         case 3:
881                 if (rc)
882                         up_read(&dentry->d_inode->i_alloc_sem);
883
884                 filter_iobuf_put(&obd->u.filter, iobuf, oti);
885         case 2:
886                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
887                 if (rc)
888                         f_dput(dentry);
889                 break;
890         case 1:
891                 filter_iobuf_put(&obd->u.filter, iobuf, oti);
892         case 0:
893                 cfs_spin_lock(&obd->obd_osfs_lock);
894                 if (oa)
895                         filter_grant_incoming(exp, oa);
896                 cfs_spin_unlock(&obd->obd_osfs_lock);
897                 pop_ctxt(&saved, &obd->obd_lvfs_ctxt, NULL);
898                 break;
899         default:;
900         }
901         return rc;
902 }
903
904 int filter_preprw(const struct lu_env *env, int cmd, struct obd_export *exp,
905                   struct obdo *oa, int objcount, struct obd_ioobj *obj,
906                   struct niobuf_remote *nb, int *npages,
907                   struct niobuf_local *res, struct obd_trans_info *oti,
908                   struct lustre_capa *capa)
909 {
910         if (cmd == OBD_BRW_WRITE)
911                 return filter_preprw_write(cmd, exp, oa, objcount, obj,
912                                            nb, npages, res, oti, capa);
913         if (cmd == OBD_BRW_READ)
914                 return filter_preprw_read(cmd, exp, oa, objcount, obj,
915                                           nb, npages, res, oti, capa);
916         LBUG();
917         return -EPROTO;
918 }
919
920 static int filter_commitrw_read(struct obd_export *exp, struct obdo *oa,
921                                 int objcount, struct obd_ioobj *obj,
922                                 struct niobuf_remote *rnb,
923                                 int npages, struct niobuf_local *res,
924                                 struct obd_trans_info *oti, int rc)
925 {
926         struct filter_obd *fo = &exp->exp_obd->u.filter;
927         struct inode *inode = NULL;
928         struct ldlm_res_id res_id;
929         struct ldlm_resource *resource = NULL;
930         struct ldlm_namespace *ns = exp->exp_obd->obd_namespace;
931         struct niobuf_local *lnb;
932         int i;
933         ENTRY;
934
935         osc_build_res_name(obj->ioo_id, obj->ioo_seq, &res_id);
936         /* If oa != NULL then filter_preprw_read updated the inode atime
937          * and we should update the lvb so that other glimpses will also
938          * get the updated value. bug 5972 */
939         if (oa && ns && ns->ns_lvbo && ns->ns_lvbo->lvbo_update) {
940                 resource = ldlm_resource_get(ns, NULL, &res_id, LDLM_EXTENT, 0);
941
942                 if (resource != NULL) {
943                         LDLM_RESOURCE_ADDREF(resource);
944                         ns->ns_lvbo->lvbo_update(resource, NULL, 1);
945                         LDLM_RESOURCE_DELREF(resource);
946                         ldlm_resource_putref(resource);
947                 }
948         }
949
950         if (res->dentry != NULL)
951                 inode = res->dentry->d_inode;
952
953         for (i = 0, lnb = res; i < npages; i++, lnb++) {
954                 if (lnb->page != NULL) {
955                         page_cache_release(lnb->page);
956                         lnb->page = NULL;
957                 }
958         }
959         if (inode && (fo->fo_read_cache == 0 ||
960                       i_size_read(inode) > fo->fo_readcache_max_filesize))
961                 filter_release_cache(exp->exp_obd, obj, rnb, inode);
962
963         if (res->dentry != NULL)
964                 f_dput(res->dentry);
965         RETURN(rc);
966 }
967
968 void filter_grant_commit(struct obd_export *exp, int niocount,
969                          struct niobuf_local *res)
970 {
971         struct filter_obd *filter = &exp->exp_obd->u.filter;
972         struct niobuf_local *lnb = res;
973         unsigned long pending = 0;
974         int i;
975
976         cfs_spin_lock(&exp->exp_obd->obd_osfs_lock);
977         for (i = 0, lnb = res; i < niocount; i++, lnb++)
978                 pending += lnb->lnb_grant_used;
979
980         LASSERTF(exp->exp_filter_data.fed_pending >= pending,
981                  "%s: cli %s/%p fed_pending: %lu grant_used: %lu\n",
982                  exp->exp_obd->obd_name, exp->exp_client_uuid.uuid, exp,
983                  exp->exp_filter_data.fed_pending, pending);
984         exp->exp_filter_data.fed_pending -= pending;
985         LASSERTF(filter->fo_tot_granted >= pending,
986                  "%s: cli %s/%p tot_granted: "LPU64" grant_used: %lu\n",
987                  exp->exp_obd->obd_name, exp->exp_client_uuid.uuid, exp,
988                  exp->exp_obd->u.filter.fo_tot_granted, pending);
989         filter->fo_tot_granted -= pending;
990         LASSERTF(filter->fo_tot_pending >= pending,
991                  "%s: cli %s/%p tot_pending: "LPU64" grant_used: %lu\n",
992                  exp->exp_obd->obd_name, exp->exp_client_uuid.uuid, exp,
993                  filter->fo_tot_pending, pending);
994         filter->fo_tot_pending -= pending;
995
996         cfs_spin_unlock(&exp->exp_obd->obd_osfs_lock);
997 }
998
999 int filter_commitrw(const struct lu_env *env, int cmd, struct obd_export *exp,
1000                     struct obdo *oa, int objcount, struct obd_ioobj *obj,
1001                     struct niobuf_remote *nb, int npages,
1002                     struct niobuf_local *res, struct obd_trans_info *oti,
1003                     int rc)
1004 {
1005         if (cmd == OBD_BRW_WRITE)
1006                 return filter_commitrw_write(exp, oa, objcount, obj,
1007                                              nb, npages, res, oti, rc);
1008         if (cmd == OBD_BRW_READ)
1009                 return filter_commitrw_read(exp, oa, objcount, obj,
1010                                             nb, npages, res, oti, rc);
1011         LBUG();
1012         return -EPROTO;
1013 }