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