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