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