]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blame - fs/afs/internal.h
Merge branch 'tc-skb-diet'
[mirror_ubuntu-kernels.git] / fs / afs / internal.h
CommitLineData
ec26815a 1/* internal AFS stuff
1da177e4 2 *
08e0e7c8 3 * Copyright (C) 2002, 2007 Red Hat, Inc. All Rights Reserved.
1da177e4
LT
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
1da177e4
LT
12#include <linux/compiler.h>
13#include <linux/kernel.h>
14#include <linux/fs.h>
15#include <linux/pagemap.h>
08e0e7c8 16#include <linux/rxrpc.h>
00d3b7a4 17#include <linux/key.h>
e8edc6e0 18#include <linux/workqueue.h>
00c541ea 19#include <linux/sched.h>
80e50be4 20#include <linux/fscache.h>
e1da0222 21#include <linux/backing-dev.h>
8324f0bc 22#include <net/af_rxrpc.h>
00c541ea 23
08e0e7c8
DH
24#include "afs.h"
25#include "afs_vl.h"
26
27#define AFS_CELL_MAX_ADDRS 15
28
31143d5d 29struct pagevec;
08e0e7c8
DH
30struct afs_call;
31
32typedef enum {
33 AFS_VL_NEW, /* new, uninitialised record */
34 AFS_VL_CREATING, /* creating record */
35 AFS_VL_VALID, /* record is pending */
36 AFS_VL_NO_VOLUME, /* no such volume available */
37 AFS_VL_UPDATING, /* update in progress */
38 AFS_VL_VOLUME_DELETED, /* volume was deleted */
39 AFS_VL_UNCERTAIN, /* uncertain state (update failed) */
40} __attribute__((packed)) afs_vlocation_state_t;
1da177e4 41
00d3b7a4
DH
42struct afs_mount_params {
43 bool rwpath; /* T if the parent should be considered R/W */
44 bool force; /* T to force cell type */
bec5eb61 45 bool autocell; /* T if set auto mount operation */
00d3b7a4
DH
46 afs_voltype_t type; /* type of volume requested */
47 int volnamesz; /* size of volume name */
48 const char *volname; /* name of volume to mount */
49 struct afs_cell *cell; /* cell in which to find volume */
50 struct afs_volume *volume; /* volume record */
51 struct key *key; /* key to use for secure mounting */
52};
53
1da177e4 54/*
08e0e7c8 55 * definition of how to wait for the completion of an operation
1da177e4 56 */
08e0e7c8
DH
57struct afs_wait_mode {
58 /* RxRPC received message notification */
d001648e 59 rxrpc_notify_rx_t notify_rx;
1da177e4 60
08e0e7c8
DH
61 /* synchronous call waiter and call dispatched notification */
62 int (*wait)(struct afs_call *call);
63
64 /* asynchronous call completion */
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 * a record of an in-progress RxRPC call
73 */
74struct afs_call {
75 const struct afs_call_type *type; /* type of call */
76 const struct afs_wait_mode *wait_mode; /* completion wait mode */
77 wait_queue_head_t waitq; /* processes awaiting completion */
78 struct work_struct async_work; /* asynchronous work processor */
79 struct work_struct work; /* actual work processor */
08e0e7c8
DH
80 struct rxrpc_call *rxcall; /* RxRPC call handle */
81 struct key *key; /* security for this call */
82 struct afs_server *server; /* server affected by incoming CM call */
83 void *request; /* request data (first part) */
31143d5d
DH
84 struct address_space *mapping; /* page set */
85 struct afs_writeback *wb; /* writeback being performed */
08e0e7c8
DH
86 void *buffer; /* reply receive buffer */
87 void *reply; /* reply buffer (first part) */
88 void *reply2; /* reply buffer (second part) */
89 void *reply3; /* reply buffer (third part) */
260a9803 90 void *reply4; /* reply buffer (fourth part) */
31143d5d
DH
91 pgoff_t first; /* first page in mapping to deal with */
92 pgoff_t last; /* last page in mapping to deal with */
d001648e 93 size_t offset; /* offset into received data store */
08e0e7c8
DH
94 enum { /* call state */
95 AFS_CALL_REQUESTING, /* request is being sent for outgoing call */
96 AFS_CALL_AWAIT_REPLY, /* awaiting reply to outgoing call */
97 AFS_CALL_AWAIT_OP_ID, /* awaiting op ID on incoming call */
98 AFS_CALL_AWAIT_REQUEST, /* awaiting request data on incoming call */
99 AFS_CALL_REPLYING, /* replying to incoming call */
100 AFS_CALL_AWAIT_ACK, /* awaiting final ACK of incoming call */
d001648e 101 AFS_CALL_COMPLETE, /* Completed or failed */
08e0e7c8
DH
102 } state;
103 int error; /* error code */
d001648e 104 u32 abort_code; /* Remote abort ID or 0 */
08e0e7c8
DH
105 unsigned request_size; /* size of request data */
106 unsigned reply_max; /* maximum size of reply */
31143d5d
DH
107 unsigned first_offset; /* offset into mapping[first] */
108 unsigned last_to; /* amount of mapping[last] */
08e0e7c8
DH
109 unsigned char unmarshall; /* unmarshalling phase */
110 bool incoming; /* T if incoming call */
31143d5d 111 bool send_pages; /* T if data from mapping should be sent */
d001648e 112 bool need_attention; /* T if RxRPC poked us */
08e0e7c8
DH
113 u16 service_id; /* RxRPC service ID to call */
114 __be16 port; /* target UDP port */
50a2c953 115 u32 operation_ID; /* operation ID for an incoming call */
08e0e7c8
DH
116 u32 count; /* count for use in unmarshalling */
117 __be32 tmp; /* place to extract temporary data */
31143d5d 118 afs_dataversion_t store_version; /* updated version expected from store */
08e0e7c8
DH
119};
120
121struct afs_call_type {
00d3b7a4
DH
122 const char *name;
123
08e0e7c8
DH
124 /* deliver request or reply data to an call
125 * - returning an error will cause the call to be aborted
126 */
d001648e 127 int (*deliver)(struct afs_call *call);
08e0e7c8
DH
128
129 /* map an abort code to an error number */
130 int (*abort_to_error)(u32 abort_code);
131
132 /* clean up a call */
133 void (*destructor)(struct afs_call *call);
134};
135
196ee9cd
DH
136/*
137 * Record of an outstanding read operation on a vnode.
138 */
139struct afs_read {
140 loff_t pos; /* Where to start reading */
141 loff_t len; /* How much to read */
142 loff_t actual_len; /* How much we're actually getting */
143 atomic_t usage;
144 unsigned int remain; /* Amount remaining */
145 unsigned int index; /* Which page we're reading into */
146 unsigned int pg_offset; /* Offset in page we're at */
147 unsigned int nr_pages;
148 void (*page_done)(struct afs_call *, struct afs_read *);
149 struct page *pages[];
150};
151
31143d5d
DH
152/*
153 * record of an outstanding writeback on a vnode
154 */
155struct afs_writeback {
156 struct list_head link; /* link in vnode->writebacks */
157 struct work_struct writer; /* work item to perform the writeback */
158 struct afs_vnode *vnode; /* vnode to which this write applies */
159 struct key *key; /* owner of this write */
160 wait_queue_head_t waitq; /* completion and ready wait queue */
161 pgoff_t first; /* first page in batch */
162 pgoff_t point; /* last page in current store op */
163 pgoff_t last; /* last page in batch (inclusive) */
164 unsigned offset_first; /* offset into first page of start of write */
165 unsigned to_last; /* offset into last page of end of write */
166 int num_conflicts; /* count of conflicting writes in list */
167 int usage;
168 bool conflicts; /* T if has dependent conflicts */
169 enum {
170 AFS_WBACK_SYNCING, /* synchronisation being performed */
171 AFS_WBACK_PENDING, /* write pending */
172 AFS_WBACK_CONFLICTING, /* conflicting writes posted */
173 AFS_WBACK_WRITING, /* writing back */
174 AFS_WBACK_COMPLETE /* the writeback record has been unlinked */
175 } state __attribute__((packed));
176};
177
08e0e7c8
DH
178/*
179 * AFS superblock private data
180 * - there's one superblock per volume
181 */
182struct afs_super_info {
183 struct afs_volume *volume; /* volume record */
184 char rwparent; /* T if parent is R/W AFS volume */
185};
1da177e4 186
08e0e7c8
DH
187static inline struct afs_super_info *AFS_FS_S(struct super_block *sb)
188{
189 return sb->s_fs_info;
1da177e4
LT
190}
191
08e0e7c8
DH
192extern struct file_system_type afs_fs_type;
193
194/*
195 * entry in the cached cell catalogue
196 */
197struct afs_cache_cell {
00d3b7a4
DH
198 char name[AFS_MAXCELLNAME]; /* cell name (padded with NULs) */
199 struct in_addr vl_servers[15]; /* cached cell VL servers */
08e0e7c8
DH
200};
201
202/*
203 * AFS cell record
204 */
205struct afs_cell {
206 atomic_t usage;
207 struct list_head link; /* main cell list link */
00d3b7a4 208 struct key *anonymous_key; /* anonymous user key for this cell */
08e0e7c8 209 struct list_head proc_link; /* /proc cell list link */
9b3f26c9
DH
210#ifdef CONFIG_AFS_FSCACHE
211 struct fscache_cookie *cache; /* caching cookie */
08e0e7c8
DH
212#endif
213
214 /* server record management */
215 rwlock_t servers_lock; /* active server list lock */
216 struct list_head servers; /* active server list */
217
218 /* volume location record management */
219 struct rw_semaphore vl_sem; /* volume management serialisation semaphore */
220 struct list_head vl_list; /* cell's active VL record list */
221 spinlock_t vl_lock; /* vl_list lock */
222 unsigned short vl_naddrs; /* number of VL servers in addr list */
223 unsigned short vl_curr_svix; /* current server index */
224 struct in_addr vl_addrs[AFS_CELL_MAX_ADDRS]; /* cell VL server addresses */
225
226 char name[0]; /* cell name - must go last */
227};
228
229/*
230 * entry in the cached volume location catalogue
231 */
232struct afs_cache_vlocation {
00d3b7a4
DH
233 /* volume name (lowercase, padded with NULs) */
234 uint8_t name[AFS_MAXVOLNAME + 1];
235
08e0e7c8
DH
236 uint8_t nservers; /* number of entries used in servers[] */
237 uint8_t vidmask; /* voltype mask for vid[] */
238 uint8_t srvtmask[8]; /* voltype masks for servers[] */
239#define AFS_VOL_VTM_RW 0x01 /* R/W version of the volume is available (on this server) */
240#define AFS_VOL_VTM_RO 0x02 /* R/O version of the volume is available (on this server) */
241#define AFS_VOL_VTM_BAK 0x04 /* backup version of the volume is available (on this server) */
242
243 afs_volid_t vid[3]; /* volume IDs for R/W, R/O and Bak volumes */
244 struct in_addr servers[8]; /* fileserver addresses */
245 time_t rtime; /* last retrieval time */
246};
247
248/*
249 * volume -> vnode hash table entry
250 */
251struct afs_cache_vhash {
252 afs_voltype_t vtype; /* which volume variation */
253 uint8_t hash_bucket; /* which hash bucket this represents */
254} __attribute__((packed));
255
256/*
257 * AFS volume location record
258 */
259struct afs_vlocation {
260 atomic_t usage;
261 time_t time_of_death; /* time at which put reduced usage to 0 */
262 struct list_head link; /* link in cell volume location list */
263 struct list_head grave; /* link in master graveyard list */
264 struct list_head update; /* link in master update list */
265 struct afs_cell *cell; /* cell to which volume belongs */
9b3f26c9
DH
266#ifdef CONFIG_AFS_FSCACHE
267 struct fscache_cookie *cache; /* caching cookie */
08e0e7c8
DH
268#endif
269 struct afs_cache_vlocation vldb; /* volume information DB record */
270 struct afs_volume *vols[3]; /* volume access record pointer (index by type) */
271 wait_queue_head_t waitq; /* status change waitqueue */
272 time_t update_at; /* time at which record should be updated */
39bf0949 273 spinlock_t lock; /* access lock */
08e0e7c8
DH
274 afs_vlocation_state_t state; /* volume location state */
275 unsigned short upd_rej_cnt; /* ENOMEDIUM count during update */
276 unsigned short upd_busy_cnt; /* EBUSY count during update */
277 bool valid; /* T if valid */
278};
279
280/*
281 * AFS fileserver record
282 */
283struct afs_server {
284 atomic_t usage;
285 time_t time_of_death; /* time at which put reduced usage to 0 */
286 struct in_addr addr; /* server address */
287 struct afs_cell *cell; /* cell in which server resides */
288 struct list_head link; /* link in cell's server list */
289 struct list_head grave; /* link in master graveyard list */
290 struct rb_node master_rb; /* link in master by-addr tree */
291 struct rw_semaphore sem; /* access lock */
292
293 /* file service access */
294 struct rb_root fs_vnodes; /* vnodes backed by this server (ordered by FID) */
295 unsigned long fs_act_jif; /* time at which last activity occurred */
296 unsigned long fs_dead_jif; /* time at which no longer to be considered dead */
297 spinlock_t fs_lock; /* access lock */
298 int fs_state; /* 0 or reason FS currently marked dead (-errno) */
299
300 /* callback promise management */
301 struct rb_root cb_promises; /* vnode expiration list (ordered earliest first) */
302 struct delayed_work cb_updater; /* callback updater */
303 struct delayed_work cb_break_work; /* collected break dispatcher */
304 wait_queue_head_t cb_break_waitq; /* space available in cb_break waitqueue */
305 spinlock_t cb_lock; /* access lock */
306 struct afs_callback cb_break[64]; /* ring of callbacks awaiting breaking */
307 atomic_t cb_break_n; /* number of pending breaks */
308 u8 cb_break_head; /* head of callback breaking ring */
309 u8 cb_break_tail; /* tail of callback breaking ring */
310};
311
312/*
313 * AFS volume access record
314 */
315struct afs_volume {
316 atomic_t usage;
317 struct afs_cell *cell; /* cell to which belongs (unrefd ptr) */
318 struct afs_vlocation *vlocation; /* volume location */
9b3f26c9
DH
319#ifdef CONFIG_AFS_FSCACHE
320 struct fscache_cookie *cache; /* caching cookie */
08e0e7c8
DH
321#endif
322 afs_volid_t vid; /* volume ID */
323 afs_voltype_t type; /* type of volume */
324 char type_force; /* force volume type (suppress R/O -> R/W) */
325 unsigned short nservers; /* number of server slots filled */
326 unsigned short rjservers; /* number of servers discarded due to -ENOMEDIUM */
327 struct afs_server *servers[8]; /* servers on which volume resides (ordered) */
328 struct rw_semaphore server_sem; /* lock for accessing current server */
e1da0222 329 struct backing_dev_info bdi;
08e0e7c8
DH
330};
331
332/*
333 * vnode catalogue entry
334 */
335struct afs_cache_vnode {
336 afs_vnodeid_t vnode_id; /* vnode ID */
337 unsigned vnode_unique; /* vnode ID uniquifier */
338 afs_dataversion_t data_version; /* data version */
339};
340
341/*
342 * AFS inode private data
343 */
344struct afs_vnode {
345 struct inode vfs_inode; /* the VFS's inode record */
346
347 struct afs_volume *volume; /* volume on which vnode resides */
348 struct afs_server *server; /* server currently supplying this file */
349 struct afs_fid fid; /* the file identifier for this inode */
350 struct afs_file_status status; /* AFS status info for this file */
9b3f26c9
DH
351#ifdef CONFIG_AFS_FSCACHE
352 struct fscache_cookie *cache; /* caching cookie */
08e0e7c8 353#endif
00d3b7a4
DH
354 struct afs_permits *permits; /* cache of permits so far obtained */
355 struct mutex permits_lock; /* lock for altering permits list */
260a9803 356 struct mutex validate_lock; /* lock for validating this vnode */
08e0e7c8 357 wait_queue_head_t update_waitq; /* status fetch waitqueue */
260a9803 358 int update_cnt; /* number of outstanding ops that will update the
08e0e7c8 359 * status */
31143d5d 360 spinlock_t writeback_lock; /* lock for writebacks */
08e0e7c8
DH
361 spinlock_t lock; /* waitqueue/flags lock */
362 unsigned long flags;
363#define AFS_VNODE_CB_BROKEN 0 /* set if vnode's callback was broken */
260a9803 364#define AFS_VNODE_UNSET 1 /* set if vnode attributes not yet set */
08e0e7c8
DH
365#define AFS_VNODE_MODIFIED 2 /* set if vnode's data modified */
366#define AFS_VNODE_ZAP_DATA 3 /* set if vnode's data should be invalidated */
367#define AFS_VNODE_DELETED 4 /* set if vnode deleted on server */
368#define AFS_VNODE_MOUNTPOINT 5 /* set if vnode is a mountpoint symlink */
e8d6c554
DH
369#define AFS_VNODE_LOCKING 6 /* set if waiting for lock on vnode */
370#define AFS_VNODE_READLOCKED 7 /* set if vnode is read-locked on the server */
371#define AFS_VNODE_WRITELOCKED 8 /* set if vnode is write-locked on the server */
372#define AFS_VNODE_UNLOCKING 9 /* set if vnode is being unlocked on the server */
bec5eb61 373#define AFS_VNODE_AUTOCELL 10 /* set if Vnode is an auto mount point */
374#define AFS_VNODE_PSEUDODIR 11 /* set if Vnode is a pseudo directory */
08e0e7c8 375
00d3b7a4
DH
376 long acl_order; /* ACL check count (callback break count) */
377
31143d5d 378 struct list_head writebacks; /* alterations in pagecache that need writing */
e8d6c554
DH
379 struct list_head pending_locks; /* locks waiting to be granted */
380 struct list_head granted_locks; /* locks granted on this file */
381 struct delayed_work lock_work; /* work to be done in locking */
382 struct key *unlock_key; /* key to be used in unlocking */
31143d5d 383
08e0e7c8
DH
384 /* outstanding callback notification on this file */
385 struct rb_node server_rb; /* link in server->fs_vnodes */
386 struct rb_node cb_promise; /* link in server->cb_promises */
387 struct work_struct cb_broken_work; /* work to be done on callback break */
08e0e7c8
DH
388 time_t cb_expires; /* time at which callback expires */
389 time_t cb_expires_at; /* time used to order cb_promise */
390 unsigned cb_version; /* callback version */
391 unsigned cb_expiry; /* callback expiry time */
392 afs_callback_type_t cb_type; /* type of callback */
393 bool cb_promised; /* true if promise still holds */
394};
395
00d3b7a4
DH
396/*
397 * cached security record for one user's attempt to access a vnode
398 */
399struct afs_permit {
400 struct key *key; /* RxRPC ticket holding a security context */
401 afs_access_t access_mask; /* access mask for this key */
402};
403
404/*
405 * cache of security records from attempts to access a vnode
406 */
407struct afs_permits {
408 struct rcu_head rcu; /* disposal procedure */
409 int count; /* number of records */
410 struct afs_permit permits[0]; /* the permits so far examined */
411};
412
b908fe6b
DH
413/*
414 * record of one of a system's set of network interfaces
415 */
416struct afs_interface {
b908fe6b
DH
417 struct in_addr address; /* IPv4 address bound to interface */
418 struct in_addr netmask; /* netmask applied to address */
419 unsigned mtu; /* MTU of interface */
420};
421
422/*
423 * UUID definition [internet draft]
424 * - the timestamp is a 60-bit value, split 32/16/12, and goes in 100ns
425 * increments since midnight 15th October 1582
426 * - add AFS_UUID_TO_UNIX_TIME to convert unix time in 100ns units to UUID
427 * time
428 * - the clock sequence is a 14-bit counter to avoid duplicate times
429 */
430struct afs_uuid {
431 u32 time_low; /* low part of timestamp */
432 u16 time_mid; /* mid part of timestamp */
433 u16 time_hi_and_version; /* high part of timestamp and version */
b1bdb691 434#define AFS_UUID_TO_UNIX_TIME 0x01b21dd213814000ULL
b908fe6b
DH
435#define AFS_UUID_TIMEHI_MASK 0x0fff
436#define AFS_UUID_VERSION_TIME 0x1000 /* time-based UUID */
437#define AFS_UUID_VERSION_NAME 0x3000 /* name-based UUID */
438#define AFS_UUID_VERSION_RANDOM 0x4000 /* (pseudo-)random generated UUID */
439 u8 clock_seq_hi_and_reserved; /* clock seq hi and variant */
440#define AFS_UUID_CLOCKHI_MASK 0x3f
441#define AFS_UUID_VARIANT_STD 0x80
442 u8 clock_seq_low; /* clock seq low */
443 u8 node[6]; /* spatially unique node ID (MAC addr) */
444};
445
08e0e7c8 446/*****************************************************************************/
9b3f26c9
DH
447/*
448 * cache.c
449 */
450#ifdef CONFIG_AFS_FSCACHE
451extern struct fscache_netfs afs_cache_netfs;
452extern struct fscache_cookie_def afs_cell_cache_index_def;
453extern struct fscache_cookie_def afs_vlocation_cache_index_def;
454extern struct fscache_cookie_def afs_volume_cache_index_def;
455extern struct fscache_cookie_def afs_vnode_cache_index_def;
456#else
457#define afs_cell_cache_index_def (*(struct fscache_cookie_def *) NULL)
458#define afs_vlocation_cache_index_def (*(struct fscache_cookie_def *) NULL)
459#define afs_volume_cache_index_def (*(struct fscache_cookie_def *) NULL)
460#define afs_vnode_cache_index_def (*(struct fscache_cookie_def *) NULL)
461#endif
462
08e0e7c8
DH
463/*
464 * callback.c
465 */
466extern void afs_init_callback_state(struct afs_server *);
467extern void afs_broken_callback_work(struct work_struct *);
468extern void afs_break_callbacks(struct afs_server *, size_t,
469 struct afs_callback[]);
260a9803 470extern void afs_discard_callback_on_delete(struct afs_vnode *);
08e0e7c8
DH
471extern void afs_give_up_callback(struct afs_vnode *);
472extern void afs_dispatch_give_up_callbacks(struct work_struct *);
473extern void afs_flush_callback_breaks(struct afs_server *);
474extern int __init afs_callback_update_init(void);
fbb3fcba 475extern void afs_callback_update_kill(void);
08e0e7c8 476
1da177e4
LT
477/*
478 * cell.c
479 */
480extern struct rw_semaphore afs_proc_cells_sem;
481extern struct list_head afs_proc_cells;
1da177e4 482
08e0e7c8
DH
483#define afs_get_cell(C) do { atomic_inc(&(C)->usage); } while(0)
484extern int afs_cell_init(char *);
bec5eb61 485extern struct afs_cell *afs_cell_create(const char *, unsigned, char *, bool);
486extern struct afs_cell *afs_cell_lookup(const char *, unsigned, bool);
08e0e7c8
DH
487extern struct afs_cell *afs_grab_cell(struct afs_cell *);
488extern void afs_put_cell(struct afs_cell *);
489extern void afs_cell_purge(void);
490
491/*
492 * cmservice.c
493 */
494extern bool afs_cm_incoming_call(struct afs_call *);
495
1da177e4
LT
496/*
497 * dir.c
498 */
754661f1 499extern const struct inode_operations afs_dir_inode_operations;
d61dcce2 500extern const struct dentry_operations afs_fs_dentry_operations;
4b6f5d20 501extern const struct file_operations afs_dir_file_operations;
1da177e4
LT
502
503/*
504 * file.c
505 */
f5e54d6e 506extern const struct address_space_operations afs_fs_aops;
754661f1 507extern const struct inode_operations afs_file_inode_operations;
00d3b7a4
DH
508extern const struct file_operations afs_file_operations;
509
510extern int afs_open(struct inode *, struct file *);
511extern int afs_release(struct inode *, struct file *);
f6d335c0 512extern int afs_page_filler(void *, struct page *);
196ee9cd 513extern void afs_put_read(struct afs_read *);
1da177e4 514
e8d6c554
DH
515/*
516 * flock.c
517 */
518extern void __exit afs_kill_lock_manager(void);
519extern void afs_lock_work(struct work_struct *);
520extern void afs_lock_may_be_available(struct afs_vnode *);
521extern int afs_lock(struct file *, int, struct file_lock *);
522extern int afs_flock(struct file *, int, struct file_lock *);
523
08e0e7c8
DH
524/*
525 * fsclient.c
526 */
00d3b7a4
DH
527extern int afs_fs_fetch_file_status(struct afs_server *, struct key *,
528 struct afs_vnode *, struct afs_volsync *,
08e0e7c8
DH
529 const struct afs_wait_mode *);
530extern int afs_fs_give_up_callbacks(struct afs_server *,
531 const struct afs_wait_mode *);
00d3b7a4 532extern int afs_fs_fetch_data(struct afs_server *, struct key *,
196ee9cd 533 struct afs_vnode *, struct afs_read *,
08e0e7c8 534 const struct afs_wait_mode *);
260a9803
DH
535extern int afs_fs_create(struct afs_server *, struct key *,
536 struct afs_vnode *, const char *, umode_t,
537 struct afs_fid *, struct afs_file_status *,
538 struct afs_callback *,
539 const struct afs_wait_mode *);
540extern int afs_fs_remove(struct afs_server *, struct key *,
541 struct afs_vnode *, const char *, bool,
542 const struct afs_wait_mode *);
543extern int afs_fs_link(struct afs_server *, struct key *, struct afs_vnode *,
544 struct afs_vnode *, const char *,
545 const struct afs_wait_mode *);
546extern int afs_fs_symlink(struct afs_server *, struct key *,
547 struct afs_vnode *, const char *, const char *,
548 struct afs_fid *, struct afs_file_status *,
549 const struct afs_wait_mode *);
550extern int afs_fs_rename(struct afs_server *, struct key *,
551 struct afs_vnode *, const char *,
552 struct afs_vnode *, const char *,
553 const struct afs_wait_mode *);
31143d5d
DH
554extern int afs_fs_store_data(struct afs_server *, struct afs_writeback *,
555 pgoff_t, pgoff_t, unsigned, unsigned,
556 const struct afs_wait_mode *);
557extern int afs_fs_setattr(struct afs_server *, struct key *,
558 struct afs_vnode *, struct iattr *,
559 const struct afs_wait_mode *);
45222b9e
DH
560extern int afs_fs_get_volume_status(struct afs_server *, struct key *,
561 struct afs_vnode *,
562 struct afs_volume_status *,
563 const struct afs_wait_mode *);
e8d6c554
DH
564extern int afs_fs_set_lock(struct afs_server *, struct key *,
565 struct afs_vnode *, afs_lock_type_t,
566 const struct afs_wait_mode *);
567extern int afs_fs_extend_lock(struct afs_server *, struct key *,
568 struct afs_vnode *,
569 const struct afs_wait_mode *);
570extern int afs_fs_release_lock(struct afs_server *, struct key *,
571 struct afs_vnode *,
572 const struct afs_wait_mode *);
08e0e7c8 573
1da177e4
LT
574/*
575 * inode.c
576 */
bec5eb61 577extern struct inode *afs_iget_autocell(struct inode *, const char *, int,
578 struct key *);
00d3b7a4 579extern struct inode *afs_iget(struct super_block *, struct key *,
260a9803
DH
580 struct afs_fid *, struct afs_file_status *,
581 struct afs_callback *);
416351f2 582extern void afs_zap_data(struct afs_vnode *);
260a9803 583extern int afs_validate(struct afs_vnode *, struct key *);
416351f2 584extern int afs_getattr(struct vfsmount *, struct dentry *, struct kstat *);
31143d5d 585extern int afs_setattr(struct dentry *, struct iattr *);
b57922d9 586extern void afs_evict_inode(struct inode *);
bec5eb61 587extern int afs_drop_inode(struct inode *);
1da177e4
LT
588
589/*
590 * main.c
591 */
0ad53eee 592extern struct workqueue_struct *afs_wq;
b908fe6b 593extern struct afs_uuid afs_uuid;
1da177e4 594
08e0e7c8
DH
595/*
596 * misc.c
597 */
598extern int afs_abort_to_error(u32);
599
1da177e4
LT
600/*
601 * mntpt.c
602 */
754661f1 603extern const struct inode_operations afs_mntpt_inode_operations;
bec5eb61 604extern const struct inode_operations afs_autocell_inode_operations;
4b6f5d20 605extern const struct file_operations afs_mntpt_file_operations;
1da177e4 606
d18610b0 607extern struct vfsmount *afs_d_automount(struct path *);
00d3b7a4 608extern int afs_mntpt_check_symlink(struct afs_vnode *, struct key *);
08e0e7c8 609extern void afs_mntpt_kill_timer(void);
1da177e4 610
1da177e4
LT
611/*
612 * proc.c
613 */
614extern int afs_proc_init(void);
615extern void afs_proc_cleanup(void);
ec26815a
DH
616extern int afs_proc_cell_setup(struct afs_cell *);
617extern void afs_proc_cell_remove(struct afs_cell *);
1da177e4 618
08e0e7c8
DH
619/*
620 * rxrpc.c
621 */
8324f0bc
DH
622extern struct socket *afs_socket;
623
08e0e7c8
DH
624extern int afs_open_socket(void);
625extern void afs_close_socket(void);
626extern int afs_make_call(struct in_addr *, struct afs_call *, gfp_t,
627 const struct afs_wait_mode *);
628extern struct afs_call *afs_alloc_flat_call(const struct afs_call_type *,
629 size_t, size_t);
630extern void afs_flat_call_destructor(struct afs_call *);
08e0e7c8 631extern void afs_send_empty_reply(struct afs_call *);
b908fe6b 632extern void afs_send_simple_reply(struct afs_call *, const void *, size_t);
d001648e 633extern int afs_extract_data(struct afs_call *, void *, size_t, bool);
08e0e7c8 634
d001648e 635static inline int afs_transfer_reply(struct afs_call *call)
372ee163 636{
d001648e 637 return afs_extract_data(call, call->buffer, call->reply_max, false);
372ee163
DH
638}
639
00d3b7a4
DH
640/*
641 * security.c
642 */
643extern void afs_clear_permits(struct afs_vnode *);
644extern void afs_cache_permit(struct afs_vnode *, struct key *, long);
416351f2 645extern void afs_zap_permits(struct rcu_head *);
00d3b7a4 646extern struct key *afs_request_key(struct afs_cell *);
10556cb2 647extern int afs_permission(struct inode *, int);
00d3b7a4 648
08e0e7c8
DH
649/*
650 * server.c
651 */
652extern spinlock_t afs_server_peer_lock;
653
260a9803
DH
654#define afs_get_server(S) \
655do { \
656 _debug("GET SERVER %d", atomic_read(&(S)->usage)); \
657 atomic_inc(&(S)->usage); \
658} while(0)
08e0e7c8
DH
659
660extern struct afs_server *afs_lookup_server(struct afs_cell *,
661 const struct in_addr *);
8324f0bc 662extern struct afs_server *afs_find_server(const struct sockaddr_rxrpc *);
08e0e7c8
DH
663extern void afs_put_server(struct afs_server *);
664extern void __exit afs_purge_servers(void);
665
00d3b7a4
DH
666/*
667 * super.c
668 */
669extern int afs_fs_init(void);
670extern void afs_fs_exit(void);
671
b908fe6b
DH
672/*
673 * use-rtnetlink.c
674 */
675extern int afs_get_ipv4_interfaces(struct afs_interface *, size_t, bool);
ec9c9485 676extern int afs_get_MAC_address(u8 *, size_t);
b908fe6b 677
08e0e7c8
DH
678/*
679 * vlclient.c
680 */
00d3b7a4
DH
681extern int afs_vl_get_entry_by_name(struct in_addr *, struct key *,
682 const char *, struct afs_cache_vlocation *,
08e0e7c8 683 const struct afs_wait_mode *);
00d3b7a4
DH
684extern int afs_vl_get_entry_by_id(struct in_addr *, struct key *,
685 afs_volid_t, afs_voltype_t,
08e0e7c8
DH
686 struct afs_cache_vlocation *,
687 const struct afs_wait_mode *);
688
689/*
690 * vlocation.c
691 */
692#define afs_get_vlocation(V) do { atomic_inc(&(V)->usage); } while(0)
693
694extern int __init afs_vlocation_update_init(void);
695extern struct afs_vlocation *afs_vlocation_lookup(struct afs_cell *,
00d3b7a4 696 struct key *,
08e0e7c8
DH
697 const char *, size_t);
698extern void afs_put_vlocation(struct afs_vlocation *);
fbb3fcba 699extern void afs_vlocation_purge(void);
08e0e7c8
DH
700
701/*
702 * vnode.c
703 */
08e0e7c8
DH
704static inline struct afs_vnode *AFS_FS_I(struct inode *inode)
705{
706 return container_of(inode, struct afs_vnode, vfs_inode);
707}
708
709static inline struct inode *AFS_VNODE_TO_I(struct afs_vnode *vnode)
710{
711 return &vnode->vfs_inode;
712}
713
260a9803
DH
714extern void afs_vnode_finalise_status_update(struct afs_vnode *,
715 struct afs_server *);
00d3b7a4
DH
716extern int afs_vnode_fetch_status(struct afs_vnode *, struct afs_vnode *,
717 struct key *);
718extern int afs_vnode_fetch_data(struct afs_vnode *, struct key *,
196ee9cd 719 struct afs_read *);
260a9803
DH
720extern int afs_vnode_create(struct afs_vnode *, struct key *, const char *,
721 umode_t, struct afs_fid *, struct afs_file_status *,
722 struct afs_callback *, struct afs_server **);
723extern int afs_vnode_remove(struct afs_vnode *, struct key *, const char *,
724 bool);
725extern int afs_vnode_link(struct afs_vnode *, struct afs_vnode *, struct key *,
726 const char *);
727extern int afs_vnode_symlink(struct afs_vnode *, struct key *, const char *,
728 const char *, struct afs_fid *,
729 struct afs_file_status *, struct afs_server **);
730extern int afs_vnode_rename(struct afs_vnode *, struct afs_vnode *,
731 struct key *, const char *, const char *);
31143d5d
DH
732extern int afs_vnode_store_data(struct afs_writeback *, pgoff_t, pgoff_t,
733 unsigned, unsigned);
734extern int afs_vnode_setattr(struct afs_vnode *, struct key *, struct iattr *);
45222b9e
DH
735extern int afs_vnode_get_volume_status(struct afs_vnode *, struct key *,
736 struct afs_volume_status *);
e8d6c554
DH
737extern int afs_vnode_set_lock(struct afs_vnode *, struct key *,
738 afs_lock_type_t);
739extern int afs_vnode_extend_lock(struct afs_vnode *, struct key *);
740extern int afs_vnode_release_lock(struct afs_vnode *, struct key *);
08e0e7c8
DH
741
742/*
743 * volume.c
744 */
08e0e7c8
DH
745#define afs_get_volume(V) do { atomic_inc(&(V)->usage); } while(0)
746
747extern void afs_put_volume(struct afs_volume *);
00d3b7a4 748extern struct afs_volume *afs_volume_lookup(struct afs_mount_params *);
08e0e7c8
DH
749extern struct afs_server *afs_volume_pick_fileserver(struct afs_vnode *);
750extern int afs_volume_release_fileserver(struct afs_vnode *,
751 struct afs_server *, int);
752
31143d5d
DH
753/*
754 * write.c
755 */
756extern int afs_set_page_dirty(struct page *);
757extern void afs_put_writeback(struct afs_writeback *);
15b4650e
NP
758extern int afs_write_begin(struct file *file, struct address_space *mapping,
759 loff_t pos, unsigned len, unsigned flags,
760 struct page **pagep, void **fsdata);
761extern int afs_write_end(struct file *file, struct address_space *mapping,
762 loff_t pos, unsigned len, unsigned copied,
763 struct page *page, void *fsdata);
31143d5d
DH
764extern int afs_writepage(struct page *, struct writeback_control *);
765extern int afs_writepages(struct address_space *, struct writeback_control *);
31143d5d 766extern void afs_pages_written_back(struct afs_vnode *, struct afs_call *);
50b5551d 767extern ssize_t afs_file_write(struct kiocb *, struct iov_iter *);
31143d5d 768extern int afs_writeback_all(struct afs_vnode *);
02c24a82 769extern int afs_fsync(struct file *, loff_t, loff_t, int);
31143d5d
DH
770
771
08e0e7c8
DH
772/*****************************************************************************/
773/*
774 * debug tracing
775 */
776extern unsigned afs_debug;
777
778#define dbgprintk(FMT,...) \
ad16df84 779 printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__)
08e0e7c8 780
530b6412
HH
781#define kenter(FMT,...) dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
782#define kleave(FMT,...) dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
08e0e7c8
DH
783#define kdebug(FMT,...) dbgprintk(" "FMT ,##__VA_ARGS__)
784
785
786#if defined(__KDEBUG)
787#define _enter(FMT,...) kenter(FMT,##__VA_ARGS__)
788#define _leave(FMT,...) kleave(FMT,##__VA_ARGS__)
789#define _debug(FMT,...) kdebug(FMT,##__VA_ARGS__)
790
791#elif defined(CONFIG_AFS_DEBUG)
792#define AFS_DEBUG_KENTER 0x01
793#define AFS_DEBUG_KLEAVE 0x02
794#define AFS_DEBUG_KDEBUG 0x04
795
796#define _enter(FMT,...) \
797do { \
798 if (unlikely(afs_debug & AFS_DEBUG_KENTER)) \
799 kenter(FMT,##__VA_ARGS__); \
800} while (0)
801
802#define _leave(FMT,...) \
803do { \
804 if (unlikely(afs_debug & AFS_DEBUG_KLEAVE)) \
805 kleave(FMT,##__VA_ARGS__); \
806} while (0)
807
808#define _debug(FMT,...) \
809do { \
810 if (unlikely(afs_debug & AFS_DEBUG_KDEBUG)) \
811 kdebug(FMT,##__VA_ARGS__); \
812} while (0)
813
814#else
12fdff3f
DH
815#define _enter(FMT,...) no_printk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
816#define _leave(FMT,...) no_printk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
817#define _debug(FMT,...) no_printk(" "FMT ,##__VA_ARGS__)
08e0e7c8
DH
818#endif
819
820/*
821 * debug assertion checking
822 */
823#if 1 // defined(__KDEBUGALL)
824
825#define ASSERT(X) \
826do { \
827 if (unlikely(!(X))) { \
828 printk(KERN_ERR "\n"); \
829 printk(KERN_ERR "AFS: Assertion failed\n"); \
830 BUG(); \
831 } \
832} while(0)
833
834#define ASSERTCMP(X, OP, Y) \
835do { \
836 if (unlikely(!((X) OP (Y)))) { \
837 printk(KERN_ERR "\n"); \
838 printk(KERN_ERR "AFS: Assertion failed\n"); \
839 printk(KERN_ERR "%lu " #OP " %lu is false\n", \
840 (unsigned long)(X), (unsigned long)(Y)); \
841 printk(KERN_ERR "0x%lx " #OP " 0x%lx is false\n", \
842 (unsigned long)(X), (unsigned long)(Y)); \
843 BUG(); \
844 } \
845} while(0)
846
416351f2
DH
847#define ASSERTRANGE(L, OP1, N, OP2, H) \
848do { \
849 if (unlikely(!((L) OP1 (N)) || !((N) OP2 (H)))) { \
850 printk(KERN_ERR "\n"); \
851 printk(KERN_ERR "AFS: Assertion failed\n"); \
852 printk(KERN_ERR "%lu "#OP1" %lu "#OP2" %lu is false\n", \
853 (unsigned long)(L), (unsigned long)(N), \
854 (unsigned long)(H)); \
855 printk(KERN_ERR "0x%lx "#OP1" 0x%lx "#OP2" 0x%lx is false\n", \
856 (unsigned long)(L), (unsigned long)(N), \
857 (unsigned long)(H)); \
858 BUG(); \
859 } \
860} while(0)
861
08e0e7c8
DH
862#define ASSERTIF(C, X) \
863do { \
864 if (unlikely((C) && !(X))) { \
865 printk(KERN_ERR "\n"); \
866 printk(KERN_ERR "AFS: Assertion failed\n"); \
867 BUG(); \
868 } \
869} while(0)
870
871#define ASSERTIFCMP(C, X, OP, Y) \
872do { \
873 if (unlikely((C) && !((X) OP (Y)))) { \
874 printk(KERN_ERR "\n"); \
875 printk(KERN_ERR "AFS: Assertion failed\n"); \
876 printk(KERN_ERR "%lu " #OP " %lu is false\n", \
877 (unsigned long)(X), (unsigned long)(Y)); \
878 printk(KERN_ERR "0x%lx " #OP " 0x%lx is false\n", \
879 (unsigned long)(X), (unsigned long)(Y)); \
880 BUG(); \
881 } \
882} while(0)
883
884#else
885
886#define ASSERT(X) \
887do { \
888} while(0)
889
890#define ASSERTCMP(X, OP, Y) \
891do { \
892} while(0)
893
416351f2
DH
894#define ASSERTRANGE(L, OP1, N, OP2, H) \
895do { \
896} while(0)
897
08e0e7c8
DH
898#define ASSERTIF(C, X) \
899do { \
900} while(0)
901
902#define ASSERTIFCMP(C, X, OP, Y) \
903do { \
904} while(0)
905
906#endif /* __KDEBUGALL */