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