blob: bc9ded443b116de271fe85398ca2900e67507970 [file] [log] [blame]
David Howellsec268152007-04-26 15:49:28 -07001/* internal AFS stuff
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
David Howells08e0e7c2007-04-26 15:55:03 -07003 * Copyright (C) 2002, 2007 Red Hat, Inc. All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/compiler.h>
13#include <linux/kernel.h>
Tina Ruchandani8a797902017-03-16 16:27:46 +000014#include <linux/ktime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/fs.h>
16#include <linux/pagemap.h>
David Howells08e0e7c2007-04-26 15:55:03 -070017#include <linux/rxrpc.h>
David Howells00d3b7a2007-04-26 15:57:07 -070018#include <linux/key.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040019#include <linux/workqueue.h>
Andrew Morton00c541e2007-05-31 00:40:52 -070020#include <linux/sched.h>
Christoph Hellwig80e50be2009-10-01 15:44:27 -070021#include <linux/fscache.h>
Jens Axboee1da0222010-04-22 11:58:18 +020022#include <linux/backing-dev.h>
David Howellsff548772017-02-10 16:34:07 +000023#include <linux/uuid.h>
David Howellsf044c882017-11-02 15:27:45 +000024#include <net/net_namespace.h>
David Howells8324f0b2016-08-30 09:49:29 +010025#include <net/af_rxrpc.h>
Andrew Morton00c541e2007-05-31 00:40:52 -070026
David Howells08e0e7c2007-04-26 15:55:03 -070027#include "afs.h"
28#include "afs_vl.h"
29
30#define AFS_CELL_MAX_ADDRS 15
31
David Howells31143d52007-05-09 02:33:46 -070032struct pagevec;
David Howells08e0e7c2007-04-26 15:55:03 -070033struct 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
David Howells00d3b7a2007-04-26 15:57:07 -070045struct afs_mount_params {
46 bool rwpath; /* T if the parent should be considered R/W */
47 bool force; /* T to force cell type */
wangleibec5eb62010-08-11 09:38:04 +010048 bool autocell; /* T if set auto mount operation */
David Howells00d3b7a2007-04-26 15:57:07 -070049 afs_voltype_t type; /* type of volume requested */
50 int volnamesz; /* size of volume name */
51 const char *volname; /* name of volume to mount */
David Howellsf044c882017-11-02 15:27:45 +000052 struct afs_net *net; /* Network namespace in effect */
David Howells00d3b7a2007-04-26 15:57:07 -070053 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
David Howells8e8d7f12017-01-05 10:38:34 +000058enum 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};
David Howellsf044c882017-11-02 15:27:45 +000067
David Howells08e0e7c2007-04-26 15:55:03 -070068/*
69 * a record of an in-progress RxRPC call
70 */
71struct afs_call {
72 const struct afs_call_type *type; /* type of call */
David Howells08e0e7c2007-04-26 15:55:03 -070073 wait_queue_head_t waitq; /* processes awaiting completion */
David Howells341f7412017-01-05 10:38:36 +000074 struct work_struct async_work; /* async I/O processor */
David Howells08e0e7c2007-04-26 15:55:03 -070075 struct work_struct work; /* actual work processor */
David Howells08e0e7c2007-04-26 15:55:03 -070076 struct rxrpc_call *rxcall; /* RxRPC call handle */
77 struct key *key; /* security for this call */
David Howellsf044c882017-11-02 15:27:45 +000078 struct afs_net *net; /* The network namespace */
David Howells08e0e7c2007-04-26 15:55:03 -070079 struct afs_server *server; /* server affected by incoming CM call */
80 void *request; /* request data (first part) */
David Howells31143d52007-05-09 02:33:46 -070081 struct address_space *mapping; /* page set */
82 struct afs_writeback *wb; /* writeback being performed */
David Howells08e0e7c2007-04-26 15:55:03 -070083 void *buffer; /* reply receive buffer */
84 void *reply; /* reply buffer (first part) */
85 void *reply2; /* reply buffer (second part) */
86 void *reply3; /* reply buffer (third part) */
David Howells260a9802007-04-26 15:59:35 -070087 void *reply4; /* reply buffer (fourth part) */
David Howells31143d52007-05-09 02:33:46 -070088 pgoff_t first; /* first page in mapping to deal with */
89 pgoff_t last; /* last page in mapping to deal with */
David Howellsd0016482016-08-30 20:42:14 +010090 size_t offset; /* offset into received data store */
David Howells341f7412017-01-05 10:38:36 +000091 atomic_t usage;
David Howells8e8d7f12017-01-05 10:38:34 +000092 enum afs_call_state state;
David Howells08e0e7c2007-04-26 15:55:03 -070093 int error; /* error code */
David Howellsd0016482016-08-30 20:42:14 +010094 u32 abort_code; /* Remote abort ID or 0 */
David Howells08e0e7c2007-04-26 15:55:03 -070095 unsigned request_size; /* size of request data */
96 unsigned reply_max; /* maximum size of reply */
David Howells31143d52007-05-09 02:33:46 -070097 unsigned first_offset; /* offset into mapping[first] */
Marc Dionnebcd89272017-03-16 16:27:44 +000098 union {
99 unsigned last_to; /* amount of mapping[last] */
100 unsigned count2; /* count used in unmarshalling */
101 };
David Howells08e0e7c2007-04-26 15:55:03 -0700102 unsigned char unmarshall; /* unmarshalling phase */
103 bool incoming; /* T if incoming call */
David Howells31143d52007-05-09 02:33:46 -0700104 bool send_pages; /* T if data from mapping should be sent */
David Howellsd0016482016-08-30 20:42:14 +0100105 bool need_attention; /* T if RxRPC poked us */
David Howells56ff9c82017-01-05 10:38:36 +0000106 bool async; /* T if asynchronous */
David Howellsa68f4a22017-10-18 11:36:39 +0100107 bool upgrade; /* T to request service upgrade */
David Howells08e0e7c2007-04-26 15:55:03 -0700108 u16 service_id; /* RxRPC service ID to call */
109 __be16 port; /* target UDP port */
David Howells50a2c952016-10-13 08:27:10 +0100110 u32 operation_ID; /* operation ID for an incoming call */
David Howells08e0e7c2007-04-26 15:55:03 -0700111 u32 count; /* count for use in unmarshalling */
112 __be32 tmp; /* place to extract temporary data */
David Howells31143d52007-05-09 02:33:46 -0700113 afs_dataversion_t store_version; /* updated version expected from store */
David Howells08e0e7c2007-04-26 15:55:03 -0700114};
115
116struct afs_call_type {
David Howells00d3b7a2007-04-26 15:57:07 -0700117 const char *name;
118
David Howells08e0e7c2007-04-26 15:55:03 -0700119 /* deliver request or reply data to an call
120 * - returning an error will cause the call to be aborted
121 */
David Howellsd0016482016-08-30 20:42:14 +0100122 int (*deliver)(struct afs_call *call);
David Howells08e0e7c2007-04-26 15:55:03 -0700123
124 /* map an abort code to an error number */
125 int (*abort_to_error)(u32 abort_code);
126
127 /* clean up a call */
128 void (*destructor)(struct afs_call *call);
David Howells341f7412017-01-05 10:38:36 +0000129
130 /* Work function */
131 void (*work)(struct work_struct *work);
David Howells08e0e7c2007-04-26 15:55:03 -0700132};
133
134/*
David Howells196ee9c2017-01-05 10:38:34 +0000135 * Record of an outstanding read operation on a vnode.
136 */
137struct afs_read {
138 loff_t pos; /* Where to start reading */
David Howellse8e581a2017-03-16 16:27:44 +0000139 loff_t len; /* How much we're asking for */
David Howells196ee9c2017-01-05 10:38:34 +0000140 loff_t actual_len; /* How much we're actually getting */
David Howells6a0e3992017-03-16 16:27:46 +0000141 loff_t remain; /* Amount remaining */
David Howells196ee9c2017-01-05 10:38:34 +0000142 atomic_t usage;
David Howells196ee9c2017-01-05 10:38:34 +0000143 unsigned int index; /* Which page we're reading into */
David Howells196ee9c2017-01-05 10:38:34 +0000144 unsigned int nr_pages;
145 void (*page_done)(struct afs_call *, struct afs_read *);
146 struct page *pages[];
147};
148
149/*
David Howells31143d52007-05-09 02:33:46 -0700150 * record of an outstanding writeback on a vnode
151 */
152struct afs_writeback {
153 struct list_head link; /* link in vnode->writebacks */
154 struct work_struct writer; /* work item to perform the writeback */
155 struct afs_vnode *vnode; /* vnode to which this write applies */
156 struct key *key; /* owner of this write */
157 wait_queue_head_t waitq; /* completion and ready wait queue */
158 pgoff_t first; /* first page in batch */
159 pgoff_t point; /* last page in current store op */
160 pgoff_t last; /* last page in batch (inclusive) */
161 unsigned offset_first; /* offset into first page of start of write */
162 unsigned to_last; /* offset into last page of end of write */
163 int num_conflicts; /* count of conflicting writes in list */
164 int usage;
165 bool conflicts; /* T if has dependent conflicts */
166 enum {
167 AFS_WBACK_SYNCING, /* synchronisation being performed */
168 AFS_WBACK_PENDING, /* write pending */
169 AFS_WBACK_CONFLICTING, /* conflicting writes posted */
170 AFS_WBACK_WRITING, /* writing back */
171 AFS_WBACK_COMPLETE /* the writeback record has been unlinked */
172 } state __attribute__((packed));
173};
174
175/*
David Howells08e0e7c2007-04-26 15:55:03 -0700176 * AFS superblock private data
177 * - there's one superblock per volume
178 */
179struct afs_super_info {
David Howellsf044c882017-11-02 15:27:45 +0000180 struct afs_net *net; /* Network namespace */
David Howells08e0e7c2007-04-26 15:55:03 -0700181 struct afs_volume *volume; /* volume record */
182 char rwparent; /* T if parent is R/W AFS volume */
183};
184
185static inline struct afs_super_info *AFS_FS_S(struct super_block *sb)
186{
187 return sb->s_fs_info;
188}
189
190extern struct file_system_type afs_fs_type;
191
192/*
193 * entry in the cached cell catalogue
194 */
195struct afs_cache_cell {
David Howells00d3b7a2007-04-26 15:57:07 -0700196 char name[AFS_MAXCELLNAME]; /* cell name (padded with NULs) */
197 struct in_addr vl_servers[15]; /* cached cell VL servers */
David Howells08e0e7c2007-04-26 15:55:03 -0700198};
199
200/*
David Howellsf044c882017-11-02 15:27:45 +0000201 * AFS network namespace record.
202 */
203struct afs_net {
204 struct afs_uuid uuid;
205 bool live; /* F if this namespace is being removed */
206
207 /* AF_RXRPC I/O stuff */
208 struct socket *socket;
209 struct afs_call *spare_incoming_call;
210 struct work_struct charge_preallocation_work;
211 struct mutex socket_mutex;
212 atomic_t nr_outstanding_calls;
213 atomic_t nr_superblocks;
214
215 /* Cell database */
216 struct list_head cells;
217 struct afs_cell *ws_cell;
218 rwlock_t cells_lock;
219 struct rw_semaphore cells_sem;
220 wait_queue_head_t cells_freeable_wq;
221
222 struct rw_semaphore proc_cells_sem;
223 struct list_head proc_cells;
224
225 /* Volume location database */
226 struct list_head vl_updates; /* VL records in need-update order */
227 struct list_head vl_graveyard; /* Inactive VL records */
228 struct delayed_work vl_reaper;
229 struct delayed_work vl_updater;
230 spinlock_t vl_updates_lock;
231 spinlock_t vl_graveyard_lock;
232
233 /* File locking renewal management */
234 struct mutex lock_manager_mutex;
235
236 /* Server database */
237 struct rb_root servers; /* Active servers */
238 rwlock_t servers_lock;
239 struct list_head server_graveyard; /* Inactive server LRU list */
240 spinlock_t server_graveyard_lock;
David Howells59fa1c42017-11-02 15:27:45 +0000241 struct timer_list server_timer;
242 struct work_struct server_reaper;
243 atomic_t servers_outstanding;
David Howellsf044c882017-11-02 15:27:45 +0000244
245 /* Misc */
246 struct proc_dir_entry *proc_afs; /* /proc/net/afs directory */
247};
248
249extern struct afs_net __afs_net;// Dummy AFS network namespace; TODO: replace with real netns
250
251/*
David Howells08e0e7c2007-04-26 15:55:03 -0700252 * AFS cell record
253 */
254struct afs_cell {
255 atomic_t usage;
256 struct list_head link; /* main cell list link */
David Howellsf044c882017-11-02 15:27:45 +0000257 struct afs_net *net; /* The network namespace */
David Howells00d3b7a2007-04-26 15:57:07 -0700258 struct key *anonymous_key; /* anonymous user key for this cell */
David Howells08e0e7c2007-04-26 15:55:03 -0700259 struct list_head proc_link; /* /proc cell list link */
David Howells9b3f26c2009-04-03 16:42:41 +0100260#ifdef CONFIG_AFS_FSCACHE
261 struct fscache_cookie *cache; /* caching cookie */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262#endif
263
David Howells08e0e7c2007-04-26 15:55:03 -0700264 /* server record management */
265 rwlock_t servers_lock; /* active server list lock */
266 struct list_head servers; /* active server list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
David Howells08e0e7c2007-04-26 15:55:03 -0700268 /* volume location record management */
269 struct rw_semaphore vl_sem; /* volume management serialisation semaphore */
270 struct list_head vl_list; /* cell's active VL record list */
271 spinlock_t vl_lock; /* vl_list lock */
272 unsigned short vl_naddrs; /* number of VL servers in addr list */
273 unsigned short vl_curr_svix; /* current server index */
274 struct in_addr vl_addrs[AFS_CELL_MAX_ADDRS]; /* cell VL server addresses */
275
276 char name[0]; /* cell name - must go last */
277};
278
279/*
280 * entry in the cached volume location catalogue
281 */
282struct afs_cache_vlocation {
David Howells00d3b7a2007-04-26 15:57:07 -0700283 /* volume name (lowercase, padded with NULs) */
284 uint8_t name[AFS_MAXVOLNAME + 1];
285
David Howells08e0e7c2007-04-26 15:55:03 -0700286 uint8_t nservers; /* number of entries used in servers[] */
287 uint8_t vidmask; /* voltype mask for vid[] */
288 uint8_t srvtmask[8]; /* voltype masks for servers[] */
289#define AFS_VOL_VTM_RW 0x01 /* R/W version of the volume is available (on this server) */
290#define AFS_VOL_VTM_RO 0x02 /* R/O version of the volume is available (on this server) */
291#define AFS_VOL_VTM_BAK 0x04 /* backup version of the volume is available (on this server) */
292
293 afs_volid_t vid[3]; /* volume IDs for R/W, R/O and Bak volumes */
294 struct in_addr servers[8]; /* fileserver addresses */
295 time_t rtime; /* last retrieval time */
296};
297
298/*
299 * volume -> vnode hash table entry
300 */
301struct afs_cache_vhash {
302 afs_voltype_t vtype; /* which volume variation */
303 uint8_t hash_bucket; /* which hash bucket this represents */
304} __attribute__((packed));
305
306/*
307 * AFS volume location record
308 */
309struct afs_vlocation {
310 atomic_t usage;
Tina Ruchandani8a797902017-03-16 16:27:46 +0000311 time64_t time_of_death; /* time at which put reduced usage to 0 */
David Howells08e0e7c2007-04-26 15:55:03 -0700312 struct list_head link; /* link in cell volume location list */
313 struct list_head grave; /* link in master graveyard list */
314 struct list_head update; /* link in master update list */
315 struct afs_cell *cell; /* cell to which volume belongs */
David Howells9b3f26c2009-04-03 16:42:41 +0100316#ifdef CONFIG_AFS_FSCACHE
317 struct fscache_cookie *cache; /* caching cookie */
David Howells08e0e7c2007-04-26 15:55:03 -0700318#endif
319 struct afs_cache_vlocation vldb; /* volume information DB record */
320 struct afs_volume *vols[3]; /* volume access record pointer (index by type) */
321 wait_queue_head_t waitq; /* status change waitqueue */
Tina Ruchandani8a797902017-03-16 16:27:46 +0000322 time64_t update_at; /* time at which record should be updated */
David S. Miller39bf0942007-04-26 20:39:14 -0700323 spinlock_t lock; /* access lock */
David Howells08e0e7c2007-04-26 15:55:03 -0700324 afs_vlocation_state_t state; /* volume location state */
325 unsigned short upd_rej_cnt; /* ENOMEDIUM count during update */
326 unsigned short upd_busy_cnt; /* EBUSY count during update */
327 bool valid; /* T if valid */
328};
329
330/*
331 * AFS fileserver record
332 */
333struct afs_server {
334 atomic_t usage;
Tina Ruchandani8a797902017-03-16 16:27:46 +0000335 time64_t time_of_death; /* time at which put reduced usage to 0 */
David Howells08e0e7c2007-04-26 15:55:03 -0700336 struct in_addr addr; /* server address */
337 struct afs_cell *cell; /* cell in which server resides */
338 struct list_head link; /* link in cell's server list */
339 struct list_head grave; /* link in master graveyard list */
340 struct rb_node master_rb; /* link in master by-addr tree */
341 struct rw_semaphore sem; /* access lock */
342
343 /* file service access */
344 struct rb_root fs_vnodes; /* vnodes backed by this server (ordered by FID) */
345 unsigned long fs_act_jif; /* time at which last activity occurred */
346 unsigned long fs_dead_jif; /* time at which no longer to be considered dead */
347 spinlock_t fs_lock; /* access lock */
348 int fs_state; /* 0 or reason FS currently marked dead (-errno) */
349
350 /* callback promise management */
351 struct rb_root cb_promises; /* vnode expiration list (ordered earliest first) */
352 struct delayed_work cb_updater; /* callback updater */
353 struct delayed_work cb_break_work; /* collected break dispatcher */
354 wait_queue_head_t cb_break_waitq; /* space available in cb_break waitqueue */
355 spinlock_t cb_lock; /* access lock */
356 struct afs_callback cb_break[64]; /* ring of callbacks awaiting breaking */
357 atomic_t cb_break_n; /* number of pending breaks */
358 u8 cb_break_head; /* head of callback breaking ring */
359 u8 cb_break_tail; /* tail of callback breaking ring */
360};
361
362/*
363 * AFS volume access record
364 */
365struct afs_volume {
366 atomic_t usage;
367 struct afs_cell *cell; /* cell to which belongs (unrefd ptr) */
368 struct afs_vlocation *vlocation; /* volume location */
David Howells9b3f26c2009-04-03 16:42:41 +0100369#ifdef CONFIG_AFS_FSCACHE
370 struct fscache_cookie *cache; /* caching cookie */
David Howells08e0e7c2007-04-26 15:55:03 -0700371#endif
372 afs_volid_t vid; /* volume ID */
373 afs_voltype_t type; /* type of volume */
374 char type_force; /* force volume type (suppress R/O -> R/W) */
375 unsigned short nservers; /* number of server slots filled */
376 unsigned short rjservers; /* number of servers discarded due to -ENOMEDIUM */
377 struct afs_server *servers[8]; /* servers on which volume resides (ordered) */
378 struct rw_semaphore server_sem; /* lock for accessing current server */
379};
380
381/*
382 * vnode catalogue entry
383 */
384struct afs_cache_vnode {
385 afs_vnodeid_t vnode_id; /* vnode ID */
386 unsigned vnode_unique; /* vnode ID uniquifier */
387 afs_dataversion_t data_version; /* data version */
388};
389
390/*
391 * AFS inode private data
392 */
393struct afs_vnode {
394 struct inode vfs_inode; /* the VFS's inode record */
395
396 struct afs_volume *volume; /* volume on which vnode resides */
397 struct afs_server *server; /* server currently supplying this file */
398 struct afs_fid fid; /* the file identifier for this inode */
399 struct afs_file_status status; /* AFS status info for this file */
David Howells9b3f26c2009-04-03 16:42:41 +0100400#ifdef CONFIG_AFS_FSCACHE
401 struct fscache_cookie *cache; /* caching cookie */
David Howells08e0e7c2007-04-26 15:55:03 -0700402#endif
David Howells00d3b7a2007-04-26 15:57:07 -0700403 struct afs_permits *permits; /* cache of permits so far obtained */
404 struct mutex permits_lock; /* lock for altering permits list */
David Howells260a9802007-04-26 15:59:35 -0700405 struct mutex validate_lock; /* lock for validating this vnode */
David Howells08e0e7c2007-04-26 15:55:03 -0700406 wait_queue_head_t update_waitq; /* status fetch waitqueue */
David Howells260a9802007-04-26 15:59:35 -0700407 int update_cnt; /* number of outstanding ops that will update the
David Howells08e0e7c2007-04-26 15:55:03 -0700408 * status */
David Howells31143d52007-05-09 02:33:46 -0700409 spinlock_t writeback_lock; /* lock for writebacks */
David Howells08e0e7c2007-04-26 15:55:03 -0700410 spinlock_t lock; /* waitqueue/flags lock */
411 unsigned long flags;
412#define AFS_VNODE_CB_BROKEN 0 /* set if vnode's callback was broken */
David Howells260a9802007-04-26 15:59:35 -0700413#define AFS_VNODE_UNSET 1 /* set if vnode attributes not yet set */
David Howells08e0e7c2007-04-26 15:55:03 -0700414#define AFS_VNODE_MODIFIED 2 /* set if vnode's data modified */
415#define AFS_VNODE_ZAP_DATA 3 /* set if vnode's data should be invalidated */
416#define AFS_VNODE_DELETED 4 /* set if vnode deleted on server */
417#define AFS_VNODE_MOUNTPOINT 5 /* set if vnode is a mountpoint symlink */
David Howellse8d6c552007-07-15 23:40:12 -0700418#define AFS_VNODE_LOCKING 6 /* set if waiting for lock on vnode */
419#define AFS_VNODE_READLOCKED 7 /* set if vnode is read-locked on the server */
420#define AFS_VNODE_WRITELOCKED 8 /* set if vnode is write-locked on the server */
421#define AFS_VNODE_UNLOCKING 9 /* set if vnode is being unlocked on the server */
wangleibec5eb62010-08-11 09:38:04 +0100422#define AFS_VNODE_AUTOCELL 10 /* set if Vnode is an auto mount point */
423#define AFS_VNODE_PSEUDODIR 11 /* set if Vnode is a pseudo directory */
David Howells08e0e7c2007-04-26 15:55:03 -0700424
David Howells00d3b7a2007-04-26 15:57:07 -0700425 long acl_order; /* ACL check count (callback break count) */
426
David Howells31143d52007-05-09 02:33:46 -0700427 struct list_head writebacks; /* alterations in pagecache that need writing */
David Howellse8d6c552007-07-15 23:40:12 -0700428 struct list_head pending_locks; /* locks waiting to be granted */
429 struct list_head granted_locks; /* locks granted on this file */
430 struct delayed_work lock_work; /* work to be done in locking */
431 struct key *unlock_key; /* key to be used in unlocking */
David Howells31143d52007-05-09 02:33:46 -0700432
David Howells08e0e7c2007-04-26 15:55:03 -0700433 /* outstanding callback notification on this file */
434 struct rb_node server_rb; /* link in server->fs_vnodes */
435 struct rb_node cb_promise; /* link in server->cb_promises */
436 struct work_struct cb_broken_work; /* work to be done on callback break */
Tina Ruchandani56e71432017-03-16 16:27:46 +0000437 time64_t cb_expires; /* time at which callback expires */
438 time64_t cb_expires_at; /* time used to order cb_promise */
David Howells08e0e7c2007-04-26 15:55:03 -0700439 unsigned cb_version; /* callback version */
440 unsigned cb_expiry; /* callback expiry time */
441 afs_callback_type_t cb_type; /* type of callback */
442 bool cb_promised; /* true if promise still holds */
443};
444
David Howells00d3b7a2007-04-26 15:57:07 -0700445/*
446 * cached security record for one user's attempt to access a vnode
447 */
448struct afs_permit {
449 struct key *key; /* RxRPC ticket holding a security context */
450 afs_access_t access_mask; /* access mask for this key */
451};
452
453/*
454 * cache of security records from attempts to access a vnode
455 */
456struct afs_permits {
457 struct rcu_head rcu; /* disposal procedure */
458 int count; /* number of records */
459 struct afs_permit permits[0]; /* the permits so far examined */
460};
461
David Howellsb908fe62007-04-26 15:58:17 -0700462/*
463 * record of one of a system's set of network interfaces
464 */
465struct afs_interface {
David Howellsb908fe62007-04-26 15:58:17 -0700466 struct in_addr address; /* IPv4 address bound to interface */
467 struct in_addr netmask; /* netmask applied to address */
468 unsigned mtu; /* MTU of interface */
469};
470
David Howells08e0e7c2007-04-26 15:55:03 -0700471/*****************************************************************************/
472/*
David Howells9b3f26c2009-04-03 16:42:41 +0100473 * cache.c
474 */
475#ifdef CONFIG_AFS_FSCACHE
476extern struct fscache_netfs afs_cache_netfs;
477extern struct fscache_cookie_def afs_cell_cache_index_def;
478extern struct fscache_cookie_def afs_vlocation_cache_index_def;
479extern struct fscache_cookie_def afs_volume_cache_index_def;
480extern struct fscache_cookie_def afs_vnode_cache_index_def;
481#else
482#define afs_cell_cache_index_def (*(struct fscache_cookie_def *) NULL)
483#define afs_vlocation_cache_index_def (*(struct fscache_cookie_def *) NULL)
484#define afs_volume_cache_index_def (*(struct fscache_cookie_def *) NULL)
485#define afs_vnode_cache_index_def (*(struct fscache_cookie_def *) NULL)
486#endif
487
488/*
David Howells08e0e7c2007-04-26 15:55:03 -0700489 * callback.c
490 */
David Howellsf044c882017-11-02 15:27:45 +0000491extern struct workqueue_struct *afs_callback_update_worker;
492
David Howells08e0e7c2007-04-26 15:55:03 -0700493extern void afs_init_callback_state(struct afs_server *);
494extern void afs_broken_callback_work(struct work_struct *);
495extern void afs_break_callbacks(struct afs_server *, size_t,
496 struct afs_callback[]);
David Howells260a9802007-04-26 15:59:35 -0700497extern void afs_discard_callback_on_delete(struct afs_vnode *);
David Howells08e0e7c2007-04-26 15:55:03 -0700498extern void afs_give_up_callback(struct afs_vnode *);
499extern void afs_dispatch_give_up_callbacks(struct work_struct *);
500extern void afs_flush_callback_breaks(struct afs_server *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502/*
503 * cell.c
504 */
David Howells08e0e7c2007-04-26 15:55:03 -0700505#define afs_get_cell(C) do { atomic_inc(&(C)->usage); } while(0)
David Howellsf044c882017-11-02 15:27:45 +0000506extern int afs_cell_init(struct afs_net *, char *);
507extern struct afs_cell *afs_cell_create(struct afs_net *, const char *, unsigned, char *, bool);
508extern struct afs_cell *afs_cell_lookup(struct afs_net *, const char *, unsigned, bool);
David Howells08e0e7c2007-04-26 15:55:03 -0700509extern struct afs_cell *afs_grab_cell(struct afs_cell *);
510extern void afs_put_cell(struct afs_cell *);
David Howellsf044c882017-11-02 15:27:45 +0000511extern void __net_exit afs_cell_purge(struct afs_net *);
David Howells08e0e7c2007-04-26 15:55:03 -0700512
513/*
514 * cmservice.c
515 */
516extern bool afs_cm_incoming_call(struct afs_call *);
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518/*
519 * dir.c
520 */
Arjan van de Ven754661f2007-02-12 00:55:38 -0800521extern const struct inode_operations afs_dir_inode_operations;
Al Virod61dcce2011-01-12 20:04:20 -0500522extern const struct dentry_operations afs_fs_dentry_operations;
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800523extern const struct file_operations afs_dir_file_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525/*
526 * file.c
527 */
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700528extern const struct address_space_operations afs_fs_aops;
Arjan van de Ven754661f2007-02-12 00:55:38 -0800529extern const struct inode_operations afs_file_inode_operations;
David Howells00d3b7a2007-04-26 15:57:07 -0700530extern const struct file_operations afs_file_operations;
531
532extern int afs_open(struct inode *, struct file *);
533extern int afs_release(struct inode *, struct file *);
Al Virof6d335c2010-05-21 15:27:09 +0100534extern int afs_page_filler(void *, struct page *);
David Howells196ee9c2017-01-05 10:38:34 +0000535extern void afs_put_read(struct afs_read *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537/*
David Howellse8d6c552007-07-15 23:40:12 -0700538 * flock.c
539 */
David Howellsf044c882017-11-02 15:27:45 +0000540extern struct workqueue_struct *afs_lock_manager;
541
David Howellse8d6c552007-07-15 23:40:12 -0700542extern void afs_lock_work(struct work_struct *);
543extern void afs_lock_may_be_available(struct afs_vnode *);
544extern int afs_lock(struct file *, int, struct file_lock *);
545extern int afs_flock(struct file *, int, struct file_lock *);
546
547/*
David Howells08e0e7c2007-04-26 15:55:03 -0700548 * fsclient.c
549 */
David Howells00d3b7a2007-04-26 15:57:07 -0700550extern int afs_fs_fetch_file_status(struct afs_server *, struct key *,
551 struct afs_vnode *, struct afs_volsync *,
David Howells56ff9c82017-01-05 10:38:36 +0000552 bool);
David Howellsf044c882017-11-02 15:27:45 +0000553extern int afs_fs_give_up_callbacks(struct afs_net *, struct afs_server *, bool);
David Howells00d3b7a2007-04-26 15:57:07 -0700554extern int afs_fs_fetch_data(struct afs_server *, struct key *,
David Howells56ff9c82017-01-05 10:38:36 +0000555 struct afs_vnode *, struct afs_read *, bool);
David Howells260a9802007-04-26 15:59:35 -0700556extern int afs_fs_create(struct afs_server *, struct key *,
557 struct afs_vnode *, const char *, umode_t,
558 struct afs_fid *, struct afs_file_status *,
David Howells56ff9c82017-01-05 10:38:36 +0000559 struct afs_callback *, bool);
David Howells260a9802007-04-26 15:59:35 -0700560extern int afs_fs_remove(struct afs_server *, struct key *,
David Howells56ff9c82017-01-05 10:38:36 +0000561 struct afs_vnode *, const char *, bool, bool);
David Howells260a9802007-04-26 15:59:35 -0700562extern int afs_fs_link(struct afs_server *, struct key *, struct afs_vnode *,
David Howells56ff9c82017-01-05 10:38:36 +0000563 struct afs_vnode *, const char *, bool);
David Howells260a9802007-04-26 15:59:35 -0700564extern int afs_fs_symlink(struct afs_server *, struct key *,
565 struct afs_vnode *, const char *, const char *,
David Howells56ff9c82017-01-05 10:38:36 +0000566 struct afs_fid *, struct afs_file_status *, bool);
David Howells260a9802007-04-26 15:59:35 -0700567extern int afs_fs_rename(struct afs_server *, struct key *,
568 struct afs_vnode *, const char *,
David Howells56ff9c82017-01-05 10:38:36 +0000569 struct afs_vnode *, const char *, bool);
David Howells31143d52007-05-09 02:33:46 -0700570extern int afs_fs_store_data(struct afs_server *, struct afs_writeback *,
David Howells56ff9c82017-01-05 10:38:36 +0000571 pgoff_t, pgoff_t, unsigned, unsigned, bool);
David Howells31143d52007-05-09 02:33:46 -0700572extern int afs_fs_setattr(struct afs_server *, struct key *,
David Howells56ff9c82017-01-05 10:38:36 +0000573 struct afs_vnode *, struct iattr *, bool);
David Howells45222b92007-05-10 22:22:20 -0700574extern int afs_fs_get_volume_status(struct afs_server *, struct key *,
575 struct afs_vnode *,
David Howells56ff9c82017-01-05 10:38:36 +0000576 struct afs_volume_status *, bool);
David Howellse8d6c552007-07-15 23:40:12 -0700577extern int afs_fs_set_lock(struct afs_server *, struct key *,
David Howells56ff9c82017-01-05 10:38:36 +0000578 struct afs_vnode *, afs_lock_type_t, bool);
David Howellse8d6c552007-07-15 23:40:12 -0700579extern int afs_fs_extend_lock(struct afs_server *, struct key *,
David Howells56ff9c82017-01-05 10:38:36 +0000580 struct afs_vnode *, bool);
David Howellse8d6c552007-07-15 23:40:12 -0700581extern int afs_fs_release_lock(struct afs_server *, struct key *,
David Howells56ff9c82017-01-05 10:38:36 +0000582 struct afs_vnode *, bool);
David Howells08e0e7c2007-04-26 15:55:03 -0700583
584/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 * inode.c
586 */
wangleibec5eb62010-08-11 09:38:04 +0100587extern struct inode *afs_iget_autocell(struct inode *, const char *, int,
588 struct key *);
David Howells00d3b7a2007-04-26 15:57:07 -0700589extern struct inode *afs_iget(struct super_block *, struct key *,
David Howells260a9802007-04-26 15:59:35 -0700590 struct afs_fid *, struct afs_file_status *,
591 struct afs_callback *);
David Howells416351f2007-05-09 02:33:45 -0700592extern void afs_zap_data(struct afs_vnode *);
David Howells260a9802007-04-26 15:59:35 -0700593extern int afs_validate(struct afs_vnode *, struct key *);
David Howellsa528d352017-01-31 16:46:22 +0000594extern int afs_getattr(const struct path *, struct kstat *, u32, unsigned int);
David Howells31143d52007-05-09 02:33:46 -0700595extern int afs_setattr(struct dentry *, struct iattr *);
Al Virob57922d2010-06-07 14:34:48 -0400596extern void afs_evict_inode(struct inode *);
wangleibec5eb62010-08-11 09:38:04 +0100597extern int afs_drop_inode(struct inode *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599/*
600 * main.c
601 */
Tejun Heo0ad53ee2011-01-14 15:56:37 +0000602extern struct workqueue_struct *afs_wq;
David Howellsf044c882017-11-02 15:27:45 +0000603
604static inline struct afs_net *afs_d2net(struct dentry *dentry)
605{
606 return &__afs_net;
607}
608
609static inline struct afs_net *afs_i2net(struct inode *inode)
610{
611 return &__afs_net;
612}
613
614static inline struct afs_net *afs_v2net(struct afs_vnode *vnode)
615{
616 return &__afs_net;
617}
618
619static inline struct afs_net *afs_sock2net(struct sock *sk)
620{
621 return &__afs_net;
622}
623
624static inline struct afs_net *afs_get_net(struct afs_net *net)
625{
626 return net;
627}
628
629static inline void afs_put_net(struct afs_net *net)
630{
631}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633/*
David Howells08e0e7c2007-04-26 15:55:03 -0700634 * misc.c
635 */
636extern int afs_abort_to_error(u32);
637
638/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 * mntpt.c
640 */
Arjan van de Ven754661f2007-02-12 00:55:38 -0800641extern const struct inode_operations afs_mntpt_inode_operations;
wangleibec5eb62010-08-11 09:38:04 +0100642extern const struct inode_operations afs_autocell_inode_operations;
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800643extern const struct file_operations afs_mntpt_file_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
David Howellsd18610b2011-01-14 19:04:05 +0000645extern struct vfsmount *afs_d_automount(struct path *);
David Howells08e0e7c2007-04-26 15:55:03 -0700646extern void afs_mntpt_kill_timer(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648/*
Arnd Bergmannb4db2b32017-02-10 16:34:07 +0000649 * netdevices.c
650 */
651extern int afs_get_ipv4_interfaces(struct afs_interface *, size_t, bool);
652
653/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 * proc.c
655 */
David Howellsf044c882017-11-02 15:27:45 +0000656extern int __net_init afs_proc_init(struct afs_net *);
657extern void __net_exit afs_proc_cleanup(struct afs_net *);
658extern int afs_proc_cell_setup(struct afs_net *, struct afs_cell *);
659extern void afs_proc_cell_remove(struct afs_net *, struct afs_cell *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
David Howells08e0e7c2007-04-26 15:55:03 -0700661/*
662 * rxrpc.c
663 */
David Howellsf044c882017-11-02 15:27:45 +0000664extern struct workqueue_struct *afs_async_calls;
David Howells8324f0b2016-08-30 09:49:29 +0100665
David Howellsf044c882017-11-02 15:27:45 +0000666extern int __net_init afs_open_socket(struct afs_net *);
667extern void __net_exit afs_close_socket(struct afs_net *);
668extern void afs_charge_preallocation(struct work_struct *);
David Howells341f7412017-01-05 10:38:36 +0000669extern void afs_put_call(struct afs_call *);
670extern int afs_queue_call_work(struct afs_call *);
David Howells56ff9c82017-01-05 10:38:36 +0000671extern int afs_make_call(struct in_addr *, struct afs_call *, gfp_t, bool);
David Howellsf044c882017-11-02 15:27:45 +0000672extern struct afs_call *afs_alloc_flat_call(struct afs_net *,
673 const struct afs_call_type *,
David Howells08e0e7c2007-04-26 15:55:03 -0700674 size_t, size_t);
675extern void afs_flat_call_destructor(struct afs_call *);
David Howells08e0e7c2007-04-26 15:55:03 -0700676extern void afs_send_empty_reply(struct afs_call *);
David Howellsb908fe62007-04-26 15:58:17 -0700677extern void afs_send_simple_reply(struct afs_call *, const void *, size_t);
David Howellsd0016482016-08-30 20:42:14 +0100678extern int afs_extract_data(struct afs_call *, void *, size_t, bool);
David Howells08e0e7c2007-04-26 15:55:03 -0700679
David Howellsd0016482016-08-30 20:42:14 +0100680static inline int afs_transfer_reply(struct afs_call *call)
David Howells372ee162016-08-03 14:11:40 +0100681{
David Howellsd0016482016-08-30 20:42:14 +0100682 return afs_extract_data(call, call->buffer, call->reply_max, false);
David Howells372ee162016-08-03 14:11:40 +0100683}
684
David Howells08e0e7c2007-04-26 15:55:03 -0700685/*
David Howells00d3b7a2007-04-26 15:57:07 -0700686 * security.c
687 */
688extern void afs_clear_permits(struct afs_vnode *);
689extern void afs_cache_permit(struct afs_vnode *, struct key *, long);
David Howells416351f2007-05-09 02:33:45 -0700690extern void afs_zap_permits(struct rcu_head *);
David Howells00d3b7a2007-04-26 15:57:07 -0700691extern struct key *afs_request_key(struct afs_cell *);
Al Viro10556cb2011-06-20 19:28:19 -0400692extern int afs_permission(struct inode *, int);
David Howells00d3b7a2007-04-26 15:57:07 -0700693
694/*
David Howells08e0e7c2007-04-26 15:55:03 -0700695 * server.c
696 */
697extern spinlock_t afs_server_peer_lock;
698
David Howells260a9802007-04-26 15:59:35 -0700699#define afs_get_server(S) \
700do { \
701 _debug("GET SERVER %d", atomic_read(&(S)->usage)); \
702 atomic_inc(&(S)->usage); \
703} while(0)
David Howells08e0e7c2007-04-26 15:55:03 -0700704
David Howells59fa1c42017-11-02 15:27:45 +0000705extern void afs_server_timer(struct timer_list *);
David Howells08e0e7c2007-04-26 15:55:03 -0700706extern struct afs_server *afs_lookup_server(struct afs_cell *,
707 const struct in_addr *);
David Howellsf044c882017-11-02 15:27:45 +0000708extern struct afs_server *afs_find_server(struct afs_net *,
709 const struct sockaddr_rxrpc *);
David Howells08e0e7c2007-04-26 15:55:03 -0700710extern void afs_put_server(struct afs_server *);
David Howellsf044c882017-11-02 15:27:45 +0000711extern void afs_reap_server(struct work_struct *);
712extern void __net_exit afs_purge_servers(struct afs_net *);
David Howells08e0e7c2007-04-26 15:55:03 -0700713
714/*
David Howells00d3b7a2007-04-26 15:57:07 -0700715 * super.c
716 */
David Howellsf044c882017-11-02 15:27:45 +0000717extern int __init afs_fs_init(void);
718extern void __exit afs_fs_exit(void);
David Howells00d3b7a2007-04-26 15:57:07 -0700719
720/*
David Howells08e0e7c2007-04-26 15:55:03 -0700721 * vlclient.c
722 */
David Howellsf044c882017-11-02 15:27:45 +0000723extern int afs_vl_get_entry_by_name(struct afs_net *,
724 struct in_addr *, struct key *,
David Howells00d3b7a2007-04-26 15:57:07 -0700725 const char *, struct afs_cache_vlocation *,
David Howells56ff9c82017-01-05 10:38:36 +0000726 bool);
David Howellsf044c882017-11-02 15:27:45 +0000727extern int afs_vl_get_entry_by_id(struct afs_net *,
728 struct in_addr *, struct key *,
David Howells00d3b7a2007-04-26 15:57:07 -0700729 afs_volid_t, afs_voltype_t,
David Howells56ff9c82017-01-05 10:38:36 +0000730 struct afs_cache_vlocation *, bool);
David Howells08e0e7c2007-04-26 15:55:03 -0700731
732/*
733 * vlocation.c
734 */
David Howellsf044c882017-11-02 15:27:45 +0000735extern struct workqueue_struct *afs_vlocation_update_worker;
736
David Howells08e0e7c2007-04-26 15:55:03 -0700737#define afs_get_vlocation(V) do { atomic_inc(&(V)->usage); } while(0)
738
David Howellsf044c882017-11-02 15:27:45 +0000739extern struct afs_vlocation *afs_vlocation_lookup(struct afs_net *,
740 struct afs_cell *,
David Howells00d3b7a2007-04-26 15:57:07 -0700741 struct key *,
David Howells08e0e7c2007-04-26 15:55:03 -0700742 const char *, size_t);
David Howellsf044c882017-11-02 15:27:45 +0000743extern void afs_put_vlocation(struct afs_net *, struct afs_vlocation *);
744extern void afs_vlocation_updater(struct work_struct *);
745extern void afs_vlocation_reaper(struct work_struct *);
746extern void __net_exit afs_vlocation_purge(struct afs_net *);
David Howells08e0e7c2007-04-26 15:55:03 -0700747
748/*
749 * vnode.c
750 */
David Howells08e0e7c2007-04-26 15:55:03 -0700751static inline struct afs_vnode *AFS_FS_I(struct inode *inode)
752{
753 return container_of(inode, struct afs_vnode, vfs_inode);
754}
755
756static inline struct inode *AFS_VNODE_TO_I(struct afs_vnode *vnode)
757{
758 return &vnode->vfs_inode;
759}
760
David Howells260a9802007-04-26 15:59:35 -0700761extern void afs_vnode_finalise_status_update(struct afs_vnode *,
762 struct afs_server *);
David Howells00d3b7a2007-04-26 15:57:07 -0700763extern int afs_vnode_fetch_status(struct afs_vnode *, struct afs_vnode *,
764 struct key *);
765extern int afs_vnode_fetch_data(struct afs_vnode *, struct key *,
David Howells196ee9c2017-01-05 10:38:34 +0000766 struct afs_read *);
David Howells260a9802007-04-26 15:59:35 -0700767extern int afs_vnode_create(struct afs_vnode *, struct key *, const char *,
768 umode_t, struct afs_fid *, struct afs_file_status *,
769 struct afs_callback *, struct afs_server **);
770extern int afs_vnode_remove(struct afs_vnode *, struct key *, const char *,
771 bool);
772extern int afs_vnode_link(struct afs_vnode *, struct afs_vnode *, struct key *,
773 const char *);
774extern int afs_vnode_symlink(struct afs_vnode *, struct key *, const char *,
775 const char *, struct afs_fid *,
776 struct afs_file_status *, struct afs_server **);
777extern int afs_vnode_rename(struct afs_vnode *, struct afs_vnode *,
778 struct key *, const char *, const char *);
David Howells31143d52007-05-09 02:33:46 -0700779extern int afs_vnode_store_data(struct afs_writeback *, pgoff_t, pgoff_t,
780 unsigned, unsigned);
781extern int afs_vnode_setattr(struct afs_vnode *, struct key *, struct iattr *);
David Howells45222b92007-05-10 22:22:20 -0700782extern int afs_vnode_get_volume_status(struct afs_vnode *, struct key *,
783 struct afs_volume_status *);
David Howellse8d6c552007-07-15 23:40:12 -0700784extern int afs_vnode_set_lock(struct afs_vnode *, struct key *,
785 afs_lock_type_t);
786extern int afs_vnode_extend_lock(struct afs_vnode *, struct key *);
787extern int afs_vnode_release_lock(struct afs_vnode *, struct key *);
David Howells08e0e7c2007-04-26 15:55:03 -0700788
789/*
790 * volume.c
791 */
David Howells08e0e7c2007-04-26 15:55:03 -0700792#define afs_get_volume(V) do { atomic_inc(&(V)->usage); } while(0)
793
David Howellsf044c882017-11-02 15:27:45 +0000794extern void afs_put_volume(struct afs_net *, struct afs_volume *);
David Howells00d3b7a2007-04-26 15:57:07 -0700795extern struct afs_volume *afs_volume_lookup(struct afs_mount_params *);
David Howells08e0e7c2007-04-26 15:55:03 -0700796extern struct afs_server *afs_volume_pick_fileserver(struct afs_vnode *);
797extern int afs_volume_release_fileserver(struct afs_vnode *,
798 struct afs_server *, int);
799
David Howells31143d52007-05-09 02:33:46 -0700800/*
801 * write.c
802 */
803extern int afs_set_page_dirty(struct page *);
804extern void afs_put_writeback(struct afs_writeback *);
Nick Piggin15b46502008-10-15 22:04:32 -0700805extern int afs_write_begin(struct file *file, struct address_space *mapping,
806 loff_t pos, unsigned len, unsigned flags,
807 struct page **pagep, void **fsdata);
808extern int afs_write_end(struct file *file, struct address_space *mapping,
809 loff_t pos, unsigned len, unsigned copied,
810 struct page *page, void *fsdata);
David Howells31143d52007-05-09 02:33:46 -0700811extern int afs_writepage(struct page *, struct writeback_control *);
812extern int afs_writepages(struct address_space *, struct writeback_control *);
David Howells31143d52007-05-09 02:33:46 -0700813extern void afs_pages_written_back(struct afs_vnode *, struct afs_call *);
Al Viro50b55512014-04-03 14:13:46 -0400814extern ssize_t afs_file_write(struct kiocb *, struct iov_iter *);
David Howells31143d52007-05-09 02:33:46 -0700815extern int afs_writeback_all(struct afs_vnode *);
David Howells58fed942017-03-16 16:27:45 +0000816extern int afs_flush(struct file *, fl_owner_t);
Josef Bacik02c24a82011-07-16 20:44:56 -0400817extern int afs_fsync(struct file *, loff_t, loff_t, int);
David Howells31143d52007-05-09 02:33:46 -0700818
David Howellsd3e3b7ea2017-07-06 15:50:27 +0100819/*
820 * xattr.c
821 */
822extern const struct xattr_handler *afs_xattr_handlers[];
823extern ssize_t afs_listxattr(struct dentry *, char *, size_t);
David Howells31143d52007-05-09 02:33:46 -0700824
David Howells08e0e7c2007-04-26 15:55:03 -0700825/*****************************************************************************/
826/*
827 * debug tracing
828 */
David Howells8e8d7f12017-01-05 10:38:34 +0000829#include <trace/events/afs.h>
830
David Howells08e0e7c2007-04-26 15:55:03 -0700831extern unsigned afs_debug;
832
833#define dbgprintk(FMT,...) \
Sven Schnellead16df82008-04-03 10:44:01 +0100834 printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__)
David Howells08e0e7c2007-04-26 15:55:03 -0700835
Harvey Harrison530b6412008-04-30 00:55:09 -0700836#define kenter(FMT,...) dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
837#define kleave(FMT,...) dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
David Howells08e0e7c2007-04-26 15:55:03 -0700838#define kdebug(FMT,...) dbgprintk(" "FMT ,##__VA_ARGS__)
839
840
841#if defined(__KDEBUG)
842#define _enter(FMT,...) kenter(FMT,##__VA_ARGS__)
843#define _leave(FMT,...) kleave(FMT,##__VA_ARGS__)
844#define _debug(FMT,...) kdebug(FMT,##__VA_ARGS__)
845
846#elif defined(CONFIG_AFS_DEBUG)
847#define AFS_DEBUG_KENTER 0x01
848#define AFS_DEBUG_KLEAVE 0x02
849#define AFS_DEBUG_KDEBUG 0x04
850
851#define _enter(FMT,...) \
852do { \
853 if (unlikely(afs_debug & AFS_DEBUG_KENTER)) \
854 kenter(FMT,##__VA_ARGS__); \
855} while (0)
856
857#define _leave(FMT,...) \
858do { \
859 if (unlikely(afs_debug & AFS_DEBUG_KLEAVE)) \
860 kleave(FMT,##__VA_ARGS__); \
861} while (0)
862
863#define _debug(FMT,...) \
864do { \
865 if (unlikely(afs_debug & AFS_DEBUG_KDEBUG)) \
866 kdebug(FMT,##__VA_ARGS__); \
867} while (0)
868
869#else
David Howells12fdff32010-08-12 16:54:57 +0100870#define _enter(FMT,...) no_printk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
871#define _leave(FMT,...) no_printk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
872#define _debug(FMT,...) no_printk(" "FMT ,##__VA_ARGS__)
David Howells08e0e7c2007-04-26 15:55:03 -0700873#endif
874
875/*
876 * debug assertion checking
877 */
878#if 1 // defined(__KDEBUGALL)
879
880#define ASSERT(X) \
881do { \
882 if (unlikely(!(X))) { \
883 printk(KERN_ERR "\n"); \
884 printk(KERN_ERR "AFS: Assertion failed\n"); \
885 BUG(); \
886 } \
887} while(0)
888
889#define ASSERTCMP(X, OP, Y) \
890do { \
891 if (unlikely(!((X) OP (Y)))) { \
892 printk(KERN_ERR "\n"); \
893 printk(KERN_ERR "AFS: Assertion failed\n"); \
894 printk(KERN_ERR "%lu " #OP " %lu is false\n", \
895 (unsigned long)(X), (unsigned long)(Y)); \
896 printk(KERN_ERR "0x%lx " #OP " 0x%lx is false\n", \
897 (unsigned long)(X), (unsigned long)(Y)); \
898 BUG(); \
899 } \
900} while(0)
901
David Howells416351f2007-05-09 02:33:45 -0700902#define ASSERTRANGE(L, OP1, N, OP2, H) \
903do { \
904 if (unlikely(!((L) OP1 (N)) || !((N) OP2 (H)))) { \
905 printk(KERN_ERR "\n"); \
906 printk(KERN_ERR "AFS: Assertion failed\n"); \
907 printk(KERN_ERR "%lu "#OP1" %lu "#OP2" %lu is false\n", \
908 (unsigned long)(L), (unsigned long)(N), \
909 (unsigned long)(H)); \
910 printk(KERN_ERR "0x%lx "#OP1" 0x%lx "#OP2" 0x%lx is false\n", \
911 (unsigned long)(L), (unsigned long)(N), \
912 (unsigned long)(H)); \
913 BUG(); \
914 } \
915} while(0)
916
David Howells08e0e7c2007-04-26 15:55:03 -0700917#define ASSERTIF(C, X) \
918do { \
919 if (unlikely((C) && !(X))) { \
920 printk(KERN_ERR "\n"); \
921 printk(KERN_ERR "AFS: Assertion failed\n"); \
922 BUG(); \
923 } \
924} while(0)
925
926#define ASSERTIFCMP(C, X, OP, Y) \
927do { \
928 if (unlikely((C) && !((X) OP (Y)))) { \
929 printk(KERN_ERR "\n"); \
930 printk(KERN_ERR "AFS: Assertion failed\n"); \
931 printk(KERN_ERR "%lu " #OP " %lu is false\n", \
932 (unsigned long)(X), (unsigned long)(Y)); \
933 printk(KERN_ERR "0x%lx " #OP " 0x%lx is false\n", \
934 (unsigned long)(X), (unsigned long)(Y)); \
935 BUG(); \
936 } \
937} while(0)
938
939#else
940
941#define ASSERT(X) \
942do { \
943} while(0)
944
945#define ASSERTCMP(X, OP, Y) \
946do { \
947} while(0)
948
David Howells416351f2007-05-09 02:33:45 -0700949#define ASSERTRANGE(L, OP1, N, OP2, H) \
950do { \
951} while(0)
952
David Howells08e0e7c2007-04-26 15:55:03 -0700953#define ASSERTIF(C, X) \
954do { \
955} while(0)
956
957#define ASSERTIFCMP(C, X, OP, Y) \
958do { \
959} while(0)
960
961#endif /* __KDEBUGALL */