blob: 4b0eff6da6740552043679764f0ebc76a47917a0 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/sched.h>
David Howells08e0e7c2007-04-26 15:55:03 -070016#include <linux/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include "internal.h"
David Howells08e0e7c2007-04-26 15:55:03 -070018#include "afs_cm.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Adrian Bunkc1206a22007-10-16 23:26:41 -070020#if 0
David Howells08e0e7c2007-04-26 15:55:03 -070021struct workqueue_struct *afs_cm_workqueue;
Adrian Bunkc1206a22007-10-16 23:26:41 -070022#endif /* 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
David Howells08e0e7c2007-04-26 15:55:03 -070024static int afs_deliver_cb_init_call_back_state(struct afs_call *,
25 struct sk_buff *, bool);
David Howellsc35eccb2007-04-26 15:58:49 -070026static int afs_deliver_cb_init_call_back_state3(struct afs_call *,
27 struct sk_buff *, bool);
David Howells08e0e7c2007-04-26 15:55:03 -070028static int afs_deliver_cb_probe(struct afs_call *, struct sk_buff *, bool);
29static int afs_deliver_cb_callback(struct afs_call *, struct sk_buff *, bool);
David Howells9396d492008-04-29 01:03:22 -070030static int afs_deliver_cb_probe_uuid(struct afs_call *, struct sk_buff *, bool);
David Howells7c80bcc2008-04-29 01:03:21 -070031static int afs_deliver_cb_tell_me_about_yourself(struct afs_call *,
32 struct sk_buff *, bool);
David Howells08e0e7c2007-04-26 15:55:03 -070033static void afs_cm_destructor(struct afs_call *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
David Howells08e0e7c2007-04-26 15:55:03 -070035/*
36 * CB.CallBack operation type
37 */
38static const struct afs_call_type afs_SRXCBCallBack = {
David Howells00d3b7a2007-04-26 15:57:07 -070039 .name = "CB.CallBack",
David Howells08e0e7c2007-04-26 15:55:03 -070040 .deliver = afs_deliver_cb_callback,
41 .abort_to_error = afs_abort_to_error,
42 .destructor = afs_cm_destructor,
Linus Torvalds1da177e2005-04-16 15:20:36 -070043};
44
David Howells08e0e7c2007-04-26 15:55:03 -070045/*
46 * CB.InitCallBackState operation type
47 */
48static const struct afs_call_type afs_SRXCBInitCallBackState = {
David Howells00d3b7a2007-04-26 15:57:07 -070049 .name = "CB.InitCallBackState",
David Howells08e0e7c2007-04-26 15:55:03 -070050 .deliver = afs_deliver_cb_init_call_back_state,
51 .abort_to_error = afs_abort_to_error,
52 .destructor = afs_cm_destructor,
Linus Torvalds1da177e2005-04-16 15:20:36 -070053};
54
David Howells08e0e7c2007-04-26 15:55:03 -070055/*
David Howellsc35eccb2007-04-26 15:58:49 -070056 * CB.InitCallBackState3 operation type
57 */
58static const struct afs_call_type afs_SRXCBInitCallBackState3 = {
59 .name = "CB.InitCallBackState3",
60 .deliver = afs_deliver_cb_init_call_back_state3,
61 .abort_to_error = afs_abort_to_error,
62 .destructor = afs_cm_destructor,
63};
64
65/*
David Howells08e0e7c2007-04-26 15:55:03 -070066 * CB.Probe operation type
67 */
68static const struct afs_call_type afs_SRXCBProbe = {
David Howells00d3b7a2007-04-26 15:57:07 -070069 .name = "CB.Probe",
David Howells08e0e7c2007-04-26 15:55:03 -070070 .deliver = afs_deliver_cb_probe,
71 .abort_to_error = afs_abort_to_error,
72 .destructor = afs_cm_destructor,
73};
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/*
David Howells9396d492008-04-29 01:03:22 -070076 * CB.ProbeUuid operation type
77 */
78static const struct afs_call_type afs_SRXCBProbeUuid = {
79 .name = "CB.ProbeUuid",
80 .deliver = afs_deliver_cb_probe_uuid,
81 .abort_to_error = afs_abort_to_error,
82 .destructor = afs_cm_destructor,
83};
84
85/*
David Howells7c80bcc2008-04-29 01:03:21 -070086 * CB.TellMeAboutYourself operation type
David Howellsb908fe62007-04-26 15:58:17 -070087 */
David Howells7c80bcc2008-04-29 01:03:21 -070088static const struct afs_call_type afs_SRXCBTellMeAboutYourself = {
89 .name = "CB.TellMeAboutYourself",
90 .deliver = afs_deliver_cb_tell_me_about_yourself,
David Howellsb908fe62007-04-26 15:58:17 -070091 .abort_to_error = afs_abort_to_error,
92 .destructor = afs_cm_destructor,
93};
94
95/*
David Howells08e0e7c2007-04-26 15:55:03 -070096 * route an incoming cache manager call
97 * - return T if supported, F if not
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 */
David Howells08e0e7c2007-04-26 15:55:03 -070099bool afs_cm_incoming_call(struct afs_call *call)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
David Howells08e0e7c2007-04-26 15:55:03 -0700101 u32 operation_id = ntohl(call->operation_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
David Howells08e0e7c2007-04-26 15:55:03 -0700103 _enter("{CB.OP %u}", operation_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
David Howells08e0e7c2007-04-26 15:55:03 -0700105 switch (operation_id) {
106 case CBCallBack:
107 call->type = &afs_SRXCBCallBack;
108 return true;
109 case CBInitCallBackState:
110 call->type = &afs_SRXCBInitCallBackState;
111 return true;
David Howellsc35eccb2007-04-26 15:58:49 -0700112 case CBInitCallBackState3:
113 call->type = &afs_SRXCBInitCallBackState3;
114 return true;
David Howells08e0e7c2007-04-26 15:55:03 -0700115 case CBProbe:
116 call->type = &afs_SRXCBProbe;
117 return true;
David Howells7c80bcc2008-04-29 01:03:21 -0700118 case CBTellMeAboutYourself:
119 call->type = &afs_SRXCBTellMeAboutYourself;
David Howellsb908fe62007-04-26 15:58:17 -0700120 return true;
David Howells08e0e7c2007-04-26 15:55:03 -0700121 default:
122 return false;
123 }
David Howellsec268152007-04-26 15:49:28 -0700124}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126/*
David Howells08e0e7c2007-04-26 15:55:03 -0700127 * clean up a cache manager call
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 */
David Howells08e0e7c2007-04-26 15:55:03 -0700129static void afs_cm_destructor(struct afs_call *call)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
David Howells08e0e7c2007-04-26 15:55:03 -0700131 _enter("");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
David Howells6c67c7c2014-05-21 14:48:05 +0100133 /* Break the callbacks here so that we do it after the final ACK is
134 * received. The step number here must match the final number in
135 * afs_deliver_cb_callback().
136 */
137 if (call->unmarshall == 6) {
138 ASSERT(call->server && call->count && call->request);
139 afs_break_callbacks(call->server, call->count, call->request);
140 }
141
David Howells08e0e7c2007-04-26 15:55:03 -0700142 afs_put_server(call->server);
143 call->server = NULL;
144 kfree(call->buffer);
145 call->buffer = NULL;
David Howellsec268152007-04-26 15:49:28 -0700146}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148/*
David Howells08e0e7c2007-04-26 15:55:03 -0700149 * allow the fileserver to see if the cache manager is still alive
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 */
David Howells08e0e7c2007-04-26 15:55:03 -0700151static void SRXAFSCB_CallBack(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
David Howells08e0e7c2007-04-26 15:55:03 -0700153 struct afs_call *call = container_of(work, struct afs_call, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
David Howells08e0e7c2007-04-26 15:55:03 -0700155 _enter("");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
David Howells08e0e7c2007-04-26 15:55:03 -0700157 /* be sure to send the reply *before* attempting to spam the AFS server
158 * with FSFetchStatus requests on the vnodes with broken callbacks lest
159 * the AFS server get into a vicious cycle of trying to break further
160 * callbacks because it hadn't received completion of the CBCallBack op
161 * yet */
162 afs_send_empty_reply(call);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
David Howells08e0e7c2007-04-26 15:55:03 -0700164 afs_break_callbacks(call->server, call->count, call->request);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 _leave("");
David Howellsec268152007-04-26 15:49:28 -0700166}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/*
David Howells08e0e7c2007-04-26 15:55:03 -0700169 * deliver request data to a CB.CallBack call
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 */
David Howells08e0e7c2007-04-26 15:55:03 -0700171static int afs_deliver_cb_callback(struct afs_call *call, struct sk_buff *skb,
172 bool last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
David Howells08e0e7c2007-04-26 15:55:03 -0700174 struct afs_callback *cb;
175 struct afs_server *server;
176 struct in_addr addr;
177 __be32 *bp;
178 u32 tmp;
179 int ret, loop;
180
181 _enter("{%u},{%u},%d", call->unmarshall, skb->len, last);
182
183 switch (call->unmarshall) {
184 case 0:
185 call->offset = 0;
186 call->unmarshall++;
187
188 /* extract the FID array and its count in two steps */
189 case 1:
190 _debug("extract FID count");
191 ret = afs_extract_data(call, skb, last, &call->tmp, 4);
192 switch (ret) {
193 case 0: break;
194 case -EAGAIN: return 0;
195 default: return ret;
196 }
197
198 call->count = ntohl(call->tmp);
199 _debug("FID count: %u", call->count);
200 if (call->count > AFSCBMAX)
201 return -EBADMSG;
202
203 call->buffer = kmalloc(call->count * 3 * 4, GFP_KERNEL);
204 if (!call->buffer)
205 return -ENOMEM;
206 call->offset = 0;
207 call->unmarshall++;
208
209 case 2:
210 _debug("extract FID array");
211 ret = afs_extract_data(call, skb, last, call->buffer,
212 call->count * 3 * 4);
213 switch (ret) {
214 case 0: break;
215 case -EAGAIN: return 0;
216 default: return ret;
217 }
218
219 _debug("unmarshall FID array");
220 call->request = kcalloc(call->count,
221 sizeof(struct afs_callback),
222 GFP_KERNEL);
223 if (!call->request)
224 return -ENOMEM;
225
226 cb = call->request;
227 bp = call->buffer;
228 for (loop = call->count; loop > 0; loop--, cb++) {
229 cb->fid.vid = ntohl(*bp++);
230 cb->fid.vnode = ntohl(*bp++);
231 cb->fid.unique = ntohl(*bp++);
232 cb->type = AFSCM_CB_UNTYPED;
233 }
234
235 call->offset = 0;
236 call->unmarshall++;
237
238 /* extract the callback array and its count in two steps */
239 case 3:
240 _debug("extract CB count");
241 ret = afs_extract_data(call, skb, last, &call->tmp, 4);
242 switch (ret) {
243 case 0: break;
244 case -EAGAIN: return 0;
245 default: return ret;
246 }
247
248 tmp = ntohl(call->tmp);
249 _debug("CB count: %u", tmp);
250 if (tmp != call->count && tmp != 0)
251 return -EBADMSG;
252 call->offset = 0;
253 call->unmarshall++;
254 if (tmp == 0)
255 goto empty_cb_array;
256
257 case 4:
258 _debug("extract CB array");
259 ret = afs_extract_data(call, skb, last, call->request,
260 call->count * 3 * 4);
261 switch (ret) {
262 case 0: break;
263 case -EAGAIN: return 0;
264 default: return ret;
265 }
266
267 _debug("unmarshall CB array");
268 cb = call->request;
269 bp = call->buffer;
270 for (loop = call->count; loop > 0; loop--, cb++) {
271 cb->version = ntohl(*bp++);
272 cb->expiry = ntohl(*bp++);
273 cb->type = ntohl(*bp++);
274 }
275
276 empty_cb_array:
277 call->offset = 0;
278 call->unmarshall++;
279
280 case 5:
281 _debug("trailer");
282 if (skb->len != 0)
283 return -EBADMSG;
David Howells6c67c7c2014-05-21 14:48:05 +0100284
285 /* Record that the message was unmarshalled successfully so
286 * that the call destructor can know do the callback breaking
287 * work, even if the final ACK isn't received.
288 *
289 * If the step number changes, then afs_cm_destructor() must be
290 * updated also.
291 */
292 call->unmarshall++;
293 case 6:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 break;
295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
David Howells08e0e7c2007-04-26 15:55:03 -0700297 if (!last)
298 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
David Howells08e0e7c2007-04-26 15:55:03 -0700300 call->state = AFS_CALL_REPLYING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
David Howells08e0e7c2007-04-26 15:55:03 -0700302 /* we'll need the file server record as that tells us which set of
303 * vnodes to operate upon */
304 memcpy(&addr, &ip_hdr(skb)->saddr, 4);
305 server = afs_find_server(&addr);
306 if (!server)
307 return -ENOTCONN;
308 call->server = server;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
David Howells08e0e7c2007-04-26 15:55:03 -0700310 INIT_WORK(&call->work, SRXAFSCB_CallBack);
Tejun Heo0ad53ee2011-01-14 15:56:37 +0000311 queue_work(afs_wq, &call->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 return 0;
David Howellsec268152007-04-26 15:49:28 -0700313}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315/*
David Howells08e0e7c2007-04-26 15:55:03 -0700316 * allow the fileserver to request callback state (re-)initialisation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 */
David Howells08e0e7c2007-04-26 15:55:03 -0700318static void SRXAFSCB_InitCallBackState(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
David Howells08e0e7c2007-04-26 15:55:03 -0700320 struct afs_call *call = container_of(work, struct afs_call, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
David Howells08e0e7c2007-04-26 15:55:03 -0700322 _enter("{%p}", call->server);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
David Howells08e0e7c2007-04-26 15:55:03 -0700324 afs_init_callback_state(call->server);
325 afs_send_empty_reply(call);
326 _leave("");
David Howellsec268152007-04-26 15:49:28 -0700327}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329/*
David Howells08e0e7c2007-04-26 15:55:03 -0700330 * deliver request data to a CB.InitCallBackState call
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 */
David Howells08e0e7c2007-04-26 15:55:03 -0700332static int afs_deliver_cb_init_call_back_state(struct afs_call *call,
333 struct sk_buff *skb,
334 bool last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
336 struct afs_server *server;
David Howells08e0e7c2007-04-26 15:55:03 -0700337 struct in_addr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
David Howells08e0e7c2007-04-26 15:55:03 -0700339 _enter(",{%u},%d", skb->len, last);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
David Howells08e0e7c2007-04-26 15:55:03 -0700341 if (skb->len > 0)
342 return -EBADMSG;
343 if (!last)
344 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
David Howells08e0e7c2007-04-26 15:55:03 -0700346 /* no unmarshalling required */
347 call->state = AFS_CALL_REPLYING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
David Howells08e0e7c2007-04-26 15:55:03 -0700349 /* 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
David Howells08e0e7c2007-04-26 15:55:03 -0700357 INIT_WORK(&call->work, SRXAFSCB_InitCallBackState);
Tejun Heo0ad53ee2011-01-14 15:56:37 +0000358 queue_work(afs_wq, &call->work);
David Howells08e0e7c2007-04-26 15:55:03 -0700359 return 0;
David Howellsec268152007-04-26 15:49:28 -0700360}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362/*
David Howellsc35eccb2007-04-26 15:58:49 -0700363 * deliver request data to a CB.InitCallBackState3 call
364 */
365static int afs_deliver_cb_init_call_back_state3(struct afs_call *call,
366 struct sk_buff *skb,
367 bool last)
368{
369 struct afs_server *server;
370 struct in_addr addr;
371
372 _enter(",{%u},%d", skb->len, last);
373
374 if (!last)
375 return 0;
376
377 /* no unmarshalling required */
378 call->state = AFS_CALL_REPLYING;
379
380 /* we'll need the file server record as that tells us which set of
381 * vnodes to operate upon */
382 memcpy(&addr, &ip_hdr(skb)->saddr, 4);
383 server = afs_find_server(&addr);
384 if (!server)
385 return -ENOTCONN;
386 call->server = server;
387
388 INIT_WORK(&call->work, SRXAFSCB_InitCallBackState);
Tejun Heo0ad53ee2011-01-14 15:56:37 +0000389 queue_work(afs_wq, &call->work);
David Howellsc35eccb2007-04-26 15:58:49 -0700390 return 0;
391}
392
393/*
David Howells08e0e7c2007-04-26 15:55:03 -0700394 * allow the fileserver to see if the cache manager is still alive
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 */
David Howells08e0e7c2007-04-26 15:55:03 -0700396static void SRXAFSCB_Probe(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
David Howells08e0e7c2007-04-26 15:55:03 -0700398 struct afs_call *call = container_of(work, struct afs_call, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
David Howells08e0e7c2007-04-26 15:55:03 -0700400 _enter("");
401 afs_send_empty_reply(call);
402 _leave("");
David Howellsec268152007-04-26 15:49:28 -0700403}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405/*
David Howells08e0e7c2007-04-26 15:55:03 -0700406 * deliver request data to a CB.Probe call
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 */
David Howells08e0e7c2007-04-26 15:55:03 -0700408static int afs_deliver_cb_probe(struct afs_call *call, struct sk_buff *skb,
409 bool last)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
David Howells08e0e7c2007-04-26 15:55:03 -0700411 _enter(",{%u},%d", skb->len, last);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
David Howells08e0e7c2007-04-26 15:55:03 -0700413 if (skb->len > 0)
414 return -EBADMSG;
415 if (!last)
416 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
David Howells08e0e7c2007-04-26 15:55:03 -0700418 /* no unmarshalling required */
419 call->state = AFS_CALL_REPLYING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
David Howells08e0e7c2007-04-26 15:55:03 -0700421 INIT_WORK(&call->work, SRXAFSCB_Probe);
Tejun Heo0ad53ee2011-01-14 15:56:37 +0000422 queue_work(afs_wq, &call->work);
David Howells08e0e7c2007-04-26 15:55:03 -0700423 return 0;
David Howellsec268152007-04-26 15:49:28 -0700424}
David Howellsb908fe62007-04-26 15:58:17 -0700425
426/*
David Howells9396d492008-04-29 01:03:22 -0700427 * allow the fileserver to quickly find out if the fileserver has been rebooted
428 */
429static void SRXAFSCB_ProbeUuid(struct work_struct *work)
430{
431 struct afs_call *call = container_of(work, struct afs_call, work);
432 struct afs_uuid *r = call->request;
433
434 struct {
435 __be32 match;
436 } reply;
437
438 _enter("");
439
440
441 if (memcmp(r, &afs_uuid, sizeof(afs_uuid)) == 0)
442 reply.match = htonl(0);
443 else
444 reply.match = htonl(1);
445
446 afs_send_simple_reply(call, &reply, sizeof(reply));
447 _leave("");
448}
449
450/*
451 * deliver request data to a CB.ProbeUuid call
452 */
453static int afs_deliver_cb_probe_uuid(struct afs_call *call, struct sk_buff *skb,
454 bool last)
455{
456 struct afs_uuid *r;
457 unsigned loop;
458 __be32 *b;
459 int ret;
460
461 _enter("{%u},{%u},%d", call->unmarshall, skb->len, last);
462
463 if (skb->len > 0)
464 return -EBADMSG;
465 if (!last)
466 return 0;
467
468 switch (call->unmarshall) {
469 case 0:
470 call->offset = 0;
471 call->buffer = kmalloc(11 * sizeof(__be32), GFP_KERNEL);
472 if (!call->buffer)
473 return -ENOMEM;
474 call->unmarshall++;
475
476 case 1:
477 _debug("extract UUID");
478 ret = afs_extract_data(call, skb, last, call->buffer,
479 11 * sizeof(__be32));
480 switch (ret) {
481 case 0: break;
482 case -EAGAIN: return 0;
483 default: return ret;
484 }
485
486 _debug("unmarshall UUID");
487 call->request = kmalloc(sizeof(struct afs_uuid), GFP_KERNEL);
488 if (!call->request)
489 return -ENOMEM;
490
491 b = call->buffer;
492 r = call->request;
493 r->time_low = ntohl(b[0]);
494 r->time_mid = ntohl(b[1]);
495 r->time_hi_and_version = ntohl(b[2]);
496 r->clock_seq_hi_and_reserved = ntohl(b[3]);
497 r->clock_seq_low = ntohl(b[4]);
498
499 for (loop = 0; loop < 6; loop++)
500 r->node[loop] = ntohl(b[loop + 5]);
501
502 call->offset = 0;
503 call->unmarshall++;
504
505 case 2:
506 _debug("trailer");
507 if (skb->len != 0)
508 return -EBADMSG;
509 break;
510 }
511
512 if (!last)
513 return 0;
514
515 call->state = AFS_CALL_REPLYING;
516
517 INIT_WORK(&call->work, SRXAFSCB_ProbeUuid);
Tejun Heo0ad53ee2011-01-14 15:56:37 +0000518 queue_work(afs_wq, &call->work);
David Howells9396d492008-04-29 01:03:22 -0700519 return 0;
520}
521
522/*
David Howellsb908fe62007-04-26 15:58:17 -0700523 * allow the fileserver to ask about the cache manager's capabilities
524 */
David Howells7c80bcc2008-04-29 01:03:21 -0700525static void SRXAFSCB_TellMeAboutYourself(struct work_struct *work)
David Howellsb908fe62007-04-26 15:58:17 -0700526{
527 struct afs_interface *ifs;
528 struct afs_call *call = container_of(work, struct afs_call, work);
529 int loop, nifs;
530
531 struct {
532 struct /* InterfaceAddr */ {
533 __be32 nifs;
534 __be32 uuid[11];
535 __be32 ifaddr[32];
536 __be32 netmask[32];
537 __be32 mtu[32];
538 } ia;
539 struct /* Capabilities */ {
540 __be32 capcount;
541 __be32 caps[1];
542 } cap;
543 } reply;
544
545 _enter("");
546
547 nifs = 0;
548 ifs = kcalloc(32, sizeof(*ifs), GFP_KERNEL);
549 if (ifs) {
550 nifs = afs_get_ipv4_interfaces(ifs, 32, false);
551 if (nifs < 0) {
552 kfree(ifs);
553 ifs = NULL;
554 nifs = 0;
555 }
556 }
557
558 memset(&reply, 0, sizeof(reply));
559 reply.ia.nifs = htonl(nifs);
560
561 reply.ia.uuid[0] = htonl(afs_uuid.time_low);
562 reply.ia.uuid[1] = htonl(afs_uuid.time_mid);
563 reply.ia.uuid[2] = htonl(afs_uuid.time_hi_and_version);
564 reply.ia.uuid[3] = htonl((s8) afs_uuid.clock_seq_hi_and_reserved);
565 reply.ia.uuid[4] = htonl((s8) afs_uuid.clock_seq_low);
566 for (loop = 0; loop < 6; loop++)
567 reply.ia.uuid[loop + 5] = htonl((s8) afs_uuid.node[loop]);
568
569 if (ifs) {
570 for (loop = 0; loop < nifs; loop++) {
571 reply.ia.ifaddr[loop] = ifs[loop].address.s_addr;
572 reply.ia.netmask[loop] = ifs[loop].netmask.s_addr;
573 reply.ia.mtu[loop] = htonl(ifs[loop].mtu);
574 }
Patrick McHardy5b35fad2007-05-03 03:27:39 -0700575 kfree(ifs);
David Howellsb908fe62007-04-26 15:58:17 -0700576 }
577
578 reply.cap.capcount = htonl(1);
579 reply.cap.caps[0] = htonl(AFS_CAP_ERROR_TRANSLATION);
580 afs_send_simple_reply(call, &reply, sizeof(reply));
581
582 _leave("");
583}
584
585/*
David Howells7c80bcc2008-04-29 01:03:21 -0700586 * deliver request data to a CB.TellMeAboutYourself call
David Howellsb908fe62007-04-26 15:58:17 -0700587 */
David Howells7c80bcc2008-04-29 01:03:21 -0700588static int afs_deliver_cb_tell_me_about_yourself(struct afs_call *call,
589 struct sk_buff *skb, bool last)
David Howellsb908fe62007-04-26 15:58:17 -0700590{
591 _enter(",{%u},%d", skb->len, last);
592
593 if (skb->len > 0)
594 return -EBADMSG;
595 if (!last)
596 return 0;
597
598 /* no unmarshalling required */
599 call->state = AFS_CALL_REPLYING;
600
David Howells7c80bcc2008-04-29 01:03:21 -0700601 INIT_WORK(&call->work, SRXAFSCB_TellMeAboutYourself);
Tejun Heo0ad53ee2011-01-14 15:56:37 +0000602 queue_work(afs_wq, &call->work);
David Howellsb908fe62007-04-26 15:58:17 -0700603 return 0;
604}