Whamcloud - gitweb
LU-16594 build: get_random_u32_below, get_acl with dentry
[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  */
31
32 #ifndef LLITE_INTERNAL_H
33 #define LLITE_INTERNAL_H
34 #include <obd.h>
35 #include <lustre_disk.h>  /* for s2sbi */
36 #include <lustre_linkea.h>
37
38 /* for struct cl_lock_descr and struct cl_io */
39 #include <cl_object.h>
40 #include <lustre_lmv.h>
41 #include <lustre_mdc.h>
42 #include <lustre_intent.h>
43 #include <linux/compat.h>
44 #include <linux/aio.h>
45 #include <linux/parser.h>
46 #include <linux/seqlock.h>
47 #include <lustre_compat.h>
48 #include <lustre_crypto.h>
49 #include <range_lock.h>
50
51 #include "vvp_internal.h"
52 #include "pcc.h"
53 #include "foreign_symlink.h"
54
55 #ifndef FMODE_EXEC
56 #define FMODE_EXEC 0
57 #endif
58
59 #ifndef HAVE_VM_FAULT_RETRY
60 #define VM_FAULT_RETRY 0
61 #endif
62
63 /* Kernel 3.1 kills LOOKUP_CONTINUE, LOOKUP_PARENT is equivalent to it.
64  * seem kernel commit 49084c3bb2055c401f3493c13edae14d49128ca0 */
65 #ifndef LOOKUP_CONTINUE
66 #define LOOKUP_CONTINUE LOOKUP_PARENT
67 #endif
68
69 #ifdef HAVE_DENTRY_D_U_D_ALIAS
70 #define d_alias                 d_u.d_alias
71 #endif
72
73 /** Only used on client-side for indicating the tail of dir hash/offset. */
74 #define LL_DIR_END_OFF          0x7fffffffffffffffULL
75 #define LL_DIR_END_OFF_32BIT    0x7fffffffUL
76
77 /* 4UL * 1024 * 1024 */
78 #define LL_MAX_BLKSIZE_BITS 22
79
80 #define LL_IT2STR(it) ((it) ? ldlm_it2str((it)->it_op) : "0")
81
82 #define TIMES_SET_FLAGS (ATTR_MTIME_SET | ATTR_ATIME_SET | ATTR_TIMES_SET)
83
84 struct ll_dentry_data {
85         unsigned int                    lld_sa_generation;
86         unsigned int                    lld_invalid:1;
87         struct rcu_head                 lld_rcu_head;
88 };
89
90 #define ll_d2d(de) ((struct ll_dentry_data*)((de)->d_fsdata))
91
92 #define LLI_INODE_MAGIC                 0x111d0de5
93 #define LLI_INODE_DEAD                  0xdeadd00d
94
95 struct ll_getname_data {
96 #ifdef HAVE_DIR_CONTEXT
97         struct dir_context      ctx;
98 #endif
99         char            *lgd_name;      /* points to a buffer with NAME_MAX+1 size */
100         struct lu_fid   lgd_fid;        /* target fid we are looking for */
101         int             lgd_found;      /* inode matched? */
102 };
103
104 struct ll_grouplock {
105         struct lu_env   *lg_env;
106         struct cl_io    *lg_io;
107         struct cl_lock  *lg_lock;
108         unsigned long    lg_gid;
109 };
110
111 /* See comment on trunc_sem_down_read_nowait */
112 struct ll_trunc_sem {
113         /* when positive, this is a count of readers, when -1, it indicates
114          * the semaphore is held for write, and 0 is unlocked
115          */
116         atomic_t        ll_trunc_readers;
117         /* this tracks a count of waiting writers */
118         atomic_t        ll_trunc_waiters;
119 };
120
121 struct ll_inode_info {
122         __u32                           lli_inode_magic;
123         rwlock_t                        lli_lock;
124
125         volatile unsigned long          lli_flags;
126         struct posix_acl                *lli_posix_acl;
127
128         /* identifying fields for both metadata and data stacks. */
129         struct lu_fid                   lli_fid;
130         /* master inode fid for stripe directory */
131         struct lu_fid                   lli_pfid;
132
133         /* We need all three because every inode may be opened in different
134          * modes */
135         struct obd_client_handle       *lli_mds_read_och;
136         struct obd_client_handle       *lli_mds_write_och;
137         struct obd_client_handle       *lli_mds_exec_och;
138         __u64                           lli_open_fd_read_count;
139         __u64                           lli_open_fd_write_count;
140         __u64                           lli_open_fd_exec_count;
141
142         /* Protects access to och pointers and their usage counters */
143         struct mutex                    lli_och_mutex;
144
145         struct inode                    lli_vfs_inode;
146
147         /* the most recent timestamps obtained from mds */
148         s64                             lli_atime;
149         s64                             lli_mtime;
150         s64                             lli_ctime;
151         s64                             lli_btime;
152         spinlock_t                      lli_agl_lock;
153         bool                            lli_synced_to_mds;
154
155         /* inode specific open lock caching threshold */
156         u32                             lli_open_thrsh_count;
157         /* Number of times this inode was opened */
158         u64                             lli_open_fd_count;
159         /* When last close was performed on this inode */
160         ktime_t                         lli_close_fd_time;
161
162         /* Try to make the d::member and f::member are aligned. Before using
163          * these members, make clear whether it is directory or not. */
164         union {
165                 /* for directory */
166                 struct {
167                         /* metadata statahead */
168                         /* since parent-child threads can share the same @file
169                          * struct, "opendir_key" is the token when dir close for
170                          * case of parent exit before child -- it is me should
171                          * cleanup the dir readahead. */
172                         void                           *lli_opendir_key;
173                         struct ll_statahead_info       *lli_sai;
174                         /* protect statahead stuff. */
175                         spinlock_t                      lli_sa_lock;
176                         /* "opendir_pid" is the token when lookup/revalid
177                          * -- I am the owner of dir statahead. */
178                         pid_t                           lli_opendir_pid;
179                         /* directory depth to ROOT */
180                         unsigned short                  lli_dir_depth;
181                         /* directory depth to ancestor whose default LMV is
182                          * inherited.
183                          */
184                         unsigned short                  lli_inherit_depth;
185                         /* stat will try to access statahead entries or start
186                          * statahead if this flag is set, and this flag will be
187                          * set upon dir open, and cleared when dir is closed,
188                          * statahead hit ratio is too low, or start statahead
189                          * thread failed. */
190                         unsigned short                  lli_sa_enabled:1,
191                         /* default LMV is explicitly set in inode on MDT, this
192                          * is for old server, or default LMV is set by
193                          * "lfs setdirstripe -D".
194                          */
195                                                         lli_default_lmv_set:1;
196                         /* generation for statahead */
197                         unsigned int                    lli_sa_generation;
198                         /* rw lock protects lli_lsm_md */
199                         struct rw_semaphore             lli_lsm_sem;
200                         /* directory stripe information */
201                         struct lmv_stripe_md            *lli_lsm_md;
202                         /* directory default LMV */
203                         struct lmv_stripe_md            *lli_default_lsm_md;
204                 };
205
206                 /* for non-directory */
207                 struct {
208                         struct mutex            lli_size_mutex;
209                         char                   *lli_symlink_name;
210                         struct ll_trunc_sem     lli_trunc_sem;
211                         struct range_lock_tree  lli_write_tree;
212                         struct mutex            lli_setattr_mutex;
213
214                         struct rw_semaphore     lli_glimpse_sem;
215                         ktime_t                 lli_glimpse_time;
216                         struct list_head        lli_agl_list;
217                         __u64                   lli_agl_index;
218
219                         /* for writepage() only to communicate to fsync */
220                         int                     lli_async_rc;
221
222                         /* protect the file heat fields */
223                         spinlock_t                      lli_heat_lock;
224                         __u32                           lli_heat_flags;
225                         struct obd_heat_instance        lli_heat_instances[OBD_HEAT_COUNT];
226
227                         /*
228                          * Whenever a process try to read/write the file, the
229                          * jobid, uid and gid of the process will be saved here,
230                          * and it'll be packed into write RPC when flush later.
231                          *
232                          * So the read/write statistics or TBF rules for jobid,
233                          * uid or gid will not be accurate if the file is shared
234                          * by different jobs.
235                          */
236                         char                    lli_jobid[LUSTRE_JOBID_SIZE];
237                         __u32                   lli_uid;
238                         __u32                   lli_gid;
239
240                         struct mutex             lli_pcc_lock;
241                         enum lu_pcc_state_flags  lli_pcc_state;
242                         /*
243                          * @lli_pcc_generation saves the gobal PCC generation
244                          * when the file was successfully attached into PCC.
245                          * The flags of the PCC dataset are saved in
246                          * @lli_pcc_dsflags.
247                          * The gobal PCC generation will be increased when add
248                          * or delete a PCC backend, or change the configuration
249                          * parameters for PCC.
250                          * If @lli_pcc_generation is same as the gobal PCC
251                          * generation, we can use the saved flags of the PCC
252                          * dataset to determine whether need to try auto attach
253                          * safely.
254                          */
255                         __u64                    lli_pcc_generation;
256                         enum pcc_dataset_flags   lli_pcc_dsflags;
257                         struct pcc_inode        *lli_pcc_inode;
258
259                         struct mutex             lli_group_mutex;
260                         __u64                    lli_group_users;
261                         unsigned long            lli_group_gid;
262
263                         __u64                    lli_attr_valid;
264                         __u64                    lli_lazysize;
265                         __u64                    lli_lazyblocks;
266                 };
267         };
268
269         /* XXX: For following frequent used members, although they maybe special
270          *      used for non-directory object, it is some time-wasting to check
271          *      whether the object is directory or not before using them. On the
272          *      other hand, currently, sizeof(f) > sizeof(d), it cannot reduce
273          *      the "ll_inode_info" size even if moving those members into u.f.
274          *      So keep them out side.
275          *
276          *      In the future, if more members are added only for directory,
277          *      some of the following members can be moved into u.f.
278          */
279         struct cl_object                *lli_clob;
280
281         /* mutex to request for layout lock exclusively. */
282         struct mutex                    lli_layout_mutex;
283         /* Layout version, protected by lli_layout_lock */
284         __u32                           lli_layout_gen;
285         spinlock_t                      lli_layout_lock;
286
287         __u32                           lli_projid;   /* project id */
288
289         struct rw_semaphore             lli_xattrs_list_rwsem;
290         struct mutex                    lli_xattrs_enq_lock;
291         struct list_head                lli_xattrs; /* ll_xattr_entry->xe_list */
292         struct list_head                lli_lccs; /* list of ll_cl_context */
293         seqlock_t                       lli_page_inv_lock;
294 };
295
296 #ifndef HAVE_USER_NAMESPACE_ARG
297 #define inode_permission(ns, inode, mask)       inode_permission(inode, mask)
298 #define generic_permission(ns, inode, mask)     generic_permission(inode, mask)
299 #define simple_setattr(ns, de, iattr)           simple_setattr(de, iattr)
300 #define ll_inode_permission(ns, inode, mask)    ll_inode_permission(inode, mask)
301 #ifdef HAVE_INODEOPS_ENHANCED_GETATTR
302 #define ll_getattr(ns, path, stat, mask, fl)    ll_getattr(path, stat, mask, fl)
303 #endif /* HAVE_INODEOPS_ENHANCED_GETATTR */
304 #define ll_setattr(ns, de, attr)                ll_setattr(de, attr)
305 #endif
306
307 static inline void ll_trunc_sem_init(struct ll_trunc_sem *sem)
308 {
309         atomic_set(&sem->ll_trunc_readers, 0);
310         atomic_set(&sem->ll_trunc_waiters, 0);
311 }
312
313 /* This version of down read ignores waiting writers, meaning if the semaphore
314  * is already held for read, this down_read will 'join' that reader and also
315  * take the semaphore.
316  *
317  * This lets us avoid an unusual deadlock.
318  *
319  * We must take lli_trunc_sem in read mode on entry in to various i/o paths
320  * in Lustre, in order to exclude truncates.  Some of these paths then need to
321  * take the mmap_lock, while still holding the trunc_sem.  The problem is that
322  * page faults hold the mmap_lock when calling in to Lustre, and then must also
323  * take the trunc_sem to exclude truncate.
324  *
325  * This means the locking order for trunc_sem and mmap_lock is sometimes AB,
326  * sometimes BA.  This is almost OK because in both cases, we take the trunc
327  * sem for read, so it doesn't block.
328  *
329  * However, if a write mode user (truncate, a setattr op) arrives in the
330  * middle of this, the second reader on the truncate_sem will wait behind that
331  * writer.
332  *
333  * So we have, on our truncate sem, in order (where 'reader' and 'writer' refer
334  * to the mode in which they take the semaphore):
335  * reader (holding mmap_lock, needs truncate_sem)
336  * writer
337  * reader (holding truncate sem, waiting for mmap_lock)
338  *
339  * And so the readers deadlock.
340  *
341  * The solution is this modified semaphore, where this down_read ignores
342  * waiting write operations, and all waiters are woken up at once, so readers
343  * using down_read_nowait cannot get stuck behind waiting writers, regardless
344  * of the order they arrived in.
345  *
346  * down_read_nowait is only used in the page fault case, where we already hold
347  * the mmap_lock.  This is because otherwise repeated read and write operations
348  * (which take the truncate sem) could prevent a truncate from ever starting.
349  * This could still happen with page faults, but without an even more complex
350  * mechanism, this is unavoidable.
351  *
352  * LU-12460
353  */
354 static inline void trunc_sem_down_read_nowait(struct ll_trunc_sem *sem)
355 {
356         wait_var_event(&sem->ll_trunc_readers,
357                        atomic_inc_unless_negative(&sem->ll_trunc_readers));
358 }
359
360 static inline void trunc_sem_down_read(struct ll_trunc_sem *sem)
361 {
362         wait_var_event(&sem->ll_trunc_readers,
363                        atomic_read(&sem->ll_trunc_waiters) == 0 &&
364                        atomic_inc_unless_negative(&sem->ll_trunc_readers));
365 }
366
367 static inline void trunc_sem_up_read(struct ll_trunc_sem *sem)
368 {
369         if (atomic_dec_return(&sem->ll_trunc_readers) == 0 &&
370             atomic_read(&sem->ll_trunc_waiters))
371                 wake_up_var(&sem->ll_trunc_readers);
372 }
373
374 static inline void trunc_sem_down_write(struct ll_trunc_sem *sem)
375 {
376         atomic_inc(&sem->ll_trunc_waiters);
377         wait_var_event(&sem->ll_trunc_readers,
378                        atomic_cmpxchg(&sem->ll_trunc_readers, 0, -1) == 0);
379         atomic_dec(&sem->ll_trunc_waiters);
380 }
381
382 static inline void trunc_sem_up_write(struct ll_trunc_sem *sem)
383 {
384         atomic_set(&sem->ll_trunc_readers, 0);
385         /* match the smp_mb() in wait_var_event()->prepare_to_wait() */
386         smp_mb();
387         wake_up_var(&sem->ll_trunc_readers);
388 }
389
390 #ifdef CONFIG_LUSTRE_FS_POSIX_ACL
391 static inline void lli_clear_acl(struct ll_inode_info *lli)
392 {
393         if (lli->lli_posix_acl) {
394                 posix_acl_release(lli->lli_posix_acl);
395                 lli->lli_posix_acl = NULL;
396         }
397 }
398
399 static inline void lli_replace_acl(struct ll_inode_info *lli,
400                                    struct lustre_md *md)
401 {
402         write_lock(&lli->lli_lock);
403         if (lli->lli_posix_acl)
404                 posix_acl_release(lli->lli_posix_acl);
405         lli->lli_posix_acl = md->posix_acl;
406         write_unlock(&lli->lli_lock);
407 }
408 #else
409 static inline void lli_clear_acl(struct ll_inode_info *lli)
410 {
411 }
412
413 static inline void lli_replace_acl(struct ll_inode_info *lli,
414                                    struct lustre_md *md)
415 {
416 }
417 #endif
418
419 static inline __u32 ll_layout_version_get(struct ll_inode_info *lli)
420 {
421         __u32 gen;
422
423         spin_lock(&lli->lli_layout_lock);
424         gen = lli->lli_layout_gen;
425         spin_unlock(&lli->lli_layout_lock);
426
427         return gen;
428 }
429
430 static inline void ll_layout_version_set(struct ll_inode_info *lli, __u32 gen)
431 {
432         spin_lock(&lli->lli_layout_lock);
433         lli->lli_layout_gen = gen;
434         spin_unlock(&lli->lli_layout_lock);
435 }
436
437 enum ll_file_flags {
438         /* File data is modified. */
439         LLIF_DATA_MODIFIED      = 0,
440         /* File is being restored */
441         LLIF_FILE_RESTORING     = 1,
442         /* Xattr cache is attached to the file */
443         LLIF_XATTR_CACHE        = 2,
444         /* Project inherit */
445         LLIF_PROJECT_INHERIT    = 3,
446         /* update atime from MDS even if it's older than local inode atime. */
447         LLIF_UPDATE_ATIME       = 4,
448         /* foreign file/dir can be unlinked unconditionnaly */
449         LLIF_FOREIGN_REMOVABLE  = 5,
450         /* Xattr cache is filled */
451         LLIF_XATTR_CACHE_FILLED = 7,
452
453 };
454
455 int ll_xattr_cache_destroy(struct inode *inode);
456 int ll_xattr_cache_empty(struct inode *inode);
457
458 int ll_xattr_cache_get(struct inode *inode,
459                        const char *name,
460                        char *buffer,
461                        size_t size,
462                        __u64 valid);
463
464 int ll_xattr_cache_insert(struct inode *inode,
465                           const char *name,
466                           char *buffer,
467                           size_t size);
468
469 static inline bool obd_connect_has_secctx(struct obd_connect_data *data)
470 {
471 #ifdef CONFIG_SECURITY
472         return data->ocd_connect_flags & OBD_CONNECT_FLAGS2 &&
473                 data->ocd_connect_flags2 & OBD_CONNECT2_FILE_SECCTX;
474 #else
475         return false;
476 #endif
477 }
478
479 static inline void obd_connect_set_secctx(struct obd_connect_data *data)
480 {
481 #ifdef CONFIG_SECURITY
482         data->ocd_connect_flags2 |= OBD_CONNECT2_FILE_SECCTX;
483 #endif
484 }
485
486 /* Only smack and selinux is known to use security contexts */
487 static inline bool ll_xattr_is_seclabel(const char *name)
488 {
489         return !strcmp(name, XATTR_NAME_SELINUX) ||
490                 !strcmp(name, XATTR_NAME_SMACK);
491 }
492
493 static inline bool ll_xattr_suffix_is_seclabel(const char *suffix)
494 {
495         return !strcmp(suffix, XATTR_SELINUX_SUFFIX) ||
496                 !strcmp(suffix, XATTR_SMACK_SUFFIX);
497 }
498
499 int ll_dentry_init_security(struct dentry *dentry, int mode, struct qstr *name,
500                             const char **secctx_name, __u32 *secctx_name_size,
501                             void **secctx, __u32 *secctx_size,
502                             int *secctx_slot);
503
504 int ll_inode_init_security(struct dentry *dentry, struct inode *inode,
505                            struct inode *dir);
506
507 int ll_inode_notifysecctx(struct inode *inode,
508                           void *secctx, __u32 secctxlen);
509
510 void ll_secctx_name_free(struct ll_sb_info *sbi);
511
512 int ll_secctx_name_store(struct inode *in);
513
514 __u32 ll_secctx_name_get(struct ll_sb_info *sbi, const char **secctx_name);
515
516 int ll_security_secctx_name_filter(struct ll_sb_info *sbi, int xattr_type,
517                                    const char *suffix);
518
519 static inline bool obd_connect_has_enc(struct obd_connect_data *data)
520 {
521 #ifdef HAVE_LUSTRE_CRYPTO
522         return data->ocd_connect_flags & OBD_CONNECT_FLAGS2 &&
523                 data->ocd_connect_flags2 & OBD_CONNECT2_ENCRYPT;
524 #else
525         return false;
526 #endif
527 }
528
529 static inline void obd_connect_set_enc(struct obd_connect_data *data)
530 {
531 #ifdef HAVE_LUSTRE_CRYPTO
532         data->ocd_connect_flags2 |= OBD_CONNECT2_ENCRYPT;
533 #endif
534 }
535
536 static inline bool obd_connect_has_name_enc(struct obd_connect_data *data)
537 {
538 #ifdef HAVE_LUSTRE_CRYPTO
539         return data->ocd_connect_flags & OBD_CONNECT_FLAGS2 &&
540                 data->ocd_connect_flags2 & OBD_CONNECT2_ENCRYPT_NAME;
541 #else
542         return false;
543 #endif
544 }
545
546 static inline void obd_connect_set_name_enc(struct obd_connect_data *data)
547 {
548 #ifdef HAVE_LUSTRE_CRYPTO
549         data->ocd_connect_flags2 |= OBD_CONNECT2_ENCRYPT_NAME;
550 #endif
551 }
552
553 static inline bool obd_connect_has_enc_fid2path(struct obd_connect_data *data)
554 {
555 #ifdef HAVE_LUSTRE_CRYPTO
556         return data->ocd_connect_flags & OBD_CONNECT_FLAGS2 &&
557                 data->ocd_connect_flags2 & OBD_CONNECT2_ENCRYPT_FID2PATH;
558 #else
559         return false;
560 #endif
561 }
562
563 static inline void obd_connect_set_enc_fid2path(struct obd_connect_data *data)
564 {
565 #ifdef HAVE_LUSTRE_CRYPTO
566         data->ocd_connect_flags2 |= OBD_CONNECT2_ENCRYPT_FID2PATH;
567 #endif
568 }
569
570 /*
571  * Locking to guarantee consistency of non-atomic updates to long long i_size,
572  * consistency between file size and KMS.
573  *
574  * Implemented by ->lli_size_mutex and ->lsm_lock, nested in that order.
575  */
576
577 void ll_inode_size_lock(struct inode *inode);
578 void ll_inode_size_unlock(struct inode *inode);
579 int ll_inode_size_trylock(struct inode *inode);
580
581 static inline struct ll_inode_info *ll_i2info(struct inode *inode)
582 {
583         return container_of(inode, struct ll_inode_info, lli_vfs_inode);
584 }
585
586 static inline struct pcc_inode *ll_i2pcci(struct inode *inode)
587 {
588         return ll_i2info(inode)->lli_pcc_inode;
589 }
590
591 /* default to use at least 16M for fast read if possible */
592 #define RA_REMAIN_WINDOW_MIN                    MiB_TO_PAGES(16UL)
593
594 /* default read-ahead on a given client mountpoint. */
595 #define SBI_DEFAULT_READ_AHEAD_MAX              MiB_TO_PAGES(1024UL)
596
597 /* default read-ahead for a single file descriptor */
598 #define SBI_DEFAULT_READ_AHEAD_PER_FILE_MAX     MiB_TO_PAGES(256UL)
599
600 /* default read-ahead full files smaller than limit on the second read */
601 #define SBI_DEFAULT_READ_AHEAD_WHOLE_MAX        MiB_TO_PAGES(2UL)
602
603 /* default range pages */
604 #define SBI_DEFAULT_RA_RANGE_PAGES              MiB_TO_PAGES(1ULL)
605
606 /* Min range pages */
607 #define RA_MIN_MMAP_RANGE_PAGES                 16UL
608
609 enum ra_stat {
610         RA_STAT_HIT = 0,
611         RA_STAT_MISS,
612         RA_STAT_DISTANT_READPAGE,
613         RA_STAT_MISS_IN_WINDOW,
614         RA_STAT_FAILED_GRAB_PAGE,
615         RA_STAT_FAILED_MATCH,
616         RA_STAT_DISCARDED,
617         RA_STAT_ZERO_LEN,
618         RA_STAT_ZERO_WINDOW,
619         RA_STAT_EOF,
620         RA_STAT_MAX_IN_FLIGHT,
621         RA_STAT_WRONG_GRAB_PAGE,
622         RA_STAT_FAILED_REACH_END,
623         RA_STAT_ASYNC,
624         RA_STAT_FAILED_FAST_READ,
625         RA_STAT_MMAP_RANGE_READ,
626         RA_STAT_READAHEAD_PAGES,
627         _NR_RA_STAT,
628 };
629
630 struct ll_ra_info {
631         atomic_t        ra_cur_pages;
632         unsigned long   ra_max_pages;
633         unsigned long   ra_max_pages_per_file;
634         unsigned long   ra_range_pages;
635         unsigned long   ra_max_read_ahead_whole_pages;
636         struct workqueue_struct  *ll_readahead_wq;
637         /*
638          * Max number of active works could be triggered
639          * for async readahead.
640          */
641         unsigned int ra_async_max_active;
642         /* how many async readahead triggered in flight */
643         atomic_t ra_async_inflight;
644         /* Threshold to control when to trigger async readahead */
645         unsigned long ra_async_pages_per_file_threshold;
646 };
647
648 /* ra_io_arg will be filled in the beginning of ll_readahead with
649  * ras_lock, then the following ll_read_ahead_pages will read RA
650  * pages according to this arg, all the items in this structure are
651  * counted by page index.
652  */
653 struct ra_io_arg {
654         pgoff_t         ria_start_idx;  /* start offset of read-ahead*/
655         pgoff_t         ria_end_idx;    /* end offset of read-ahead*/
656         unsigned long   ria_reserved;   /* reserved pages for read-ahead */
657         pgoff_t         ria_end_idx_min;/* minimum end to cover current read */
658         bool            ria_eof;        /* reach end of file */
659         /* If stride read pattern is detected, ria_stoff is the byte offset
660          * where stride read is started. Note: for normal read-ahead, the
661          * value here is meaningless, and also it will not be accessed*/
662         loff_t          ria_stoff;
663         /* ria_length and ria_bytes are the length and pages length in the
664          * stride I/O mode. And they will also be used to check whether
665          * it is stride I/O read-ahead in the read-ahead pages*/
666         loff_t          ria_length;
667         loff_t          ria_bytes;
668 };
669
670 /* LL_HIST_MAX=32 causes an overflow */
671 #define LL_HIST_MAX 28
672 #define LL_HIST_START 12 /* buckets start at 2^12 = 4k */
673 #define LL_PROCESS_HIST_MAX 10
674 struct per_process_info {
675         pid_t pid;
676         struct obd_histogram pp_r_hist;
677         struct obd_histogram pp_w_hist;
678 };
679
680 /* pp_extents[LL_PROCESS_HIST_MAX] will hold the combined process info */
681 struct ll_rw_extents_info {
682         ktime_t pp_init;
683         struct per_process_info pp_extents[LL_PROCESS_HIST_MAX + 1];
684 };
685
686 #define LL_OFFSET_HIST_MAX 100
687 struct ll_rw_process_info {
688         pid_t                     rw_pid;
689         int                       rw_op;
690         loff_t                    rw_range_start;
691         loff_t                    rw_range_end;
692         loff_t                    rw_last_file_pos;
693         loff_t                    rw_offset;
694         size_t                    rw_smallest_extent;
695         size_t                    rw_largest_extent;
696         struct ll_file_data      *rw_last_file;
697 };
698
699 enum stats_track_type {
700         STATS_TRACK_ALL = 0,  /* track all processes */
701         STATS_TRACK_PID,      /* track process with this pid */
702         STATS_TRACK_PPID,     /* track processes with this ppid */
703         STATS_TRACK_GID,      /* track processes with this gid */
704         STATS_TRACK_LAST,
705 };
706
707 /* flags for sbi->ll_flags */
708 enum ll_sbi_flags {
709         LL_SBI_NOLCK,                   /* DLM locking disabled directio-only */
710         LL_SBI_CHECKSUM,                /* checksum each page as it's written */
711         LL_SBI_LOCALFLOCK,              /* local flocks instead of fs-wide */
712         LL_SBI_FLOCK,                   /* flock enabled */
713         LL_SBI_USER_XATTR,              /* support user xattr */
714         LL_SBI_LRU_RESIZE,              /* lru resize support */
715         LL_SBI_LAZYSTATFS,              /* lazystatfs mount option */
716         LL_SBI_32BIT_API,               /* generate 32 bit inodes. */
717         LL_SBI_USER_FID2PATH,           /* fid2path by unprivileged users */
718         LL_SBI_VERBOSE,                 /* verbose mount/umount */
719         LL_SBI_ALWAYS_PING,             /* ping even if server suppress_pings */
720         LL_SBI_TEST_DUMMY_ENCRYPTION,   /* test dummy encryption */
721         LL_SBI_ENCRYPT,                 /* client side encryption */
722         LL_SBI_FOREIGN_SYMLINK,         /* foreign fake-symlink support */
723         LL_SBI_FOREIGN_SYMLINK_UPCALL,  /* foreign fake-symlink upcall set */
724         LL_SBI_NUM_MOUNT_OPT,
725
726         LL_SBI_ACL,                     /* support ACL */
727         LL_SBI_AGL_ENABLED,             /* enable agl */
728         LL_SBI_64BIT_HASH,              /* support 64-bits dir hash/offset */
729         LL_SBI_LAYOUT_LOCK,             /* layout lock support */
730         LL_SBI_XATTR_CACHE,             /* support for xattr cache */
731         LL_SBI_NOROOTSQUASH,            /* do not apply root squash */
732         LL_SBI_FAST_READ,               /* fast read support */
733         LL_SBI_FILE_SECCTX,             /* file security context at create */
734         LL_SBI_TINY_WRITE,              /* tiny write support */
735         LL_SBI_FILE_HEAT,               /* file heat support */
736         LL_SBI_PARALLEL_DIO,            /* parallel (async) O_DIRECT RPCs */
737         LL_SBI_ENCRYPT_NAME,            /* name encryption */
738         LL_SBI_NUM_FLAGS
739 };
740
741 int ll_sbi_flags_seq_show(struct seq_file *m, void *v);
742
743 /* This is embedded into llite super-blocks to keep track of connect
744  * flags (capabilities) supported by all imports given mount is
745  * connected to. */
746 struct lustre_client_ocd {
747         /* This is conjunction of connect_flags across all imports
748          * (LOVs) this mount is connected to. This field is updated by
749          * cl_ocd_update() under ->lco_lock. */
750         __u64                    lco_flags;
751         struct mutex             lco_lock;
752         struct obd_export       *lco_md_exp;
753         struct obd_export       *lco_dt_exp;
754 };
755
756 struct ll_sb_info {
757         /* this protects pglist and ra_info.  It isn't safe to
758          * grab from interrupt contexts */
759         spinlock_t               ll_lock;
760         spinlock_t               ll_pp_extent_lock; /* pp_extent entry*/
761         spinlock_t               ll_process_lock; /* ll_rw_process_info */
762         struct lustre_sb_info    *lsi;
763         struct obd_uuid          ll_sb_uuid;
764         struct obd_export       *ll_md_exp;
765         struct obd_export       *ll_dt_exp;
766         struct obd_device       *ll_md_obd;
767         struct obd_device       *ll_dt_obd;
768         struct dentry           *ll_debugfs_entry;
769         struct lu_fid            ll_root_fid; /* root object fid */
770         struct mnt_namespace    *ll_mnt_ns;
771
772         DECLARE_BITMAP(ll_flags, LL_SBI_NUM_FLAGS); /* enum ll_sbi_flags */
773         unsigned int             ll_xattr_cache_enabled:1,
774                                  ll_xattr_cache_set:1, /* already set to 0/1 */
775                                  ll_client_common_fill_super_succeeded:1,
776                                  ll_checksum_set:1,
777                                  ll_inode_cache_enabled:1;
778
779         struct lustre_client_ocd ll_lco;
780
781         struct lprocfs_stats     *ll_stats; /* lprocfs stats counter */
782
783         /* Used to track "unstable" pages on a client, and maintain a
784          * LRU list of clean pages. An "unstable" page is defined as
785          * any page which is sent to a server as part of a bulk request,
786          * but is uncommitted to stable storage. */
787         struct cl_client_cache   *ll_cache;
788
789         struct lprocfs_stats     *ll_ra_stats;
790
791         struct ll_ra_info         ll_ra_info;
792         unsigned int              ll_namelen;
793         const struct file_operations *ll_fop;
794
795         struct lu_site           *ll_site;
796         struct cl_device         *ll_cl;
797
798         /* Statistics */
799         struct ll_rw_extents_info *ll_rw_extents_info;
800         int                       ll_extent_process_count;
801         unsigned int              ll_offset_process_count;
802         struct ll_rw_process_info *ll_rw_process_info;
803         struct ll_rw_process_info *ll_rw_offset_info;
804         ktime_t                   ll_process_stats_init;
805         unsigned int              ll_rw_offset_entry_count;
806         int                       ll_stats_track_id;
807         enum stats_track_type     ll_stats_track_type;
808         int                       ll_rw_stats_on;
809
810         /* metadata stat-ahead */
811         unsigned int              ll_sa_running_max;/* max concurrent
812                                                      * statahead instances */
813         unsigned int              ll_sa_batch_max;/* max SUB request count in
814                                                    * a batch PTLRPC request */
815         unsigned int              ll_sa_max;     /* max statahead RPCs */
816         atomic_t                  ll_sa_total;   /* statahead thread started
817                                                   * count */
818         atomic_t                  ll_sa_wrong;   /* statahead thread stopped for
819                                                   * low hit ratio */
820         atomic_t                  ll_sa_running; /* running statahead thread
821                                                   * count */
822         atomic_t                  ll_agl_total;  /* AGL thread started count */
823         atomic_t                  ll_sa_hit_total;  /* total hit count */
824         atomic_t                  ll_sa_miss_total; /* total miss count */
825
826         dev_t                     ll_sdev_orig; /* save s_dev before assign for
827                                                  * clustred nfs */
828         /* root squash */
829         struct root_squash_info   ll_squash;
830         struct path               ll_mnt;
831
832         /* st_blksize returned by stat(2), when non-zero */
833         unsigned int              ll_stat_blksize;
834
835         /* maximum relative age of cached statfs results */
836         unsigned int              ll_statfs_max_age;
837
838         struct kset               ll_kset;      /* sysfs object */
839         struct completion         ll_kobj_unregister;
840
841         /* File heat */
842         unsigned int              ll_heat_decay_weight;
843         unsigned int              ll_heat_period_second;
844
845         /* Opens of the same inode before we start requesting open lock */
846         u32                       ll_oc_thrsh_count;
847
848         /* Time in ms between last inode close and next open to be considered
849          * instant back to back and would trigger an open lock request
850          */
851         u32                       ll_oc_thrsh_ms;
852
853         /* Time in ms after last file close that we no longer count prior opens*/
854         u32                       ll_oc_max_ms;
855
856         /* filesystem fsname */
857         char                      ll_fsname[LUSTRE_MAXFSNAME + 1];
858
859         /* Persistent Client Cache */
860         struct pcc_super          ll_pcc_super;
861
862         /* to protect vs updates in all following foreign symlink fields */
863         struct rw_semaphore       ll_foreign_symlink_sem;
864         /* foreign symlink path prefix */
865         char                     *ll_foreign_symlink_prefix;
866         /* full prefix size including leading '\0' */
867         size_t                    ll_foreign_symlink_prefix_size;
868         /* foreign symlink path upcall */
869         char                     *ll_foreign_symlink_upcall;
870         /* foreign symlink path upcall infos */
871         struct ll_foreign_symlink_upcall_item *ll_foreign_symlink_upcall_items;
872         /* foreign symlink path upcall nb infos */
873         unsigned int              ll_foreign_symlink_upcall_nb_items;
874
875         /* cached file security context xattr name. e.g: security.selinux */
876         char *ll_secctx_name;
877         __u32 ll_secctx_name_size;
878 };
879
880 #define SBI_DEFAULT_HEAT_DECAY_WEIGHT   ((80 * 256 + 50) / 100)
881 #define SBI_DEFAULT_HEAT_PERIOD_SECOND  (60)
882
883 #define SBI_DEFAULT_OPENCACHE_THRESHOLD_COUNT   (5)
884 #define SBI_DEFAULT_OPENCACHE_THRESHOLD_MS      (100) /* 0.1 second */
885 #define SBI_DEFAULT_OPENCACHE_THRESHOLD_MAX_MS  (60000) /* 1 minute */
886
887 /*
888  * per file-descriptor read-ahead data.
889  */
890 struct ll_readahead_state {
891         spinlock_t      ras_lock;
892         /* End byte that read(2) try to read.  */
893         loff_t          ras_last_read_end_bytes;
894         /*
895          * number of bytes read after last read-ahead window reset. As window
896          * is reset on each seek, this is effectively a number of consecutive
897          * accesses. Maybe ->ras_accessed_in_window is better name.
898          *
899          * XXX nikita: window is also reset (by ras_update()) when Lustre
900          * believes that memory pressure evicts read-ahead pages. In that
901          * case, it probably doesn't make sense to expand window to
902          * PTLRPC_MAX_BRW_PAGES on the third access.
903          */
904         loff_t          ras_consecutive_bytes;
905         /*
906          * number of read requests after the last read-ahead window reset
907          * As window is reset on each seek, this is effectively the number
908          * on consecutive read request and is used to trigger read-ahead.
909          */
910         unsigned long   ras_consecutive_requests;
911         /*
912          * Parameters of current read-ahead window. Handled by
913          * ras_update(). On the initial access to the file or after a seek,
914          * window is reset to 0. After 3 consecutive accesses, window is
915          * expanded to PTLRPC_MAX_BRW_PAGES. Afterwards, window is enlarged by
916          * PTLRPC_MAX_BRW_PAGES chunks up to ->ra_max_pages.
917          */
918         pgoff_t         ras_window_start_idx;
919         pgoff_t         ras_window_pages;
920
921         /* Page index where min range read starts */
922         pgoff_t         ras_range_min_start_idx;
923         /* Page index where mmap range read ends */
924         pgoff_t         ras_range_max_end_idx;
925         /* number of mmap pages where last time detected */
926         pgoff_t         ras_last_range_pages;
927         /* number of mmap range requests */
928         pgoff_t         ras_range_requests;
929
930         /*
931          * Optimal RPC size in pages.
932          * It decides how many pages will be sent for each read-ahead.
933          */
934         unsigned long   ras_rpc_pages;
935         /*
936          * Where next read-ahead should start at. This lies within read-ahead
937          * window. Read-ahead window is read in pieces rather than at once
938          * because: 1. lustre limits total number of pages under read-ahead by
939          * ->ra_max_pages (see ll_ra_count_get()), 2. client cannot read pages
940          * not covered by DLM lock.
941          */
942         pgoff_t         ras_next_readahead_idx;
943         /*
944          * Total number of ll_file_read requests issued, reads originating
945          * due to mmap are not counted in this total.  This value is used to
946          * trigger full file read-ahead after multiple reads to a small file.
947          */
948         unsigned long   ras_requests;
949         /*
950          * The following 3 items are used for detecting the stride I/O
951          * mode.
952          * In stride I/O mode,
953          * ...............|-----data-----|****gap*****|--------|******|....
954          *    offset      |-stride_bytes-|-stride_gap-|
955          * ras_stride_offset = offset;
956          * ras_stride_length = stride_bytes + stride_gap;
957          * ras_stride_bytes = stride_bytes;
958          * Note: all these three items are counted by bytes.
959          */
960         loff_t          ras_stride_offset;
961         loff_t          ras_stride_length;
962         loff_t          ras_stride_bytes;
963         /*
964          * number of consecutive stride request count, and it is similar as
965          * ras_consecutive_requests, but used for stride I/O mode.
966          * Note: only more than 2 consecutive stride request are detected,
967          * stride read-ahead will be enable
968          */
969         unsigned long   ras_consecutive_stride_requests;
970         /* index of the last page that async readahead starts */
971         pgoff_t         ras_async_last_readpage_idx;
972         /* whether we should increase readahead window */
973         bool            ras_need_increase_window;
974         /* whether ra miss check should be skipped */
975         bool            ras_no_miss_check;
976 };
977
978 struct ll_readahead_work {
979         /** File to readahead */
980         struct file                     *lrw_file;
981         pgoff_t                          lrw_start_idx;
982         pgoff_t                          lrw_end_idx;
983         pid_t                            lrw_user_pid;
984
985         /* async worker to handler read */
986         struct work_struct               lrw_readahead_work;
987         char                             lrw_jobid[LUSTRE_JOBID_SIZE];
988 };
989
990 extern struct kmem_cache *ll_file_data_slab;
991 struct lustre_handle;
992 struct ll_file_data {
993         struct ll_readahead_state fd_ras;
994         struct ll_grouplock fd_grouplock;
995         __u64 lfd_pos;
996         __u32 fd_flags;
997         fmode_t fd_omode;
998         /* openhandle if lease exists for this file.
999          * Borrow lli->lli_och_mutex to protect assignment */
1000         struct obd_client_handle *fd_lease_och;
1001         struct obd_client_handle *fd_och;
1002         struct file *fd_file;
1003         /* Indicate whether need to report failure when close.
1004          * true: failure is known, not report again.
1005          * false: unknown failure, should report. */
1006         bool fd_write_failed;
1007         bool ll_lock_no_expand;
1008         /* Used by mirrored file to lead IOs to a specific mirror, usually
1009          * for mirror resync. 0 means default. */
1010         __u32 fd_designated_mirror;
1011         /* The layout version when resync starts. Resync I/O should carry this
1012          * layout version for verification to OST objects */
1013         __u32 fd_layout_version;
1014         struct pcc_file fd_pcc_file;
1015         /* striped directory may read partially if some stripe inaccessible,
1016          * -errno is saved here, and will return to user in close().
1017          */
1018         int fd_partial_readdir_rc;
1019 };
1020
1021 void llite_tunables_unregister(void);
1022 int llite_tunables_register(void);
1023
1024 static inline struct inode *ll_info2i(struct ll_inode_info *lli)
1025 {
1026         return &lli->lli_vfs_inode;
1027 }
1028
1029 __u32 ll_i2suppgid(struct inode *i);
1030 void ll_i2gids(__u32 *suppgids, struct inode *i1,struct inode *i2);
1031
1032 static inline int ll_need_32bit_api(struct ll_sb_info *sbi)
1033 {
1034 #if BITS_PER_LONG == 32
1035         return 1;
1036 #elif defined(CONFIG_COMPAT)
1037         if (unlikely(test_bit(LL_SBI_32BIT_API, sbi->ll_flags)))
1038                 return true;
1039
1040 # ifdef CONFIG_X86_X32
1041         /* in_compat_syscall() returns true when called from a kthread
1042          * and CONFIG_X86_X32 is enabled, which is wrong. So check
1043          * whether the caller comes from a syscall (ie. not a kthread)
1044          * before calling in_compat_syscall(). */
1045         if (current->flags & PF_KTHREAD)
1046                 return false;
1047 # endif
1048
1049         return unlikely(in_compat_syscall());
1050 #else
1051         return unlikely(test_bit(LL_SBI_32BIT_API, sbi->ll_flags));
1052 #endif
1053 }
1054
1055 static inline bool ll_sbi_has_fast_read(struct ll_sb_info *sbi)
1056 {
1057         return test_bit(LL_SBI_FAST_READ, sbi->ll_flags);
1058 }
1059
1060 static inline bool ll_sbi_has_tiny_write(struct ll_sb_info *sbi)
1061 {
1062         return test_bit(LL_SBI_TINY_WRITE, sbi->ll_flags);
1063 }
1064
1065 static inline bool ll_sbi_has_file_heat(struct ll_sb_info *sbi)
1066 {
1067         return test_bit(LL_SBI_FILE_HEAT, sbi->ll_flags);
1068 }
1069
1070 static inline bool ll_sbi_has_foreign_symlink(struct ll_sb_info *sbi)
1071 {
1072         return test_bit(LL_SBI_FOREIGN_SYMLINK, sbi->ll_flags);
1073 }
1074
1075 static inline bool ll_sbi_has_parallel_dio(struct ll_sb_info *sbi)
1076 {
1077         return test_bit(LL_SBI_PARALLEL_DIO, sbi->ll_flags);
1078 }
1079
1080 void ll_ras_enter(struct file *f, loff_t pos, size_t count);
1081
1082 /* llite/lcommon_misc.c */
1083 int cl_ocd_update(struct obd_device *host, struct obd_device *watched,
1084                   enum obd_notify_event ev, void *owner);
1085 int cl_get_grouplock(struct cl_object *obj, unsigned long gid, int nonblock,
1086                      struct ll_grouplock *lg);
1087 void cl_put_grouplock(struct ll_grouplock *lg);
1088
1089 /* llite/lproc_llite.c */
1090 int ll_debugfs_register_super(struct super_block *sb, const char *name);
1091 void ll_debugfs_unregister_super(struct super_block *sb);
1092 void ll_stats_ops_tally(struct ll_sb_info *sbi, int op, long count);
1093 void ll_free_rw_stats_info(struct ll_sb_info *sbi);
1094
1095 enum {
1096         LPROC_LL_READ_BYTES,
1097         LPROC_LL_WRITE_BYTES,
1098         LPROC_LL_READ,
1099         LPROC_LL_WRITE,
1100         LPROC_LL_IOCTL,
1101         LPROC_LL_OPEN,
1102         LPROC_LL_RELEASE,
1103         LPROC_LL_MMAP,
1104         LPROC_LL_FAULT,
1105         LPROC_LL_MKWRITE,
1106         LPROC_LL_LLSEEK,
1107         LPROC_LL_FSYNC,
1108         LPROC_LL_READDIR,
1109         LPROC_LL_SETATTR,
1110         LPROC_LL_TRUNC,
1111         LPROC_LL_FLOCK,
1112         LPROC_LL_GETATTR,
1113         LPROC_LL_CREATE,
1114         LPROC_LL_LINK,
1115         LPROC_LL_UNLINK,
1116         LPROC_LL_SYMLINK,
1117         LPROC_LL_MKDIR,
1118         LPROC_LL_RMDIR,
1119         LPROC_LL_MKNOD,
1120         LPROC_LL_RENAME,
1121         LPROC_LL_STATFS,
1122         LPROC_LL_SETXATTR,
1123         LPROC_LL_GETXATTR,
1124         LPROC_LL_GETXATTR_HITS,
1125         LPROC_LL_LISTXATTR,
1126         LPROC_LL_REMOVEXATTR,
1127         LPROC_LL_INODE_PERM,
1128         LPROC_LL_FALLOCATE,
1129         LPROC_LL_INODE_OCOUNT,
1130         LPROC_LL_INODE_OPCLTM,
1131         LPROC_LL_FILE_OPCODES
1132 };
1133
1134 /* llite/dir.c */
1135 enum get_default_layout_type {
1136         GET_DEFAULT_LAYOUT_ROOT = 1,
1137 };
1138
1139 extern const struct file_operations ll_dir_operations;
1140 extern const struct inode_operations ll_dir_inode_operations;
1141 #ifdef HAVE_DIR_CONTEXT
1142 int ll_dir_read(struct inode *inode, __u64 *pos, struct md_op_data *op_data,
1143                 struct dir_context *ctx, int *partial_readdir_rc);
1144 #else
1145 int ll_dir_read(struct inode *inode, __u64 *pos, struct md_op_data *op_data,
1146                 void *cookie, filldir_t filldir, int *partial_readdir_rc);
1147 #endif
1148 int ll_get_mdt_idx(struct inode *inode);
1149 int ll_get_mdt_idx_by_fid(struct ll_sb_info *sbi, const struct lu_fid *fid);
1150 struct page *ll_get_dir_page(struct inode *dir, struct md_op_data *op_data,
1151                               __u64 offset, int *partial_readdir_rc);
1152 void ll_release_page(struct inode *inode, struct page *page, bool remove);
1153 int quotactl_ioctl(struct super_block *sb, struct if_quotactl *qctl);
1154
1155 /* llite/namei.c */
1156 extern const struct inode_operations ll_special_inode_operations;
1157
1158 struct inode *ll_iget(struct super_block *sb, ino_t hash,
1159                       struct lustre_md *lic);
1160 int ll_test_inode_by_fid(struct inode *inode, void *opaque);
1161 int ll_md_blocking_ast(struct ldlm_lock *, struct ldlm_lock_desc *,
1162                        void *data, int flag);
1163 struct dentry *ll_splice_alias(struct inode *inode, struct dentry *de);
1164 int ll_rmdir_entry(struct inode *dir, char *name, int namelen);
1165 void ll_update_times(struct ptlrpc_request *request, struct inode *inode);
1166
1167 /* llite/rw.c */
1168 int ll_writepage(struct page *page, struct writeback_control *wbc);
1169 int ll_writepages(struct address_space *, struct writeback_control *wbc);
1170 int ll_readpage(struct file *file, struct page *page);
1171 #ifdef HAVE_AOPS_READ_FOLIO
1172 int ll_read_folio(struct file *file, struct folio *folio);
1173 #endif
1174 int ll_io_read_page(const struct lu_env *env, struct cl_io *io,
1175                            struct cl_page *page, struct file *file);
1176 void ll_readahead_init(struct inode *inode, struct ll_readahead_state *ras);
1177 int vvp_io_write_commit(const struct lu_env *env, struct cl_io *io);
1178
1179 enum lcc_type;
1180 void ll_cl_add(struct inode *inode, const struct lu_env *env, struct cl_io *io,
1181                enum lcc_type type);
1182 void ll_cl_remove(struct inode *inode, const struct lu_env *env);
1183 struct ll_cl_context *ll_cl_find(struct inode *inode);
1184
1185 extern const struct address_space_operations ll_aops;
1186
1187 /* llite/file.c */
1188 extern const struct inode_operations ll_file_inode_operations;
1189 const struct file_operations *ll_select_file_operations(struct ll_sb_info *sbi);
1190 extern int ll_have_md_lock(struct obd_export *exp, struct inode *inode,
1191                            __u64 *bits, enum ldlm_mode l_req_mode);
1192 extern enum ldlm_mode ll_take_md_lock(struct inode *inode, __u64 bits,
1193                                       struct lustre_handle *lockh, __u64 flags,
1194                                       enum ldlm_mode mode);
1195
1196 int ll_file_open(struct inode *inode, struct file *file);
1197 int ll_file_release(struct inode *inode, struct file *file);
1198 int ll_release_openhandle(struct dentry *, struct lookup_intent *);
1199 int ll_md_real_close(struct inode *inode, fmode_t fmode);
1200 void ll_track_file_opens(struct inode *inode);
1201 extern void ll_rw_stats_tally(struct ll_sb_info *sbi, pid_t pid,
1202                               struct ll_file_data *file, loff_t pos,
1203                               size_t count, int rw);
1204 #if defined(HAVE_USER_NAMESPACE_ARG) || defined(HAVE_INODEOPS_ENHANCED_GETATTR)
1205 int ll_getattr(struct user_namespace *mnt_userns, const struct path *path,
1206                struct kstat *stat, u32 request_mask, unsigned int flags);
1207 #else
1208 int ll_getattr(struct vfsmount *mnt, struct dentry *de, struct kstat *stat);
1209 #endif /* HAVE_USER_NAMESPACE_ARG */
1210 int ll_getattr_dentry(struct dentry *de, struct kstat *stat, u32 request_mask,
1211                       unsigned int flags, bool foreign);
1212 #ifdef CONFIG_LUSTRE_FS_POSIX_ACL
1213 struct posix_acl *ll_get_acl(
1214  #ifdef HAVE_ACL_WITH_DENTRY
1215         struct user_namespace *, struct dentry *, int);
1216  #elif defined HAVE_GET_ACL_RCU_ARG
1217         struct inode *inode, int type, bool rcu);
1218  #else
1219         struct inode *inode, int type);
1220  #endif /* HAVE_GET_ACL_RCU_ARG */
1221
1222 int ll_set_acl(struct user_namespace *mnt_userns,
1223  #ifdef HAVE_ACL_WITH_DENTRY
1224                struct dentry *dentry,
1225  #else
1226                struct inode *inode,
1227  #endif
1228                struct posix_acl *acl, int type);
1229 #else  /* !CONFIG_LUSTRE_FS_POSIX_ACL */
1230 #define ll_get_acl NULL
1231 #define ll_set_acl NULL
1232 #endif /* CONFIG_LUSTRE_FS_POSIX_ACL */
1233
1234 static inline int ll_xflags_to_inode_flags(int xflags)
1235 {
1236         return ((xflags & FS_XFLAG_SYNC)      ? S_SYNC      : 0) |
1237                ((xflags & FS_XFLAG_NOATIME)   ? S_NOATIME   : 0) |
1238                ((xflags & FS_XFLAG_APPEND)    ? S_APPEND    : 0) |
1239                ((xflags & FS_XFLAG_IMMUTABLE) ? S_IMMUTABLE : 0);
1240 }
1241
1242 static inline int ll_inode_flags_to_xflags(int inode_flags)
1243 {
1244         return ((inode_flags & S_SYNC)      ? FS_XFLAG_SYNC      : 0) |
1245                ((inode_flags & S_NOATIME)   ? FS_XFLAG_NOATIME   : 0) |
1246                ((inode_flags & S_APPEND)    ? FS_XFLAG_APPEND    : 0) |
1247                ((inode_flags & S_IMMUTABLE) ? FS_XFLAG_IMMUTABLE : 0);
1248 }
1249
1250 int ll_migrate(struct inode *parent, struct file *file,
1251                struct lmv_user_md *lum, const char *name, __u32 flags);
1252 int ll_get_fid_by_name(struct inode *parent, const char *name,
1253                        int namelen, struct lu_fid *fid, struct inode **inode);
1254 int ll_inode_permission(struct user_namespace *mnt_userns, struct inode *inode,
1255                         int mask);
1256 int ll_ioctl_check_project(struct inode *inode, __u32 xflags, __u32 projid);
1257 int ll_ioctl_fsgetxattr(struct inode *inode, unsigned int cmd,
1258                         void __user *uarg);
1259 int ll_ioctl_fssetxattr(struct inode *inode, unsigned int cmd,
1260                         void __user *uarg);
1261 int ll_ioctl_project(struct file *file, unsigned int cmd, void __user *uarg);
1262 int ll_lov_setstripe_ea_info(struct inode *inode, struct dentry *dentry,
1263                              __u64 flags, struct lov_user_md *lum,
1264                              int lum_size);
1265 int ll_lov_getstripe_ea_info(struct inode *inode, const char *filename,
1266                              struct lov_mds_md **lmm, int *lmm_size,
1267                              struct ptlrpc_request **request);
1268 int ll_dir_setstripe(struct inode *inode, struct lov_user_md *lump,
1269                      int set_default);
1270 int ll_dir_get_default_layout(struct inode *inode, void **plmm, int *plmm_size,
1271                               struct ptlrpc_request **request, u64 valid,
1272                               enum get_default_layout_type type);
1273 int ll_dir_getstripe_default(struct inode *inode, void **lmmp,
1274                              int *lmm_size, struct ptlrpc_request **request,
1275                              struct ptlrpc_request **root_request, u64 valid);
1276 int ll_dir_getstripe(struct inode *inode, void **plmm, int *plmm_size,
1277                      struct ptlrpc_request **request, u64 valid);
1278 int ll_fsync(struct file *file, loff_t start, loff_t end, int data);
1279 int ll_merge_attr(const struct lu_env *env, struct inode *inode);
1280 int ll_merge_attr_try(const struct lu_env *env, struct inode *inode);
1281 int ll_fid2path(struct inode *inode, void __user *arg);
1282 int __ll_fid2path(struct inode *inode, struct getinfo_fid2path *gfout,
1283                   size_t outsize, __u32 pathlen_orig);
1284 int ll_data_version(struct inode *inode, __u64 *data_version, int flags);
1285 int ll_hsm_release(struct inode *inode);
1286 int ll_hsm_state_set(struct inode *inode, struct hsm_state_set *hss);
1287 void ll_io_set_mirror(struct cl_io *io, const struct file *file);
1288
1289 /* llite/dcache.c */
1290
1291 extern const struct dentry_operations ll_d_ops;
1292 #ifndef HAVE_D_INIT
1293 bool ll_d_setup(struct dentry *de, bool do_put);
1294
1295 static inline bool lld_is_init(struct dentry *dentry)
1296 {
1297         return ll_d2d(dentry);
1298 }
1299 #else
1300 #define ll_d_setup(de, do_put) (true)
1301 #define lld_is_init(dentry) (true)
1302 #endif
1303
1304 void ll_intent_drop_lock(struct lookup_intent *);
1305 void ll_intent_release(struct lookup_intent *);
1306 void ll_prune_aliases(struct inode *inode);
1307 void ll_lookup_finish_locks(struct lookup_intent *it, struct dentry *dentry);
1308 int ll_revalidate_it_finish(struct ptlrpc_request *request,
1309                             struct lookup_intent *it, struct dentry *de);
1310
1311 /* llite/llite_lib.c */
1312 extern const struct super_operations lustre_super_operations;
1313
1314 void ll_lli_init(struct ll_inode_info *lli);
1315 int ll_fill_super(struct super_block *sb);
1316 void ll_put_super(struct super_block *sb);
1317 void ll_kill_super(struct super_block *sb);
1318 struct inode *ll_inode_from_resource_lock(struct ldlm_lock *lock);
1319 void ll_dir_clear_lsm_md(struct inode *inode);
1320 void ll_clear_inode(struct inode *inode);
1321 int volatile_ref_file(const char *volatile_name, int volatile_len,
1322                       struct file **ref_file);
1323 int ll_setattr_raw(struct dentry *dentry, struct iattr *attr,
1324                    enum op_xvalid xvalid, bool hsm_import);
1325 int ll_setattr(struct user_namespace *mnt_userns, struct dentry *de,
1326                struct iattr *attr);
1327 int ll_statfs(struct dentry *de, struct kstatfs *sfs);
1328 int ll_statfs_internal(struct ll_sb_info *sbi, struct obd_statfs *osfs,
1329                        u32 flags);
1330 int ll_update_inode(struct inode *inode, struct lustre_md *md);
1331 void ll_update_inode_flags(struct inode *inode, unsigned int ext_flags);
1332 void ll_update_dir_depth_dmv(struct inode *dir, struct dentry *de);
1333 int ll_read_inode2(struct inode *inode, void *opaque);
1334 void ll_truncate_inode_pages_final(struct inode *inode, struct cl_io *io);
1335 void ll_delete_inode(struct inode *inode);
1336 int ll_iocontrol(struct inode *inode, struct file *file,
1337                  unsigned int cmd, void __user *uarg);
1338 int ll_flush_ctx(struct inode *inode);
1339 void ll_umount_begin(struct super_block *sb);
1340 int ll_remount_fs(struct super_block *sb, int *flags, char *data);
1341 int ll_show_options(struct seq_file *seq, struct dentry *dentry);
1342 void ll_dirty_page_discard_warn(struct inode *inode, int ioret);
1343 int ll_prep_inode(struct inode **inode, struct req_capsule *pill,
1344                   struct super_block *sb, struct lookup_intent *it);
1345 int ll_obd_statfs(struct inode *inode, void __user *arg);
1346 int ll_get_max_mdsize(struct ll_sb_info *sbi, int *max_mdsize);
1347 int ll_get_default_mdsize(struct ll_sb_info *sbi, int *default_mdsize);
1348 int ll_set_default_mdsize(struct ll_sb_info *sbi, int default_mdsize);
1349
1350 void ll_unlock_md_op_lsm(struct md_op_data *op_data);
1351 struct md_op_data *ll_prep_md_op_data(struct md_op_data *op_data,
1352                                       struct inode *i1, struct inode *i2,
1353                                       const char *name, size_t namelen,
1354                                       __u32 mode, enum md_op_code opc,
1355                                       void *data);
1356 void ll_finish_md_op_data(struct md_op_data *op_data);
1357 int ll_get_obd_name(struct inode *inode, unsigned int cmd, void __user *arg);
1358 void ll_compute_rootsquash_state(struct ll_sb_info *sbi);
1359 ssize_t ll_copy_user_md(const struct lov_user_md __user *md,
1360                         struct lov_user_md **kbuf);
1361 void ll_open_cleanup(struct super_block *sb, struct req_capsule *pill);
1362
1363 void ll_dom_finish_open(struct inode *inode, struct ptlrpc_request *req);
1364
1365 /* Compute expected user md size when passing in a md from user space */
1366 static inline ssize_t ll_lov_user_md_size(const struct lov_user_md *lum)
1367 {
1368         switch (lum->lmm_magic) {
1369         case LOV_USER_MAGIC_V1:
1370                 return sizeof(struct lov_user_md_v1);
1371         case LOV_USER_MAGIC_V3:
1372                 return sizeof(struct lov_user_md_v3);
1373         case LOV_USER_MAGIC_SPECIFIC:
1374                 if (lum->lmm_stripe_count > LOV_MAX_STRIPE_COUNT)
1375                         return -EINVAL;
1376
1377                 return lov_user_md_size(lum->lmm_stripe_count,
1378                                         LOV_USER_MAGIC_SPECIFIC);
1379         case LOV_USER_MAGIC_COMP_V1:
1380                 return ((struct lov_comp_md_v1 *)lum)->lcm_size;
1381         case LOV_USER_MAGIC_FOREIGN:
1382                 return foreign_size(lum);
1383         }
1384
1385         return -EINVAL;
1386 }
1387
1388 /* llite/llite_nfs.c */
1389 extern const struct export_operations lustre_export_operations;
1390 __u32 get_uuid2int(const char *name, int len);
1391 struct inode *search_inode_for_lustre(struct super_block *sb,
1392                                       const struct lu_fid *fid);
1393 int ll_dir_get_parent_fid(struct inode *dir, struct lu_fid *parent_fid);
1394
1395 /* llite/symlink.c */
1396 extern const struct inode_operations ll_fast_symlink_inode_operations;
1397
1398 /**
1399  * IO arguments for various VFS I/O interfaces.
1400  */
1401 struct vvp_io_args {
1402         /** normal/sendfile/splice */
1403         union {
1404                 struct {
1405                         struct kiocb      *via_iocb;
1406                         struct iov_iter   *via_iter;
1407                 } normal;
1408         } u;
1409 };
1410
1411 enum lcc_type {
1412         LCC_RW = 1,
1413         LCC_MMAP
1414 };
1415
1416 struct ll_cl_context {
1417         struct list_head         lcc_list;
1418         void                    *lcc_cookie;
1419         const struct lu_env     *lcc_env;
1420         struct cl_io            *lcc_io;
1421         struct cl_page          *lcc_page;
1422         enum lcc_type            lcc_type;
1423         pgoff_t                  lcc_end_index;
1424 };
1425
1426 struct ll_thread_info {
1427         struct vvp_io_args      lti_args;
1428         struct ra_io_arg        lti_ria;
1429         struct ll_cl_context    lti_io_ctx;
1430 };
1431
1432 extern struct lu_context_key ll_thread_key;
1433
1434 static inline struct ll_thread_info *ll_env_info(const struct lu_env *env)
1435 {
1436         struct ll_thread_info *lti;
1437
1438         lti = lu_context_key_get(&env->le_ctx, &ll_thread_key);
1439         LASSERT(lti != NULL);
1440
1441         return lti;
1442 }
1443
1444 static inline struct vvp_io_args *ll_env_args(const struct lu_env *env)
1445 {
1446         return &ll_env_info(env)->lti_args;
1447 }
1448
1449 void ll_io_init(struct cl_io *io, struct file *file, enum cl_io_type iot,
1450                 struct vvp_io_args *args);
1451
1452 /* llite/llite_mmap.c */
1453
1454 int ll_file_mmap(struct file * file, struct vm_area_struct * vma);
1455 void policy_from_vma(union ldlm_policy_data *policy, struct vm_area_struct *vma,
1456                      unsigned long addr, size_t count);
1457 struct vm_area_struct *our_vma(struct mm_struct *mm, unsigned long addr,
1458                                size_t count);
1459
1460 #define    ll_s2sbi(sb)        (s2lsi(sb)->lsi_llsbi)
1461
1462 /* don't need an addref as the sb_info should be holding one */
1463 static inline struct obd_export *ll_s2dtexp(struct super_block *sb)
1464 {
1465         return ll_s2sbi(sb)->ll_dt_exp;
1466 }
1467
1468 /* don't need an addref as the sb_info should be holding one */
1469 static inline struct obd_export *ll_s2mdexp(struct super_block *sb)
1470 {
1471         return ll_s2sbi(sb)->ll_md_exp;
1472 }
1473
1474 static inline struct client_obd *sbi2mdc(struct ll_sb_info *sbi)
1475 {
1476         struct obd_device *obd = sbi->ll_md_exp->exp_obd;
1477         if (obd == NULL)
1478                 LBUG();
1479         return &obd->u.cli;
1480 }
1481
1482 // FIXME: replace the name of this with LL_SB to conform to kernel stuff
1483 static inline struct ll_sb_info *ll_i2sbi(struct inode *inode)
1484 {
1485         return ll_s2sbi(inode->i_sb);
1486 }
1487
1488 static inline struct obd_export *ll_i2dtexp(struct inode *inode)
1489 {
1490         return ll_s2dtexp(inode->i_sb);
1491 }
1492
1493 static inline struct obd_export *ll_i2mdexp(struct inode *inode)
1494 {
1495         return ll_s2mdexp(inode->i_sb);
1496 }
1497
1498 static inline struct lu_fid *ll_inode2fid(struct inode *inode)
1499 {
1500         struct lu_fid *fid;
1501
1502         LASSERT(inode != NULL);
1503         fid = &ll_i2info(inode)->lli_fid;
1504
1505         return fid;
1506 }
1507
1508 static inline bool ll_dir_striped(struct inode *inode)
1509 {
1510         struct ll_inode_info *lli;
1511         bool rc;
1512
1513         LASSERT(inode);
1514         if (!S_ISDIR(inode->i_mode))
1515                 return false;
1516
1517         lli = ll_i2info(inode);
1518         if (!lli->lli_lsm_md)
1519                 return false;
1520
1521         down_read(&lli->lli_lsm_sem);
1522         rc = lmv_dir_striped(lli->lli_lsm_md);
1523         up_read(&lli->lli_lsm_sem);
1524
1525         return rc;
1526 }
1527
1528 static inline loff_t ll_file_maxbytes(struct inode *inode)
1529 {
1530         struct cl_object *obj = ll_i2info(inode)->lli_clob;
1531
1532         if (obj == NULL)
1533                 return MAX_LFS_FILESIZE;
1534
1535         return min_t(loff_t, cl_object_maxbytes(obj), MAX_LFS_FILESIZE);
1536 }
1537
1538 /* llite/xattr.c */
1539 extern const struct xattr_handler *ll_xattr_handlers[];
1540
1541 #define XATTR_USER_T            1
1542 #define XATTR_TRUSTED_T         2
1543 #define XATTR_SECURITY_T        3
1544 #define XATTR_ACL_ACCESS_T      4
1545 #define XATTR_ACL_DEFAULT_T     5
1546 #define XATTR_LUSTRE_T          6
1547 #define XATTR_OTHER_T           7
1548 #define XATTR_ENCRYPTION_T      9
1549
1550 ssize_t ll_listxattr(struct dentry *dentry, char *buffer, size_t size);
1551 int ll_xattr_list(struct inode *inode, const char *name, int type,
1552                   void *buffer, size_t size, u64 valid);
1553 const struct xattr_handler *get_xattr_type(const char *name);
1554
1555 /**
1556  * Common IO arguments for various VFS I/O interfaces.
1557  */
1558 int cl_sb_init(struct super_block *sb);
1559 int cl_sb_fini(struct super_block *sb);
1560
1561 enum ras_update_flags {
1562         LL_RAS_HIT  = 0x1,
1563         LL_RAS_MMAP = 0x2
1564 };
1565 void ll_ra_count_put(struct ll_sb_info *sbi, unsigned long len);
1566 void ll_ra_stats_inc(struct inode *inode, enum ra_stat which);
1567
1568 /* statahead.c */
1569
1570 #define LL_SA_RPC_MIN           8
1571 #define LL_SA_RPC_DEF           128
1572 #define LL_SA_RPC_MAX           2048
1573
1574 /* XXX: If want to support more concurrent statahead instances,
1575  *      please consider to decentralize the RPC lists attached
1576  *      on related import, such as imp_{sending,delayed}_list.
1577  *      LU-11079 */
1578 #define LL_SA_RUNNING_MAX       256
1579 #define LL_SA_RUNNING_DEF       16
1580
1581 #define LL_SA_BATCH_MAX         1024
1582 #define LL_SA_BATCH_DEF         64
1583
1584 #define LL_SA_CACHE_BIT         5
1585 #define LL_SA_CACHE_SIZE        (1 << LL_SA_CACHE_BIT)
1586 #define LL_SA_CACHE_MASK        (LL_SA_CACHE_SIZE - 1)
1587
1588 /* per inode struct, for dir only */
1589 struct ll_statahead_info {
1590         struct dentry          *sai_dentry;
1591         atomic_t                sai_refcount;   /* when access this struct, hold
1592                                                  * refcount */
1593         unsigned int            sai_max;        /* max ahead of lookup */
1594         __u64                   sai_sent;       /* stat requests sent count */
1595         __u64                   sai_replied;    /* stat requests which received
1596                                                  * reply */
1597         __u64                   sai_index;      /* index of statahead entry */
1598         __u64                   sai_index_wait; /* index of entry which is the
1599                                                  * caller is waiting for */
1600         __u64                   sai_hit;        /* hit count */
1601         __u64                   sai_miss;       /* miss count:
1602                                                  * for "ls -al" case, includes
1603                                                  * hidden dentry miss;
1604                                                  * for "ls -l" case, it does not
1605                                                  * include hidden dentry miss.
1606                                                  * "sai_miss_hidden" is used for
1607                                                  * the later case.
1608                                                  */
1609         unsigned int            sai_consecutive_miss; /* consecutive miss */
1610         unsigned int            sai_miss_hidden;/* "ls -al", but first dentry
1611                                                  * is not a hidden one */
1612         unsigned int            sai_skip_hidden;/* skipped hidden dentry count
1613                                                  */
1614         unsigned int            sai_ls_all:1;   /* "ls -al", do stat-ahead for
1615                                                  * hidden entries */
1616         wait_queue_head_t       sai_waitq;      /* stat-ahead wait queue */
1617         struct task_struct      *sai_task;      /* stat-ahead thread */
1618         struct task_struct      *sai_agl_task;  /* AGL thread */
1619         struct list_head        sai_entries;    /* completed entries */
1620         struct list_head        sai_agls;       /* AGLs to be sent */
1621         struct list_head        sai_cache[LL_SA_CACHE_SIZE];
1622         spinlock_t              sai_cache_lock[LL_SA_CACHE_SIZE];
1623         atomic_t                sai_cache_count; /* entry count in cache */
1624         struct lu_batch         *sai_bh;
1625         __u32                   sai_max_batch_count;
1626         __u64                   sai_index_end;
1627 };
1628
1629 int ll_revalidate_statahead(struct inode *dir, struct dentry **dentry,
1630                             bool unplug);
1631 int ll_start_statahead(struct inode *dir, struct dentry *dentry, bool agl);
1632 void ll_authorize_statahead(struct inode *dir, void *key);
1633 void ll_deauthorize_statahead(struct inode *dir, void *key);
1634
1635 /* glimpse.c */
1636 blkcnt_t dirty_cnt(struct inode *inode);
1637
1638 int cl_glimpse_size0(struct inode *inode, int agl);
1639 int cl_glimpse_lock(const struct lu_env *env, struct cl_io *io,
1640                     struct inode *inode, struct cl_object *clob, int agl);
1641
1642 static inline int cl_glimpse_size(struct inode *inode)
1643 {
1644         return cl_glimpse_size0(inode, 0);
1645 }
1646
1647 /* AGL is 'asychronous glimpse lock', which is a speculative lock taken as
1648  * part of statahead */
1649 static inline int cl_agl(struct inode *inode)
1650 {
1651         return cl_glimpse_size0(inode, 1);
1652 }
1653
1654 int ll_file_lock_ahead(struct file *file, struct llapi_lu_ladvise *ladvise);
1655
1656 int cl_io_get(struct inode *inode, struct lu_env **envout,
1657               struct cl_io **ioout, __u16 *refcheck);
1658
1659 static inline int ll_glimpse_size(struct inode *inode)
1660 {
1661         struct ll_inode_info *lli = ll_i2info(inode);
1662         int rc;
1663
1664         down_read(&lli->lli_glimpse_sem);
1665         rc = cl_glimpse_size(inode);
1666         lli->lli_glimpse_time = ktime_get();
1667         up_read(&lli->lli_glimpse_sem);
1668         return rc;
1669 }
1670
1671 /* dentry may statahead when statahead is enabled and current process has opened
1672  * parent directory, and this dentry hasn't accessed statahead cache before */
1673 static inline bool
1674 dentry_may_statahead(struct inode *dir, struct dentry *dentry)
1675 {
1676         struct ll_inode_info  *lli;
1677         struct ll_dentry_data *ldd;
1678
1679         if (ll_i2sbi(dir)->ll_sa_max == 0)
1680                 return false;
1681
1682         lli = ll_i2info(dir);
1683
1684         /* statahead is not allowed for this dir, there may be three causes:
1685          * 1. dir is not opened.
1686          * 2. statahead hit ratio is too low.
1687          * 3. previous stat started statahead thread failed. */
1688         if (!lli->lli_sa_enabled)
1689                 return false;
1690
1691         /* not the same process, don't statahead */
1692         if (lli->lli_opendir_pid != current->pid)
1693                 return false;
1694
1695         /*
1696          * When stating a dentry, kernel may trigger 'revalidate' or 'lookup'
1697          * multiple times, eg. for 'getattr', 'getxattr' and etc.
1698          * For patchless client, lookup intent is not accurate, which may
1699          * misguide statahead. For example:
1700          * The 'revalidate' call for 'getattr' and 'getxattr' of a dentry will
1701          * have the same intent -- IT_GETATTR, while one dentry should access
1702          * statahead cache once, otherwise statahead windows is messed up.
1703          * The solution is as following:
1704          * Assign 'lld_sa_generation' with 'lli_sa_generation' when a dentry
1705          * IT_GETATTR for the first time, and subsequent IT_GETATTR will
1706          * bypass interacting with statahead cache by checking
1707          * 'lld_sa_generation == lli->lli_sa_generation'.
1708          */
1709         ldd = ll_d2d(dentry);
1710         if (ldd != NULL && lli->lli_sa_generation &&
1711             ldd->lld_sa_generation == lli->lli_sa_generation)
1712                 return false;
1713
1714         return true;
1715 }
1716
1717 int cl_sync_file_range(struct inode *inode, loff_t start, loff_t end,
1718                        enum cl_fsync_mode mode, int ignore_layout);
1719
1720 static inline int ll_file_nolock(const struct file *file)
1721 {
1722         struct ll_file_data *fd = file->private_data;
1723         struct inode *inode = file_inode((struct file *)file);
1724
1725         LASSERT(fd != NULL);
1726         return ((fd->fd_flags & LL_FILE_IGNORE_LOCK) ||
1727                 test_bit(LL_SBI_NOLCK, ll_i2sbi(inode)->ll_flags));
1728 }
1729
1730 static inline void ll_set_lock_data(struct obd_export *exp, struct inode *inode,
1731                                     struct lookup_intent *it, __u64 *bits)
1732 {
1733         if (!it->it_lock_set) {
1734                 struct lustre_handle handle;
1735
1736                 /* If this inode is a remote object, it will get two
1737                  * separate locks in different namespaces, Master MDT,
1738                  * where the name entry is, will grant LOOKUP lock,
1739                  * remote MDT, where the object is, will grant
1740                  * UPDATE|PERM lock. The inode will be attched to both
1741                  * LOOKUP and PERM locks, so revoking either locks will
1742                  * case the dcache being cleared */
1743                 if (it->it_remote_lock_mode) {
1744                         handle.cookie = it->it_remote_lock_handle;
1745                         CDEBUG(D_DLMTRACE, "setting l_data to inode "DFID
1746                                "(%p) for remote lock %#llx\n",
1747                                PFID(ll_inode2fid(inode)), inode,
1748                                handle.cookie);
1749                         md_set_lock_data(exp, &handle, inode, NULL);
1750                 }
1751
1752                 handle.cookie = it->it_lock_handle;
1753
1754                 CDEBUG(D_DLMTRACE, "setting l_data to inode "DFID"(%p)"
1755                        " for lock %#llx\n",
1756                        PFID(ll_inode2fid(inode)), inode, handle.cookie);
1757
1758                 md_set_lock_data(exp, &handle, inode, &it->it_lock_bits);
1759                 it->it_lock_set = 1;
1760         }
1761
1762         if (bits != NULL)
1763                 *bits = it->it_lock_bits;
1764 }
1765
1766 static inline int d_lustre_invalid(const struct dentry *dentry)
1767 {
1768         return !ll_d2d(dentry) || ll_d2d(dentry)->lld_invalid;
1769 }
1770
1771 /*
1772  * Mark dentry INVALID, if dentry refcount is zero (this is normally case for
1773  * ll_md_blocking_ast), it will be pruned by ll_prune_aliases() and
1774  * ll_prune_negative_children(); otherwise dput() of the last refcount will
1775  * unhash this dentry and kill it.
1776  */
1777 static inline void d_lustre_invalidate(struct dentry *dentry)
1778 {
1779         CDEBUG(D_DENTRY, "invalidate dentry %pd (%p) parent %p inode %p refc %d\n",
1780                dentry, dentry,
1781                dentry->d_parent, dentry->d_inode, ll_d_count(dentry));
1782
1783         spin_lock(&dentry->d_lock);
1784         if (lld_is_init(dentry))
1785                 ll_d2d(dentry)->lld_invalid = 1;
1786         spin_unlock(&dentry->d_lock);
1787 }
1788
1789 static inline void d_lustre_revalidate(struct dentry *dentry)
1790 {
1791         spin_lock(&dentry->d_lock);
1792         LASSERT(ll_d2d(dentry));
1793         ll_d2d(dentry)->lld_invalid = 0;
1794         spin_unlock(&dentry->d_lock);
1795 }
1796
1797 static inline dev_t ll_compat_encode_dev(dev_t dev)
1798 {
1799         /* The compat_sys_*stat*() syscalls will fail unless the
1800          * device majors and minors are both less than 256. Note that
1801          * the value returned here will be passed through
1802          * old_encode_dev() in cp_compat_stat(). And so we are not
1803          * trying to return a valid compat (u16) device number, just
1804          * one that will pass the old_valid_dev() check. */
1805
1806         return MKDEV(MAJOR(dev) & 0xff, MINOR(dev) & 0xff);
1807 }
1808
1809 int ll_layout_conf(struct inode *inode, const struct cl_object_conf *conf);
1810 int ll_layout_refresh(struct inode *inode, __u32 *gen);
1811 int ll_layout_restore(struct inode *inode, loff_t start, __u64 length);
1812 int ll_layout_write_intent(struct inode *inode, enum layout_intent_opc opc,
1813                            struct lu_extent *ext);
1814
1815 int ll_xattr_init(void);
1816 void ll_xattr_fini(void);
1817
1818 int ll_page_sync_io(const struct lu_env *env, struct cl_io *io,
1819                     struct cl_page *page, enum cl_req_type crt);
1820
1821 int ll_getparent(struct file *file, struct getparent __user *arg);
1822
1823 /* lcommon_cl.c */
1824 int cl_setattr_ost(struct cl_object *obj, const struct iattr *attr,
1825                    enum op_xvalid xvalid, unsigned int attr_flags);
1826
1827 extern struct lu_env *cl_inode_fini_env;
1828 extern __u16 cl_inode_fini_refcheck;
1829
1830 int cl_file_inode_init(struct inode *inode, struct lustre_md *md);
1831 void cl_inode_fini(struct inode *inode);
1832
1833 u64 cl_fid_build_ino(const struct lu_fid *fid, int api32);
1834 u32 cl_fid_build_gen(const struct lu_fid *fid);
1835
1836 static inline struct pcc_super *ll_i2pccs(struct inode *inode)
1837 {
1838         return &ll_i2sbi(inode)->ll_pcc_super;
1839 }
1840
1841 static inline struct pcc_super *ll_info2pccs(struct ll_inode_info *lli)
1842 {
1843         return ll_i2pccs(ll_info2i(lli));
1844 }
1845
1846 /* crypto.c */
1847 /* The digested form is made of a FID (16 bytes) followed by the second-to-last
1848  * ciphertext block (16 bytes), so a total length of 32 bytes.
1849  * That way, llcrypt does not compute a digested form of this digest.
1850  */
1851 struct ll_digest_filename {
1852         struct lu_fid ldf_fid;
1853         char ldf_excerpt[LL_CRYPTO_BLOCK_SIZE];
1854 };
1855
1856 int ll_prepare_lookup(struct inode *dir, struct dentry *de,
1857                       struct llcrypt_name *fname, struct lu_fid *fid);
1858 int ll_setup_filename(struct inode *dir, const struct qstr *iname,
1859                       int lookup, struct llcrypt_name *fname,
1860                       struct lu_fid *fid);
1861 int ll_fname_disk_to_usr(struct inode *inode,
1862                          u32 hash, u32 minor_hash,
1863                          struct llcrypt_str *iname, struct llcrypt_str *oname,
1864                          struct lu_fid *fid);
1865 int ll_file_open_encrypt(struct inode *inode, struct file *filp);
1866
1867 static inline char *xattr_for_enc(struct inode *inode)
1868 {
1869         if (ll_sbi_has_name_encrypt(ll_i2sbi(inode)))
1870                 return LL_XATTR_NAME_ENCRYPTION_CONTEXT;
1871
1872         return LL_XATTR_NAME_ENCRYPTION_CONTEXT_OLD;
1873 }
1874
1875 #ifdef HAVE_LUSTRE_CRYPTO
1876 extern const struct llcrypt_operations lustre_cryptops;
1877 #endif
1878
1879 /* llite/llite_foreign.c */
1880 int ll_manage_foreign(struct inode *inode, struct lustre_md *lmd);
1881 bool ll_foreign_is_openable(struct dentry *dentry, unsigned int flags);
1882 bool ll_foreign_is_removable(struct dentry *dentry, bool unset);
1883
1884 int ll_filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf);
1885
1886 #endif /* LLITE_INTERNAL_H */