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