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