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