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