Whamcloud - gitweb
LU-8656 vvp: Add S_NOSEC support
[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_client_common_fill_super_succeeded:1;
493
494         struct lustre_client_ocd  ll_lco;
495
496         struct lprocfs_stats     *ll_stats; /* lprocfs stats counter */
497
498         /* Used to track "unstable" pages on a client, and maintain a
499          * LRU list of clean pages. An "unstable" page is defined as
500          * any page which is sent to a server as part of a bulk request,
501          * but is uncommitted to stable storage. */
502         struct cl_client_cache   *ll_cache;
503
504         struct lprocfs_stats     *ll_ra_stats;
505
506         struct ll_ra_info         ll_ra_info;
507         unsigned int              ll_namelen;
508         struct file_operations   *ll_fop;
509
510         struct lu_site           *ll_site;
511         struct cl_device         *ll_cl;
512         /* Statistics */
513         struct ll_rw_extents_info ll_rw_extents_info;
514         int                       ll_extent_process_count;
515         struct ll_rw_process_info ll_rw_process_info[LL_PROCESS_HIST_MAX];
516         unsigned int              ll_offset_process_count;
517         struct ll_rw_process_info ll_rw_offset_info[LL_OFFSET_HIST_MAX];
518         unsigned int              ll_rw_offset_entry_count;
519         int                       ll_stats_track_id;
520         enum stats_track_type     ll_stats_track_type;
521         int                       ll_rw_stats_on;
522
523         /* metadata stat-ahead */
524         unsigned int              ll_sa_max;     /* max statahead RPCs */
525         atomic_t                  ll_sa_total;   /* statahead thread started
526                                                   * count */
527         atomic_t                  ll_sa_wrong;   /* statahead thread stopped for
528                                                   * low hit ratio */
529         atomic_t                  ll_sa_running; /* running statahead thread
530                                                   * count */
531         atomic_t                  ll_agl_total;  /* AGL thread started count */
532
533         dev_t                     ll_sdev_orig; /* save s_dev before assign for
534                                                  * clustred nfs */
535         /* root squash */
536         struct root_squash_info   ll_squash;
537         struct path               ll_mnt;
538
539         /* st_blksize returned by stat(2), when non-zero */
540         unsigned int              ll_stat_blksize;
541 };
542
543 /*
544  * per file-descriptor read-ahead data.
545  */
546 struct ll_readahead_state {
547         spinlock_t  ras_lock;
548         /*
549          * index of the last page that read(2) needed and that wasn't in the
550          * cache. Used by ras_update() to detect seeks.
551          *
552          * XXX nikita: if access seeks into cached region, Lustre doesn't see
553          * this.
554          */
555         unsigned long   ras_last_readpage;
556         /*
557          * number of pages read after last read-ahead window reset. As window
558          * is reset on each seek, this is effectively a number of consecutive
559          * accesses. Maybe ->ras_accessed_in_window is better name.
560          *
561          * XXX nikita: window is also reset (by ras_update()) when Lustre
562          * believes that memory pressure evicts read-ahead pages. In that
563          * case, it probably doesn't make sense to expand window to
564          * PTLRPC_MAX_BRW_PAGES on the third access.
565          */
566         unsigned long   ras_consecutive_pages;
567         /*
568          * number of read requests after the last read-ahead window reset
569          * As window is reset on each seek, this is effectively the number
570          * on consecutive read request and is used to trigger read-ahead.
571          */
572         unsigned long   ras_consecutive_requests;
573         /*
574          * Parameters of current read-ahead window. Handled by
575          * ras_update(). On the initial access to the file or after a seek,
576          * window is reset to 0. After 3 consecutive accesses, window is
577          * expanded to PTLRPC_MAX_BRW_PAGES. Afterwards, window is enlarged by
578          * PTLRPC_MAX_BRW_PAGES chunks up to ->ra_max_pages.
579          */
580         unsigned long   ras_window_start, ras_window_len;
581         /*
582          * Optimal RPC size. It decides how many pages will be sent
583          * for each read-ahead.
584          */
585         unsigned long   ras_rpc_size;
586         /*
587          * Where next read-ahead should start at. This lies within read-ahead
588          * window. Read-ahead window is read in pieces rather than at once
589          * because: 1. lustre limits total number of pages under read-ahead by
590          * ->ra_max_pages (see ll_ra_count_get()), 2. client cannot read pages
591          * not covered by DLM lock.
592          */
593         unsigned long   ras_next_readahead;
594         /*
595          * Total number of ll_file_read requests issued, reads originating
596          * due to mmap are not counted in this total.  This value is used to
597          * trigger full file read-ahead after multiple reads to a small file.
598          */
599         unsigned long   ras_requests;
600         /*
601          * Page index with respect to the current request, these value
602          * will not be accurate when dealing with reads issued via mmap.
603          */
604         unsigned long   ras_request_index;
605         /*
606          * The following 3 items are used for detecting the stride I/O
607          * mode.
608          * In stride I/O mode,
609          * ...............|-----data-----|****gap*****|--------|******|....
610          *    offset      |-stride_pages-|-stride_gap-|
611          * ras_stride_offset = offset;
612          * ras_stride_length = stride_pages + stride_gap;
613          * ras_stride_pages = stride_pages;
614          * Note: all these three items are counted by pages.
615          */
616         unsigned long   ras_stride_length;
617         unsigned long   ras_stride_pages;
618         pgoff_t         ras_stride_offset;
619         /*
620          * number of consecutive stride request count, and it is similar as
621          * ras_consecutive_requests, but used for stride I/O mode.
622          * Note: only more than 2 consecutive stride request are detected,
623          * stride read-ahead will be enable
624          */
625         unsigned long   ras_consecutive_stride_requests;
626 };
627
628 extern struct kmem_cache *ll_file_data_slab;
629 struct lustre_handle;
630 struct ll_file_data {
631         struct ll_readahead_state fd_ras;
632         struct ll_grouplock fd_grouplock;
633         __u64 lfd_pos;
634         __u32 fd_flags;
635         fmode_t fd_omode;
636         /* openhandle if lease exists for this file.
637          * Borrow lli->lli_och_mutex to protect assignment */
638         struct obd_client_handle *fd_lease_och;
639         struct obd_client_handle *fd_och;
640         struct file *fd_file;
641         /* Indicate whether need to report failure when close.
642          * true: failure is known, not report again.
643          * false: unknown failure, should report. */
644         bool fd_write_failed;
645         rwlock_t fd_lock; /* protect lcc list */
646         struct list_head fd_lccs; /* list of ll_cl_context */
647 };
648
649 extern struct proc_dir_entry *proc_lustre_fs_root;
650
651 static inline struct inode *ll_info2i(struct ll_inode_info *lli)
652 {
653         return &lli->lli_vfs_inode;
654 }
655
656 __u32 ll_i2suppgid(struct inode *i);
657 void ll_i2gids(__u32 *suppgids, struct inode *i1,struct inode *i2);
658
659 static inline int ll_need_32bit_api(struct ll_sb_info *sbi)
660 {
661 #if BITS_PER_LONG == 32
662         return 1;
663 #elif defined(CONFIG_COMPAT)
664         return unlikely(in_compat_syscall() || (sbi->ll_flags & LL_SBI_32BIT_API));
665 #else
666         return unlikely(sbi->ll_flags & LL_SBI_32BIT_API);
667 #endif
668 }
669
670 static inline bool ll_sbi_has_fast_read(struct ll_sb_info *sbi)
671 {
672         return !!(sbi->ll_flags & LL_SBI_FAST_READ);
673 }
674
675 void ll_ras_enter(struct file *f);
676
677 /* llite/lcommon_misc.c */
678 int cl_ocd_update(struct obd_device *host, struct obd_device *watched,
679                   enum obd_notify_event ev, void *owner);
680 int cl_get_grouplock(struct cl_object *obj, unsigned long gid, int nonblock,
681                      struct ll_grouplock *lg);
682 void cl_put_grouplock(struct ll_grouplock *lg);
683
684 /* llite/lproc_llite.c */
685 #ifdef CONFIG_PROC_FS
686 int lprocfs_register_mountpoint(struct proc_dir_entry *parent,
687                                 struct super_block *sb, char *osc, char *mdc);
688 void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi);
689 void ll_stats_ops_tally(struct ll_sb_info *sbi, int op, int count);
690 extern struct lprocfs_vars lprocfs_llite_obd_vars[];
691 #else
692 static inline int lprocfs_register_mountpoint(struct proc_dir_entry *parent,
693                         struct super_block *sb, char *osc, char *mdc){return 0;}
694 static inline void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi) {}
695 static void ll_stats_ops_tally(struct ll_sb_info *sbi, int op, int count) {}
696 #endif
697
698 enum {
699         LPROC_LL_DIRTY_HITS,
700         LPROC_LL_DIRTY_MISSES,
701         LPROC_LL_READ_BYTES,
702         LPROC_LL_WRITE_BYTES,
703         LPROC_LL_BRW_READ,
704         LPROC_LL_BRW_WRITE,
705         LPROC_LL_IOCTL,
706         LPROC_LL_OPEN,
707         LPROC_LL_RELEASE,
708         LPROC_LL_MAP,
709         LPROC_LL_FAULT,
710         LPROC_LL_MKWRITE,
711         LPROC_LL_LLSEEK,
712         LPROC_LL_FSYNC,
713         LPROC_LL_READDIR,
714         LPROC_LL_SETATTR,
715         LPROC_LL_TRUNC,
716         LPROC_LL_FLOCK,
717         LPROC_LL_GETATTR,
718         LPROC_LL_CREATE,
719         LPROC_LL_LINK,
720         LPROC_LL_UNLINK,
721         LPROC_LL_SYMLINK,
722         LPROC_LL_MKDIR,
723         LPROC_LL_RMDIR,
724         LPROC_LL_MKNOD,
725         LPROC_LL_RENAME,
726         LPROC_LL_STAFS,
727         LPROC_LL_ALLOC_INODE,
728         LPROC_LL_SETXATTR,
729         LPROC_LL_GETXATTR,
730         LPROC_LL_GETXATTR_HITS,
731         LPROC_LL_LISTXATTR,
732         LPROC_LL_REMOVEXATTR,
733         LPROC_LL_INODE_PERM,
734         LPROC_LL_FILE_OPCODES
735 };
736
737 /* llite/dir.c */
738 struct ll_dir_chain {
739 };
740
741 static inline void ll_dir_chain_init(struct ll_dir_chain *chain)
742 {
743 }
744
745 static inline void ll_dir_chain_fini(struct ll_dir_chain *chain)
746 {
747 }
748
749 extern const struct file_operations ll_dir_operations;
750 extern const struct inode_operations ll_dir_inode_operations;
751 #ifdef HAVE_DIR_CONTEXT
752 int ll_dir_read(struct inode *inode, __u64 *pos, struct md_op_data *op_data,
753                 struct dir_context *ctx);
754 #else
755 int ll_dir_read(struct inode *inode, __u64 *pos, struct md_op_data *op_data,
756                 void *cookie, filldir_t filldir);
757 #endif
758 int ll_get_mdt_idx(struct inode *inode);
759 int ll_get_mdt_idx_by_fid(struct ll_sb_info *sbi, const struct lu_fid *fid);
760 struct page *ll_get_dir_page(struct inode *dir, struct md_op_data *op_data,
761                              __u64 offset, struct ll_dir_chain *chain);
762 void ll_release_page(struct inode *inode, struct page *page, bool remove);
763
764 /* llite/namei.c */
765 extern const struct inode_operations ll_special_inode_operations;
766
767 struct inode *ll_iget(struct super_block *sb, ino_t hash,
768                       struct lustre_md *lic);
769 int ll_test_inode_by_fid(struct inode *inode, void *opaque);
770 int ll_md_blocking_ast(struct ldlm_lock *, struct ldlm_lock_desc *,
771                        void *data, int flag);
772 struct dentry *ll_splice_alias(struct inode *inode, struct dentry *de);
773 int ll_rmdir_entry(struct inode *dir, char *name, int namelen);
774 void ll_update_times(struct ptlrpc_request *request, struct inode *inode);
775
776 /* llite/rw.c */
777 int ll_writepage(struct page *page, struct writeback_control *wbc);
778 int ll_writepages(struct address_space *, struct writeback_control *wbc);
779 int ll_readpage(struct file *file, struct page *page);
780 void ll_readahead_init(struct inode *inode, struct ll_readahead_state *ras);
781 int vvp_io_write_commit(const struct lu_env *env, struct cl_io *io);
782
783 enum lcc_type;
784 void ll_cl_add(struct file *file, const struct lu_env *env, struct cl_io *io,
785                enum lcc_type type);
786 void ll_cl_remove(struct file *file, const struct lu_env *env);
787 struct ll_cl_context *ll_cl_find(struct file *file);
788
789 extern const struct address_space_operations ll_aops;
790
791 /* llite/file.c */
792 extern struct file_operations ll_file_operations;
793 extern struct file_operations ll_file_operations_flock;
794 extern struct file_operations ll_file_operations_noflock;
795 extern struct inode_operations ll_file_inode_operations;
796 extern int ll_have_md_lock(struct inode *inode, __u64 *bits,
797                            enum ldlm_mode l_req_mode);
798 extern enum ldlm_mode ll_take_md_lock(struct inode *inode, __u64 bits,
799                                       struct lustre_handle *lockh, __u64 flags,
800                                       enum ldlm_mode mode);
801
802 int ll_file_open(struct inode *inode, struct file *file);
803 int ll_file_release(struct inode *inode, struct file *file);
804 int ll_release_openhandle(struct dentry *, struct lookup_intent *);
805 int ll_md_real_close(struct inode *inode, fmode_t fmode);
806 extern void ll_rw_stats_tally(struct ll_sb_info *sbi, pid_t pid,
807                               struct ll_file_data *file, loff_t pos,
808                               size_t count, int rw);
809 int ll_getattr(struct vfsmount *mnt, struct dentry *de, struct kstat *stat);
810 struct posix_acl *ll_get_acl(struct inode *inode, int type);
811 int ll_migrate(struct inode *parent, struct file *file, int mdtidx,
812                const char *name, int namelen);
813 int ll_get_fid_by_name(struct inode *parent, const char *name,
814                        int namelen, struct lu_fid *fid, struct inode **inode);
815 #ifdef HAVE_GENERIC_PERMISSION_4ARGS
816 int ll_inode_permission(struct inode *inode, int mask, unsigned int flags);
817 #else
818 # ifndef HAVE_INODE_PERMISION_2ARGS
819 int ll_inode_permission(struct inode *inode, int mask, struct nameidata *nd);
820 # else
821 int ll_inode_permission(struct inode *inode, int mask);
822 # endif
823 #endif
824 int ll_ioctl_fsgetxattr(struct inode *inode, unsigned int cmd,
825                         unsigned long arg);
826 int ll_ioctl_fssetxattr(struct inode *inode, unsigned int cmd,
827                         unsigned long arg);
828
829 int ll_lov_setstripe_ea_info(struct inode *inode, struct dentry *dentry,
830                              __u64 flags, struct lov_user_md *lum,
831                              int lum_size);
832 int ll_lov_getstripe_ea_info(struct inode *inode, const char *filename,
833                              struct lov_mds_md **lmm, int *lmm_size,
834                              struct ptlrpc_request **request);
835 int ll_dir_setstripe(struct inode *inode, struct lov_user_md *lump,
836                      int set_default);
837 int ll_dir_getstripe(struct inode *inode, void **lmmp,
838                      int *lmm_size, struct ptlrpc_request **request,
839                      u64 valid);
840 #ifdef HAVE_FILE_FSYNC_4ARGS
841 int ll_fsync(struct file *file, loff_t start, loff_t end, int data);
842 #elif defined(HAVE_FILE_FSYNC_2ARGS)
843 int ll_fsync(struct file *file, int data);
844 #else
845 int ll_fsync(struct file *file, struct dentry *dentry, int data);
846 #endif
847 int ll_merge_attr(const struct lu_env *env, struct inode *inode);
848 int ll_fid2path(struct inode *inode, void __user *arg);
849 int ll_data_version(struct inode *inode, __u64 *data_version, int flags);
850 int ll_hsm_release(struct inode *inode);
851 int ll_hsm_state_set(struct inode *inode, struct hsm_state_set *hss);
852
853 /* llite/dcache.c */
854
855 int ll_d_init(struct dentry *de);
856 extern const struct dentry_operations ll_d_ops;
857 void ll_intent_drop_lock(struct lookup_intent *);
858 void ll_intent_release(struct lookup_intent *);
859 void ll_invalidate_aliases(struct inode *);
860 void ll_lookup_finish_locks(struct lookup_intent *it, struct dentry *dentry);
861 int ll_revalidate_it_finish(struct ptlrpc_request *request,
862                             struct lookup_intent *it, struct dentry *de);
863
864 /* llite/llite_lib.c */
865 extern struct super_operations lustre_super_operations;
866
867 void ll_lli_init(struct ll_inode_info *lli);
868 int ll_fill_super(struct super_block *sb, struct vfsmount *mnt);
869 void ll_put_super(struct super_block *sb);
870 void ll_kill_super(struct super_block *sb);
871 struct inode *ll_inode_from_resource_lock(struct ldlm_lock *lock);
872 void ll_dir_clear_lsm_md(struct inode *inode);
873 void ll_clear_inode(struct inode *inode);
874 int ll_setattr_raw(struct dentry *dentry, struct iattr *attr, bool hsm_import);
875 int ll_setattr(struct dentry *de, struct iattr *attr);
876 int ll_statfs(struct dentry *de, struct kstatfs *sfs);
877 int ll_statfs_internal(struct super_block *sb, struct obd_statfs *osfs,
878                        __u64 max_age, __u32 flags);
879 int ll_update_inode(struct inode *inode, struct lustre_md *md);
880 int ll_read_inode2(struct inode *inode, void *opaque);
881 void ll_delete_inode(struct inode *inode);
882 int ll_iocontrol(struct inode *inode, struct file *file,
883                  unsigned int cmd, unsigned long arg);
884 int ll_flush_ctx(struct inode *inode);
885 void ll_umount_begin(struct super_block *sb);
886 int ll_remount_fs(struct super_block *sb, int *flags, char *data);
887 #ifdef HAVE_SUPEROPS_USE_DENTRY
888 int ll_show_options(struct seq_file *seq, struct dentry *dentry);
889 #else
890 int ll_show_options(struct seq_file *seq, struct vfsmount *vfs);
891 #endif
892 void ll_dirty_page_discard_warn(struct page *page, int ioret);
893 int ll_prep_inode(struct inode **inode, struct ptlrpc_request *req,
894                   struct super_block *, struct lookup_intent *);
895 int ll_obd_statfs(struct inode *inode, void __user *arg);
896 int ll_get_max_mdsize(struct ll_sb_info *sbi, int *max_mdsize);
897 int ll_get_default_mdsize(struct ll_sb_info *sbi, int *default_mdsize);
898 int ll_set_default_mdsize(struct ll_sb_info *sbi, int default_mdsize);
899 int ll_process_config(struct lustre_cfg *lcfg);
900
901 enum {
902         LUSTRE_OPC_MKDIR        = 0,
903         LUSTRE_OPC_SYMLINK      = 1,
904         LUSTRE_OPC_MKNOD        = 2,
905         LUSTRE_OPC_CREATE       = 3,
906         LUSTRE_OPC_ANY          = 5,
907 };
908
909 struct md_op_data *ll_prep_md_op_data(struct md_op_data *op_data,
910                                       struct inode *i1, struct inode *i2,
911                                       const char *name, size_t namelen,
912                                       __u32 mode, __u32 opc, void *data);
913 void ll_finish_md_op_data(struct md_op_data *op_data);
914 int ll_get_obd_name(struct inode *inode, unsigned int cmd, unsigned long arg);
915 char *ll_get_fsname(struct super_block *sb, char *buf, int buflen);
916 void ll_compute_rootsquash_state(struct ll_sb_info *sbi);
917 ssize_t ll_copy_user_md(const struct lov_user_md __user *md,
918                         struct lov_user_md **kbuf);
919 void ll_open_cleanup(struct super_block *sb, struct ptlrpc_request *open_req);
920
921 /* Compute expected user md size when passing in a md from user space */
922 static inline ssize_t ll_lov_user_md_size(const struct lov_user_md *lum)
923 {
924         switch (lum->lmm_magic) {
925         case LOV_USER_MAGIC_V1:
926                 return sizeof(struct lov_user_md_v1);
927         case LOV_USER_MAGIC_V3:
928                 return sizeof(struct lov_user_md_v3);
929         case LOV_USER_MAGIC_SPECIFIC:
930                 if (lum->lmm_stripe_count > LOV_MAX_STRIPE_COUNT)
931                         return -EINVAL;
932
933                 return lov_user_md_size(lum->lmm_stripe_count,
934                                         LOV_USER_MAGIC_SPECIFIC);
935         case LOV_USER_MAGIC_COMP_V1:
936                 return ((struct lov_comp_md_v1 *)lum)->lcm_size;
937         }
938
939         return -EINVAL;
940 }
941
942 /* llite/llite_nfs.c */
943 extern struct export_operations lustre_export_operations;
944 __u32 get_uuid2int(const char *name, int len);
945 struct inode *search_inode_for_lustre(struct super_block *sb,
946                                       const struct lu_fid *fid);
947 int ll_dir_get_parent_fid(struct inode *dir, struct lu_fid *parent_fid);
948
949 /* llite/symlink.c */
950 extern struct inode_operations ll_fast_symlink_inode_operations;
951
952 /**
953  * IO arguments for various VFS I/O interfaces.
954  */
955 struct vvp_io_args {
956         /** normal/sendfile/splice */
957         enum vvp_io_subtype via_io_subtype;
958
959         union {
960                 struct {
961                         struct kiocb      *via_iocb;
962                         struct iov_iter   *via_iter;
963                 } normal;
964                 struct {
965                         struct pipe_inode_info  *via_pipe;
966                         unsigned int       via_flags;
967                 } splice;
968         } u;
969 };
970
971 enum lcc_type {
972         LCC_RW = 1,
973         LCC_MMAP
974 };
975
976 struct ll_cl_context {
977         struct list_head         lcc_list;
978         void                    *lcc_cookie;
979         const struct lu_env     *lcc_env;
980         struct cl_io            *lcc_io;
981         struct cl_page          *lcc_page;
982         enum lcc_type            lcc_type;
983 };
984
985 struct ll_thread_info {
986         struct iov_iter         lti_iter;
987         struct vvp_io_args      lti_args;
988         struct ra_io_arg        lti_ria;
989         struct kiocb            lti_kiocb;
990         struct ll_cl_context    lti_io_ctx;
991 };
992
993 extern struct lu_context_key ll_thread_key;
994
995 static inline struct ll_thread_info *ll_env_info(const struct lu_env *env)
996 {
997         struct ll_thread_info *lti;
998
999         lti = lu_context_key_get(&env->le_ctx, &ll_thread_key);
1000         LASSERT(lti != NULL);
1001
1002         return lti;
1003 }
1004
1005 static inline struct vvp_io_args *ll_env_args(const struct lu_env *env,
1006                                               enum vvp_io_subtype type)
1007 {
1008         struct vvp_io_args *via = &ll_env_info(env)->lti_args;
1009
1010         via->via_io_subtype = type;
1011
1012         return via;
1013 }
1014
1015 /* llite/llite_mmap.c */
1016
1017 int ll_teardown_mmaps(struct address_space *mapping, __u64 first, __u64 last);
1018 int ll_file_mmap(struct file * file, struct vm_area_struct * vma);
1019 void policy_from_vma(union ldlm_policy_data *policy, struct vm_area_struct *vma,
1020                      unsigned long addr, size_t count);
1021 struct vm_area_struct *our_vma(struct mm_struct *mm, unsigned long addr,
1022                                size_t count);
1023
1024 static inline void ll_invalidate_page(struct page *vmpage)
1025 {
1026         struct address_space *mapping = vmpage->mapping;
1027         loff_t offset = vmpage->index << PAGE_SHIFT;
1028
1029         LASSERT(PageLocked(vmpage));
1030         if (mapping == NULL)
1031                 return;
1032
1033         /*
1034          * truncate_complete_page() calls
1035          * a_ops->invalidatepage()->cl_page_delete()->vvp_page_delete().
1036          */
1037         ll_teardown_mmaps(mapping, offset, offset + PAGE_SIZE);
1038         truncate_complete_page(mapping, vmpage);
1039 }
1040
1041 #define    ll_s2sbi(sb)        (s2lsi(sb)->lsi_llsbi)
1042
1043 /* don't need an addref as the sb_info should be holding one */
1044 static inline struct obd_export *ll_s2dtexp(struct super_block *sb)
1045 {
1046         return ll_s2sbi(sb)->ll_dt_exp;
1047 }
1048
1049 /* don't need an addref as the sb_info should be holding one */
1050 static inline struct obd_export *ll_s2mdexp(struct super_block *sb)
1051 {
1052         return ll_s2sbi(sb)->ll_md_exp;
1053 }
1054
1055 static inline struct client_obd *sbi2mdc(struct ll_sb_info *sbi)
1056 {
1057         struct obd_device *obd = sbi->ll_md_exp->exp_obd;
1058         if (obd == NULL)
1059                 LBUG();
1060         return &obd->u.cli;
1061 }
1062
1063 // FIXME: replace the name of this with LL_SB to conform to kernel stuff
1064 static inline struct ll_sb_info *ll_i2sbi(struct inode *inode)
1065 {
1066         return ll_s2sbi(inode->i_sb);
1067 }
1068
1069 static inline struct obd_export *ll_i2dtexp(struct inode *inode)
1070 {
1071         return ll_s2dtexp(inode->i_sb);
1072 }
1073
1074 static inline struct obd_export *ll_i2mdexp(struct inode *inode)
1075 {
1076         return ll_s2mdexp(inode->i_sb);
1077 }
1078
1079 static inline struct lu_fid *ll_inode2fid(struct inode *inode)
1080 {
1081         struct lu_fid *fid;
1082
1083         LASSERT(inode != NULL);
1084         fid = &ll_i2info(inode)->lli_fid;
1085
1086         return fid;
1087 }
1088
1089 static inline loff_t ll_file_maxbytes(struct inode *inode)
1090 {
1091         struct cl_object *obj = ll_i2info(inode)->lli_clob;
1092
1093         if (obj == NULL)
1094                 return MAX_LFS_FILESIZE;
1095
1096         return min_t(loff_t, cl_object_maxbytes(obj), MAX_LFS_FILESIZE);
1097 }
1098
1099 /* llite/xattr.c */
1100 int ll_setxattr(struct dentry *dentry, const char *name,
1101                 const void *value, size_t size, int flags);
1102 ssize_t ll_getxattr(struct dentry *dentry, const char *name,
1103                     void *buffer, size_t size);
1104 ssize_t ll_listxattr(struct dentry *dentry, char *buffer, size_t size);
1105 int ll_removexattr(struct dentry *dentry, const char *name);
1106
1107 /**
1108  * Common IO arguments for various VFS I/O interfaces.
1109  */
1110 int cl_sb_init(struct super_block *sb);
1111 int cl_sb_fini(struct super_block *sb);
1112
1113 enum ras_update_flags {
1114         LL_RAS_HIT  = 0x1,
1115         LL_RAS_MMAP = 0x2
1116 };
1117 void ll_ra_count_put(struct ll_sb_info *sbi, unsigned long len);
1118 void ll_ra_stats_inc(struct inode *inode, enum ra_stat which);
1119
1120 /* statahead.c */
1121
1122 #define LL_SA_RPC_MIN           2
1123 #define LL_SA_RPC_DEF           32
1124 #define LL_SA_RPC_MAX           8192
1125
1126 #define LL_SA_CACHE_BIT         5
1127 #define LL_SA_CACHE_SIZE        (1 << LL_SA_CACHE_BIT)
1128 #define LL_SA_CACHE_MASK        (LL_SA_CACHE_SIZE - 1)
1129
1130 /* per inode struct, for dir only */
1131 struct ll_statahead_info {
1132         struct dentry          *sai_dentry;
1133         atomic_t                sai_refcount;   /* when access this struct, hold
1134                                                  * refcount */
1135         unsigned int            sai_max;        /* max ahead of lookup */
1136         __u64                   sai_sent;       /* stat requests sent count */
1137         __u64                   sai_replied;    /* stat requests which received
1138                                                  * reply */
1139         __u64                   sai_index;      /* index of statahead entry */
1140         __u64                   sai_index_wait; /* index of entry which is the
1141                                                  * caller is waiting for */
1142         __u64                   sai_hit;        /* hit count */
1143         __u64                   sai_miss;       /* miss count:
1144                                                  * for "ls -al" case, includes
1145                                                  * hidden dentry miss;
1146                                                  * for "ls -l" case, it does not
1147                                                  * include hidden dentry miss.
1148                                                  * "sai_miss_hidden" is used for
1149                                                  * the later case.
1150                                                  */
1151         unsigned int            sai_consecutive_miss; /* consecutive miss */
1152         unsigned int            sai_miss_hidden;/* "ls -al", but first dentry
1153                                                  * is not a hidden one */
1154         unsigned int            sai_skip_hidden;/* skipped hidden dentry count
1155                                                  */
1156         unsigned int            sai_ls_all:1,   /* "ls -al", do stat-ahead for
1157                                                  * hidden entries */
1158                                 sai_agl_valid:1,/* AGL is valid for the dir */
1159                                 sai_in_readpage:1;/* statahead is in readdir()*/
1160         wait_queue_head_t       sai_waitq;      /* stat-ahead wait queue */
1161         struct ptlrpc_thread    sai_thread;     /* stat-ahead thread */
1162         struct ptlrpc_thread    sai_agl_thread; /* AGL thread */
1163         struct list_head        sai_interim_entries; /* entries which got async
1164                                                       * stat reply, but not
1165                                                       * instantiated */
1166         struct list_head        sai_entries;    /* completed entries */
1167         struct list_head        sai_agls;       /* AGLs to be sent */
1168         struct list_head        sai_cache[LL_SA_CACHE_SIZE];
1169         spinlock_t              sai_cache_lock[LL_SA_CACHE_SIZE];
1170         atomic_t                sai_cache_count; /* entry count in cache */
1171 };
1172
1173 int ll_statahead(struct inode *dir, struct dentry **dentry, bool unplug);
1174 void ll_authorize_statahead(struct inode *dir, void *key);
1175 void ll_deauthorize_statahead(struct inode *dir, void *key);
1176
1177 /* glimpse.c */
1178 blkcnt_t dirty_cnt(struct inode *inode);
1179
1180 int cl_glimpse_size0(struct inode *inode, int agl);
1181 int cl_glimpse_lock(const struct lu_env *env, struct cl_io *io,
1182                     struct inode *inode, struct cl_object *clob, int agl);
1183
1184 static inline int cl_glimpse_size(struct inode *inode)
1185 {
1186         return cl_glimpse_size0(inode, 0);
1187 }
1188
1189 static inline int cl_agl(struct inode *inode)
1190 {
1191         return cl_glimpse_size0(inode, 1);
1192 }
1193
1194 static inline int ll_glimpse_size(struct inode *inode)
1195 {
1196         struct ll_inode_info *lli = ll_i2info(inode);
1197         int rc;
1198
1199         down_read(&lli->lli_glimpse_sem);
1200         rc = cl_glimpse_size(inode);
1201         lli->lli_glimpse_time = cfs_time_current();
1202         up_read(&lli->lli_glimpse_sem);
1203         return rc;
1204 }
1205
1206 /* dentry may statahead when statahead is enabled and current process has opened
1207  * parent directory, and this dentry hasn't accessed statahead cache before */
1208 static inline bool
1209 dentry_may_statahead(struct inode *dir, struct dentry *dentry)
1210 {
1211         struct ll_inode_info  *lli;
1212         struct ll_dentry_data *ldd;
1213
1214         if (ll_i2sbi(dir)->ll_sa_max == 0)
1215                 return false;
1216
1217         lli = ll_i2info(dir);
1218
1219         /* statahead is not allowed for this dir, there may be three causes:
1220          * 1. dir is not opened.
1221          * 2. statahead hit ratio is too low.
1222          * 3. previous stat started statahead thread failed. */
1223         if (!lli->lli_sa_enabled)
1224                 return false;
1225
1226         /* not the same process, don't statahead */
1227         if (lli->lli_opendir_pid != current_pid())
1228                 return false;
1229
1230         /*
1231          * When stating a dentry, kernel may trigger 'revalidate' or 'lookup'
1232          * multiple times, eg. for 'getattr', 'getxattr' and etc.
1233          * For patchless client, lookup intent is not accurate, which may
1234          * misguide statahead. For example:
1235          * The 'revalidate' call for 'getattr' and 'getxattr' of a dentry will
1236          * have the same intent -- IT_GETATTR, while one dentry should access
1237          * statahead cache once, otherwise statahead windows is messed up.
1238          * The solution is as following:
1239          * Assign 'lld_sa_generation' with 'lli_sa_generation' when a dentry
1240          * IT_GETATTR for the first time, and subsequent IT_GETATTR will
1241          * bypass interacting with statahead cache by checking
1242          * 'lld_sa_generation == lli->lli_sa_generation'.
1243          */
1244         ldd = ll_d2d(dentry);
1245         if (ldd != NULL && ldd->lld_sa_generation == lli->lli_sa_generation)
1246                 return false;
1247
1248         return true;
1249 }
1250
1251 /* llite ioctl register support rountine */
1252 enum llioc_iter {
1253         LLIOC_CONT = 0,
1254         LLIOC_STOP
1255 };
1256
1257 #define LLIOC_MAX_CMD           256
1258
1259 /*
1260  * Rules to write a callback function:
1261  *
1262  * Parameters:
1263  *  @magic: Dynamic ioctl call routine will feed this vaule with the pointer
1264  *      returned to ll_iocontrol_register.  Callback functions should use this
1265  *      data to check the potential collasion of ioctl cmd. If collasion is
1266  *      found, callback function should return LLIOC_CONT.
1267  *  @rcp: The result of ioctl command.
1268  *
1269  *  Return values:
1270  *      If @magic matches the pointer returned by ll_iocontrol_data, the
1271  *      callback should return LLIOC_STOP; return LLIOC_STOP otherwise.
1272  */
1273 typedef enum llioc_iter (*llioc_callback_t)(struct inode *inode,
1274                 struct file *file, unsigned int cmd, unsigned long arg,
1275                 void *magic, int *rcp);
1276
1277 /* export functions */
1278 /* Register ioctl block dynamatically for a regular file.
1279  *
1280  * @cmd: the array of ioctl command set
1281  * @count: number of commands in the @cmd
1282  * @cb: callback function, it will be called if an ioctl command is found to
1283  *      belong to the command list @cmd.
1284  *
1285  * Return vaule:
1286  *      A magic pointer will be returned if success;
1287  *      otherwise, NULL will be returned.
1288  * */
1289 void *ll_iocontrol_register(llioc_callback_t cb, int count, unsigned int *cmd);
1290 void ll_iocontrol_unregister(void *magic);
1291
1292 int cl_sync_file_range(struct inode *inode, loff_t start, loff_t end,
1293                        enum cl_fsync_mode mode, int ignore_layout);
1294
1295 /** direct write pages */
1296 struct ll_dio_pages {
1297         /** page array to be written. we don't support
1298          * partial pages except the last one. */
1299         struct page **ldp_pages;
1300         /* offset of each page */
1301         loff_t       *ldp_offsets;
1302         /** if ldp_offsets is NULL, it means a sequential
1303          * pages to be written, then this is the file offset
1304          * of the * first page. */
1305         loff_t        ldp_start_offset;
1306         /** how many bytes are to be written. */
1307         size_t        ldp_size;
1308         /** # of pages in the array. */
1309         int           ldp_nr;
1310 };
1311
1312 extern ssize_t ll_direct_rw_pages(const struct lu_env *env, struct cl_io *io,
1313                                   int rw, struct inode *inode,
1314                                   struct ll_dio_pages *pv);
1315
1316 static inline int ll_file_nolock(const struct file *file)
1317 {
1318         struct ll_file_data *fd = LUSTRE_FPRIVATE(file);
1319         struct inode *inode = file_inode((struct file *)file);
1320
1321         LASSERT(fd != NULL);
1322         return ((fd->fd_flags & LL_FILE_IGNORE_LOCK) ||
1323                 (ll_i2sbi(inode)->ll_flags & LL_SBI_NOLCK));
1324 }
1325
1326 static inline void ll_set_lock_data(struct obd_export *exp, struct inode *inode,
1327                                     struct lookup_intent *it, __u64 *bits)
1328 {
1329         if (!it->it_lock_set) {
1330                 struct lustre_handle handle;
1331
1332                 /* If this inode is a remote object, it will get two
1333                  * separate locks in different namespaces, Master MDT,
1334                  * where the name entry is, will grant LOOKUP lock,
1335                  * remote MDT, where the object is, will grant
1336                  * UPDATE|PERM lock. The inode will be attched to both
1337                  * LOOKUP and PERM locks, so revoking either locks will
1338                  * case the dcache being cleared */
1339                 if (it->it_remote_lock_mode) {
1340                         handle.cookie = it->it_remote_lock_handle;
1341                         CDEBUG(D_DLMTRACE, "setting l_data to inode "DFID
1342                                "(%p) for remote lock %#llx\n",
1343                                PFID(ll_inode2fid(inode)), inode,
1344                                handle.cookie);
1345                         md_set_lock_data(exp, &handle, inode, NULL);
1346                 }
1347
1348                 handle.cookie = it->it_lock_handle;
1349
1350                 CDEBUG(D_DLMTRACE, "setting l_data to inode "DFID"(%p)"
1351                        " for lock %#llx\n",
1352                        PFID(ll_inode2fid(inode)), inode, handle.cookie);
1353
1354                 md_set_lock_data(exp, &handle, inode, &it->it_lock_bits);
1355                 it->it_lock_set = 1;
1356         }
1357
1358         if (bits != NULL)
1359                 *bits = it->it_lock_bits;
1360 }
1361
1362 static inline void ll_lock_dcache(struct inode *inode)
1363 {
1364 #ifdef HAVE_DCACHE_LOCK
1365         spin_lock(&dcache_lock);
1366 #else
1367         spin_lock(&inode->i_lock);
1368 #endif
1369 }
1370
1371 static inline void ll_unlock_dcache(struct inode *inode)
1372 {
1373 #ifdef HAVE_DCACHE_LOCK
1374         spin_unlock(&dcache_lock);
1375 #else
1376         spin_unlock(&inode->i_lock);
1377 #endif
1378 }
1379
1380 static inline int d_lustre_invalid(const struct dentry *dentry)
1381 {
1382         struct ll_dentry_data *lld = ll_d2d(dentry);
1383
1384         return (lld == NULL) || lld->lld_invalid;
1385 }
1386
1387 static inline void __d_lustre_invalidate(struct dentry *dentry)
1388 {
1389         struct ll_dentry_data *lld = ll_d2d(dentry);
1390
1391         if (lld != NULL)
1392                 lld->lld_invalid = 1;
1393 }
1394
1395 /*
1396  * Mark dentry INVALID, if dentry refcount is zero (this is normally case for
1397  * ll_md_blocking_ast), unhash this dentry, and let dcache to reclaim it later;
1398  * else dput() of the last refcount will unhash this dentry and kill it.
1399  */
1400 static inline void d_lustre_invalidate(struct dentry *dentry, int nested)
1401 {
1402         CDEBUG(D_DENTRY, "invalidate dentry %.*s (%p) parent %p inode %p "
1403                "refc %d\n", dentry->d_name.len, dentry->d_name.name, dentry,
1404                dentry->d_parent, dentry->d_inode, ll_d_count(dentry));
1405
1406         spin_lock_nested(&dentry->d_lock,
1407                          nested ? DENTRY_D_LOCK_NESTED : DENTRY_D_LOCK_NORMAL);
1408         __d_lustre_invalidate(dentry);
1409         /*
1410          * We should be careful about dentries created by d_obtain_alias().
1411          * These dentries are not put in the dentry tree, instead they are
1412          * linked to sb->s_anon through dentry->d_hash.
1413          * shrink_dcache_for_umount() shrinks the tree and sb->s_anon list.
1414          * If we unhashed such a dentry, unmount would not be able to find
1415          * it and busy inodes would be reported.
1416          */
1417         if (ll_d_count(dentry) == 0 && !(dentry->d_flags & DCACHE_DISCONNECTED))
1418                 __d_drop(dentry);
1419         spin_unlock(&dentry->d_lock);
1420 }
1421
1422 static inline void d_lustre_revalidate(struct dentry *dentry)
1423 {
1424         spin_lock(&dentry->d_lock);
1425         LASSERT(ll_d2d(dentry) != NULL);
1426         ll_d2d(dentry)->lld_invalid = 0;
1427         spin_unlock(&dentry->d_lock);
1428 }
1429
1430 int ll_layout_conf(struct inode *inode, const struct cl_object_conf *conf);
1431 int ll_layout_refresh(struct inode *inode, __u32 *gen);
1432 int ll_layout_restore(struct inode *inode, loff_t start, __u64 length);
1433 int ll_layout_write_intent(struct inode *inode, __u64 start, __u64 end);
1434
1435 int ll_xattr_init(void);
1436 void ll_xattr_fini(void);
1437
1438 int ll_getxattr_common(struct inode *inode, const char *name,
1439                        void *buffer, size_t size, __u64 valid);
1440 int ll_page_sync_io(const struct lu_env *env, struct cl_io *io,
1441                     struct cl_page *page, enum cl_req_type crt);
1442
1443 int ll_getparent(struct file *file, struct getparent __user *arg);
1444
1445 /* lcommon_cl.c */
1446 int cl_setattr_ost(struct cl_object *obj, const struct iattr *attr,
1447                    unsigned int attr_flags);
1448
1449 extern struct lu_env *cl_inode_fini_env;
1450 extern __u16 cl_inode_fini_refcheck;
1451
1452 int cl_file_inode_init(struct inode *inode, struct lustre_md *md);
1453 void cl_inode_fini(struct inode *inode);
1454
1455 u64 cl_fid_build_ino(const struct lu_fid *fid, int api32);
1456 u32 cl_fid_build_gen(const struct lu_fid *fid);
1457
1458 #endif /* LLITE_INTERNAL_H */