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