blob: 77a83e1bf56f35de50a2616a28e64f7e470a78c5 [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 */
David Howells97e30432017-11-02 15:27:48 +000084 void *reply[4]; /* Where to put the reply */
David Howells31143d52007-05-09 02:33:46 -070085 pgoff_t first; /* first page in mapping to deal with */
86 pgoff_t last; /* last page in mapping to deal with */
David Howellsd0016482016-08-30 20:42:14 +010087 size_t offset; /* offset into received data store */
David Howells341f7412017-01-05 10:38:36 +000088 atomic_t usage;
David Howells8e8d7f12017-01-05 10:38:34 +000089 enum afs_call_state state;
David Howells08e0e7c2007-04-26 15:55:03 -070090 int error; /* error code */
David Howellsd0016482016-08-30 20:42:14 +010091 u32 abort_code; /* Remote abort ID or 0 */
David Howells08e0e7c2007-04-26 15:55:03 -070092 unsigned request_size; /* size of request data */
93 unsigned reply_max; /* maximum size of reply */
David Howells31143d52007-05-09 02:33:46 -070094 unsigned first_offset; /* offset into mapping[first] */
Marc Dionnebcd89272017-03-16 16:27:44 +000095 union {
96 unsigned last_to; /* amount of mapping[last] */
97 unsigned count2; /* count used in unmarshalling */
98 };
David Howells08e0e7c2007-04-26 15:55:03 -070099 unsigned char unmarshall; /* unmarshalling phase */
100 bool incoming; /* T if incoming call */
David Howells31143d52007-05-09 02:33:46 -0700101 bool send_pages; /* T if data from mapping should be sent */
David Howellsd0016482016-08-30 20:42:14 +0100102 bool need_attention; /* T if RxRPC poked us */
David Howells56ff9c82017-01-05 10:38:36 +0000103 bool async; /* T if asynchronous */
David Howellsa68f4a22017-10-18 11:36:39 +0100104 bool upgrade; /* T to request service upgrade */
David Howells08e0e7c2007-04-26 15:55:03 -0700105 u16 service_id; /* RxRPC service ID to call */
David Howells50a2c952016-10-13 08:27:10 +0100106 u32 operation_ID; /* operation ID for an incoming call */
David Howells08e0e7c2007-04-26 15:55:03 -0700107 u32 count; /* count for use in unmarshalling */
108 __be32 tmp; /* place to extract temporary data */
David Howells31143d52007-05-09 02:33:46 -0700109 afs_dataversion_t store_version; /* updated version expected from store */
David Howells08e0e7c2007-04-26 15:55:03 -0700110};
111
112struct afs_call_type {
David Howells00d3b7a2007-04-26 15:57:07 -0700113 const char *name;
114
David Howells08e0e7c2007-04-26 15:55:03 -0700115 /* deliver request or reply data to an call
116 * - returning an error will cause the call to be aborted
117 */
David Howellsd0016482016-08-30 20:42:14 +0100118 int (*deliver)(struct afs_call *call);
David Howells08e0e7c2007-04-26 15:55:03 -0700119
David Howells08e0e7c2007-04-26 15:55:03 -0700120 /* clean up a call */
121 void (*destructor)(struct afs_call *call);
David Howells341f7412017-01-05 10:38:36 +0000122
123 /* Work function */
124 void (*work)(struct work_struct *work);
David Howells08e0e7c2007-04-26 15:55:03 -0700125};
126
127/*
David Howells196ee9c2017-01-05 10:38:34 +0000128 * Record of an outstanding read operation on a vnode.
129 */
130struct afs_read {
131 loff_t pos; /* Where to start reading */
David Howellse8e581a2017-03-16 16:27:44 +0000132 loff_t len; /* How much we're asking for */
David Howells196ee9c2017-01-05 10:38:34 +0000133 loff_t actual_len; /* How much we're actually getting */
David Howells6a0e3992017-03-16 16:27:46 +0000134 loff_t remain; /* Amount remaining */
David Howells196ee9c2017-01-05 10:38:34 +0000135 atomic_t usage;
David Howells196ee9c2017-01-05 10:38:34 +0000136 unsigned int index; /* Which page we're reading into */
David Howells196ee9c2017-01-05 10:38:34 +0000137 unsigned int nr_pages;
138 void (*page_done)(struct afs_call *, struct afs_read *);
139 struct page *pages[];
140};
141
142/*
David Howells31143d52007-05-09 02:33:46 -0700143 * record of an outstanding writeback on a vnode
144 */
145struct afs_writeback {
146 struct list_head link; /* link in vnode->writebacks */
147 struct work_struct writer; /* work item to perform the writeback */
148 struct afs_vnode *vnode; /* vnode to which this write applies */
149 struct key *key; /* owner of this write */
150 wait_queue_head_t waitq; /* completion and ready wait queue */
151 pgoff_t first; /* first page in batch */
152 pgoff_t point; /* last page in current store op */
153 pgoff_t last; /* last page in batch (inclusive) */
154 unsigned offset_first; /* offset into first page of start of write */
155 unsigned to_last; /* offset into last page of end of write */
156 int num_conflicts; /* count of conflicting writes in list */
157 int usage;
158 bool conflicts; /* T if has dependent conflicts */
159 enum {
160 AFS_WBACK_SYNCING, /* synchronisation being performed */
161 AFS_WBACK_PENDING, /* write pending */
162 AFS_WBACK_CONFLICTING, /* conflicting writes posted */
163 AFS_WBACK_WRITING, /* writing back */
164 AFS_WBACK_COMPLETE /* the writeback record has been unlinked */
165 } state __attribute__((packed));
166};
167
168/*
David Howells08e0e7c2007-04-26 15:55:03 -0700169 * AFS superblock private data
170 * - there's one superblock per volume
171 */
172struct afs_super_info {
David Howellsf044c882017-11-02 15:27:45 +0000173 struct afs_net *net; /* Network namespace */
David Howells49566f62017-11-02 15:27:46 +0000174 struct afs_cell *cell; /* The cell in which the volume resides */
David Howells08e0e7c2007-04-26 15:55:03 -0700175 struct afs_volume *volume; /* volume record */
176 char rwparent; /* T if parent is R/W AFS volume */
177};
178
179static inline struct afs_super_info *AFS_FS_S(struct super_block *sb)
180{
181 return sb->s_fs_info;
182}
183
184extern struct file_system_type afs_fs_type;
185
186/*
David Howellsf044c882017-11-02 15:27:45 +0000187 * AFS network namespace record.
188 */
189struct afs_net {
190 struct afs_uuid uuid;
191 bool live; /* F if this namespace is being removed */
192
193 /* AF_RXRPC I/O stuff */
194 struct socket *socket;
195 struct afs_call *spare_incoming_call;
196 struct work_struct charge_preallocation_work;
197 struct mutex socket_mutex;
198 atomic_t nr_outstanding_calls;
199 atomic_t nr_superblocks;
200
201 /* Cell database */
202 struct list_head cells;
203 struct afs_cell *ws_cell;
204 rwlock_t cells_lock;
205 struct rw_semaphore cells_sem;
206 wait_queue_head_t cells_freeable_wq;
207
208 struct rw_semaphore proc_cells_sem;
209 struct list_head proc_cells;
210
211 /* Volume location database */
212 struct list_head vl_updates; /* VL records in need-update order */
213 struct list_head vl_graveyard; /* Inactive VL records */
214 struct delayed_work vl_reaper;
215 struct delayed_work vl_updater;
216 spinlock_t vl_updates_lock;
217 spinlock_t vl_graveyard_lock;
218
219 /* File locking renewal management */
220 struct mutex lock_manager_mutex;
221
222 /* Server database */
223 struct rb_root servers; /* Active servers */
224 rwlock_t servers_lock;
225 struct list_head server_graveyard; /* Inactive server LRU list */
226 spinlock_t server_graveyard_lock;
David Howells59fa1c42017-11-02 15:27:45 +0000227 struct timer_list server_timer;
228 struct work_struct server_reaper;
229 atomic_t servers_outstanding;
David Howellsf044c882017-11-02 15:27:45 +0000230
231 /* Misc */
232 struct proc_dir_entry *proc_afs; /* /proc/net/afs directory */
233};
234
235extern struct afs_net __afs_net;// Dummy AFS network namespace; TODO: replace with real netns
236
237/*
David Howells08e0e7c2007-04-26 15:55:03 -0700238 * AFS cell record
239 */
240struct afs_cell {
241 atomic_t usage;
242 struct list_head link; /* main cell list link */
David Howellsf044c882017-11-02 15:27:45 +0000243 struct afs_net *net; /* The network namespace */
David Howells00d3b7a2007-04-26 15:57:07 -0700244 struct key *anonymous_key; /* anonymous user key for this cell */
David Howells08e0e7c2007-04-26 15:55:03 -0700245 struct list_head proc_link; /* /proc cell list link */
David Howells9b3f26c2009-04-03 16:42:41 +0100246#ifdef CONFIG_AFS_FSCACHE
247 struct fscache_cookie *cache; /* caching cookie */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248#endif
249
David Howells08e0e7c2007-04-26 15:55:03 -0700250 /* server record management */
251 rwlock_t servers_lock; /* active server list lock */
252 struct list_head servers; /* active server list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
David Howells08e0e7c2007-04-26 15:55:03 -0700254 /* volume location record management */
255 struct rw_semaphore vl_sem; /* volume management serialisation semaphore */
256 struct list_head vl_list; /* cell's active VL record list */
257 spinlock_t vl_lock; /* vl_list lock */
258 unsigned short vl_naddrs; /* number of VL servers in addr list */
259 unsigned short vl_curr_svix; /* current server index */
David Howells4d9df982017-11-02 15:27:47 +0000260 struct sockaddr_rxrpc vl_addrs[AFS_CELL_MAX_ADDRS]; /* cell VL server addresses */
David Howells08e0e7c2007-04-26 15:55:03 -0700261
262 char name[0]; /* cell name - must go last */
263};
264
265/*
266 * entry in the cached volume location catalogue
267 */
268struct afs_cache_vlocation {
David Howells00d3b7a2007-04-26 15:57:07 -0700269 /* volume name (lowercase, padded with NULs) */
270 uint8_t name[AFS_MAXVOLNAME + 1];
271
David Howells08e0e7c2007-04-26 15:55:03 -0700272 uint8_t nservers; /* number of entries used in servers[] */
273 uint8_t vidmask; /* voltype mask for vid[] */
274 uint8_t srvtmask[8]; /* voltype masks for servers[] */
275#define AFS_VOL_VTM_RW 0x01 /* R/W version of the volume is available (on this server) */
276#define AFS_VOL_VTM_RO 0x02 /* R/O version of the volume is available (on this server) */
277#define AFS_VOL_VTM_BAK 0x04 /* backup version of the volume is available (on this server) */
278
279 afs_volid_t vid[3]; /* volume IDs for R/W, R/O and Bak volumes */
David Howells4d9df982017-11-02 15:27:47 +0000280 struct sockaddr_rxrpc servers[8]; /* fileserver addresses */
David Howells08e0e7c2007-04-26 15:55:03 -0700281 time_t rtime; /* last retrieval time */
282};
283
284/*
David Howells08e0e7c2007-04-26 15:55:03 -0700285 * AFS volume location record
286 */
287struct afs_vlocation {
288 atomic_t usage;
Tina Ruchandani8a797902017-03-16 16:27:46 +0000289 time64_t time_of_death; /* time at which put reduced usage to 0 */
David Howells08e0e7c2007-04-26 15:55:03 -0700290 struct list_head link; /* link in cell volume location list */
291 struct list_head grave; /* link in master graveyard list */
292 struct list_head update; /* link in master update list */
293 struct afs_cell *cell; /* cell to which volume belongs */
David Howells08e0e7c2007-04-26 15:55:03 -0700294 struct afs_cache_vlocation vldb; /* volume information DB record */
295 struct afs_volume *vols[3]; /* volume access record pointer (index by type) */
296 wait_queue_head_t waitq; /* status change waitqueue */
Tina Ruchandani8a797902017-03-16 16:27:46 +0000297 time64_t update_at; /* time at which record should be updated */
David S. Miller39bf0942007-04-26 20:39:14 -0700298 spinlock_t lock; /* access lock */
David Howells08e0e7c2007-04-26 15:55:03 -0700299 afs_vlocation_state_t state; /* volume location state */
300 unsigned short upd_rej_cnt; /* ENOMEDIUM count during update */
301 unsigned short upd_busy_cnt; /* EBUSY count during update */
302 bool valid; /* T if valid */
303};
304
305/*
306 * AFS fileserver record
307 */
308struct afs_server {
309 atomic_t usage;
Tina Ruchandani8a797902017-03-16 16:27:46 +0000310 time64_t time_of_death; /* time at which put reduced usage to 0 */
David Howells4d9df982017-11-02 15:27:47 +0000311 struct sockaddr_rxrpc addr; /* server address */
David Howells9ed900b2017-11-02 15:27:46 +0000312 struct afs_net *net; /* Network namespace in which the server resides */
David Howells08e0e7c2007-04-26 15:55:03 -0700313 struct afs_cell *cell; /* cell in which server resides */
314 struct list_head link; /* link in cell's server list */
315 struct list_head grave; /* link in master graveyard list */
316 struct rb_node master_rb; /* link in master by-addr tree */
317 struct rw_semaphore sem; /* access lock */
318
319 /* file service access */
320 struct rb_root fs_vnodes; /* vnodes backed by this server (ordered by FID) */
321 unsigned long fs_act_jif; /* time at which last activity occurred */
322 unsigned long fs_dead_jif; /* time at which no longer to be considered dead */
323 spinlock_t fs_lock; /* access lock */
324 int fs_state; /* 0 or reason FS currently marked dead (-errno) */
325
326 /* callback promise management */
327 struct rb_root cb_promises; /* vnode expiration list (ordered earliest first) */
328 struct delayed_work cb_updater; /* callback updater */
329 struct delayed_work cb_break_work; /* collected break dispatcher */
330 wait_queue_head_t cb_break_waitq; /* space available in cb_break waitqueue */
331 spinlock_t cb_lock; /* access lock */
332 struct afs_callback cb_break[64]; /* ring of callbacks awaiting breaking */
333 atomic_t cb_break_n; /* number of pending breaks */
334 u8 cb_break_head; /* head of callback breaking ring */
335 u8 cb_break_tail; /* tail of callback breaking ring */
336};
337
338/*
339 * AFS volume access record
340 */
341struct afs_volume {
342 atomic_t usage;
343 struct afs_cell *cell; /* cell to which belongs (unrefd ptr) */
344 struct afs_vlocation *vlocation; /* volume location */
David Howells9b3f26c2009-04-03 16:42:41 +0100345#ifdef CONFIG_AFS_FSCACHE
346 struct fscache_cookie *cache; /* caching cookie */
David Howells08e0e7c2007-04-26 15:55:03 -0700347#endif
348 afs_volid_t vid; /* volume ID */
349 afs_voltype_t type; /* type of volume */
350 char type_force; /* force volume type (suppress R/O -> R/W) */
351 unsigned short nservers; /* number of server slots filled */
352 unsigned short rjservers; /* number of servers discarded due to -ENOMEDIUM */
353 struct afs_server *servers[8]; /* servers on which volume resides (ordered) */
354 struct rw_semaphore server_sem; /* lock for accessing current server */
355};
356
357/*
358 * vnode catalogue entry
359 */
360struct afs_cache_vnode {
361 afs_vnodeid_t vnode_id; /* vnode ID */
362 unsigned vnode_unique; /* vnode ID uniquifier */
363 afs_dataversion_t data_version; /* data version */
364};
365
366/*
367 * AFS inode private data
368 */
369struct afs_vnode {
370 struct inode vfs_inode; /* the VFS's inode record */
371
372 struct afs_volume *volume; /* volume on which vnode resides */
373 struct afs_server *server; /* server currently supplying this file */
374 struct afs_fid fid; /* the file identifier for this inode */
375 struct afs_file_status status; /* AFS status info for this file */
David Howells9b3f26c2009-04-03 16:42:41 +0100376#ifdef CONFIG_AFS_FSCACHE
377 struct fscache_cookie *cache; /* caching cookie */
David Howells08e0e7c2007-04-26 15:55:03 -0700378#endif
David Howells00d3b7a2007-04-26 15:57:07 -0700379 struct afs_permits *permits; /* cache of permits so far obtained */
380 struct mutex permits_lock; /* lock for altering permits list */
David Howells260a9802007-04-26 15:59:35 -0700381 struct mutex validate_lock; /* lock for validating this vnode */
David Howells08e0e7c2007-04-26 15:55:03 -0700382 wait_queue_head_t update_waitq; /* status fetch waitqueue */
David Howells260a9802007-04-26 15:59:35 -0700383 int update_cnt; /* number of outstanding ops that will update the
David Howells08e0e7c2007-04-26 15:55:03 -0700384 * status */
David Howells31143d52007-05-09 02:33:46 -0700385 spinlock_t writeback_lock; /* lock for writebacks */
David Howells08e0e7c2007-04-26 15:55:03 -0700386 spinlock_t lock; /* waitqueue/flags lock */
387 unsigned long flags;
388#define AFS_VNODE_CB_BROKEN 0 /* set if vnode's callback was broken */
David Howells260a9802007-04-26 15:59:35 -0700389#define AFS_VNODE_UNSET 1 /* set if vnode attributes not yet set */
David Howells08e0e7c2007-04-26 15:55:03 -0700390#define AFS_VNODE_MODIFIED 2 /* set if vnode's data modified */
391#define AFS_VNODE_ZAP_DATA 3 /* set if vnode's data should be invalidated */
392#define AFS_VNODE_DELETED 4 /* set if vnode deleted on server */
393#define AFS_VNODE_MOUNTPOINT 5 /* set if vnode is a mountpoint symlink */
David Howellse8d6c552007-07-15 23:40:12 -0700394#define AFS_VNODE_LOCKING 6 /* set if waiting for lock on vnode */
395#define AFS_VNODE_READLOCKED 7 /* set if vnode is read-locked on the server */
396#define AFS_VNODE_WRITELOCKED 8 /* set if vnode is write-locked on the server */
397#define AFS_VNODE_UNLOCKING 9 /* set if vnode is being unlocked on the server */
wangleibec5eb62010-08-11 09:38:04 +0100398#define AFS_VNODE_AUTOCELL 10 /* set if Vnode is an auto mount point */
399#define AFS_VNODE_PSEUDODIR 11 /* set if Vnode is a pseudo directory */
David Howells08e0e7c2007-04-26 15:55:03 -0700400
David Howells00d3b7a2007-04-26 15:57:07 -0700401 long acl_order; /* ACL check count (callback break count) */
402
David Howells31143d52007-05-09 02:33:46 -0700403 struct list_head writebacks; /* alterations in pagecache that need writing */
David Howellse8d6c552007-07-15 23:40:12 -0700404 struct list_head pending_locks; /* locks waiting to be granted */
405 struct list_head granted_locks; /* locks granted on this file */
406 struct delayed_work lock_work; /* work to be done in locking */
407 struct key *unlock_key; /* key to be used in unlocking */
David Howells31143d52007-05-09 02:33:46 -0700408
David Howells08e0e7c2007-04-26 15:55:03 -0700409 /* outstanding callback notification on this file */
410 struct rb_node server_rb; /* link in server->fs_vnodes */
411 struct rb_node cb_promise; /* link in server->cb_promises */
412 struct work_struct cb_broken_work; /* work to be done on callback break */
Tina Ruchandani56e71432017-03-16 16:27:46 +0000413 time64_t cb_expires; /* time at which callback expires */
414 time64_t cb_expires_at; /* time used to order cb_promise */
David Howells08e0e7c2007-04-26 15:55:03 -0700415 unsigned cb_version; /* callback version */
416 unsigned cb_expiry; /* callback expiry time */
417 afs_callback_type_t cb_type; /* type of callback */
418 bool cb_promised; /* true if promise still holds */
419};
420
David Howells00d3b7a2007-04-26 15:57:07 -0700421/*
422 * cached security record for one user's attempt to access a vnode
423 */
424struct afs_permit {
425 struct key *key; /* RxRPC ticket holding a security context */
426 afs_access_t access_mask; /* access mask for this key */
427};
428
429/*
430 * cache of security records from attempts to access a vnode
431 */
432struct afs_permits {
433 struct rcu_head rcu; /* disposal procedure */
434 int count; /* number of records */
435 struct afs_permit permits[0]; /* the permits so far examined */
436};
437
David Howellsb908fe62007-04-26 15:58:17 -0700438/*
439 * record of one of a system's set of network interfaces
440 */
441struct afs_interface {
David Howellsb908fe62007-04-26 15:58:17 -0700442 struct in_addr address; /* IPv4 address bound to interface */
443 struct in_addr netmask; /* netmask applied to address */
444 unsigned mtu; /* MTU of interface */
445};
446
David Howells08e0e7c2007-04-26 15:55:03 -0700447/*****************************************************************************/
448/*
David Howells9b3f26c2009-04-03 16:42:41 +0100449 * cache.c
450 */
451#ifdef CONFIG_AFS_FSCACHE
452extern struct fscache_netfs afs_cache_netfs;
453extern struct fscache_cookie_def afs_cell_cache_index_def;
David Howells9b3f26c2009-04-03 16:42:41 +0100454extern 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)
David Howells9b3f26c2009-04-03 16:42:41 +0100458#define afs_volume_cache_index_def (*(struct fscache_cookie_def *) NULL)
459#define afs_vnode_cache_index_def (*(struct fscache_cookie_def *) NULL)
460#endif
461
462/*
David Howells08e0e7c2007-04-26 15:55:03 -0700463 * callback.c
464 */
David Howellsf044c882017-11-02 15:27:45 +0000465extern struct workqueue_struct *afs_callback_update_worker;
466
David Howells08e0e7c2007-04-26 15:55:03 -0700467extern void afs_init_callback_state(struct afs_server *);
468extern void afs_broken_callback_work(struct work_struct *);
469extern void afs_break_callbacks(struct afs_server *, size_t,
470 struct afs_callback[]);
David Howells260a9802007-04-26 15:59:35 -0700471extern void afs_discard_callback_on_delete(struct afs_vnode *);
David Howells08e0e7c2007-04-26 15:55:03 -0700472extern void afs_give_up_callback(struct afs_vnode *);
473extern void afs_dispatch_give_up_callbacks(struct work_struct *);
474extern void afs_flush_callback_breaks(struct afs_server *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476/*
477 * cell.c
478 */
David Howells49566f62017-11-02 15:27:46 +0000479static inline struct afs_cell *afs_get_cell(struct afs_cell *cell)
480{
481 if (cell)
482 atomic_inc(&cell->usage);
483 return cell;
484}
David Howellsf044c882017-11-02 15:27:45 +0000485extern int afs_cell_init(struct afs_net *, char *);
486extern struct afs_cell *afs_cell_create(struct afs_net *, const char *, unsigned, char *, bool);
487extern struct afs_cell *afs_cell_lookup(struct afs_net *, const char *, unsigned, bool);
David Howells08e0e7c2007-04-26 15:55:03 -0700488extern struct afs_cell *afs_grab_cell(struct afs_cell *);
David Howells9ed900b2017-11-02 15:27:46 +0000489extern void afs_put_cell(struct afs_net *, struct afs_cell *);
David Howellsf044c882017-11-02 15:27:45 +0000490extern void __net_exit afs_cell_purge(struct afs_net *);
David Howells08e0e7c2007-04-26 15:55:03 -0700491
492/*
493 * cmservice.c
494 */
495extern bool afs_cm_incoming_call(struct afs_call *);
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497/*
498 * dir.c
499 */
Arjan van de Ven754661f2007-02-12 00:55:38 -0800500extern const struct inode_operations afs_dir_inode_operations;
Al Virod61dcce2011-01-12 20:04:20 -0500501extern const struct dentry_operations afs_fs_dentry_operations;
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800502extern const struct file_operations afs_dir_file_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504/*
505 * file.c
506 */
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700507extern const struct address_space_operations afs_fs_aops;
Arjan van de Ven754661f2007-02-12 00:55:38 -0800508extern const struct inode_operations afs_file_inode_operations;
David Howells00d3b7a2007-04-26 15:57:07 -0700509extern const struct file_operations afs_file_operations;
510
511extern int afs_open(struct inode *, struct file *);
512extern int afs_release(struct inode *, struct file *);
Al Virof6d335c2010-05-21 15:27:09 +0100513extern int afs_page_filler(void *, struct page *);
David Howells196ee9c2017-01-05 10:38:34 +0000514extern void afs_put_read(struct afs_read *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516/*
David Howellse8d6c552007-07-15 23:40:12 -0700517 * flock.c
518 */
David Howellsf044c882017-11-02 15:27:45 +0000519extern struct workqueue_struct *afs_lock_manager;
520
David Howellse8d6c552007-07-15 23:40:12 -0700521extern void afs_lock_work(struct work_struct *);
522extern void afs_lock_may_be_available(struct afs_vnode *);
523extern int afs_lock(struct file *, int, struct file_lock *);
524extern int afs_flock(struct file *, int, struct file_lock *);
525
526/*
David Howells08e0e7c2007-04-26 15:55:03 -0700527 * fsclient.c
528 */
David Howells00d3b7a2007-04-26 15:57:07 -0700529extern int afs_fs_fetch_file_status(struct afs_server *, struct key *,
530 struct afs_vnode *, struct afs_volsync *,
David Howells56ff9c82017-01-05 10:38:36 +0000531 bool);
David Howellsf044c882017-11-02 15:27:45 +0000532extern int afs_fs_give_up_callbacks(struct afs_net *, struct afs_server *, bool);
David Howells00d3b7a2007-04-26 15:57:07 -0700533extern int afs_fs_fetch_data(struct afs_server *, struct key *,
David Howells56ff9c82017-01-05 10:38:36 +0000534 struct afs_vnode *, struct afs_read *, bool);
David Howells260a9802007-04-26 15:59:35 -0700535extern 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 *,
David Howells56ff9c82017-01-05 10:38:36 +0000538 struct afs_callback *, bool);
David Howells260a9802007-04-26 15:59:35 -0700539extern int afs_fs_remove(struct afs_server *, struct key *,
David Howells56ff9c82017-01-05 10:38:36 +0000540 struct afs_vnode *, const char *, bool, bool);
David Howells260a9802007-04-26 15:59:35 -0700541extern int afs_fs_link(struct afs_server *, struct key *, struct afs_vnode *,
David Howells56ff9c82017-01-05 10:38:36 +0000542 struct afs_vnode *, const char *, bool);
David Howells260a9802007-04-26 15:59:35 -0700543extern int afs_fs_symlink(struct afs_server *, struct key *,
544 struct afs_vnode *, const char *, const char *,
David Howells56ff9c82017-01-05 10:38:36 +0000545 struct afs_fid *, struct afs_file_status *, bool);
David Howells260a9802007-04-26 15:59:35 -0700546extern int afs_fs_rename(struct afs_server *, struct key *,
547 struct afs_vnode *, const char *,
David Howells56ff9c82017-01-05 10:38:36 +0000548 struct afs_vnode *, const char *, bool);
David Howells31143d52007-05-09 02:33:46 -0700549extern int afs_fs_store_data(struct afs_server *, struct afs_writeback *,
David Howells56ff9c82017-01-05 10:38:36 +0000550 pgoff_t, pgoff_t, unsigned, unsigned, bool);
David Howells31143d52007-05-09 02:33:46 -0700551extern int afs_fs_setattr(struct afs_server *, struct key *,
David Howells56ff9c82017-01-05 10:38:36 +0000552 struct afs_vnode *, struct iattr *, bool);
David Howells45222b92007-05-10 22:22:20 -0700553extern int afs_fs_get_volume_status(struct afs_server *, struct key *,
554 struct afs_vnode *,
David Howells56ff9c82017-01-05 10:38:36 +0000555 struct afs_volume_status *, bool);
David Howellse8d6c552007-07-15 23:40:12 -0700556extern int afs_fs_set_lock(struct afs_server *, struct key *,
David Howells56ff9c82017-01-05 10:38:36 +0000557 struct afs_vnode *, afs_lock_type_t, bool);
David Howellse8d6c552007-07-15 23:40:12 -0700558extern int afs_fs_extend_lock(struct afs_server *, struct key *,
David Howells56ff9c82017-01-05 10:38:36 +0000559 struct afs_vnode *, bool);
David Howellse8d6c552007-07-15 23:40:12 -0700560extern int afs_fs_release_lock(struct afs_server *, struct key *,
David Howells56ff9c82017-01-05 10:38:36 +0000561 struct afs_vnode *, bool);
David Howells08e0e7c2007-04-26 15:55:03 -0700562
563/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 * inode.c
565 */
wangleibec5eb62010-08-11 09:38:04 +0100566extern struct inode *afs_iget_autocell(struct inode *, const char *, int,
567 struct key *);
David Howells00d3b7a2007-04-26 15:57:07 -0700568extern struct inode *afs_iget(struct super_block *, struct key *,
David Howells260a9802007-04-26 15:59:35 -0700569 struct afs_fid *, struct afs_file_status *,
570 struct afs_callback *);
David Howells416351f2007-05-09 02:33:45 -0700571extern void afs_zap_data(struct afs_vnode *);
David Howells260a9802007-04-26 15:59:35 -0700572extern int afs_validate(struct afs_vnode *, struct key *);
David Howellsa528d352017-01-31 16:46:22 +0000573extern int afs_getattr(const struct path *, struct kstat *, u32, unsigned int);
David Howells31143d52007-05-09 02:33:46 -0700574extern int afs_setattr(struct dentry *, struct iattr *);
Al Virob57922d2010-06-07 14:34:48 -0400575extern void afs_evict_inode(struct inode *);
wangleibec5eb62010-08-11 09:38:04 +0100576extern int afs_drop_inode(struct inode *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578/*
579 * main.c
580 */
Tejun Heo0ad53ee2011-01-14 15:56:37 +0000581extern struct workqueue_struct *afs_wq;
David Howellsf044c882017-11-02 15:27:45 +0000582
583static inline struct afs_net *afs_d2net(struct dentry *dentry)
584{
585 return &__afs_net;
586}
587
588static inline struct afs_net *afs_i2net(struct inode *inode)
589{
590 return &__afs_net;
591}
592
593static inline struct afs_net *afs_v2net(struct afs_vnode *vnode)
594{
595 return &__afs_net;
596}
597
598static inline struct afs_net *afs_sock2net(struct sock *sk)
599{
600 return &__afs_net;
601}
602
603static inline struct afs_net *afs_get_net(struct afs_net *net)
604{
605 return net;
606}
607
608static inline void afs_put_net(struct afs_net *net)
609{
610}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612/*
David Howells08e0e7c2007-04-26 15:55:03 -0700613 * misc.c
614 */
615extern int afs_abort_to_error(u32);
616
617/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 * mntpt.c
619 */
Arjan van de Ven754661f2007-02-12 00:55:38 -0800620extern const struct inode_operations afs_mntpt_inode_operations;
wangleibec5eb62010-08-11 09:38:04 +0100621extern const struct inode_operations afs_autocell_inode_operations;
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800622extern const struct file_operations afs_mntpt_file_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
David Howellsd18610b2011-01-14 19:04:05 +0000624extern struct vfsmount *afs_d_automount(struct path *);
David Howells08e0e7c2007-04-26 15:55:03 -0700625extern void afs_mntpt_kill_timer(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627/*
Arnd Bergmannb4db2b32017-02-10 16:34:07 +0000628 * netdevices.c
629 */
630extern int afs_get_ipv4_interfaces(struct afs_interface *, size_t, bool);
631
632/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 * proc.c
634 */
David Howellsf044c882017-11-02 15:27:45 +0000635extern int __net_init afs_proc_init(struct afs_net *);
636extern void __net_exit afs_proc_cleanup(struct afs_net *);
637extern int afs_proc_cell_setup(struct afs_net *, struct afs_cell *);
638extern void afs_proc_cell_remove(struct afs_net *, struct afs_cell *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
David Howells08e0e7c2007-04-26 15:55:03 -0700640/*
641 * rxrpc.c
642 */
David Howellsf044c882017-11-02 15:27:45 +0000643extern struct workqueue_struct *afs_async_calls;
David Howells8324f0b2016-08-30 09:49:29 +0100644
David Howellsf044c882017-11-02 15:27:45 +0000645extern int __net_init afs_open_socket(struct afs_net *);
646extern void __net_exit afs_close_socket(struct afs_net *);
647extern void afs_charge_preallocation(struct work_struct *);
David Howells341f7412017-01-05 10:38:36 +0000648extern void afs_put_call(struct afs_call *);
649extern int afs_queue_call_work(struct afs_call *);
David Howells4d9df982017-11-02 15:27:47 +0000650extern int afs_make_call(struct sockaddr_rxrpc *, struct afs_call *, gfp_t, bool);
David Howellsf044c882017-11-02 15:27:45 +0000651extern struct afs_call *afs_alloc_flat_call(struct afs_net *,
652 const struct afs_call_type *,
David Howells08e0e7c2007-04-26 15:55:03 -0700653 size_t, size_t);
654extern void afs_flat_call_destructor(struct afs_call *);
David Howells08e0e7c2007-04-26 15:55:03 -0700655extern void afs_send_empty_reply(struct afs_call *);
David Howellsb908fe62007-04-26 15:58:17 -0700656extern void afs_send_simple_reply(struct afs_call *, const void *, size_t);
David Howellsd0016482016-08-30 20:42:14 +0100657extern int afs_extract_data(struct afs_call *, void *, size_t, bool);
David Howells08e0e7c2007-04-26 15:55:03 -0700658
David Howellsd0016482016-08-30 20:42:14 +0100659static inline int afs_transfer_reply(struct afs_call *call)
David Howells372ee162016-08-03 14:11:40 +0100660{
David Howellsd0016482016-08-30 20:42:14 +0100661 return afs_extract_data(call, call->buffer, call->reply_max, false);
David Howells372ee162016-08-03 14:11:40 +0100662}
663
David Howells08e0e7c2007-04-26 15:55:03 -0700664/*
David Howells00d3b7a2007-04-26 15:57:07 -0700665 * security.c
666 */
667extern void afs_clear_permits(struct afs_vnode *);
668extern void afs_cache_permit(struct afs_vnode *, struct key *, long);
David Howells416351f2007-05-09 02:33:45 -0700669extern void afs_zap_permits(struct rcu_head *);
David Howells00d3b7a2007-04-26 15:57:07 -0700670extern struct key *afs_request_key(struct afs_cell *);
Al Viro10556cb22011-06-20 19:28:19 -0400671extern int afs_permission(struct inode *, int);
David Howells00d3b7a2007-04-26 15:57:07 -0700672
673/*
David Howells08e0e7c2007-04-26 15:55:03 -0700674 * server.c
675 */
676extern spinlock_t afs_server_peer_lock;
677
David Howells260a9802007-04-26 15:59:35 -0700678#define afs_get_server(S) \
679do { \
680 _debug("GET SERVER %d", atomic_read(&(S)->usage)); \
681 atomic_inc(&(S)->usage); \
682} while(0)
David Howells08e0e7c2007-04-26 15:55:03 -0700683
David Howells59fa1c42017-11-02 15:27:45 +0000684extern void afs_server_timer(struct timer_list *);
David Howells08e0e7c2007-04-26 15:55:03 -0700685extern struct afs_server *afs_lookup_server(struct afs_cell *,
David Howells4d9df982017-11-02 15:27:47 +0000686 struct sockaddr_rxrpc *);
David Howellsf044c882017-11-02 15:27:45 +0000687extern struct afs_server *afs_find_server(struct afs_net *,
688 const struct sockaddr_rxrpc *);
David Howells9ed900b2017-11-02 15:27:46 +0000689extern void afs_put_server(struct afs_net *, struct afs_server *);
David Howellsf044c882017-11-02 15:27:45 +0000690extern void afs_reap_server(struct work_struct *);
691extern void __net_exit afs_purge_servers(struct afs_net *);
David Howells08e0e7c2007-04-26 15:55:03 -0700692
693/*
David Howells00d3b7a2007-04-26 15:57:07 -0700694 * super.c
695 */
David Howellsf044c882017-11-02 15:27:45 +0000696extern int __init afs_fs_init(void);
697extern void __exit afs_fs_exit(void);
David Howells00d3b7a2007-04-26 15:57:07 -0700698
699/*
David Howells08e0e7c2007-04-26 15:55:03 -0700700 * vlclient.c
701 */
David Howellsf044c882017-11-02 15:27:45 +0000702extern int afs_vl_get_entry_by_name(struct afs_net *,
David Howells4d9df982017-11-02 15:27:47 +0000703 struct sockaddr_rxrpc *, struct key *,
David Howells00d3b7a2007-04-26 15:57:07 -0700704 const char *, struct afs_cache_vlocation *,
David Howells56ff9c82017-01-05 10:38:36 +0000705 bool);
David Howellsf044c882017-11-02 15:27:45 +0000706extern int afs_vl_get_entry_by_id(struct afs_net *,
David Howells4d9df982017-11-02 15:27:47 +0000707 struct sockaddr_rxrpc *, struct key *,
David Howells00d3b7a2007-04-26 15:57:07 -0700708 afs_volid_t, afs_voltype_t,
David Howells56ff9c82017-01-05 10:38:36 +0000709 struct afs_cache_vlocation *, bool);
David Howells08e0e7c2007-04-26 15:55:03 -0700710
711/*
712 * vlocation.c
713 */
David Howellsf044c882017-11-02 15:27:45 +0000714extern struct workqueue_struct *afs_vlocation_update_worker;
715
David Howells08e0e7c2007-04-26 15:55:03 -0700716#define afs_get_vlocation(V) do { atomic_inc(&(V)->usage); } while(0)
717
David Howellsf044c882017-11-02 15:27:45 +0000718extern struct afs_vlocation *afs_vlocation_lookup(struct afs_net *,
719 struct afs_cell *,
David Howells00d3b7a2007-04-26 15:57:07 -0700720 struct key *,
David Howells08e0e7c2007-04-26 15:55:03 -0700721 const char *, size_t);
David Howellsf044c882017-11-02 15:27:45 +0000722extern void afs_put_vlocation(struct afs_net *, struct afs_vlocation *);
723extern void afs_vlocation_updater(struct work_struct *);
724extern void afs_vlocation_reaper(struct work_struct *);
725extern void __net_exit afs_vlocation_purge(struct afs_net *);
David Howells08e0e7c2007-04-26 15:55:03 -0700726
727/*
728 * vnode.c
729 */
David Howells08e0e7c2007-04-26 15:55:03 -0700730static inline struct afs_vnode *AFS_FS_I(struct inode *inode)
731{
732 return container_of(inode, struct afs_vnode, vfs_inode);
733}
734
735static inline struct inode *AFS_VNODE_TO_I(struct afs_vnode *vnode)
736{
737 return &vnode->vfs_inode;
738}
739
David Howells260a9802007-04-26 15:59:35 -0700740extern void afs_vnode_finalise_status_update(struct afs_vnode *,
741 struct afs_server *);
David Howells00d3b7a2007-04-26 15:57:07 -0700742extern int afs_vnode_fetch_status(struct afs_vnode *, struct afs_vnode *,
743 struct key *);
744extern int afs_vnode_fetch_data(struct afs_vnode *, struct key *,
David Howells196ee9c2017-01-05 10:38:34 +0000745 struct afs_read *);
David Howells260a9802007-04-26 15:59:35 -0700746extern int afs_vnode_create(struct afs_vnode *, struct key *, const char *,
747 umode_t, struct afs_fid *, struct afs_file_status *,
748 struct afs_callback *, struct afs_server **);
749extern int afs_vnode_remove(struct afs_vnode *, struct key *, const char *,
750 bool);
751extern int afs_vnode_link(struct afs_vnode *, struct afs_vnode *, struct key *,
752 const char *);
753extern int afs_vnode_symlink(struct afs_vnode *, struct key *, const char *,
754 const char *, struct afs_fid *,
755 struct afs_file_status *, struct afs_server **);
756extern int afs_vnode_rename(struct afs_vnode *, struct afs_vnode *,
757 struct key *, const char *, const char *);
David Howells31143d52007-05-09 02:33:46 -0700758extern int afs_vnode_store_data(struct afs_writeback *, pgoff_t, pgoff_t,
759 unsigned, unsigned);
760extern int afs_vnode_setattr(struct afs_vnode *, struct key *, struct iattr *);
David Howells45222b92007-05-10 22:22:20 -0700761extern int afs_vnode_get_volume_status(struct afs_vnode *, struct key *,
762 struct afs_volume_status *);
David Howellse8d6c552007-07-15 23:40:12 -0700763extern int afs_vnode_set_lock(struct afs_vnode *, struct key *,
764 afs_lock_type_t);
765extern int afs_vnode_extend_lock(struct afs_vnode *, struct key *);
766extern int afs_vnode_release_lock(struct afs_vnode *, struct key *);
David Howells08e0e7c2007-04-26 15:55:03 -0700767
768/*
769 * volume.c
770 */
David Howells49566f62017-11-02 15:27:46 +0000771static inline struct afs_volume *afs_get_volume(struct afs_volume *volume)
772{
773 if (volume)
774 atomic_inc(&volume->usage);
775 return volume;
776}
David Howells08e0e7c2007-04-26 15:55:03 -0700777
David Howells9ed900b2017-11-02 15:27:46 +0000778extern void afs_put_volume(struct afs_cell *, struct afs_volume *);
David Howells00d3b7a2007-04-26 15:57:07 -0700779extern struct afs_volume *afs_volume_lookup(struct afs_mount_params *);
David Howells08e0e7c2007-04-26 15:55:03 -0700780extern struct afs_server *afs_volume_pick_fileserver(struct afs_vnode *);
781extern int afs_volume_release_fileserver(struct afs_vnode *,
782 struct afs_server *, int);
783
David Howells31143d52007-05-09 02:33:46 -0700784/*
785 * write.c
786 */
787extern int afs_set_page_dirty(struct page *);
788extern void afs_put_writeback(struct afs_writeback *);
Nick Piggin15b46502008-10-15 22:04:32 -0700789extern int afs_write_begin(struct file *file, struct address_space *mapping,
790 loff_t pos, unsigned len, unsigned flags,
791 struct page **pagep, void **fsdata);
792extern int afs_write_end(struct file *file, struct address_space *mapping,
793 loff_t pos, unsigned len, unsigned copied,
794 struct page *page, void *fsdata);
David Howells31143d52007-05-09 02:33:46 -0700795extern int afs_writepage(struct page *, struct writeback_control *);
796extern int afs_writepages(struct address_space *, struct writeback_control *);
David Howells31143d52007-05-09 02:33:46 -0700797extern void afs_pages_written_back(struct afs_vnode *, struct afs_call *);
Al Viro50b55512014-04-03 14:13:46 -0400798extern ssize_t afs_file_write(struct kiocb *, struct iov_iter *);
David Howells31143d52007-05-09 02:33:46 -0700799extern int afs_writeback_all(struct afs_vnode *);
David Howells58fed942017-03-16 16:27:45 +0000800extern int afs_flush(struct file *, fl_owner_t);
Josef Bacik02c24a82011-07-16 20:44:56 -0400801extern int afs_fsync(struct file *, loff_t, loff_t, int);
David Howells31143d52007-05-09 02:33:46 -0700802
David Howellsd3e3b7ea2017-07-06 15:50:27 +0100803/*
804 * xattr.c
805 */
806extern const struct xattr_handler *afs_xattr_handlers[];
807extern ssize_t afs_listxattr(struct dentry *, char *, size_t);
David Howells31143d52007-05-09 02:33:46 -0700808
David Howells08e0e7c2007-04-26 15:55:03 -0700809/*****************************************************************************/
810/*
811 * debug tracing
812 */
David Howells8e8d7f12017-01-05 10:38:34 +0000813#include <trace/events/afs.h>
814
David Howells08e0e7c2007-04-26 15:55:03 -0700815extern unsigned afs_debug;
816
817#define dbgprintk(FMT,...) \
Sven Schnellead16df82008-04-03 10:44:01 +0100818 printk("[%-6.6s] "FMT"\n", current->comm ,##__VA_ARGS__)
David Howells08e0e7c2007-04-26 15:55:03 -0700819
Harvey Harrison530b6412008-04-30 00:55:09 -0700820#define kenter(FMT,...) dbgprintk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
821#define kleave(FMT,...) dbgprintk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
David Howells08e0e7c2007-04-26 15:55:03 -0700822#define kdebug(FMT,...) dbgprintk(" "FMT ,##__VA_ARGS__)
823
824
825#if defined(__KDEBUG)
826#define _enter(FMT,...) kenter(FMT,##__VA_ARGS__)
827#define _leave(FMT,...) kleave(FMT,##__VA_ARGS__)
828#define _debug(FMT,...) kdebug(FMT,##__VA_ARGS__)
829
830#elif defined(CONFIG_AFS_DEBUG)
831#define AFS_DEBUG_KENTER 0x01
832#define AFS_DEBUG_KLEAVE 0x02
833#define AFS_DEBUG_KDEBUG 0x04
834
835#define _enter(FMT,...) \
836do { \
837 if (unlikely(afs_debug & AFS_DEBUG_KENTER)) \
838 kenter(FMT,##__VA_ARGS__); \
839} while (0)
840
841#define _leave(FMT,...) \
842do { \
843 if (unlikely(afs_debug & AFS_DEBUG_KLEAVE)) \
844 kleave(FMT,##__VA_ARGS__); \
845} while (0)
846
847#define _debug(FMT,...) \
848do { \
849 if (unlikely(afs_debug & AFS_DEBUG_KDEBUG)) \
850 kdebug(FMT,##__VA_ARGS__); \
851} while (0)
852
853#else
David Howells12fdff32010-08-12 16:54:57 +0100854#define _enter(FMT,...) no_printk("==> %s("FMT")",__func__ ,##__VA_ARGS__)
855#define _leave(FMT,...) no_printk("<== %s()"FMT"",__func__ ,##__VA_ARGS__)
856#define _debug(FMT,...) no_printk(" "FMT ,##__VA_ARGS__)
David Howells08e0e7c2007-04-26 15:55:03 -0700857#endif
858
859/*
860 * debug assertion checking
861 */
862#if 1 // defined(__KDEBUGALL)
863
864#define ASSERT(X) \
865do { \
866 if (unlikely(!(X))) { \
867 printk(KERN_ERR "\n"); \
868 printk(KERN_ERR "AFS: Assertion failed\n"); \
869 BUG(); \
870 } \
871} while(0)
872
873#define ASSERTCMP(X, OP, Y) \
874do { \
875 if (unlikely(!((X) OP (Y)))) { \
876 printk(KERN_ERR "\n"); \
877 printk(KERN_ERR "AFS: Assertion failed\n"); \
878 printk(KERN_ERR "%lu " #OP " %lu is false\n", \
879 (unsigned long)(X), (unsigned long)(Y)); \
880 printk(KERN_ERR "0x%lx " #OP " 0x%lx is false\n", \
881 (unsigned long)(X), (unsigned long)(Y)); \
882 BUG(); \
883 } \
884} while(0)
885
David Howells416351f2007-05-09 02:33:45 -0700886#define ASSERTRANGE(L, OP1, N, OP2, H) \
887do { \
888 if (unlikely(!((L) OP1 (N)) || !((N) OP2 (H)))) { \
889 printk(KERN_ERR "\n"); \
890 printk(KERN_ERR "AFS: Assertion failed\n"); \
891 printk(KERN_ERR "%lu "#OP1" %lu "#OP2" %lu is false\n", \
892 (unsigned long)(L), (unsigned long)(N), \
893 (unsigned long)(H)); \
894 printk(KERN_ERR "0x%lx "#OP1" 0x%lx "#OP2" 0x%lx is false\n", \
895 (unsigned long)(L), (unsigned long)(N), \
896 (unsigned long)(H)); \
897 BUG(); \
898 } \
899} while(0)
900
David Howells08e0e7c2007-04-26 15:55:03 -0700901#define ASSERTIF(C, X) \
902do { \
903 if (unlikely((C) && !(X))) { \
904 printk(KERN_ERR "\n"); \
905 printk(KERN_ERR "AFS: Assertion failed\n"); \
906 BUG(); \
907 } \
908} while(0)
909
910#define ASSERTIFCMP(C, X, OP, Y) \
911do { \
912 if (unlikely((C) && !((X) OP (Y)))) { \
913 printk(KERN_ERR "\n"); \
914 printk(KERN_ERR "AFS: Assertion failed\n"); \
915 printk(KERN_ERR "%lu " #OP " %lu is false\n", \
916 (unsigned long)(X), (unsigned long)(Y)); \
917 printk(KERN_ERR "0x%lx " #OP " 0x%lx is false\n", \
918 (unsigned long)(X), (unsigned long)(Y)); \
919 BUG(); \
920 } \
921} while(0)
922
923#else
924
925#define ASSERT(X) \
926do { \
927} while(0)
928
929#define ASSERTCMP(X, OP, Y) \
930do { \
931} while(0)
932
David Howells416351f2007-05-09 02:33:45 -0700933#define ASSERTRANGE(L, OP1, N, OP2, H) \
934do { \
935} while(0)
936
David Howells08e0e7c2007-04-26 15:55:03 -0700937#define ASSERTIF(C, X) \
938do { \
939} while(0)
940
941#define ASSERTIFCMP(C, X, OP, Y) \
942do { \
943} while(0)
944
945#endif /* __KDEBUGALL */