Whamcloud - gitweb
a2b00caaa2b101ab27c81e5a7fa0bd1e7d27699f
[fs/lustre-release.git] / lustre / llite / llite_internal.h
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  * Copyright (c) 2011, 2014, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef LLITE_INTERNAL_H
38 #define LLITE_INTERNAL_H
39 #include <lustre_debug.h>
40 #include <lustre_ver.h>
41 #include <lustre_disk.h>  /* for s2sbi */
42 #include <lustre_eacl.h>
43 #include <lustre_linkea.h>
44
45 /* for struct cl_lock_descr and struct cl_io */
46 #include <cl_object.h>
47 #include <lustre_lmv.h>
48 #include <lustre_mdc.h>
49 #include <lustre_intent.h>
50 #include <linux/compat.h>
51 #include <linux/aio.h>
52
53 #include "vvp_internal.h"
54 #include "range_lock.h"
55
56 #ifndef FMODE_EXEC
57 #define FMODE_EXEC 0
58 #endif
59
60 #ifndef VM_FAULT_RETRY
61 #define VM_FAULT_RETRY 0
62 #endif
63
64 /* Kernel 3.1 kills LOOKUP_CONTINUE, LOOKUP_PARENT is equivalent to it.
65  * seem kernel commit 49084c3bb2055c401f3493c13edae14d49128ca0 */
66 #ifndef LOOKUP_CONTINUE
67 #define LOOKUP_CONTINUE LOOKUP_PARENT
68 #endif
69
70 /** Only used on client-side for indicating the tail of dir hash/offset. */
71 #define LL_DIR_END_OFF          0x7fffffffffffffffULL
72 #define LL_DIR_END_OFF_32BIT    0x7fffffffUL
73
74 /* 4UL * 1024 * 1024 */
75 #define LL_MAX_BLKSIZE_BITS 22
76
77 #define LL_IT2STR(it) ((it) ? ldlm_it2str((it)->it_op) : "0")
78 #define LUSTRE_FPRIVATE(file) ((file)->private_data)
79
80 struct ll_dentry_data {
81         struct lookup_intent            *lld_it;
82         unsigned int                    lld_sa_generation;
83         unsigned int                    lld_invalid:1;
84         struct rcu_head                 lld_rcu_head;
85 };
86
87 #define ll_d2d(de) ((struct ll_dentry_data*)((de)->d_fsdata))
88
89 #define LLI_INODE_MAGIC                 0x111d0de5
90 #define LLI_INODE_DEAD                  0xdeadd00d
91
92 /* remote client permission cache */
93 #define REMOTE_PERM_HASHSIZE 16
94
95 struct ll_getname_data {
96 #ifdef HAVE_DIR_CONTEXT
97         struct dir_context      ctx;
98 #endif
99         char            *lgd_name;      /* points to a buffer with NAME_MAX+1 size */
100         struct lu_fid   lgd_fid;        /* target fid we are looking for */
101         int             lgd_found;      /* inode matched? */
102 };
103
104 /* llite setxid/access permission for user on remote client */
105 struct ll_remote_perm {
106         struct hlist_node       lrp_list;
107         uid_t                   lrp_uid;
108         gid_t                   lrp_gid;
109         uid_t                   lrp_fsuid;
110         gid_t                   lrp_fsgid;
111         int                     lrp_access_perm; /* MAY_READ/WRITE/EXEC, this
112                                                     is access permission with
113                                                     lrp_fsuid/lrp_fsgid. */
114 };
115
116 struct ll_grouplock {
117         struct lu_env   *lg_env;
118         struct cl_io    *lg_io;
119         struct cl_lock  *lg_lock;
120         unsigned long    lg_gid;
121 };
122
123 struct ll_inode_info {
124         __u32                           lli_inode_magic;
125         spinlock_t                      lli_lock;
126
127         volatile unsigned long          lli_flags;
128         struct posix_acl                *lli_posix_acl;
129
130         struct hlist_head               *lli_remote_perms;
131         struct mutex                    lli_rmtperm_mutex;
132
133         /* identifying fields for both metadata and data stacks. */
134         struct lu_fid                   lli_fid;
135         /* master inode fid for stripe directory */
136         struct lu_fid                   lli_pfid;
137
138         /* open count currently used by capability only, indicate whether
139          * capability needs renewal */
140         atomic_t                        lli_open_count;
141         cfs_time_t                      lli_rmtperm_time;
142
143         /* We need all three because every inode may be opened in different
144          * modes */
145         struct obd_client_handle       *lli_mds_read_och;
146         struct obd_client_handle       *lli_mds_write_och;
147         struct obd_client_handle       *lli_mds_exec_och;
148         __u64                           lli_open_fd_read_count;
149         __u64                           lli_open_fd_write_count;
150         __u64                           lli_open_fd_exec_count;
151         /* Protects access to och pointers and their usage counters */
152         struct mutex                    lli_och_mutex;
153
154         struct inode                    lli_vfs_inode;
155
156         /* the most recent timestamps obtained from mds */
157         s64                             lli_atime;
158         s64                             lli_mtime;
159         s64                             lli_ctime;
160         spinlock_t                      lli_agl_lock;
161
162         /* Try to make the d::member and f::member are aligned. Before using
163          * these members, make clear whether it is directory or not. */
164         union {
165                 /* for directory */
166                 struct {
167                         /* serialize normal readdir and statahead-readdir. */
168                         struct mutex                    lli_readdir_mutex;
169
170                         /* metadata statahead */
171                         /* since parent-child threads can share the same @file
172                          * struct, "opendir_key" is the token when dir close for
173                          * case of parent exit before child -- it is me should
174                          * cleanup the dir readahead. */
175                         void                           *lli_opendir_key;
176                         struct ll_statahead_info       *lli_sai;
177                         /* protect statahead stuff. */
178                         spinlock_t                      lli_sa_lock;
179                         /* "opendir_pid" is the token when lookup/revalid
180                          * -- I am the owner of dir statahead. */
181                         pid_t                           lli_opendir_pid;
182                         /* stat will try to access statahead entries or start
183                          * statahead if this flag is set, and this flag will be
184                          * set upon dir open, and cleared when dir is closed,
185                          * statahead hit ratio is too low, or start statahead
186                          * thread failed. */
187                         unsigned int                    lli_sa_enabled:1;
188                         /* generation for statahead */
189                         unsigned int                    lli_sa_generation;
190                         /* directory stripe information */
191                         struct lmv_stripe_md            *lli_lsm_md;
192                         /* default directory stripe offset.  This is extracted
193                          * from the "dmv" xattr in order to decide which MDT to
194                          * create a subdirectory on.  The MDS itself fetches
195                          * "dmv" and gets the rest of the default layout itself
196                          * (count, hash, etc). */
197                         __u32                           lli_def_stripe_offset;
198                 };
199
200                 /* for non-directory */
201                 struct {
202                         struct mutex                    lli_size_mutex;
203                         char                           *lli_symlink_name;
204                         /*
205                          * struct rw_semaphore {
206                          *    signed long       count;     // align d.d_def_acl
207                          *    spinlock_t        wait_lock; // align d.d_sa_lock
208                          *    struct list_head wait_list;
209                          * }
210                          */
211                         struct rw_semaphore             lli_trunc_sem;
212                         struct range_lock_tree          lli_write_tree;
213
214                         struct rw_semaphore             lli_glimpse_sem;
215                         cfs_time_t                      lli_glimpse_time;
216                         struct list_head                lli_agl_list;
217                         __u64                           lli_agl_index;
218
219                         /* for writepage() only to communicate to fsync */
220                         int                             lli_async_rc;
221
222                         /*
223                          * whenever a process try to read/write the file, the
224                          * jobid of the process will be saved here, and it'll
225                          * be packed into the write PRC when flush later.
226                          *
227                          * so the read/write statistics for jobid will not be
228                          * accurate if the file is shared by different jobs.
229                          */
230                         char                    lli_jobid[LUSTRE_JOBID_SIZE];
231                 };
232         };
233
234         /* XXX: For following frequent used members, although they maybe special
235          *      used for non-directory object, it is some time-wasting to check
236          *      whether the object is directory or not before using them. On the
237          *      other hand, currently, sizeof(f) > sizeof(d), it cannot reduce
238          *      the "ll_inode_info" size even if moving those members into u.f.
239          *      So keep them out side.
240          *
241          *      In the future, if more members are added only for directory,
242          *      some of the following members can be moved into u.f.
243          */
244         struct cl_object                *lli_clob;
245
246         /* mutex to request for layout lock exclusively. */
247         struct mutex                    lli_layout_mutex;
248         /* Layout version, protected by lli_layout_lock */
249         __u32                           lli_layout_gen;
250         spinlock_t                      lli_layout_lock;
251
252         struct rw_semaphore             lli_xattrs_list_rwsem;
253         struct mutex                    lli_xattrs_enq_lock;
254         struct list_head                lli_xattrs; /* ll_xattr_entry->xe_list */
255 };
256
257 static inline __u32 ll_layout_version_get(struct ll_inode_info *lli)
258 {
259         __u32 gen;
260
261         spin_lock(&lli->lli_layout_lock);
262         gen = lli->lli_layout_gen;
263         spin_unlock(&lli->lli_layout_lock);
264
265         return gen;
266 }
267
268 static inline void ll_layout_version_set(struct ll_inode_info *lli, __u32 gen)
269 {
270         spin_lock(&lli->lli_layout_lock);
271         lli->lli_layout_gen = gen;
272         spin_unlock(&lli->lli_layout_lock);
273 }
274
275 enum ll_file_flags {
276         /* File data is modified. */
277         LLIF_DATA_MODIFIED      = 0,
278         /* File is being restored */
279         LLIF_FILE_RESTORING     = 1,
280         /* Xattr cache is attached to the file */
281         LLIF_XATTR_CACHE        = 2,
282 };
283
284 static inline void ll_file_set_flag(struct ll_inode_info *lli,
285                                     enum ll_file_flags flag)
286 {
287         set_bit(flag, &lli->lli_flags);
288 }
289
290 static inline void ll_file_clear_flag(struct ll_inode_info *lli,
291                                       enum ll_file_flags flag)
292 {
293         clear_bit(flag, &lli->lli_flags);
294 }
295
296 static inline bool ll_file_test_flag(struct ll_inode_info *lli,
297                                      enum ll_file_flags flag)
298 {
299         return test_bit(flag, &lli->lli_flags);
300 }
301
302 static inline bool ll_file_test_and_clear_flag(struct ll_inode_info *lli,
303                                                enum ll_file_flags flag)
304 {
305         return test_and_clear_bit(flag, &lli->lli_flags);
306 }
307
308 int ll_xattr_cache_destroy(struct inode *inode);
309
310 int ll_xattr_cache_get(struct inode *inode,
311                         const char *name,
312                         char *buffer,
313                         size_t size,
314                         __u64 valid);
315
316 /*
317  * Locking to guarantee consistency of non-atomic updates to long long i_size,
318  * consistency between file size and KMS.
319  *
320  * Implemented by ->lli_size_mutex and ->lsm_lock, nested in that order.
321  */
322
323 void ll_inode_size_lock(struct inode *inode);
324 void ll_inode_size_unlock(struct inode *inode);
325
326 // FIXME: replace the name of this with LL_I to conform to kernel stuff
327 // static inline struct ll_inode_info *LL_I(struct inode *inode)
328 static inline struct ll_inode_info *ll_i2info(struct inode *inode)
329 {
330         return container_of(inode, struct ll_inode_info, lli_vfs_inode);
331 }
332
333 /* default to about 40meg of readahead on a given system.  That much tied
334  * up in 512k readahead requests serviced at 40ms each is about 1GB/s. */
335 #define SBI_DEFAULT_READAHEAD_MAX (40UL << (20 - PAGE_CACHE_SHIFT))
336
337 /* default to read-ahead full files smaller than 2MB on the second read */
338 #define SBI_DEFAULT_READAHEAD_WHOLE_MAX (2UL << (20 - PAGE_CACHE_SHIFT))
339
340 enum ra_stat {
341         RA_STAT_HIT = 0,
342         RA_STAT_MISS,
343         RA_STAT_DISTANT_READPAGE,
344         RA_STAT_MISS_IN_WINDOW,
345         RA_STAT_FAILED_GRAB_PAGE,
346         RA_STAT_FAILED_MATCH,
347         RA_STAT_DISCARDED,
348         RA_STAT_ZERO_LEN,
349         RA_STAT_ZERO_WINDOW,
350         RA_STAT_EOF,
351         RA_STAT_MAX_IN_FLIGHT,
352         RA_STAT_WRONG_GRAB_PAGE,
353         RA_STAT_FAILED_REACH_END,
354         _NR_RA_STAT,
355 };
356
357 struct ll_ra_info {
358         atomic_t        ra_cur_pages;
359         unsigned long   ra_max_pages;
360         unsigned long   ra_max_pages_per_file;
361         unsigned long   ra_max_read_ahead_whole_pages;
362 };
363
364 /* ra_io_arg will be filled in the beginning of ll_readahead with
365  * ras_lock, then the following ll_read_ahead_pages will read RA
366  * pages according to this arg, all the items in this structure are
367  * counted by page index.
368  */
369 struct ra_io_arg {
370         unsigned long ria_start;  /* start offset of read-ahead*/
371         unsigned long ria_end;    /* end offset of read-ahead*/
372         /* If stride read pattern is detected, ria_stoff means where
373          * stride read is started. Note: for normal read-ahead, the
374          * value here is meaningless, and also it will not be accessed*/
375         pgoff_t ria_stoff;
376         /* ria_length and ria_pages are the length and pages length in the
377          * stride I/O mode. And they will also be used to check whether
378          * it is stride I/O read-ahead in the read-ahead pages*/
379         unsigned long ria_length;
380         unsigned long ria_pages;
381 };
382
383 /* LL_HIST_MAX=32 causes an overflow */
384 #define LL_HIST_MAX 28
385 #define LL_HIST_START 12 /* buckets start at 2^12 = 4k */
386 #define LL_PROCESS_HIST_MAX 10
387 struct per_process_info {
388         pid_t pid;
389         struct obd_histogram pp_r_hist;
390         struct obd_histogram pp_w_hist;
391 };
392
393 /* pp_extents[LL_PROCESS_HIST_MAX] will hold the combined process info */
394 struct ll_rw_extents_info {
395         struct per_process_info pp_extents[LL_PROCESS_HIST_MAX + 1];
396 };
397
398 #define LL_OFFSET_HIST_MAX 100
399 struct ll_rw_process_info {
400         pid_t                     rw_pid;
401         int                       rw_op;
402         loff_t                    rw_range_start;
403         loff_t                    rw_range_end;
404         loff_t                    rw_last_file_pos;
405         loff_t                    rw_offset;
406         size_t                    rw_smallest_extent;
407         size_t                    rw_largest_extent;
408         struct ll_file_data      *rw_last_file;
409 };
410
411 enum stats_track_type {
412         STATS_TRACK_ALL = 0,  /* track all processes */
413         STATS_TRACK_PID,      /* track process with this pid */
414         STATS_TRACK_PPID,     /* track processes with this ppid */
415         STATS_TRACK_GID,      /* track processes with this gid */
416         STATS_TRACK_LAST,
417 };
418
419 /* flags for sbi->ll_flags */
420 #define LL_SBI_NOLCK             0x01 /* DLM locking disabled (directio-only) */
421 #define LL_SBI_CHECKSUM          0x02 /* checksum each page as it's written */
422 #define LL_SBI_FLOCK             0x04
423 #define LL_SBI_USER_XATTR        0x08 /* support user xattr */
424 #define LL_SBI_ACL               0x10 /* support ACL */
425 #define LL_SBI_RMT_CLIENT        0x40 /* remote client */
426 #define LL_SBI_MDS_CAPA          0x80 /* support mds capa, obsolete */
427 #define LL_SBI_OSS_CAPA         0x100 /* support oss capa, obsolete */
428 #define LL_SBI_LOCALFLOCK       0x200 /* Local flocks support by kernel */
429 #define LL_SBI_LRU_RESIZE       0x400 /* lru resize support */
430 #define LL_SBI_LAZYSTATFS       0x800 /* lazystatfs mount option */
431 /*      LL_SBI_SOM_PREVIEW     0x1000    SOM preview mount option, obsolete */
432 #define LL_SBI_32BIT_API       0x2000 /* generate 32 bit inodes. */
433 #define LL_SBI_64BIT_HASH      0x4000 /* support 64-bits dir hash/offset */
434 #define LL_SBI_AGL_ENABLED     0x8000 /* enable agl */
435 #define LL_SBI_VERBOSE        0x10000 /* verbose mount/umount */
436 #define LL_SBI_LAYOUT_LOCK    0x20000 /* layout lock support */
437 #define LL_SBI_USER_FID2PATH  0x40000 /* allow fid2path by unprivileged users */
438 #define LL_SBI_XATTR_CACHE    0x80000 /* support for xattr cache */
439 #define LL_SBI_NOROOTSQUASH  0x100000 /* do not apply root squash */
440
441 #define LL_SBI_FLAGS {  \
442         "nolck",        \
443         "checksum",     \
444         "flock",        \
445         "user_xattr",   \
446         "acl",          \
447         "???",          \
448         "rmt_client",   \
449         "mds_capa",     \
450         "oss_capa",     \
451         "flock",        \
452         "lru_resize",   \
453         "lazy_statfs",  \
454         "som",          \
455         "32bit_api",    \
456         "64bit_hash",   \
457         "agl",          \
458         "verbose",      \
459         "layout",       \
460         "user_fid2path",\
461         "xattr_cache",  \
462         "norootsquash", \
463 }
464
465 #define RCE_HASHES      32
466
467 struct rmtacl_ctl_entry {
468         struct list_head       rce_list;
469         pid_t            rce_key; /* hash key */
470         int              rce_ops; /* acl operation type */
471 };
472
473 struct rmtacl_ctl_table {
474         spinlock_t      rct_lock;
475         struct list_head        rct_entries[RCE_HASHES];
476 };
477
478 #define EE_HASHES       32
479
480 struct eacl_entry {
481         struct list_head            ee_list;
482         pid_t                 ee_key; /* hash key */
483         struct lu_fid         ee_fid;
484         int                   ee_type; /* ACL type for ACCESS or DEFAULT */
485         ext_acl_xattr_header *ee_acl;
486 };
487
488 struct eacl_table {
489         spinlock_t      et_lock;
490         struct list_head        et_entries[EE_HASHES];
491 };
492
493
494 /* This is embedded into llite super-blocks to keep track of connect
495  * flags (capabilities) supported by all imports given mount is
496  * connected to. */
497 struct lustre_client_ocd {
498         /* This is conjunction of connect_flags across all imports
499          * (LOVs) this mount is connected to. This field is updated by
500          * cl_ocd_update() under ->lco_lock. */
501         __u64                    lco_flags;
502         struct mutex             lco_lock;
503         struct obd_export       *lco_md_exp;
504         struct obd_export       *lco_dt_exp;
505 };
506
507 struct ll_sb_info {
508         struct list_head                  ll_list;
509         /* this protects pglist and ra_info.  It isn't safe to
510          * grab from interrupt contexts */
511         spinlock_t                ll_lock;
512         spinlock_t                ll_pp_extent_lock; /* pp_extent entry*/
513         spinlock_t                ll_process_lock; /* ll_rw_process_info */
514         struct obd_uuid           ll_sb_uuid;
515         struct obd_export        *ll_md_exp;
516         struct obd_export        *ll_dt_exp;
517         struct proc_dir_entry*    ll_proc_root;
518         struct lu_fid             ll_root_fid; /* root object fid */
519
520         int                       ll_flags;
521         unsigned int              ll_umounting:1,
522                                   ll_xattr_cache_enabled:1,
523                                   ll_client_common_fill_super_succeeded:1;
524
525         /* per-conn chain of SBs */
526         struct list_head                ll_conn_chain;
527         struct lustre_client_ocd  ll_lco;
528
529         /*please don't ask -p*/
530         struct list_head        ll_orphan_dentry_list;
531
532         struct lprocfs_stats     *ll_stats; /* lprocfs stats counter */
533
534         /* Used to track "unstable" pages on a client, and maintain a
535          * LRU list of clean pages. An "unstable" page is defined as
536          * any page which is sent to a server as part of a bulk request,
537          * but is uncommitted to stable storage. */
538         struct cl_client_cache   *ll_cache;
539
540         struct lprocfs_stats     *ll_ra_stats;
541
542         struct ll_ra_info         ll_ra_info;
543         unsigned int              ll_namelen;
544         struct file_operations   *ll_fop;
545
546         unsigned int              ll_md_brw_pages; /* readdir pages per RPC */
547
548         struct lu_site           *ll_site;
549         struct cl_device         *ll_cl;
550         /* Statistics */
551         struct ll_rw_extents_info ll_rw_extents_info;
552         int                       ll_extent_process_count;
553         struct ll_rw_process_info ll_rw_process_info[LL_PROCESS_HIST_MAX];
554         unsigned int              ll_offset_process_count;
555         struct ll_rw_process_info ll_rw_offset_info[LL_OFFSET_HIST_MAX];
556         unsigned int              ll_rw_offset_entry_count;
557         int                       ll_stats_track_id;
558         enum stats_track_type     ll_stats_track_type;
559         int                       ll_rw_stats_on;
560
561         /* metadata stat-ahead */
562         unsigned int              ll_sa_max;     /* max statahead RPCs */
563         atomic_t                  ll_sa_total;   /* statahead thread started
564                                                   * count */
565         atomic_t                  ll_sa_wrong;   /* statahead thread stopped for
566                                                   * low hit ratio */
567         atomic_t                  ll_sa_running; /* running statahead thread
568                                                   * count */
569         atomic_t                  ll_agl_total;  /* AGL thread started count */
570
571         dev_t                     ll_sdev_orig; /* save s_dev before assign for
572                                                  * clustred nfs */
573         struct rmtacl_ctl_table   ll_rct;
574         struct eacl_table         ll_et;
575
576         /* root squash */
577         struct root_squash_info   ll_squash;
578 };
579
580 /*
581  * per file-descriptor read-ahead data.
582  */
583 struct ll_readahead_state {
584         spinlock_t  ras_lock;
585         /*
586          * index of the last page that read(2) needed and that wasn't in the
587          * cache. Used by ras_update() to detect seeks.
588          *
589          * XXX nikita: if access seeks into cached region, Lustre doesn't see
590          * this.
591          */
592         unsigned long   ras_last_readpage;
593         /*
594          * number of pages read after last read-ahead window reset. As window
595          * is reset on each seek, this is effectively a number of consecutive
596          * accesses. Maybe ->ras_accessed_in_window is better name.
597          *
598          * XXX nikita: window is also reset (by ras_update()) when Lustre
599          * believes that memory pressure evicts read-ahead pages. In that
600          * case, it probably doesn't make sense to expand window to
601          * PTLRPC_MAX_BRW_PAGES on the third access.
602          */
603         unsigned long   ras_consecutive_pages;
604         /*
605          * number of read requests after the last read-ahead window reset
606          * As window is reset on each seek, this is effectively the number
607          * on consecutive read request and is used to trigger read-ahead.
608          */
609         unsigned long   ras_consecutive_requests;
610         /*
611          * Parameters of current read-ahead window. Handled by
612          * ras_update(). On the initial access to the file or after a seek,
613          * window is reset to 0. After 3 consecutive accesses, window is
614          * expanded to PTLRPC_MAX_BRW_PAGES. Afterwards, window is enlarged by
615          * PTLRPC_MAX_BRW_PAGES chunks up to ->ra_max_pages.
616          */
617         unsigned long   ras_window_start, ras_window_len;
618         /*
619          * Where next read-ahead should start at. This lies within read-ahead
620          * window. Read-ahead window is read in pieces rather than at once
621          * because: 1. lustre limits total number of pages under read-ahead by
622          * ->ra_max_pages (see ll_ra_count_get()), 2. client cannot read pages
623          * not covered by DLM lock.
624          */
625         unsigned long   ras_next_readahead;
626         /*
627          * Total number of ll_file_read requests issued, reads originating
628          * due to mmap are not counted in this total.  This value is used to
629          * trigger full file read-ahead after multiple reads to a small file.
630          */
631         unsigned long   ras_requests;
632         /*
633          * Page index with respect to the current request, these value
634          * will not be accurate when dealing with reads issued via mmap.
635          */
636         unsigned long   ras_request_index;
637         /*
638          * The following 3 items are used for detecting the stride I/O
639          * mode.
640          * In stride I/O mode,
641          * ...............|-----data-----|****gap*****|--------|******|....
642          *    offset      |-stride_pages-|-stride_gap-|
643          * ras_stride_offset = offset;
644          * ras_stride_length = stride_pages + stride_gap;
645          * ras_stride_pages = stride_pages;
646          * Note: all these three items are counted by pages.
647          */
648         unsigned long   ras_stride_length;
649         unsigned long   ras_stride_pages;
650         pgoff_t         ras_stride_offset;
651         /*
652          * number of consecutive stride request count, and it is similar as
653          * ras_consecutive_requests, but used for stride I/O mode.
654          * Note: only more than 2 consecutive stride request are detected,
655          * stride read-ahead will be enable
656          */
657         unsigned long   ras_consecutive_stride_requests;
658 };
659
660 extern struct kmem_cache *ll_file_data_slab;
661 struct lustre_handle;
662 struct ll_file_data {
663         struct ll_readahead_state fd_ras;
664         struct ll_grouplock fd_grouplock;
665         __u64 lfd_pos;
666         __u32 fd_flags;
667         fmode_t fd_omode;
668         /* openhandle if lease exists for this file.
669          * Borrow lli->lli_och_mutex to protect assignment */
670         struct obd_client_handle *fd_lease_och;
671         struct obd_client_handle *fd_och;
672         struct file *fd_file;
673         /* Indicate whether need to report failure when close.
674          * true: failure is known, not report again.
675          * false: unknown failure, should report. */
676         bool fd_write_failed;
677         rwlock_t fd_lock; /* protect lcc list */
678         struct list_head fd_lccs; /* list of ll_cl_context */
679 };
680
681 extern spinlock_t inode_lock;
682
683 extern struct proc_dir_entry *proc_lustre_fs_root;
684
685 static inline struct inode *ll_info2i(struct ll_inode_info *lli)
686 {
687         return &lli->lli_vfs_inode;
688 }
689
690 __u32 ll_i2suppgid(struct inode *i);
691 void ll_i2gids(__u32 *suppgids, struct inode *i1,struct inode *i2);
692
693 static inline int ll_need_32bit_api(struct ll_sb_info *sbi)
694 {
695 #if BITS_PER_LONG == 32
696         return 1;
697 #elif defined(CONFIG_COMPAT)
698         return unlikely(is_compat_task() || (sbi->ll_flags & LL_SBI_32BIT_API));
699 #else
700         return unlikely(sbi->ll_flags & LL_SBI_32BIT_API);
701 #endif
702 }
703
704 void ll_ras_enter(struct file *f);
705
706 /* llite/lcommon_misc.c */
707 int cl_ocd_update(struct obd_device *host, struct obd_device *watched,
708                   enum obd_notify_event ev, void *owner, void *data);
709 int cl_get_grouplock(struct cl_object *obj, unsigned long gid, int nonblock,
710                      struct ll_grouplock *lg);
711 void cl_put_grouplock(struct ll_grouplock *lg);
712
713 /* llite/lproc_llite.c */
714 #ifdef CONFIG_PROC_FS
715 int lprocfs_register_mountpoint(struct proc_dir_entry *parent,
716                                 struct super_block *sb, char *osc, char *mdc);
717 void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi);
718 void ll_stats_ops_tally(struct ll_sb_info *sbi, int op, int count);
719 extern struct lprocfs_vars lprocfs_llite_obd_vars[];
720 #else
721 static inline int lprocfs_register_mountpoint(struct proc_dir_entry *parent,
722                         struct super_block *sb, char *osc, char *mdc){return 0;}
723 static inline void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi) {}
724 static void ll_stats_ops_tally(struct ll_sb_info *sbi, int op, int count) {}
725 #endif
726
727 enum {
728         LPROC_LL_DIRTY_HITS,
729         LPROC_LL_DIRTY_MISSES,
730         LPROC_LL_READ_BYTES,
731         LPROC_LL_WRITE_BYTES,
732         LPROC_LL_BRW_READ,
733         LPROC_LL_BRW_WRITE,
734         LPROC_LL_OSC_READ,
735         LPROC_LL_OSC_WRITE,
736         LPROC_LL_IOCTL,
737         LPROC_LL_OPEN,
738         LPROC_LL_RELEASE,
739         LPROC_LL_MAP,
740         LPROC_LL_LLSEEK,
741         LPROC_LL_FSYNC,
742         LPROC_LL_READDIR,
743         LPROC_LL_SETATTR,
744         LPROC_LL_TRUNC,
745         LPROC_LL_FLOCK,
746         LPROC_LL_GETATTR,
747         LPROC_LL_CREATE,
748         LPROC_LL_LINK,
749         LPROC_LL_UNLINK,
750         LPROC_LL_SYMLINK,
751         LPROC_LL_MKDIR,
752         LPROC_LL_RMDIR,
753         LPROC_LL_MKNOD,
754         LPROC_LL_RENAME,
755         LPROC_LL_STAFS,
756         LPROC_LL_ALLOC_INODE,
757         LPROC_LL_SETXATTR,
758         LPROC_LL_GETXATTR,
759         LPROC_LL_GETXATTR_HITS,
760         LPROC_LL_LISTXATTR,
761         LPROC_LL_REMOVEXATTR,
762         LPROC_LL_INODE_PERM,
763         LPROC_LL_FILE_OPCODES
764 };
765
766 /* llite/dir.c */
767 struct ll_dir_chain {
768 };
769
770 static inline void ll_dir_chain_init(struct ll_dir_chain *chain)
771 {
772 }
773
774 static inline void ll_dir_chain_fini(struct ll_dir_chain *chain)
775 {
776 }
777
778 extern const struct file_operations ll_dir_operations;
779 extern const struct inode_operations ll_dir_inode_operations;
780 #ifdef HAVE_DIR_CONTEXT
781 int ll_dir_read(struct inode *inode, __u64 *pos, struct md_op_data *op_data,
782                 struct dir_context *ctx);
783 #else
784 int ll_dir_read(struct inode *inode, __u64 *pos, struct md_op_data *op_data,
785                 void *cookie, filldir_t filldir);
786 #endif
787 int ll_get_mdt_idx(struct inode *inode);
788 int ll_get_mdt_idx_by_fid(struct ll_sb_info *sbi, const struct lu_fid *fid);
789 struct page *ll_get_dir_page(struct inode *dir, struct md_op_data *op_data,
790                              __u64 offset, struct ll_dir_chain *chain);
791 void ll_release_page(struct inode *inode, struct page *page, bool remove);
792
793 /* llite/namei.c */
794 extern const struct inode_operations ll_special_inode_operations;
795
796 struct inode *ll_iget(struct super_block *sb, ino_t hash,
797                       struct lustre_md *lic);
798 int ll_test_inode_by_fid(struct inode *inode, void *opaque);
799 int ll_md_blocking_ast(struct ldlm_lock *, struct ldlm_lock_desc *,
800                        void *data, int flag);
801 struct dentry *ll_splice_alias(struct inode *inode, struct dentry *de);
802 int ll_rmdir_entry(struct inode *dir, char *name, int namelen);
803 void ll_update_times(struct ptlrpc_request *request, struct inode *inode);
804
805 /* llite/rw.c */
806 int ll_writepage(struct page *page, struct writeback_control *wbc);
807 int ll_writepages(struct address_space *, struct writeback_control *wbc);
808 int ll_readpage(struct file *file, struct page *page);
809 void ll_readahead_init(struct inode *inode, struct ll_readahead_state *ras);
810 int vvp_io_write_commit(const struct lu_env *env, struct cl_io *io);
811 struct ll_cl_context *ll_cl_find(struct file *file);
812 void ll_cl_add(struct file *file, const struct lu_env *env, struct cl_io *io);
813 void ll_cl_remove(struct file *file, const struct lu_env *env);
814
815 #ifndef MS_HAS_NEW_AOPS
816 extern const struct address_space_operations ll_aops;
817 #else
818 extern const struct address_space_operations_ext ll_aops;
819 #endif
820
821 /* llite/file.c */
822 extern struct file_operations ll_file_operations;
823 extern struct file_operations ll_file_operations_flock;
824 extern struct file_operations ll_file_operations_noflock;
825 extern struct inode_operations ll_file_inode_operations;
826 extern int ll_have_md_lock(struct inode *inode, __u64 *bits,
827                            ldlm_mode_t l_req_mode);
828 extern ldlm_mode_t ll_take_md_lock(struct inode *inode, __u64 bits,
829                                    struct lustre_handle *lockh, __u64 flags,
830                                    ldlm_mode_t mode);
831
832 int ll_file_open(struct inode *inode, struct file *file);
833 int ll_file_release(struct inode *inode, struct file *file);
834 int ll_release_openhandle(struct dentry *, struct lookup_intent *);
835 int ll_md_real_close(struct inode *inode, fmode_t fmode);
836 extern void ll_rw_stats_tally(struct ll_sb_info *sbi, pid_t pid,
837                               struct ll_file_data *file, loff_t pos,
838                               size_t count, int rw);
839 int ll_getattr(struct vfsmount *mnt, struct dentry *de, struct kstat *stat);
840 struct posix_acl *ll_get_acl(struct inode *inode, int type);
841 int ll_migrate(struct inode *parent, struct file *file, int mdtidx,
842                const char *name, int namelen);
843 int ll_get_fid_by_name(struct inode *parent, const char *name,
844                        int namelen, struct lu_fid *fid);
845 #ifdef HAVE_GENERIC_PERMISSION_4ARGS
846 int ll_inode_permission(struct inode *inode, int mask, unsigned int flags);
847 #else
848 # ifndef HAVE_INODE_PERMISION_2ARGS
849 int ll_inode_permission(struct inode *inode, int mask, struct nameidata *nd);
850 # else
851 int ll_inode_permission(struct inode *inode, int mask);
852 # endif
853 #endif
854
855 int ll_lov_setstripe_ea_info(struct inode *inode, struct file *file,
856                              __u64  flags, struct lov_user_md *lum,
857                              int lum_size);
858 int ll_lov_getstripe_ea_info(struct inode *inode, const char *filename,
859                              struct lov_mds_md **lmm, int *lmm_size,
860                              struct ptlrpc_request **request);
861 int ll_dir_setstripe(struct inode *inode, struct lov_user_md *lump,
862                      int set_default);
863 int ll_dir_getstripe(struct inode *inode, void **lmmp,
864                      int *lmm_size, struct ptlrpc_request **request,
865                      u64 valid);
866 #ifdef HAVE_FILE_FSYNC_4ARGS
867 int ll_fsync(struct file *file, loff_t start, loff_t end, int data);
868 #elif defined(HAVE_FILE_FSYNC_2ARGS)
869 int ll_fsync(struct file *file, int data);
870 #else
871 int ll_fsync(struct file *file, struct dentry *dentry, int data);
872 #endif
873 int ll_merge_attr(const struct lu_env *env, struct inode *inode);
874 int ll_fid2path(struct inode *inode, void __user *arg);
875 int ll_data_version(struct inode *inode, __u64 *data_version, int flags);
876 int ll_hsm_release(struct inode *inode);
877
878 /* llite/dcache.c */
879
880 int ll_d_init(struct dentry *de);
881 extern const struct dentry_operations ll_d_ops;
882 void ll_intent_drop_lock(struct lookup_intent *);
883 void ll_intent_release(struct lookup_intent *);
884 void ll_invalidate_aliases(struct inode *);
885 void ll_lookup_finish_locks(struct lookup_intent *it, struct dentry *dentry);
886 int ll_revalidate_it_finish(struct ptlrpc_request *request,
887                             struct lookup_intent *it, struct dentry *de);
888
889 /* llite/llite_lib.c */
890 extern struct super_operations lustre_super_operations;
891
892 void ll_lli_init(struct ll_inode_info *lli);
893 int ll_fill_super(struct super_block *sb, struct vfsmount *mnt);
894 void ll_put_super(struct super_block *sb);
895 void ll_kill_super(struct super_block *sb);
896 struct inode *ll_inode_from_resource_lock(struct ldlm_lock *lock);
897 void ll_clear_inode(struct inode *inode);
898 int ll_setattr_raw(struct dentry *dentry, struct iattr *attr, bool hsm_import);
899 int ll_setattr(struct dentry *de, struct iattr *attr);
900 int ll_statfs(struct dentry *de, struct kstatfs *sfs);
901 int ll_statfs_internal(struct super_block *sb, struct obd_statfs *osfs,
902                        __u64 max_age, __u32 flags);
903 int ll_update_inode(struct inode *inode, struct lustre_md *md);
904 int ll_read_inode2(struct inode *inode, void *opaque);
905 void ll_delete_inode(struct inode *inode);
906 int ll_iocontrol(struct inode *inode, struct file *file,
907                  unsigned int cmd, unsigned long arg);
908 int ll_flush_ctx(struct inode *inode);
909 void ll_umount_begin(struct super_block *sb);
910 int ll_remount_fs(struct super_block *sb, int *flags, char *data);
911 #ifdef HAVE_SUPEROPS_USE_DENTRY
912 int ll_show_options(struct seq_file *seq, struct dentry *dentry);
913 #else
914 int ll_show_options(struct seq_file *seq, struct vfsmount *vfs);
915 #endif
916 void ll_dirty_page_discard_warn(struct page *page, int ioret);
917 int ll_prep_inode(struct inode **inode, struct ptlrpc_request *req,
918                   struct super_block *, struct lookup_intent *);
919 void lustre_dump_dentry(struct dentry *, int recur);
920 int ll_obd_statfs(struct inode *inode, void __user *arg);
921 int ll_get_max_mdsize(struct ll_sb_info *sbi, int *max_mdsize);
922 int ll_get_default_mdsize(struct ll_sb_info *sbi, int *default_mdsize);
923 int ll_set_default_mdsize(struct ll_sb_info *sbi, int default_mdsize);
924 int ll_process_config(struct lustre_cfg *lcfg);
925
926 enum {
927         LUSTRE_OPC_MKDIR        = 0,
928         LUSTRE_OPC_SYMLINK      = 1,
929         LUSTRE_OPC_MKNOD        = 2,
930         LUSTRE_OPC_CREATE       = 3,
931         LUSTRE_OPC_ANY          = 5,
932 };
933
934 struct md_op_data *ll_prep_md_op_data(struct md_op_data *op_data,
935                                       struct inode *i1, struct inode *i2,
936                                       const char *name, size_t namelen,
937                                       __u32 mode, __u32 opc, void *data);
938 void ll_finish_md_op_data(struct md_op_data *op_data);
939 int ll_get_obd_name(struct inode *inode, unsigned int cmd, unsigned long arg);
940 char *ll_get_fsname(struct super_block *sb, char *buf, int buflen);
941 void ll_compute_rootsquash_state(struct ll_sb_info *sbi);
942 ssize_t ll_copy_user_md(const struct lov_user_md __user *md,
943                         struct lov_user_md **kbuf);
944 void ll_open_cleanup(struct super_block *sb, struct ptlrpc_request *open_req);
945
946 /* Compute expected user md size when passing in a md from user space */
947 static inline ssize_t ll_lov_user_md_size(const struct lov_user_md *lum)
948 {
949         switch (lum->lmm_magic) {
950         case LOV_USER_MAGIC_V1:
951                 return sizeof(struct lov_user_md_v1);
952         case LOV_USER_MAGIC_V3:
953                 return sizeof(struct lov_user_md_v3);
954         case LOV_USER_MAGIC_SPECIFIC:
955                 if (lum->lmm_stripe_count > LOV_MAX_STRIPE_COUNT)
956                         return -EINVAL;
957
958                 return lov_user_md_size(lum->lmm_stripe_count,
959                                         LOV_USER_MAGIC_SPECIFIC);
960         }
961
962         return -EINVAL;
963 }
964
965 /* llite/llite_nfs.c */
966 extern struct export_operations lustre_export_operations;
967 __u32 get_uuid2int(const char *name, int len);
968 struct inode *search_inode_for_lustre(struct super_block *sb,
969                                       const struct lu_fid *fid);
970 int ll_dir_get_parent_fid(struct inode *dir, struct lu_fid *parent_fid);
971
972 /* llite/symlink.c */
973 extern struct inode_operations ll_fast_symlink_inode_operations;
974
975 /**
976  * IO arguments for various VFS I/O interfaces.
977  */
978 struct vvp_io_args {
979         /** normal/sendfile/splice */
980         enum vvp_io_subtype via_io_subtype;
981
982         union {
983                 struct {
984                         struct kiocb      *via_iocb;
985                         struct iovec      *via_iov;
986                         unsigned long      via_nrsegs;
987                 } normal;
988                 struct {
989                         struct pipe_inode_info  *via_pipe;
990                         unsigned int       via_flags;
991                 } splice;
992         } u;
993 };
994
995 struct ll_cl_context {
996         struct list_head         lcc_list;
997         void                    *lcc_cookie;
998         const struct lu_env     *lcc_env;
999         struct cl_io            *lcc_io;
1000         struct cl_page          *lcc_page;
1001 };
1002
1003 struct ll_thread_info {
1004         struct iovec            lti_local_iov;
1005         struct vvp_io_args      lti_args;
1006         struct ra_io_arg        lti_ria;
1007         struct kiocb            lti_kiocb;
1008         struct ll_cl_context    lti_io_ctx;
1009 };
1010
1011 extern struct lu_context_key ll_thread_key;
1012
1013 static inline struct ll_thread_info *ll_env_info(const struct lu_env *env)
1014 {
1015         struct ll_thread_info *lti;
1016
1017         lti = lu_context_key_get(&env->le_ctx, &ll_thread_key);
1018         LASSERT(lti != NULL);
1019
1020         return lti;
1021 }
1022
1023 static inline struct vvp_io_args *ll_env_args(const struct lu_env *env,
1024                                               enum vvp_io_subtype type)
1025 {
1026         struct vvp_io_args *via = &ll_env_info(env)->lti_args;
1027
1028         via->via_io_subtype = type;
1029
1030         return via;
1031 }
1032
1033 /* llite/llite_mmap.c */
1034
1035 int ll_teardown_mmaps(struct address_space *mapping, __u64 first, __u64 last);
1036 int ll_file_mmap(struct file * file, struct vm_area_struct * vma);
1037 void policy_from_vma(ldlm_policy_data_t *policy,
1038                 struct vm_area_struct *vma, unsigned long addr, size_t count);
1039 struct vm_area_struct *our_vma(struct mm_struct *mm, unsigned long addr,
1040                                size_t count);
1041
1042 static inline void ll_invalidate_page(struct page *vmpage)
1043 {
1044         struct address_space *mapping = vmpage->mapping;
1045         loff_t offset = vmpage->index << PAGE_CACHE_SHIFT;
1046
1047         LASSERT(PageLocked(vmpage));
1048         if (mapping == NULL)
1049                 return;
1050
1051         /*
1052          * truncate_complete_page() calls
1053          * a_ops->invalidatepage()->cl_page_delete()->vvp_page_delete().
1054          */
1055         ll_teardown_mmaps(mapping, offset, offset + PAGE_CACHE_SIZE);
1056         truncate_complete_page(mapping, vmpage);
1057 }
1058
1059 #define    ll_s2sbi(sb)        (s2lsi(sb)->lsi_llsbi)
1060
1061 /* don't need an addref as the sb_info should be holding one */
1062 static inline struct obd_export *ll_s2dtexp(struct super_block *sb)
1063 {
1064         return ll_s2sbi(sb)->ll_dt_exp;
1065 }
1066
1067 /* don't need an addref as the sb_info should be holding one */
1068 static inline struct obd_export *ll_s2mdexp(struct super_block *sb)
1069 {
1070         return ll_s2sbi(sb)->ll_md_exp;
1071 }
1072
1073 static inline struct client_obd *sbi2mdc(struct ll_sb_info *sbi)
1074 {
1075         struct obd_device *obd = sbi->ll_md_exp->exp_obd;
1076         if (obd == NULL)
1077                 LBUG();
1078         return &obd->u.cli;
1079 }
1080
1081 // FIXME: replace the name of this with LL_SB to conform to kernel stuff
1082 static inline struct ll_sb_info *ll_i2sbi(struct inode *inode)
1083 {
1084         return ll_s2sbi(inode->i_sb);
1085 }
1086
1087 static inline struct obd_export *ll_i2dtexp(struct inode *inode)
1088 {
1089         return ll_s2dtexp(inode->i_sb);
1090 }
1091
1092 static inline struct obd_export *ll_i2mdexp(struct inode *inode)
1093 {
1094         return ll_s2mdexp(inode->i_sb);
1095 }
1096
1097 static inline struct lu_fid *ll_inode2fid(struct inode *inode)
1098 {
1099         struct lu_fid *fid;
1100
1101         LASSERT(inode != NULL);
1102         fid = &ll_i2info(inode)->lli_fid;
1103
1104         return fid;
1105 }
1106
1107 static inline loff_t ll_file_maxbytes(struct inode *inode)
1108 {
1109         struct cl_object *obj = ll_i2info(inode)->lli_clob;
1110
1111         if (obj == NULL)
1112                 return MAX_LFS_FILESIZE;
1113
1114         return min_t(loff_t, cl_object_maxbytes(obj), MAX_LFS_FILESIZE);
1115 }
1116
1117 /* llite/xattr.c */
1118 int ll_setxattr(struct dentry *dentry, const char *name,
1119                 const void *value, size_t size, int flags);
1120 ssize_t ll_getxattr(struct dentry *dentry, const char *name,
1121                     void *buffer, size_t size);
1122 ssize_t ll_listxattr(struct dentry *dentry, char *buffer, size_t size);
1123 int ll_removexattr(struct dentry *dentry, const char *name);
1124
1125 /* llite/remote_perm.c */
1126 extern struct kmem_cache *ll_remote_perm_cachep;
1127 extern struct kmem_cache *ll_rmtperm_hash_cachep;
1128
1129 void free_rmtperm_hash(struct hlist_head *hash);
1130 int ll_update_remote_perm(struct inode *inode, struct mdt_remote_perm *perm);
1131 int lustre_check_remote_perm(struct inode *inode, int mask);
1132
1133 /**
1134  * Common IO arguments for various VFS I/O interfaces.
1135  */
1136 int cl_sb_init(struct super_block *sb);
1137 int cl_sb_fini(struct super_block *sb);
1138
1139 void ll_ra_count_put(struct ll_sb_info *sbi, unsigned long len);
1140 void ll_ra_stats_inc(struct inode *inode, enum ra_stat which);
1141
1142 /* llite/llite_rmtacl.c */
1143 #ifdef CONFIG_FS_POSIX_ACL
1144 u64 rce_ops2valid(int ops);
1145 struct rmtacl_ctl_entry *rct_search(struct rmtacl_ctl_table *rct, pid_t key);
1146 int rct_add(struct rmtacl_ctl_table *rct, pid_t key, int ops);
1147 int rct_del(struct rmtacl_ctl_table *rct, pid_t key);
1148 void rct_init(struct rmtacl_ctl_table *rct);
1149 void rct_fini(struct rmtacl_ctl_table *rct);
1150
1151 void ee_free(struct eacl_entry *ee);
1152 int ee_add(struct eacl_table *et, pid_t key, struct lu_fid *fid, int type,
1153            ext_acl_xattr_header *header);
1154 struct eacl_entry *et_search_del(struct eacl_table *et, pid_t key,
1155                                  struct lu_fid *fid, int type);
1156 void et_search_free(struct eacl_table *et, pid_t key);
1157 void et_init(struct eacl_table *et);
1158 void et_fini(struct eacl_table *et);
1159 #endif
1160
1161 /* statahead.c */
1162
1163 #define LL_SA_RPC_MIN           2
1164 #define LL_SA_RPC_DEF           32
1165 #define LL_SA_RPC_MAX           8192
1166
1167 #define LL_SA_CACHE_BIT         5
1168 #define LL_SA_CACHE_SIZE        (1 << LL_SA_CACHE_BIT)
1169 #define LL_SA_CACHE_MASK        (LL_SA_CACHE_SIZE - 1)
1170
1171 /* per inode struct, for dir only */
1172 struct ll_statahead_info {
1173         struct dentry          *sai_dentry;
1174         atomic_t                sai_refcount;   /* when access this struct, hold
1175                                                  * refcount */
1176         unsigned int            sai_max;        /* max ahead of lookup */
1177         __u64                   sai_sent;       /* stat requests sent count */
1178         __u64                   sai_replied;    /* stat requests which received
1179                                                  * reply */
1180         __u64                   sai_index;      /* index of statahead entry */
1181         __u64                   sai_index_wait; /* index of entry which is the
1182                                                  * caller is waiting for */
1183         __u64                   sai_hit;        /* hit count */
1184         __u64                   sai_miss;       /* miss count:
1185                                                  * for "ls -al" case, includes
1186                                                  * hidden dentry miss;
1187                                                  * for "ls -l" case, it does not
1188                                                  * include hidden dentry miss.
1189                                                  * "sai_miss_hidden" is used for
1190                                                  * the later case.
1191                                                  */
1192         unsigned int            sai_consecutive_miss; /* consecutive miss */
1193         unsigned int            sai_miss_hidden;/* "ls -al", but first dentry
1194                                                  * is not a hidden one */
1195         unsigned int            sai_skip_hidden;/* skipped hidden dentry count
1196                                                  */
1197         unsigned int            sai_ls_all:1,   /* "ls -al", do stat-ahead for
1198                                                  * hidden entries */
1199                                 sai_agl_valid:1,/* AGL is valid for the dir */
1200                                 sai_in_readpage:1;/* statahead is in readdir()*/
1201         wait_queue_head_t       sai_waitq;      /* stat-ahead wait queue */
1202         struct ptlrpc_thread    sai_thread;     /* stat-ahead thread */
1203         struct ptlrpc_thread    sai_agl_thread; /* AGL thread */
1204         struct list_head        sai_interim_entries; /* entries which got async
1205                                                       * stat reply, but not
1206                                                       * instantiated */
1207         struct list_head        sai_entries;    /* completed entries */
1208         struct list_head        sai_agls;       /* AGLs to be sent */
1209         struct list_head        sai_cache[LL_SA_CACHE_SIZE];
1210         spinlock_t              sai_cache_lock[LL_SA_CACHE_SIZE];
1211         atomic_t                sai_cache_count; /* entry count in cache */
1212 };
1213
1214 int ll_statahead(struct inode *dir, struct dentry **dentry, bool unplug);
1215 void ll_authorize_statahead(struct inode *dir, void *key);
1216 void ll_deauthorize_statahead(struct inode *dir, void *key);
1217
1218 /* glimpse.c */
1219 blkcnt_t dirty_cnt(struct inode *inode);
1220
1221 int cl_glimpse_size0(struct inode *inode, int agl);
1222 int cl_glimpse_lock(const struct lu_env *env, struct cl_io *io,
1223                     struct inode *inode, struct cl_object *clob, int agl);
1224
1225 static inline int cl_glimpse_size(struct inode *inode)
1226 {
1227         return cl_glimpse_size0(inode, 0);
1228 }
1229
1230 static inline int cl_agl(struct inode *inode)
1231 {
1232         return cl_glimpse_size0(inode, 1);
1233 }
1234
1235 static inline int ll_glimpse_size(struct inode *inode)
1236 {
1237         struct ll_inode_info *lli = ll_i2info(inode);
1238         int rc;
1239
1240         down_read(&lli->lli_glimpse_sem);
1241         rc = cl_glimpse_size(inode);
1242         lli->lli_glimpse_time = cfs_time_current();
1243         up_read(&lli->lli_glimpse_sem);
1244         return rc;
1245 }
1246
1247 /* dentry may statahead when statahead is enabled and current process has opened
1248  * parent directory, and this dentry hasn't accessed statahead cache before */
1249 static inline bool
1250 dentry_may_statahead(struct inode *dir, struct dentry *dentry)
1251 {
1252         struct ll_inode_info  *lli;
1253         struct ll_dentry_data *ldd;
1254
1255         if (ll_i2sbi(dir)->ll_sa_max == 0)
1256                 return false;
1257
1258         lli = ll_i2info(dir);
1259
1260         /* statahead is not allowed for this dir, there may be three causes:
1261          * 1. dir is not opened.
1262          * 2. statahead hit ratio is too low.
1263          * 3. previous stat started statahead thread failed. */
1264         if (!lli->lli_sa_enabled)
1265                 return false;
1266
1267         /* not the same process, don't statahead */
1268         if (lli->lli_opendir_pid != current_pid())
1269                 return false;
1270
1271         /*
1272          * When stating a dentry, kernel may trigger 'revalidate' or 'lookup'
1273          * multiple times, eg. for 'getattr', 'getxattr' and etc.
1274          * For patchless client, lookup intent is not accurate, which may
1275          * misguide statahead. For example:
1276          * The 'revalidate' call for 'getattr' and 'getxattr' of a dentry will
1277          * have the same intent -- IT_GETATTR, while one dentry should access
1278          * statahead cache once, otherwise statahead windows is messed up.
1279          * The solution is as following:
1280          * Assign 'lld_sa_generation' with 'lli_sa_generation' when a dentry
1281          * IT_GETATTR for the first time, and subsequent IT_GETATTR will
1282          * bypass interacting with statahead cache by checking
1283          * 'lld_sa_generation == lli->lli_sa_generation'.
1284          */
1285         ldd = ll_d2d(dentry);
1286         if (ldd != NULL && ldd->lld_sa_generation == lli->lli_sa_generation)
1287                 return false;
1288
1289         return true;
1290 }
1291
1292 /* llite ioctl register support rountine */
1293 enum llioc_iter {
1294         LLIOC_CONT = 0,
1295         LLIOC_STOP
1296 };
1297
1298 #define LLIOC_MAX_CMD           256
1299
1300 /*
1301  * Rules to write a callback function:
1302  *
1303  * Parameters:
1304  *  @magic: Dynamic ioctl call routine will feed this vaule with the pointer
1305  *      returned to ll_iocontrol_register.  Callback functions should use this
1306  *      data to check the potential collasion of ioctl cmd. If collasion is
1307  *      found, callback function should return LLIOC_CONT.
1308  *  @rcp: The result of ioctl command.
1309  *
1310  *  Return values:
1311  *      If @magic matches the pointer returned by ll_iocontrol_data, the
1312  *      callback should return LLIOC_STOP; return LLIOC_STOP otherwise.
1313  */
1314 typedef enum llioc_iter (*llioc_callback_t)(struct inode *inode,
1315                 struct file *file, unsigned int cmd, unsigned long arg,
1316                 void *magic, int *rcp);
1317
1318 /* export functions */
1319 /* Register ioctl block dynamatically for a regular file.
1320  *
1321  * @cmd: the array of ioctl command set
1322  * @count: number of commands in the @cmd
1323  * @cb: callback function, it will be called if an ioctl command is found to
1324  *      belong to the command list @cmd.
1325  *
1326  * Return vaule:
1327  *      A magic pointer will be returned if success;
1328  *      otherwise, NULL will be returned.
1329  * */
1330 void *ll_iocontrol_register(llioc_callback_t cb, int count, unsigned int *cmd);
1331 void ll_iocontrol_unregister(void *magic);
1332
1333 int cl_sync_file_range(struct inode *inode, loff_t start, loff_t end,
1334                        enum cl_fsync_mode mode, int ignore_layout);
1335
1336 /** direct write pages */
1337 struct ll_dio_pages {
1338         /** page array to be written. we don't support
1339          * partial pages except the last one. */
1340         struct page **ldp_pages;
1341         /* offset of each page */
1342         loff_t       *ldp_offsets;
1343         /** if ldp_offsets is NULL, it means a sequential
1344          * pages to be written, then this is the file offset
1345          * of the * first page. */
1346         loff_t        ldp_start_offset;
1347         /** how many bytes are to be written. */
1348         size_t        ldp_size;
1349         /** # of pages in the array. */
1350         int           ldp_nr;
1351 };
1352
1353 static inline void cl_stats_tally(struct cl_device *dev, enum cl_req_type crt,
1354                                   int rc)
1355 {
1356         int opc = (crt == CRT_READ) ? LPROC_LL_OSC_READ :
1357                                       LPROC_LL_OSC_WRITE;
1358
1359         ll_stats_ops_tally(ll_s2sbi(cl2vvp_dev(dev)->vdv_sb), opc, rc);
1360 }
1361
1362 extern ssize_t ll_direct_rw_pages(const struct lu_env *env, struct cl_io *io,
1363                                   int rw, struct inode *inode,
1364                                   struct ll_dio_pages *pv);
1365
1366 static inline int ll_file_nolock(const struct file *file)
1367 {
1368         struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
1369         struct inode *inode = file->f_path.dentry->d_inode;
1370
1371         LASSERT(fd != NULL);
1372         return ((fd->fd_flags & LL_FILE_IGNORE_LOCK) ||
1373                 (ll_i2sbi(inode)->ll_flags & LL_SBI_NOLCK));
1374 }
1375
1376 static inline void ll_set_lock_data(struct obd_export *exp, struct inode *inode,
1377                                     struct lookup_intent *it, __u64 *bits)
1378 {
1379         if (!it->d.lustre.it_lock_set) {
1380                 struct lustre_handle handle;
1381
1382                 /* If this inode is a remote object, it will get two
1383                  * separate locks in different namespaces, Master MDT,
1384                  * where the name entry is, will grant LOOKUP lock,
1385                  * remote MDT, where the object is, will grant
1386                  * UPDATE|PERM lock. The inode will be attched to both
1387                  * LOOKUP and PERM locks, so revoking either locks will
1388                  * case the dcache being cleared */
1389                 if (it->d.lustre.it_remote_lock_mode) {
1390                         handle.cookie = it->d.lustre.it_remote_lock_handle;
1391                         CDEBUG(D_DLMTRACE, "setting l_data to inode "DFID
1392                                "(%p) for remote lock "LPX64"\n",
1393                                PFID(ll_inode2fid(inode)), inode,
1394                                handle.cookie);
1395                         md_set_lock_data(exp, &handle.cookie, inode, NULL);
1396                 }
1397
1398                 handle.cookie = it->d.lustre.it_lock_handle;
1399
1400                 CDEBUG(D_DLMTRACE, "setting l_data to inode "DFID"(%p)"
1401                        " for lock "LPX64"\n",
1402                        PFID(ll_inode2fid(inode)), inode, handle.cookie);
1403
1404                 md_set_lock_data(exp, &handle.cookie, inode,
1405                                  &it->d.lustre.it_lock_bits);
1406                 it->d.lustre.it_lock_set = 1;
1407         }
1408
1409         if (bits != NULL)
1410                 *bits = it->d.lustre.it_lock_bits;
1411 }
1412
1413 static inline void ll_lock_dcache(struct inode *inode)
1414 {
1415 #ifdef HAVE_DCACHE_LOCK
1416         spin_lock(&dcache_lock);
1417 #else
1418         spin_lock(&inode->i_lock);
1419 #endif
1420 }
1421
1422 static inline void ll_unlock_dcache(struct inode *inode)
1423 {
1424 #ifdef HAVE_DCACHE_LOCK
1425         spin_unlock(&dcache_lock);
1426 #else
1427         spin_unlock(&inode->i_lock);
1428 #endif
1429 }
1430
1431 static inline int d_lustre_invalid(const struct dentry *dentry)
1432 {
1433         struct ll_dentry_data *lld = ll_d2d(dentry);
1434
1435         return (lld == NULL) || lld->lld_invalid;
1436 }
1437
1438 static inline void __d_lustre_invalidate(struct dentry *dentry)
1439 {
1440         struct ll_dentry_data *lld = ll_d2d(dentry);
1441
1442         if (lld != NULL)
1443                 lld->lld_invalid = 1;
1444 }
1445
1446 /*
1447  * Mark dentry INVALID, if dentry refcount is zero (this is normally case for
1448  * ll_md_blocking_ast), unhash this dentry, and let dcache to reclaim it later;
1449  * else dput() of the last refcount will unhash this dentry and kill it.
1450  */
1451 static inline void d_lustre_invalidate(struct dentry *dentry, int nested)
1452 {
1453         CDEBUG(D_DENTRY, "invalidate dentry %.*s (%p) parent %p inode %p "
1454                "refc %d\n", dentry->d_name.len, dentry->d_name.name, dentry,
1455                dentry->d_parent, dentry->d_inode, ll_d_count(dentry));
1456
1457         spin_lock_nested(&dentry->d_lock,
1458                          nested ? DENTRY_D_LOCK_NESTED : DENTRY_D_LOCK_NORMAL);
1459         __d_lustre_invalidate(dentry);
1460         if (ll_d_count(dentry) == 0)
1461                 __d_drop(dentry);
1462         spin_unlock(&dentry->d_lock);
1463 }
1464
1465 static inline void d_lustre_revalidate(struct dentry *dentry)
1466 {
1467         spin_lock(&dentry->d_lock);
1468         LASSERT(ll_d2d(dentry) != NULL);
1469         ll_d2d(dentry)->lld_invalid = 0;
1470         spin_unlock(&dentry->d_lock);
1471 }
1472
1473 int ll_layout_conf(struct inode *inode, const struct cl_object_conf *conf);
1474 int ll_layout_refresh(struct inode *inode, __u32 *gen);
1475 int ll_layout_restore(struct inode *inode, loff_t start, __u64 length);
1476
1477 int ll_xattr_init(void);
1478 void ll_xattr_fini(void);
1479
1480 int ll_getxattr_common(struct inode *inode, const char *name,
1481                        void *buffer, size_t size, __u64 valid);
1482 int ll_page_sync_io(const struct lu_env *env, struct cl_io *io,
1483                     struct cl_page *page, enum cl_req_type crt);
1484
1485 int ll_getparent(struct file *file, struct getparent __user *arg);
1486
1487 /* lcommon_cl.c */
1488 int cl_setattr_ost(struct cl_object *obj, const struct iattr *attr,
1489                    unsigned int attr_flags);
1490
1491 extern struct lu_env *cl_inode_fini_env;
1492 extern int cl_inode_fini_refcheck;
1493
1494 int cl_file_inode_init(struct inode *inode, struct lustre_md *md);
1495 void cl_inode_fini(struct inode *inode);
1496
1497 u64 cl_fid_build_ino(const struct lu_fid *fid, int api32);
1498 u32 cl_fid_build_gen(const struct lu_fid *fid);
1499
1500 #endif /* LLITE_INTERNAL_H */