blob: 47b71c8947f91221ac9551b75a5dfa91810d2bd8 [file] [log] [blame]
David Howellsec268152007-04-26 15:49:28 -07001/* AFS Cache Manager Service
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/sched.h>
David Howells08e0e7c2007-04-26 15:55:03 -070015#include <linux/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "internal.h"
David Howells08e0e7c2007-04-26 15:55:03 -070017#include "afs_cm.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Adrian Bunkc1206a22007-10-16 23:26:41 -070019#if 0
David Howells08e0e7c2007-04-26 15:55:03 -070020struct workqueue_struct *afs_cm_workqueue;
Adrian Bunkc1206a22007-10-16 23:26:41 -070021#endif /* 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
David Howells08e0e7c2007-04-26 15:55:03 -070023static int afs_deliver_cb_init_call_back_state(struct afs_call *,
24 struct sk_buff *, bool);
David Howellsc35eccb2007-04-26 15:58:49 -070025static int afs_deliver_cb_init_call_back_state3(struct afs_call *,
26 struct sk_buff *, bool);
David Howells08e0e7c2007-04-26 15:55:03 -070027static int afs_deliver_cb_probe(struct afs_call *, struct sk_buff *, bool);
28static int afs_deliver_cb_callback(struct afs_call *, struct sk_buff *, bool);
David Howellsb908fe62007-04-26 15:58:17 -070029static int afs_deliver_cb_get_capabilities(struct afs_call *, struct sk_buff *,
30 bool);
David Howells08e0e7c2007-04-26 15:55:03 -070031static void afs_cm_destructor(struct afs_call *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
David Howells08e0e7c2007-04-26 15:55:03 -070033/*
34 * CB.CallBack operation type
35 */
36static const struct afs_call_type afs_SRXCBCallBack = {
David Howells00d3b7a2007-04-26 15:57:07 -070037 .name = "CB.CallBack",
David Howells08e0e7c2007-04-26 15:55:03 -070038 .deliver = afs_deliver_cb_callback,
39 .abort_to_error = afs_abort_to_error,
40 .destructor = afs_cm_destructor,
Linus Torvalds1da177e2005-04-16 15:20:36 -070041};
42
David Howells08e0e7c2007-04-26 15:55:03 -070043/*
44 * CB.InitCallBackState operation type
45 */
46static const struct afs_call_type afs_SRXCBInitCallBackState = {
David Howells00d3b7a2007-04-26 15:57:07 -070047 .name = "CB.InitCallBackState",
David Howells08e0e7c2007-04-26 15:55:03 -070048 .deliver = afs_deliver_cb_init_call_back_state,
49 .abort_to_error = afs_abort_to_error,
50 .destructor = afs_cm_destructor,
Linus Torvalds1da177e2005-04-16 15:20:36 -070051};
52
David Howells08e0e7c2007-04-26 15:55:03 -070053/*
David Howellsc35eccb2007-04-26 15:58:49 -070054 * CB.InitCallBackState3 operation type
55 */
56static const struct afs_call_type afs_SRXCBInitCallBackState3 = {
57 .name = "CB.InitCallBackState3",
58 .deliver = afs_deliver_cb_init_call_back_state3,
59 .abort_to_error = afs_abort_to_error,
60 .destructor = afs_cm_destructor,
61};
62
63/*
David Howells08e0e7c2007-04-26 15:55:03 -070064 * CB.Probe operation type
65 */
66static const struct afs_call_type afs_SRXCBProbe = {
David Howells00d3b7a2007-04-26 15:57:07 -070067 .name = "CB.Probe",
David Howells08e0e7c2007-04-26 15:55:03 -070068 .deliver = afs_deliver_cb_probe,
69 .abort_to_error = afs_abort_to_error,
70 .destructor = afs_cm_destructor,
71};
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073/*
David Howellsb908fe62007-04-26 15:58:17 -070074 * CB.GetCapabilities operation type
75 */
76static const struct afs_call_type afs_SRXCBGetCapabilites = {
77 .name = "CB.GetCapabilities",
78 .deliver = afs_deliver_cb_get_capabilities,
79 .abort_to_error = afs_abort_to_error,
80 .destructor = afs_cm_destructor,
81};
82
83/*
David Howells08e0e7c2007-04-26 15:55:03 -070084 * route an incoming cache manager call
85 * - return T if supported, F if not
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 */
David Howells08e0e7c2007-04-26 15:55:03 -070087bool afs_cm_incoming_call(struct afs_call *call)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
David Howells08e0e7c2007-04-26 15:55:03 -070089 u32 operation_id = ntohl(call->operation_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
David Howells08e0e7c2007-04-26 15:55:03 -070091 _enter("{CB.OP %u}", operation_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
David Howells08e0e7c2007-04-26 15:55:03 -070093 switch (operation_id) {
94 case CBCallBack:
95 call->type = &afs_SRXCBCallBack;
96 return true;
97 case CBInitCallBackState:
98 call->type = &afs_SRXCBInitCallBackState;
99 return true;
David Howellsc35eccb2007-04-26 15:58:49 -0700100 case CBInitCallBackState3:
101 call->type = &afs_SRXCBInitCallBackState3;
102 return true;
David Howells08e0e7c2007-04-26 15:55:03 -0700103 case CBProbe:
104 call->type = &afs_SRXCBProbe;
105 return true;
David Howellsb908fe62007-04-26 15:58:17 -0700106 case CBGetCapabilities:
107 call->type = &afs_SRXCBGetCapabilites;
108 return true;
David Howells08e0e7c2007-04-26 15:55:03 -0700109 default:
110 return false;
111 }
David Howellsec268152007-04-26 15:49:28 -0700112}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/*
David Howells08e0e7c2007-04-26 15:55:03 -0700115 * clean up a cache manager call
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 */
David Howells08e0e7c2007-04-26 15:55:03 -0700117static void afs_cm_destructor(struct afs_call *call)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
David Howells08e0e7c2007-04-26 15:55:03 -0700119 _enter("");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
David Howells08e0e7c2007-04-26 15:55:03 -0700121 afs_put_server(call->server);
122 call->server = NULL;
123 kfree(call->buffer);
124 call->buffer = NULL;
David Howellsec268152007-04-26 15:49:28 -0700125}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127/*
David Howells08e0e7c2007-04-26 15:55:03 -0700128 * allow the fileserver to see if the cache manager is still alive
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 */
David Howells08e0e7c2007-04-26 15:55:03 -0700130static void SRXAFSCB_CallBack(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
David Howells08e0e7c2007-04-26 15:55:03 -0700132 struct afs_call *call = container_of(work, struct afs_call, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
David Howells08e0e7c2007-04-26 15:55:03 -0700134 _enter("");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
David Howells08e0e7c2007-04-26 15:55:03 -0700136 /* be sure to send the reply *before* attempting to spam the AFS server
137 * with FSFetchStatus requests on the vnodes with broken callbacks lest
138 * the AFS server get into a vicious cycle of trying to break further
139 * callbacks because it hadn't received completion of the CBCallBack op
140 * yet */
141 afs_send_empty_reply(call);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
David Howells08e0e7c2007-04-26 15:55:03 -0700143 afs_break_callbacks(call->server, call->count, call->request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 _leave("");
David Howellsec268152007-04-26 15:49:28 -0700145}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147/*
David Howells08e0e7c2007-04-26 15:55:03 -0700148 * deliver request data to a CB.CallBack call
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 */
David Howells08e0e7c2007-04-26 15:55:03 -0700150static int afs_deliver_cb_callback(struct afs_call *call, struct sk_buff *skb,
151 bool last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
David Howells08e0e7c2007-04-26 15:55:03 -0700153 struct afs_callback *cb;
154 struct afs_server *server;
155 struct in_addr addr;
156 __be32 *bp;
157 u32 tmp;
158 int ret, loop;
159
160 _enter("{%u},{%u},%d", call->unmarshall, skb->len, last);
161
162 switch (call->unmarshall) {
163 case 0:
164 call->offset = 0;
165 call->unmarshall++;
166
167 /* extract the FID array and its count in two steps */
168 case 1:
169 _debug("extract FID count");
170 ret = afs_extract_data(call, skb, last, &call->tmp, 4);
171 switch (ret) {
172 case 0: break;
173 case -EAGAIN: return 0;
174 default: return ret;
175 }
176
177 call->count = ntohl(call->tmp);
178 _debug("FID count: %u", call->count);
179 if (call->count > AFSCBMAX)
180 return -EBADMSG;
181
182 call->buffer = kmalloc(call->count * 3 * 4, GFP_KERNEL);
183 if (!call->buffer)
184 return -ENOMEM;
185 call->offset = 0;
186 call->unmarshall++;
187
188 case 2:
189 _debug("extract FID array");
190 ret = afs_extract_data(call, skb, last, call->buffer,
191 call->count * 3 * 4);
192 switch (ret) {
193 case 0: break;
194 case -EAGAIN: return 0;
195 default: return ret;
196 }
197
198 _debug("unmarshall FID array");
199 call->request = kcalloc(call->count,
200 sizeof(struct afs_callback),
201 GFP_KERNEL);
202 if (!call->request)
203 return -ENOMEM;
204
205 cb = call->request;
206 bp = call->buffer;
207 for (loop = call->count; loop > 0; loop--, cb++) {
208 cb->fid.vid = ntohl(*bp++);
209 cb->fid.vnode = ntohl(*bp++);
210 cb->fid.unique = ntohl(*bp++);
211 cb->type = AFSCM_CB_UNTYPED;
212 }
213
214 call->offset = 0;
215 call->unmarshall++;
216
217 /* extract the callback array and its count in two steps */
218 case 3:
219 _debug("extract CB count");
220 ret = afs_extract_data(call, skb, last, &call->tmp, 4);
221 switch (ret) {
222 case 0: break;
223 case -EAGAIN: return 0;
224 default: return ret;
225 }
226
227 tmp = ntohl(call->tmp);
228 _debug("CB count: %u", tmp);
229 if (tmp != call->count && tmp != 0)
230 return -EBADMSG;
231 call->offset = 0;
232 call->unmarshall++;
233 if (tmp == 0)
234 goto empty_cb_array;
235
236 case 4:
237 _debug("extract CB array");
238 ret = afs_extract_data(call, skb, last, call->request,
239 call->count * 3 * 4);
240 switch (ret) {
241 case 0: break;
242 case -EAGAIN: return 0;
243 default: return ret;
244 }
245
246 _debug("unmarshall CB array");
247 cb = call->request;
248 bp = call->buffer;
249 for (loop = call->count; loop > 0; loop--, cb++) {
250 cb->version = ntohl(*bp++);
251 cb->expiry = ntohl(*bp++);
252 cb->type = ntohl(*bp++);
253 }
254
255 empty_cb_array:
256 call->offset = 0;
257 call->unmarshall++;
258
259 case 5:
260 _debug("trailer");
261 if (skb->len != 0)
262 return -EBADMSG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 break;
264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
David Howells08e0e7c2007-04-26 15:55:03 -0700266 if (!last)
267 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
David Howells08e0e7c2007-04-26 15:55:03 -0700269 call->state = AFS_CALL_REPLYING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
David Howells08e0e7c2007-04-26 15:55:03 -0700271 /* we'll need the file server record as that tells us which set of
272 * vnodes to operate upon */
273 memcpy(&addr, &ip_hdr(skb)->saddr, 4);
274 server = afs_find_server(&addr);
275 if (!server)
276 return -ENOTCONN;
277 call->server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
David Howells08e0e7c2007-04-26 15:55:03 -0700279 INIT_WORK(&call->work, SRXAFSCB_CallBack);
280 schedule_work(&call->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 return 0;
David Howellsec268152007-04-26 15:49:28 -0700282}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284/*
David Howells08e0e7c2007-04-26 15:55:03 -0700285 * allow the fileserver to request callback state (re-)initialisation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 */
David Howells08e0e7c2007-04-26 15:55:03 -0700287static void SRXAFSCB_InitCallBackState(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
David Howells08e0e7c2007-04-26 15:55:03 -0700289 struct afs_call *call = container_of(work, struct afs_call, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
David Howells08e0e7c2007-04-26 15:55:03 -0700291 _enter("{%p}", call->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
David Howells08e0e7c2007-04-26 15:55:03 -0700293 afs_init_callback_state(call->server);
294 afs_send_empty_reply(call);
295 _leave("");
David Howellsec268152007-04-26 15:49:28 -0700296}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298/*
David Howells08e0e7c2007-04-26 15:55:03 -0700299 * deliver request data to a CB.InitCallBackState call
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 */
David Howells08e0e7c2007-04-26 15:55:03 -0700301static int afs_deliver_cb_init_call_back_state(struct afs_call *call,
302 struct sk_buff *skb,
303 bool last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
305 struct afs_server *server;
David Howells08e0e7c2007-04-26 15:55:03 -0700306 struct in_addr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
David Howells08e0e7c2007-04-26 15:55:03 -0700308 _enter(",{%u},%d", skb->len, last);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
David Howells08e0e7c2007-04-26 15:55:03 -0700310 if (skb->len > 0)
311 return -EBADMSG;
312 if (!last)
313 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
David Howells08e0e7c2007-04-26 15:55:03 -0700315 /* no unmarshalling required */
316 call->state = AFS_CALL_REPLYING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
David Howells08e0e7c2007-04-26 15:55:03 -0700318 /* we'll need the file server record as that tells us which set of
319 * vnodes to operate upon */
320 memcpy(&addr, &ip_hdr(skb)->saddr, 4);
321 server = afs_find_server(&addr);
322 if (!server)
323 return -ENOTCONN;
324 call->server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
David Howells08e0e7c2007-04-26 15:55:03 -0700326 INIT_WORK(&call->work, SRXAFSCB_InitCallBackState);
327 schedule_work(&call->work);
328 return 0;
David Howellsec268152007-04-26 15:49:28 -0700329}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331/*
David Howellsc35eccb2007-04-26 15:58:49 -0700332 * deliver request data to a CB.InitCallBackState3 call
333 */
334static int afs_deliver_cb_init_call_back_state3(struct afs_call *call,
335 struct sk_buff *skb,
336 bool last)
337{
338 struct afs_server *server;
339 struct in_addr addr;
340
341 _enter(",{%u},%d", skb->len, last);
342
343 if (!last)
344 return 0;
345
346 /* no unmarshalling required */
347 call->state = AFS_CALL_REPLYING;
348
349 /* we'll need the file server record as that tells us which set of
350 * vnodes to operate upon */
351 memcpy(&addr, &ip_hdr(skb)->saddr, 4);
352 server = afs_find_server(&addr);
353 if (!server)
354 return -ENOTCONN;
355 call->server = server;
356
357 INIT_WORK(&call->work, SRXAFSCB_InitCallBackState);
358 schedule_work(&call->work);
359 return 0;
360}
361
362/*
David Howells08e0e7c2007-04-26 15:55:03 -0700363 * allow the fileserver to see if the cache manager is still alive
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 */
David Howells08e0e7c2007-04-26 15:55:03 -0700365static void SRXAFSCB_Probe(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
David Howells08e0e7c2007-04-26 15:55:03 -0700367 struct afs_call *call = container_of(work, struct afs_call, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
David Howells08e0e7c2007-04-26 15:55:03 -0700369 _enter("");
370 afs_send_empty_reply(call);
371 _leave("");
David Howellsec268152007-04-26 15:49:28 -0700372}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374/*
David Howells08e0e7c2007-04-26 15:55:03 -0700375 * deliver request data to a CB.Probe call
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 */
David Howells08e0e7c2007-04-26 15:55:03 -0700377static int afs_deliver_cb_probe(struct afs_call *call, struct sk_buff *skb,
378 bool last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
David Howells08e0e7c2007-04-26 15:55:03 -0700380 _enter(",{%u},%d", skb->len, last);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
David Howells08e0e7c2007-04-26 15:55:03 -0700382 if (skb->len > 0)
383 return -EBADMSG;
384 if (!last)
385 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
David Howells08e0e7c2007-04-26 15:55:03 -0700387 /* no unmarshalling required */
388 call->state = AFS_CALL_REPLYING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
David Howells08e0e7c2007-04-26 15:55:03 -0700390 INIT_WORK(&call->work, SRXAFSCB_Probe);
391 schedule_work(&call->work);
392 return 0;
David Howellsec268152007-04-26 15:49:28 -0700393}
David Howellsb908fe62007-04-26 15:58:17 -0700394
395/*
396 * allow the fileserver to ask about the cache manager's capabilities
397 */
398static void SRXAFSCB_GetCapabilities(struct work_struct *work)
399{
400 struct afs_interface *ifs;
401 struct afs_call *call = container_of(work, struct afs_call, work);
402 int loop, nifs;
403
404 struct {
405 struct /* InterfaceAddr */ {
406 __be32 nifs;
407 __be32 uuid[11];
408 __be32 ifaddr[32];
409 __be32 netmask[32];
410 __be32 mtu[32];
411 } ia;
412 struct /* Capabilities */ {
413 __be32 capcount;
414 __be32 caps[1];
415 } cap;
416 } reply;
417
418 _enter("");
419
420 nifs = 0;
421 ifs = kcalloc(32, sizeof(*ifs), GFP_KERNEL);
422 if (ifs) {
423 nifs = afs_get_ipv4_interfaces(ifs, 32, false);
424 if (nifs < 0) {
425 kfree(ifs);
426 ifs = NULL;
427 nifs = 0;
428 }
429 }
430
431 memset(&reply, 0, sizeof(reply));
432 reply.ia.nifs = htonl(nifs);
433
434 reply.ia.uuid[0] = htonl(afs_uuid.time_low);
435 reply.ia.uuid[1] = htonl(afs_uuid.time_mid);
436 reply.ia.uuid[2] = htonl(afs_uuid.time_hi_and_version);
437 reply.ia.uuid[3] = htonl((s8) afs_uuid.clock_seq_hi_and_reserved);
438 reply.ia.uuid[4] = htonl((s8) afs_uuid.clock_seq_low);
439 for (loop = 0; loop < 6; loop++)
440 reply.ia.uuid[loop + 5] = htonl((s8) afs_uuid.node[loop]);
441
442 if (ifs) {
443 for (loop = 0; loop < nifs; loop++) {
444 reply.ia.ifaddr[loop] = ifs[loop].address.s_addr;
445 reply.ia.netmask[loop] = ifs[loop].netmask.s_addr;
446 reply.ia.mtu[loop] = htonl(ifs[loop].mtu);
447 }
Patrick McHardy5b35fad2007-05-03 03:27:39 -0700448 kfree(ifs);
David Howellsb908fe62007-04-26 15:58:17 -0700449 }
450
451 reply.cap.capcount = htonl(1);
452 reply.cap.caps[0] = htonl(AFS_CAP_ERROR_TRANSLATION);
453 afs_send_simple_reply(call, &reply, sizeof(reply));
454
455 _leave("");
456}
457
458/*
459 * deliver request data to a CB.GetCapabilities call
460 */
461static int afs_deliver_cb_get_capabilities(struct afs_call *call,
462 struct sk_buff *skb, bool last)
463{
464 _enter(",{%u},%d", skb->len, last);
465
466 if (skb->len > 0)
467 return -EBADMSG;
468 if (!last)
469 return 0;
470
471 /* no unmarshalling required */
472 call->state = AFS_CALL_REPLYING;
473
474 INIT_WORK(&call->work, SRXAFSCB_GetCapabilities);
475 schedule_work(&call->work);
476 return 0;
477}