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