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