1
2
3
4
5
6
7
8
9
10
11
12#include <linux/compiler.h>
13#include <linux/kernel.h>
14#include <linux/fs.h>
15#include <linux/pagemap.h>
16#include <linux/skbuff.h>
17#include <linux/rxrpc.h>
18#include <linux/key.h>
19#include <linux/workqueue.h>
20#include <linux/sched.h>
21#include <linux/fscache.h>
22#include <linux/backing-dev.h>
23
24#include "afs.h"
25#include "afs_vl.h"
26
27#define AFS_CELL_MAX_ADDRS 15
28
29struct pagevec;
30struct afs_call;
31
32typedef enum {
33 AFS_VL_NEW,
34 AFS_VL_CREATING,
35 AFS_VL_VALID,
36 AFS_VL_NO_VOLUME,
37 AFS_VL_UPDATING,
38 AFS_VL_VOLUME_DELETED,
39 AFS_VL_UNCERTAIN,
40} __attribute__((packed)) afs_vlocation_state_t;
41
42struct afs_mount_params {
43 bool rwpath;
44 bool force;
45 bool autocell;
46 afs_voltype_t type;
47 int volnamesz;
48 const char *volname;
49 struct afs_cell *cell;
50 struct afs_volume *volume;
51 struct key *key;
52};
53
54
55
56
57struct afs_wait_mode {
58
59 void (*rx_wakeup)(struct afs_call *call);
60
61
62 int (*wait)(struct afs_call *call);
63
64
65 void (*async_complete)(void *reply, int error);
66};
67
68extern const struct afs_wait_mode afs_sync_call;
69extern const struct afs_wait_mode afs_async_call;
70
71
72
73
74struct afs_call {
75 const struct afs_call_type *type;
76 const struct afs_wait_mode *wait_mode;
77 wait_queue_head_t waitq;
78 void (*async_workfn)(struct afs_call *call);
79 struct work_struct async_work;
80 struct work_struct work;
81 struct sk_buff_head rx_queue;
82 struct rxrpc_call *rxcall;
83 struct key *key;
84 struct afs_server *server;
85 void *request;
86 struct address_space *mapping;
87 struct afs_writeback *wb;
88 void *buffer;
89 void *reply;
90 void *reply2;
91 void *reply3;
92 void *reply4;
93 pgoff_t first;
94 pgoff_t last;
95 enum {
96 AFS_CALL_REQUESTING,
97 AFS_CALL_AWAIT_REPLY,
98 AFS_CALL_AWAIT_OP_ID,
99 AFS_CALL_AWAIT_REQUEST,
100 AFS_CALL_REPLYING,
101 AFS_CALL_AWAIT_ACK,
102 AFS_CALL_COMPLETE,
103 AFS_CALL_BUSY,
104 AFS_CALL_ABORTED,
105 AFS_CALL_ERROR,
106 } state;
107 int error;
108 unsigned request_size;
109 unsigned reply_max;
110 unsigned reply_size;
111 unsigned first_offset;
112 unsigned last_to;
113 unsigned offset;
114 unsigned char unmarshall;
115 bool incoming;
116 bool send_pages;
117 u16 service_id;
118 __be16 port;
119 __be32 operation_ID;
120 u32 count;
121 __be32 tmp;
122 afs_dataversion_t store_version;
123};
124
125struct afs_call_type {
126 const char *name;
127
128
129
130
131 int (*deliver)(struct afs_call *call, struct sk_buff *skb,
132 bool last);
133
134
135 int (*abort_to_error)(u32 abort_code);
136
137
138 void (*destructor)(struct afs_call *call);
139};
140
141
142
143
144struct afs_writeback {
145 struct list_head link;
146 struct work_struct writer;
147 struct afs_vnode *vnode;
148 struct key *key;
149 wait_queue_head_t waitq;
150 pgoff_t first;
151 pgoff_t point;
152 pgoff_t last;
153 unsigned offset_first;
154 unsigned to_last;
155 int num_conflicts;
156 int usage;
157 bool conflicts;
158 enum {
159 AFS_WBACK_SYNCING,
160 AFS_WBACK_PENDING,
161 AFS_WBACK_CONFLICTING,
162 AFS_WBACK_WRITING,
163 AFS_WBACK_COMPLETE
164 } state __attribute__((packed));
165};
166
167
168
169
170
171struct afs_super_info {
172 struct afs_volume *volume;
173 char rwparent;
174};
175
176static inline struct afs_super_info *AFS_FS_S(struct super_block *sb)
177{
178 return sb->s_fs_info;
179}
180
181extern struct file_system_type afs_fs_type;
182
183
184
185
186struct afs_cache_cell {
187 char name[AFS_MAXCELLNAME];
188 struct in_addr vl_servers[15];
189};
190
191
192
193
194struct afs_cell {
195 atomic_t usage;
196 struct list_head link;
197 struct key *anonymous_key;
198 struct list_head proc_link;
199#ifdef CONFIG_AFS_FSCACHE
200 struct fscache_cookie *cache;
201#endif
202
203
204 rwlock_t servers_lock;
205 struct list_head servers;
206
207
208 struct rw_semaphore vl_sem;
209 struct list_head vl_list;
210 spinlock_t vl_lock;
211 unsigned short vl_naddrs;
212 unsigned short vl_curr_svix;
213 struct in_addr vl_addrs[AFS_CELL_MAX_ADDRS];
214
215 char name[0];
216};
217
218
219
220
221struct afs_cache_vlocation {
222
223 uint8_t name[AFS_MAXVOLNAME + 1];
224
225 uint8_t nservers;
226 uint8_t vidmask;
227 uint8_t srvtmask[8];
228#define AFS_VOL_VTM_RW 0x01
229#define AFS_VOL_VTM_RO 0x02
230#define AFS_VOL_VTM_BAK 0x04
231
232 afs_volid_t vid[3];
233 struct in_addr servers[8];
234 time_t rtime;
235};
236
237
238
239
240struct afs_cache_vhash {
241 afs_voltype_t vtype;
242 uint8_t hash_bucket;
243} __attribute__((packed));
244
245
246
247
248struct afs_vlocation {
249 atomic_t usage;
250 time_t time_of_death;
251 struct list_head link;
252 struct list_head grave;
253 struct list_head update;
254 struct afs_cell *cell;
255#ifdef CONFIG_AFS_FSCACHE
256 struct fscache_cookie *cache;
257#endif
258 struct afs_cache_vlocation vldb;
259 struct afs_volume *vols[3];
260 wait_queue_head_t waitq;
261 time_t update_at;
262 spinlock_t lock;
263 afs_vlocation_state_t state;
264 unsigned short upd_rej_cnt;
265 unsigned short upd_busy_cnt;
266 bool valid;
267};
268
269
270
271
272struct afs_server {
273 atomic_t usage;
274 time_t time_of_death;
275 struct in_addr addr;
276 struct afs_cell *cell;
277 struct list_head link;
278 struct list_head grave;
279 struct rb_node master_rb;
280 struct rw_semaphore sem;
281
282
283 struct rb_root fs_vnodes;
284 unsigned long fs_act_jif;
285 unsigned long fs_dead_jif;
286 spinlock_t fs_lock;
287 int fs_state;
288
289
290 struct rb_root cb_promises;
291 struct delayed_work cb_updater;
292 struct delayed_work cb_break_work;
293 wait_queue_head_t cb_break_waitq;
294 spinlock_t cb_lock;
295 struct afs_callback cb_break[64];
296 atomic_t cb_break_n;
297 u8 cb_break_head;
298 u8 cb_break_tail;
299};
300
301
302
303
304struct afs_volume {
305 atomic_t usage;
306 struct afs_cell *cell;
307 struct afs_vlocation *vlocation;
308#ifdef CONFIG_AFS_FSCACHE
309 struct fscache_cookie *cache;
310#endif
311 afs_volid_t vid;
312 afs_voltype_t type;
313 char type_force;
314 unsigned short nservers;
315 unsigned short rjservers;
316 struct afs_server *servers[8];
317 struct rw_semaphore server_sem;
318 struct backing_dev_info bdi;
319};
320
321
322
323
324struct afs_cache_vnode {
325 afs_vnodeid_t vnode_id;
326 unsigned vnode_unique;
327 afs_dataversion_t data_version;
328};
329
330
331
332
333struct afs_vnode {
334 struct inode vfs_inode;
335
336 struct afs_volume *volume;
337 struct afs_server *server;
338 struct afs_fid fid;
339 struct afs_file_status status;
340#ifdef CONFIG_AFS_FSCACHE
341 struct fscache_cookie *cache;
342#endif
343 struct afs_permits *permits;
344 struct mutex permits_lock;
345 struct mutex validate_lock;
346 wait_queue_head_t update_waitq;
347 int update_cnt;
348
349 spinlock_t writeback_lock;
350 spinlock_t lock;
351 unsigned long flags;
352#define AFS_VNODE_CB_BROKEN 0
353#define AFS_VNODE_UNSET 1
354#define AFS_VNODE_MODIFIED 2
355#define AFS_VNODE_ZAP_DATA 3
356#define AFS_VNODE_DELETED 4
357#define AFS_VNODE_MOUNTPOINT 5
358#define AFS_VNODE_LOCKING 6
359#define AFS_VNODE_READLOCKED 7
360#define AFS_VNODE_WRITELOCKED 8
361#define AFS_VNODE_UNLOCKING 9
362#define AFS_VNODE_AUTOCELL 10
363#define AFS_VNODE_PSEUDODIR 11
364
365 long acl_order;
366
367 struct list_head writebacks;
368 struct list_head pending_locks;
369 struct list_head granted_locks;
370 struct delayed_work lock_work;
371 struct key *unlock_key;
372
373
374 struct rb_node server_rb;
375 struct rb_node cb_promise;
376 struct work_struct cb_broken_work;
377 time_t cb_expires;
378 time_t cb_expires_at;
379 unsigned cb_version;
380 unsigned cb_expiry;
381 afs_callback_type_t cb_type;
382 bool cb_promised;
383};
384
385
386
387
388struct afs_permit {
389 struct key *key;
390 afs_access_t access_mask;
391};
392
393
394
395
396struct afs_permits {
397 struct rcu_head rcu;
398 int count;
399 struct afs_permit permits[0];
400};
401
402
403
404
405struct afs_interface {
406 struct in_addr address;
407 struct in_addr netmask;
408 unsigned mtu;
409};
410
411
412
413
414
415
416
417
418
419struct afs_uuid {
420 u32 time_low;
421 u16 time_mid;
422 u16 time_hi_and_version;
423#define AFS_UUID_TO_UNIX_TIME 0x01b21dd213814000ULL
424#define AFS_UUID_TIMEHI_MASK 0x0fff
425#define AFS_UUID_VERSION_TIME 0x1000
426#define AFS_UUID_VERSION_NAME 0x3000
427#define AFS_UUID_VERSION_RANDOM 0x4000
428 u8 clock_seq_hi_and_reserved;
429#define AFS_UUID_CLOCKHI_MASK 0x3f
430#define AFS_UUID_VARIANT_STD 0x80
431 u8 clock_seq_low;
432 u8 node[6];
433};
434
435
436
437
438
439#ifdef CONFIG_AFS_FSCACHE
440extern struct fscache_netfs afs_cache_netfs;
441extern struct fscache_cookie_def afs_cell_cache_index_def;
442extern struct fscache_cookie_def afs_vlocation_cache_index_def;
443extern struct fscache_cookie_def afs_volume_cache_index_def;
444extern struct fscache_cookie_def afs_vnode_cache_index_def;
445#else
446#define afs_cell_cache_index_def (*(struct fscache_cookie_def *) NULL)
447#define afs_vlocation_cache_index_def (*(struct fscache_cookie_def *) NULL)
448#define afs_volume_cache_index_def (*(struct fscache_cookie_def *) NULL)
449#define afs_vnode_cache_index_def (*(struct fscache_cookie_def *) NULL)
450#endif
451
452
453
454
455extern void afs_init_callback_state(struct afs_server *);
456extern void afs_broken_callback_work(struct work_struct *);
457extern void afs_break_callbacks(struct afs_server *, size_t,
458 struct afs_callback[]);
459extern void afs_discard_callback_on_delete(struct afs_vnode *);
460extern void afs_give_up_callback(struct afs_vnode *);
461extern void afs_dispatch_give_up_callbacks(struct work_struct *);
462extern void afs_flush_callback_breaks(struct afs_server *);
463extern int __init afs_callback_update_init(void);
464extern void afs_callback_update_kill(void);
465
466
467
468
469extern struct rw_semaphore afs_proc_cells_sem;
470extern struct list_head afs_proc_cells;
471
472#define afs_get_cell(C) do { atomic_inc(&(C)->usage); } while(0)
473extern int afs_cell_init(char *);
474extern struct afs_cell *afs_cell_create(const char *, unsigned, char *, bool);
475extern struct afs_cell *afs_cell_lookup(const char *, unsigned, bool);
476extern struct afs_cell *afs_grab_cell(struct afs_cell *);
477extern void afs_put_cell(struct afs_cell *);
478extern void afs_cell_purge(void);
479
480
481
482
483extern bool afs_cm_incoming_call(struct afs_call *);
484
485
486
487
488extern const struct inode_operations afs_dir_inode_operations;
489extern const struct dentry_operations afs_fs_dentry_operations;
490extern const struct file_operations afs_dir_file_operations;
491
492
493
494
495extern const struct address_space_operations afs_fs_aops;
496extern const struct inode_operations afs_file_inode_operations;
497extern const struct file_operations afs_file_operations;
498
499extern int afs_open(struct inode *, struct file *);
500extern int afs_release(struct inode *, struct file *);
501extern int afs_page_filler(void *, struct page *);
502
503
504
505
506extern void __exit afs_kill_lock_manager(void);
507extern void afs_lock_work(struct work_struct *);
508extern void afs_lock_may_be_available(struct afs_vnode *);
509extern int afs_lock(struct file *, int, struct file_lock *);
510extern int afs_flock(struct file *, int, struct file_lock *);
511
512
513
514
515extern int afs_fs_fetch_file_status(struct afs_server *, struct key *,
516 struct afs_vnode *, struct afs_volsync *,
517 const struct afs_wait_mode *);
518extern int afs_fs_give_up_callbacks(struct afs_server *,
519 const struct afs_wait_mode *);
520extern int afs_fs_fetch_data(struct afs_server *, struct key *,
521 struct afs_vnode *, off_t, size_t, struct page *,
522 const struct afs_wait_mode *);
523extern int afs_fs_create(struct afs_server *, struct key *,
524 struct afs_vnode *, const char *, umode_t,
525 struct afs_fid *, struct afs_file_status *,
526 struct afs_callback *,
527 const struct afs_wait_mode *);
528extern int afs_fs_remove(struct afs_server *, struct key *,
529 struct afs_vnode *, const char *, bool,
530 const struct afs_wait_mode *);
531extern int afs_fs_link(struct afs_server *, struct key *, struct afs_vnode *,
532 struct afs_vnode *, const char *,
533 const struct afs_wait_mode *);
534extern int afs_fs_symlink(struct afs_server *, struct key *,
535 struct afs_vnode *, const char *, const char *,
536 struct afs_fid *, struct afs_file_status *,
537 const struct afs_wait_mode *);
538extern int afs_fs_rename(struct afs_server *, struct key *,
539 struct afs_vnode *, const char *,
540 struct afs_vnode *, const char *,
541 const struct afs_wait_mode *);
542extern int afs_fs_store_data(struct afs_server *, struct afs_writeback *,
543 pgoff_t, pgoff_t, unsigned, unsigned,
544 const struct afs_wait_mode *);
545extern int afs_fs_setattr(struct afs_server *, struct key *,
546 struct afs_vnode *, struct iattr *,
547 const struct afs_wait_mode *);
548extern int afs_fs_get_volume_status(struct afs_server *, struct key *,
549 struct afs_vnode *,
550 struct afs_volume_status *,
551 const struct afs_wait_mode *);
552extern int afs_fs_set_lock(struct afs_server *, struct key *,
553 struct afs_vnode *, afs_lock_type_t,
554 const struct afs_wait_mode *);
555extern int afs_fs_extend_lock(struct afs_server *, struct key *,
556 struct afs_vnode *,
557 const struct afs_wait_mode *);
558extern int afs_fs_release_lock(struct afs_server *, struct key *,
559 struct afs_vnode *,
560 const struct afs_wait_mode *);
561
562
563
564
565extern struct inode *afs_iget_autocell(struct inode *, const char *, int,
566 struct key *);
567extern struct inode *afs_iget(struct super_block *, struct key *,
568 struct afs_fid *, struct afs_file_status *,
569 struct afs_callback *);
570extern void afs_zap_data(struct afs_vnode *);
571extern int afs_validate(struct afs_vnode *, struct key *);
572extern int afs_getattr(struct vfsmount *, struct dentry *, struct kstat *);
573extern int afs_setattr(struct dentry *, struct iattr *);
574extern void afs_evict_inode(struct inode *);
575extern int afs_drop_inode(struct inode *);
576
577
578
579
580extern struct workqueue_struct *afs_wq;
581extern struct afs_uuid afs_uuid;
582
583
584
585
586extern int afs_abort_to_error(u32);
587
588
589
590
591extern const struct inode_operations afs_mntpt_inode_operations;
592extern const struct inode_operations afs_autocell_inode_operations;
593extern const struct file_operations afs_mntpt_file_operations;
594
595extern struct vfsmount *afs_d_automount(struct path *);
596extern int afs_mntpt_check_symlink(struct afs_vnode *, struct key *);
597extern void afs_mntpt_kill_timer(void);
598
599
600
601
602extern int afs_proc_init(void);
603extern void afs_proc_cleanup(void);
604extern int afs_proc_cell_setup(struct afs_cell *);
605extern void afs_proc_cell_remove(struct afs_cell *);
606
607
608
609
610extern int afs_open_socket(void);
611extern void afs_close_socket(void);
612extern int afs_make_call(struct in_addr *, struct afs_call *, gfp_t,
613 const struct afs_wait_mode *);
614extern struct afs_call *afs_alloc_flat_call(const struct afs_call_type *,
615 size_t, size_t);
616extern void afs_flat_call_destructor(struct afs_call *);
617extern void afs_transfer_reply(struct afs_call *, struct sk_buff *);
618extern void afs_send_empty_reply(struct afs_call *);
619extern void afs_send_simple_reply(struct afs_call *, const void *, size_t);
620extern int afs_extract_data(struct afs_call *, struct sk_buff *, bool, void *,
621 size_t);
622
623
624
625
626extern void afs_clear_permits(struct afs_vnode *);
627extern void afs_cache_permit(struct afs_vnode *, struct key *, long);
628extern void afs_zap_permits(struct rcu_head *);
629extern struct key *afs_request_key(struct afs_cell *);
630extern int afs_permission(struct inode *, int);
631
632
633
634
635extern spinlock_t afs_server_peer_lock;
636
637#define afs_get_server(S) \
638do { \
639 _debug("GET SERVER %d", atomic_read(&(S)->usage)); \
640 atomic_inc(&(S)->usage); \
641} while(0)
642
643extern struct afs_server *afs_lookup_server(struct afs_cell *,
644 const struct in_addr *);
645extern struct afs_server *afs_find_server(const struct in_addr *);
646extern void afs_put_server(struct afs_server *);
647extern void __exit afs_purge_servers(void);
648
649
650
651
652extern int afs_fs_init(void);
653extern void afs_fs_exit(void);
654
655
656
657
658extern int afs_get_ipv4_interfaces(struct afs_interface *, size_t, bool);
659extern int afs_get_MAC_address(u8 *, size_t);
660
661
662
663
664extern int afs_vl_get_entry_by_name(struct in_addr *, struct key *,
665 const char *, struct afs_cache_vlocation *,
666 const struct afs_wait_mode *);
667extern int afs_vl_get_entry_by_id(struct in_addr *, struct key *,
668 afs_volid_t, afs_voltype_t,
669 struct afs_cache_vlocation *,
670 const struct afs_wait_mode *);
671
672
673
674
675#define afs_get_vlocation(V) do { atomic_inc(&(V)->usage); } while(0)
676
677extern int __init afs_vlocation_update_init(void);
678extern struct afs_vlocation *afs_vlocation_lookup(struct afs_cell *,
679 struct key *,
680 const char *, size_t);
681extern void afs_put_vlocation(struct afs_vlocation *);
682extern void afs_vlocation_purge(void);
683
684
685
686
687static inline struct afs_vnode *AFS_FS_I(struct inode *inode)
688{
689 return container_of(inode, struct afs_vnode, vfs_inode);
690}
691
692static inline struct inode *AFS_VNODE_TO_I(struct afs_vnode *vnode)
693{
694 return &vnode->vfs_inode;
695}
696
697extern void afs_vnode_finalise_status_update(struct afs_vnode *,
698 struct afs_server *);
699extern int afs_vnode_fetch_status(struct afs_vnode *, struct afs_vnode *,
700 struct key *);
701extern int afs_vnode_fetch_data(struct afs_vnode *, struct key *,
702 off_t, size_t, struct page *);
703extern int afs_vnode_create(struct afs_vnode *, struct key *, const char *,
704 umode_t, struct afs_fid *, struct afs_file_status *,
705 struct afs_callback *, struct afs_server **);
706extern int afs_vnode_remove(struct afs_vnode *, struct key *, const char *,
707 bool);
708extern int afs_vnode_link(struct afs_vnode *, struct afs_vnode *, struct key *,
709 const char *);
710extern int afs_vnode_symlink(struct afs_vnode *, struct key *, const char *,
711 const char *, struct afs_fid *,
712 struct afs_file_status *, struct afs_server **);
713extern int afs_vnode_rename(struct afs_vnode *, struct afs_vnode *,
714 struct key *, const char *, const char *);
715extern int afs_vnode_store_data(struct afs_writeback *, pgoff_t, pgoff_t,
716 unsigned, unsigned);
717extern int afs_vnode_setattr(struct afs_vnode *, struct key *, struct iattr *);
718extern int afs_vnode_get_volume_status(struct afs_vnode *, struct key *,
719 struct afs_volume_status *);
720extern int afs_vnode_set_lock(struct afs_vnode *, struct key *,
721 afs_lock_type_t);
722extern int afs_vnode_extend_lock(struct afs_vnode *, struct key *);
723extern int afs_vnode_release_lock(struct afs_vnode *, struct key *);
724
725
726
727
728#define afs_get_volume(V) do { atomic_inc(&(V)->usage); } while(0)
729
730extern void afs_put_volume(struct afs_volume *);
731extern struct afs_volume *afs_volume_lookup(struct afs_mount_params *);
732extern struct afs_server *afs_volume_pick_fileserver(struct afs_vnode *);
733extern int afs_volume_release_fileserver(struct afs_vnode *,
734 struct afs_server *, int);
735
736
737
738
739extern int afs_set_page_dirty(struct page *);
740extern void afs_put_writeback(struct afs_writeback *);
741extern int afs_write_begin(struct file *file, struct address_space *mapping,
742 loff_t pos, unsigned len, unsigned flags,
743 struct page **pagep, void **fsdata);
744extern int afs_write_end(struct file *file, struct address_space *mapping,
745 loff_t pos, unsigned len, unsigned copied,
746 struct page *page, void *fsdata);
747extern int afs_writepage(struct page *, struct writeback_control *);
748extern int afs_writepages(struct address_space *, struct writeback_control *);
749extern void afs_pages_written_back(struct afs_vnode *, struct afs_call *);
750extern ssize_t afs_file_write(struct kiocb *, struct iov_iter *);
751extern int afs_writeback_all(struct afs_vnode *);
752extern int afs_fsync(struct file *, loff_t, loff_t, int);
753
754
755
756
757
758
759extern unsigned afs_debug;
760
761#define dbgprintk(FMT,...) \
762 printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__)
763
764#define kenter(FMT,...) dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
765#define kleave(FMT,...) dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
766#define kdebug(FMT,...) dbgprintk(" "FMT ,##__VA_ARGS__)
767
768
769#if defined(__KDEBUG)
770#define _enter(FMT,...) kenter(FMT,##__VA_ARGS__)
771#define _leave(FMT,...) kleave(FMT,##__VA_ARGS__)
772#define _debug(FMT,...) kdebug(FMT,##__VA_ARGS__)
773
774#elif defined(CONFIG_AFS_DEBUG)
775#define AFS_DEBUG_KENTER 0x01
776#define AFS_DEBUG_KLEAVE 0x02
777#define AFS_DEBUG_KDEBUG 0x04
778
779#define _enter(FMT,...) \
780do { \
781 if (unlikely(afs_debug & AFS_DEBUG_KENTER)) \
782 kenter(FMT,##__VA_ARGS__); \
783} while (0)
784
785#define _leave(FMT,...) \
786do { \
787 if (unlikely(afs_debug & AFS_DEBUG_KLEAVE)) \
788 kleave(FMT,##__VA_ARGS__); \
789} while (0)
790
791#define _debug(FMT,...) \
792do { \
793 if (unlikely(afs_debug & AFS_DEBUG_KDEBUG)) \
794 kdebug(FMT,##__VA_ARGS__); \
795} while (0)
796
797#else
798#define _enter(FMT,...) no_printk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
799#define _leave(FMT,...) no_printk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
800#define _debug(FMT,...) no_printk(" "FMT ,##__VA_ARGS__)
801#endif
802
803
804
805
806#if 1
807
808#define ASSERT(X) \
809do { \
810 if (unlikely(!(X))) { \
811 printk(KERN_ERR "\n"); \
812 printk(KERN_ERR "AFS: Assertion failed\n"); \
813 BUG(); \
814 } \
815} while(0)
816
817#define ASSERTCMP(X, OP, Y) \
818do { \
819 if (unlikely(!((X) OP (Y)))) { \
820 printk(KERN_ERR "\n"); \
821 printk(KERN_ERR "AFS: Assertion failed\n"); \
822 printk(KERN_ERR "%lu " #OP " %lu is false\n", \
823 (unsigned long)(X), (unsigned long)(Y)); \
824 printk(KERN_ERR "0x%lx " #OP " 0x%lx is false\n", \
825 (unsigned long)(X), (unsigned long)(Y)); \
826 BUG(); \
827 } \
828} while(0)
829
830#define ASSERTRANGE(L, OP1, N, OP2, H) \
831do { \
832 if (unlikely(!((L) OP1 (N)) || !((N) OP2 (H)))) { \
833 printk(KERN_ERR "\n"); \
834 printk(KERN_ERR "AFS: Assertion failed\n"); \
835 printk(KERN_ERR "%lu "#OP1" %lu "#OP2" %lu is false\n", \
836 (unsigned long)(L), (unsigned long)(N), \
837 (unsigned long)(H)); \
838 printk(KERN_ERR "0x%lx "#OP1" 0x%lx "#OP2" 0x%lx is false\n", \
839 (unsigned long)(L), (unsigned long)(N), \
840 (unsigned long)(H)); \
841 BUG(); \
842 } \
843} while(0)
844
845#define ASSERTIF(C, X) \
846do { \
847 if (unlikely((C) && !(X))) { \
848 printk(KERN_ERR "\n"); \
849 printk(KERN_ERR "AFS: Assertion failed\n"); \
850 BUG(); \
851 } \
852} while(0)
853
854#define ASSERTIFCMP(C, X, OP, Y) \
855do { \
856 if (unlikely((C) && !((X) OP (Y)))) { \
857 printk(KERN_ERR "\n"); \
858 printk(KERN_ERR "AFS: Assertion failed\n"); \
859 printk(KERN_ERR "%lu " #OP " %lu is false\n", \
860 (unsigned long)(X), (unsigned long)(Y)); \
861 printk(KERN_ERR "0x%lx " #OP " 0x%lx is false\n", \
862 (unsigned long)(X), (unsigned long)(Y)); \
863 BUG(); \
864 } \
865} while(0)
866
867#else
868
869#define ASSERT(X) \
870do { \
871} while(0)
872
873#define ASSERTCMP(X, OP, Y) \
874do { \
875} while(0)
876
877#define ASSERTRANGE(L, OP1, N, OP2, H) \
878do { \
879} while(0)
880
881#define ASSERTIF(C, X) \
882do { \
883} while(0)
884
885#define ASSERTIFCMP(C, X, OP, Y) \
886do { \
887} while(0)
888
889#endif
890