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