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