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