Whamcloud - gitweb
367348d7bf52ecd7969da451ce8f39ca6fb8e9f8
[fs/lustre-release.git] / lustre / llite / llite_internal.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Copyright (C) 2003 Cluster File Systems, Inc.
5  *
6  * This code is issued under the GNU General Public License.
7  * See the file COPYING in this distribution
8  */
9
10 #ifndef LLITE_INTERNAL_H
11 #define LLITE_INTERNAL_H
12
13 #include <linux/lustre_debug.h>
14
15 /* default to about 40meg of readahead on a given system.  That much tied
16  * up in 512k readahead requests serviced at 40ms each is about 1GB/s. */
17 #define SBI_DEFAULT_RA_MAX ((40 << 20) >> PAGE_CACHE_SHIFT)
18
19 enum ra_stat {
20         RA_STAT_HIT = 0,
21         RA_STAT_MISS,
22         RA_STAT_DISTANT_READPAGE,
23         RA_STAT_MISS_IN_WINDOW,
24         RA_STAT_FAILED_MATCH,
25         RA_STAT_DISCARDED,
26         RA_STAT_ZERO_LEN,
27         RA_STAT_ZERO_WINDOW,
28         RA_STAT_EOF,
29         RA_STAT_MAX_IN_FLIGHT,
30         _NR_RA_STAT,
31 };
32
33 struct ll_ra_info {
34         unsigned long             ra_cur_pages;
35         unsigned long             ra_max_pages;
36         unsigned long             ra_stats[_NR_RA_STAT];
37 };
38
39 /* after roughly how long should we remove an inactive mount? */
40 #define GNS_MOUNT_TIMEOUT 120
41
42 /* how often should the GNS timer look for mounts to cleanup? */
43 #define GNS_TICK_TIMEOUT  1
44
45 /* how many times GNS will try to wait for 1 second for mount */
46 #define GNS_WAIT_ATTEMPTS 10
47
48 struct ll_sb_info {
49         /* this protects pglist and max_r_a_pages.  It isn't safe to grab from
50          * interrupt contexts. */
51         spinlock_t                ll_lock;
52         
53         struct obd_uuid           ll_sb_uuid;
54         struct obd_export        *ll_md_exp;
55         struct obd_export        *ll_dt_exp;
56         struct lov_desc           ll_dt_desc;
57         struct proc_dir_entry    *ll_proc_root;
58         struct lustre_id          ll_rootid;     /* root lustre id */
59
60         struct lustre_mount_data *ll_lmd;
61         char                     *ll_instance;
62
63         int                       ll_flags;
64         struct list_head          ll_conn_chain; /* per-conn chain of SBs */
65
66         struct hlist_head         ll_orphan_dentry_list; /*please don't ask -p*/
67         struct ll_close_queue    *ll_lcq;
68
69         struct lprocfs_stats     *ll_stats;      /* lprocfs stats counter */
70
71         unsigned long             ll_pglist_gen;
72         struct list_head          ll_pglist;
73
74         struct ll_ra_info         ll_ra_info;
75                                                                                                                                                                                                      
76         /* times spent waiting for locks in each call site.  These are
77          * all protected by the ll_lock */
78         struct obd_service_time   ll_read_stime;
79         struct obd_service_time   ll_write_stime;
80         struct obd_service_time   ll_grouplock_stime;
81         struct obd_service_time   ll_seek_stime;
82         struct obd_service_time   ll_setattr_stime;
83         struct obd_service_time   ll_brw_stime;
84 //      struct obd_service_time   ll_done_stime;
85
86         int                       ll_config_version; /* last-applied update */
87
88         /* list of GNS mounts; protected by the dcache_lock */
89         struct list_head          ll_mnt_list;
90
91         struct semaphore          ll_gns_sem;
92         spinlock_t                ll_gns_lock;
93         wait_queue_head_t         ll_gns_waitq;
94         int                       ll_gns_state;
95         struct timer_list         ll_gns_timer;
96         struct list_head          ll_gns_sbi_head;
97
98         unsigned long             ll_gns_tick;
99         unsigned long             ll_gns_timeout;
100         struct completion         ll_gns_mount_finished;
101
102         /* path to upcall */
103         char                      ll_gns_upcall[PATH_MAX];
104
105         /* mount object entry name */
106         char                      ll_gns_oname[PATH_MAX];
107 };
108
109 struct ll_gns_ctl {
110         struct completion gc_starting;
111         struct completion gc_finishing;
112 };
113
114 /* mounting states */
115 #define LL_GNS_IDLE               (1 << 0)
116 #define LL_GNS_MOUNTING           (1 << 1)
117 #define LL_GNS_FINISHED           (1 << 2)
118
119 /* mounts checking flags */
120 #define LL_GNS_UMOUNT             (1 << 0)
121 #define LL_GNS_CHECK              (1 << 1)
122
123 struct ll_readahead_state {
124         spinlock_t      ras_lock;
125         unsigned long   ras_last_readpage, ras_consecutive;
126         unsigned long   ras_window_start, ras_window_len;
127         unsigned long   ras_next_readahead;
128
129 };
130
131 extern kmem_cache_t *ll_file_data_slab;
132 extern kmem_cache_t *ll_intent_slab;
133 struct lustre_handle;
134
135 struct ll_file_data {
136         struct ll_readahead_state fd_ras;
137         __u32 fd_flags;
138         int fd_omode;
139         struct lustre_handle fd_cwlockh;
140         unsigned long fd_gid;
141 };
142
143 struct lov_stripe_md;
144
145 extern spinlock_t inode_lock;
146
147 extern void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi);
148 extern struct proc_dir_entry *proc_lustre_fs_root;
149
150 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
151 # define hlist_del_init list_del_init
152 #endif
153
154 static inline struct inode *ll_info2i(struct ll_inode_info *lli)
155 {
156 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
157         return &lli->lli_vfs_inode;
158 #else
159         return list_entry(lli, struct inode, u.generic_ip);
160 #endif
161 }
162
163
164 struct it_cb_data {
165         struct inode *icbd_parent;
166         struct dentry **icbd_childp;
167         obd_id hash;
168 };
169
170 #define LLAP_MAGIC 98764321
171
172 struct ll_async_page {
173         int             llap_magic;
174         void            *llap_cookie;
175         struct page     *llap_page;
176         struct list_head llap_pending_write;
177          /* only trust these if the page lock is providing exclusion */
178         unsigned         llap_write_queued:1,
179                          llap_defer_uptodate:1,
180                          llap_origin:3,
181                          llap_ra_used:1;
182
183         struct list_head llap_proc_item;
184 };
185
186 enum {
187         LLAP_ORIGIN_UNKNOWN = 0,
188         LLAP_ORIGIN_READPAGE,
189         LLAP_ORIGIN_READAHEAD,
190         LLAP_ORIGIN_COMMIT_WRITE,
191         LLAP_ORIGIN_WRITEPAGE,
192         LLAP__ORIGIN_MAX,
193 };
194
195 /* llite/lproc_llite.c */
196 int lprocfs_register_mountpoint(struct proc_dir_entry *parent,
197                                 struct super_block *sb, char *lov,
198                                 char *lmv);
199 void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi);
200
201 /* llite/dir.c */
202 extern struct file_operations ll_dir_operations;
203 extern struct inode_operations ll_dir_inode_operations;
204
205 /* llite/namei.c */
206 int ll_objects_destroy(struct ptlrpc_request *request, 
207                        struct inode *dir, int offset);
208 struct inode *ll_iget(struct super_block *sb, ino_t hash,
209                       struct lustre_md *lic);
210 struct dentry *ll_find_alias(struct inode *, struct dentry *);
211 int ll_mdc_cancel_unused(struct lustre_handle *, struct inode *, int flags,
212                          void *opaque);
213 int ll_mdc_blocking_ast(struct ldlm_lock *, struct ldlm_lock_desc *,
214                         void *data, int flag);
215 /* llite/rw.c */
216 int ll_prepare_write(struct file *, struct page *, unsigned from, unsigned to);
217 int ll_commit_write(struct file *, struct page *, unsigned from, unsigned to);
218 int ll_writepage(struct page *page);
219 void ll_inode_fill_obdo(struct inode *inode, int cmd, struct obdo *oa);
220 void ll_ap_completion(void *data, int cmd, struct obdo *oa, int rc);
221 void ll_removepage(struct page *page);
222 int ll_readpage(struct file *file, struct page *page);
223 struct ll_async_page *llap_from_cookie(void *cookie);
224 struct ll_async_page *llap_from_page(struct page *page, unsigned origin);
225 struct ll_async_page *llap_cast_private(struct page *page);
226 void ll_readahead_init(struct inode *inode, struct ll_readahead_state *ras);
227
228 void ll_ra_accounting(struct page *page, struct address_space *mapping);
229 void ll_truncate(struct inode *inode);
230
231 /* llite/file.c */
232 extern struct file_operations ll_file_operations;
233 extern struct inode_operations ll_file_inode_operations;
234 int ll_md_real_close(struct obd_export *md_exp,
235                      struct inode *inode, int flags);
236 extern int ll_inode_revalidate_it(struct dentry *);
237 extern int ll_setxattr(struct dentry *, const char *, const void *,
238                        size_t, int);
239 extern int ll_getxattr(struct dentry *, const char *, void *, size_t);
240 extern int ll_listxattr(struct dentry *, char *, size_t);
241 extern int ll_removexattr(struct dentry *, const char *);
242 extern int ll_inode_permission(struct inode *, int, struct nameidata *);
243 int ll_refresh_lsm(struct inode *inode, struct lov_stripe_md *lsm);
244 int ll_extent_lock(struct ll_file_data *, struct inode *,
245                    struct lov_stripe_md *, int mode, ldlm_policy_data_t *,
246                    struct lustre_handle *, int ast_flags,
247                    struct obd_service_time *);
248 int ll_extent_unlock(struct ll_file_data *, struct inode *,
249                      struct lov_stripe_md *, int mode, struct lustre_handle *);
250 int ll_file_open(struct inode *inode, struct file *file);
251 int ll_file_release(struct inode *inode, struct file *file);
252 int ll_lsm_getattr(struct obd_export *, struct lov_stripe_md *, struct obdo *);
253 int ll_glimpse_size(struct inode *inode);
254 int ll_local_open(struct file *file, struct lookup_intent *it,
255                   struct obd_client_handle *och);
256 int ll_md_close(struct obd_export *md_exp, struct inode *inode,
257                 struct file *file);
258 int ll_md_och_close(struct obd_export *md_exp, struct inode *inode,
259                     struct obd_client_handle *och);
260 void ll_och_fill(struct inode *inode, struct lookup_intent *it,
261                  struct obd_client_handle *och);
262
263 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,5,0))
264 int ll_getattr(struct vfsmount *mnt, struct dentry *de, struct kstat *stat);
265 #endif
266 void ll_stime_record(struct ll_sb_info *sbi, struct timeval *start,
267                      struct obd_service_time *stime);
268
269 /* llite/dcache.c */
270 void ll_intent_drop_lock(struct lookup_intent *);
271 void ll_intent_release(struct lookup_intent *);
272 int ll_intent_alloc(struct lookup_intent *);
273 void ll_intent_free(struct lookup_intent *it);
274 extern void ll_set_dd(struct dentry *de);
275 void ll_unhash_aliases(struct inode *);
276 void ll_frob_intent(struct lookup_intent **itp, struct lookup_intent *deft);
277 void ll_lookup_finish_locks(struct lookup_intent *it, struct dentry *dentry);
278 int revalidate_it_finish(struct ptlrpc_request *request, int offset,
279                          struct lookup_intent *it, struct dentry *de);
280
281
282 /* llite/llite_gns.c */
283 int ll_gns_start_thread(void);
284 void ll_gns_stop_thread(void);
285
286 int ll_gns_mount_object(struct dentry *dentry,
287                         struct vfsmount *mnt);
288 int ll_gns_umount_object(struct vfsmount *mnt);
289
290 int ll_gns_check_mounts(struct ll_sb_info *sbi,
291                         int flags);
292
293 void ll_gns_timer_callback(unsigned long data);
294 void ll_gns_add_timer(struct ll_sb_info *sbi);
295 void ll_gns_del_timer(struct ll_sb_info *sbi);
296
297 /* llite/llite_lib.c */
298 extern struct super_operations lustre_super_operations;
299
300 char *ll_read_opt(const char *opt, char *data);
301 int ll_set_opt(const char *opt, char *data, int fl);
302 void ll_options(char *options, char **ost, char **mds, char **sec, 
303                 int *async, int *flags);
304 void ll_lli_init(struct ll_inode_info *lli);
305 int ll_fill_super(struct super_block *sb, void *data, int silent);
306 int lustre_fill_super(struct super_block *sb, void *data, int silent);
307 void lustre_put_super(struct super_block *sb);
308 struct inode *ll_inode_from_lock(struct ldlm_lock *lock);
309 void ll_clear_inode(struct inode *inode);
310 int ll_attr2inode(struct inode *inode, struct iattr *attr, int trunc);
311 int ll_setattr_raw(struct inode *inode, struct iattr *attr);
312 int ll_setattr(struct dentry *de, struct iattr *attr);
313 int ll_statfs(struct super_block *sb, struct kstatfs *sfs);
314 int ll_statfs_internal(struct super_block *sb, struct obd_statfs *osfs,
315                        unsigned long maxage);
316 void ll_update_inode(struct inode *inode, struct lustre_md *);
317 int it_disposition(struct lookup_intent *it, int flag);
318 void it_set_disposition(struct lookup_intent *it, int flag);
319 void ll_read_inode2(struct inode *inode, void *opaque);
320 void ll_delete_inode(struct inode *inode);
321 int ll_iocontrol(struct inode *inode, struct file *file,
322                  unsigned int cmd, unsigned long arg);
323 void ll_umount_begin(struct super_block *sb);
324 int ll_prep_inode(struct obd_export *, struct obd_export *, struct inode **inode,
325                   struct ptlrpc_request *req, int offset, struct super_block *);
326 __u32 get_uuid2int(const char *name, int len);
327 struct dentry *ll_fh_to_dentry(struct super_block *sb, __u32 *data, int len,
328                                int fhtype, int parent);
329 int ll_dentry_to_fh(struct dentry *, __u32 *datap, int *lenp, int need_parent);
330 int null_if_equal(struct ldlm_lock *lock, void *data);
331 int ll_process_config_update(struct ll_sb_info *sbi, int clean);
332
333 /* llite/special.c */
334 extern struct inode_operations ll_special_inode_operations;
335 extern struct file_operations ll_special_chr_inode_fops;
336 extern struct file_operations ll_special_chr_file_fops;
337 extern struct file_operations ll_special_blk_inode_fops;
338 extern struct file_operations ll_special_fifo_inode_fops;
339 extern struct file_operations ll_special_fifo_file_fops;
340 extern struct file_operations ll_special_sock_inode_fops;
341
342 /* llite/symlink.c */
343 extern struct inode_operations ll_fast_symlink_inode_operations;
344
345 /* llite/llite_close.c */
346 struct ll_close_queue {
347         spinlock_t              lcq_lock;
348         struct list_head        lcq_list;
349         wait_queue_head_t       lcq_waitq;
350         struct completion       lcq_comp;
351 };
352
353 void llap_write_pending(struct inode *inode, struct ll_async_page *llap);
354 void llap_write_complete(struct inode *inode, struct ll_async_page *llap);
355 void ll_open_complete(struct inode *inode);
356 int ll_is_inode_dirty(struct inode *inode);
357 void ll_try_done_writing(struct inode *inode);
358 void ll_queue_done_writing(struct inode *inode);
359 void ll_close_thread_shutdown(struct ll_close_queue *lcq);
360 int ll_close_thread_start(struct ll_close_queue **lcq_ret);
361
362
363 /* llite/llite_mmap.c */
364 #if  (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
365 typedef struct rb_root  rb_root_t;
366 typedef struct rb_node  rb_node_t;
367 #endif
368
369 struct ll_lock_tree_node;
370 struct ll_lock_tree {
371         rb_root_t                       lt_root;
372         struct list_head                lt_locked_list;
373         struct ll_file_data             *lt_fd;
374 };
375 int ll_teardown_mmaps(struct address_space *mapping, __u64 first,
376                       __u64 last);
377 int ll_file_mmap(struct file * file, struct vm_area_struct * vma);
378 struct ll_lock_tree_node * ll_node_from_inode(struct inode *inode, __u64 start,
379                                               __u64 end, ldlm_mode_t mode);
380 int ll_tree_lock(struct ll_lock_tree *tree,
381                  struct ll_lock_tree_node *first_node, struct inode *inode,
382                  const char *buf, size_t count, int ast_flags);
383 int ll_tree_unlock(struct ll_lock_tree *tree, struct inode *inode);
384
385 int ll_get_fid(struct obd_export *exp, struct lustre_id *idp,
386                char *filename, struct lustre_id *ret);
387
388 /* generic */
389 #define LL_SBI_NOLCK           0x1
390 #define LL_SBI_READAHEAD       0x2
391 #define LL_SUPER_MAGIC         0x0BD00BD0
392 #define LL_MAX_BLKSIZE         (4UL * 1024 * 1024)
393
394 #if  (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
395 #define    ll_s2sbi(sb)        ((struct ll_sb_info *)((sb)->s_fs_info))
396 #define    ll_set_sbi(sb, sbi) ((sb)->s_fs_info = sbi)
397 static inline __u64 ll_ts2u64(struct timespec *time)
398 {
399         __u64 t = time->tv_sec;
400         return t;
401 }
402 #else  /* 2.4 here */
403 #define    ll_s2sbi(sb)        ((struct ll_sb_info *)((sb)->u.generic_sbp))
404 #define    ll_set_sbi(sb, sbi) ((sb)->u.generic_sbp = sbi)
405 static inline __u64 ll_ts2u64(time_t *time)
406 {
407         return *time;
408 }
409 #endif
410
411 /* don't need an addref as the sb_info should be holding one */
412 static inline struct obd_export *ll_s2dtexp(struct super_block *sb)
413 {
414         return ll_s2sbi(sb)->ll_dt_exp;
415 }
416
417 /* don't need an addref as the sb_info should be holding one */
418 static inline struct obd_export *ll_s2mdexp(struct super_block *sb)
419 {
420         return ll_s2sbi(sb)->ll_md_exp;
421 }
422
423 static inline struct client_obd *sbi2md(struct ll_sb_info *sbi)
424 {
425         struct obd_device *obd = sbi->ll_md_exp->exp_obd;
426         if (obd == NULL)
427                 LBUG();
428         return &obd->u.cli;
429 }
430
431 // FIXME: replace the name of this with LL_SB to conform to kernel stuff
432 static inline struct ll_sb_info *ll_i2sbi(struct inode *inode)
433 {
434         return ll_s2sbi(inode->i_sb);
435 }
436
437 static inline struct obd_export *ll_i2dtexp(struct inode *inode)
438 {
439         return ll_s2dtexp(inode->i_sb);
440 }
441
442 static inline struct obd_export *ll_i2mdexp(struct inode *inode)
443 {
444         return ll_s2mdexp(inode->i_sb);
445 }
446
447 static inline int ll_mds_max_easize(struct super_block *sb)
448 {
449         return sbi2md(ll_s2sbi(sb))->cl_max_mds_easize;
450 }
451
452 static inline __u64 ll_file_maxbytes(struct inode *inode)
453 {
454         return ll_i2info(inode)->lli_maxbytes;
455 }
456
457 static inline void
458 ll_inode2id(struct lustre_id *id, struct inode *inode)
459 {
460         struct lustre_id *lid = &ll_i2info(inode)->lli_id;
461
462         mdc_pack_id(id, inode->i_ino, inode->i_generation,
463                     (inode->i_mode & S_IFMT), id_group(lid),
464                     id_fid(lid));
465 }
466
467 static inline void 
468 ll_prepare_mdc_data(struct mdc_op_data *data, struct inode *i1,
469                     struct inode *i2, const char *name, int namelen,
470                     int mode)
471 {
472         LASSERT(i1);
473         ll_inode2id(&data->id1, i1);
474
475         /* it could be directory with mea */
476         data->mea1 = ll_i2info(i1)->lli_mea;
477
478         if (i2) {
479                 ll_inode2id(&data->id2, i2);
480                 data->mea2 = ll_i2info(i2)->lli_mea;
481         }
482
483         data->valid = 0;
484         data->name = name;
485         data->namelen = namelen;
486         data->create_mode = mode;
487         data->mod_time = LTIME_S(CURRENT_TIME);
488 }
489
490 #endif /* LLITE_INTERNAL_H */