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