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