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