David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 1 | /* AFS Cache Manager Service |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * |
| 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 Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/sched.h> |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 16 | #include <linux/ip.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include "internal.h" |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 18 | #include "afs_cm.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
Adrian Bunk | c1206a2 | 2007-10-16 23:26:41 -0700 | [diff] [blame] | 20 | #if 0 |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 21 | struct workqueue_struct *afs_cm_workqueue; |
Adrian Bunk | c1206a2 | 2007-10-16 23:26:41 -0700 | [diff] [blame] | 22 | #endif /* 0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 24 | static int afs_deliver_cb_init_call_back_state(struct afs_call *, |
| 25 | struct sk_buff *, bool); |
David Howells | c35eccb | 2007-04-26 15:58:49 -0700 | [diff] [blame] | 26 | static int afs_deliver_cb_init_call_back_state3(struct afs_call *, |
| 27 | struct sk_buff *, bool); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 28 | static int afs_deliver_cb_probe(struct afs_call *, struct sk_buff *, bool); |
| 29 | static int afs_deliver_cb_callback(struct afs_call *, struct sk_buff *, bool); |
David Howells | 9396d49 | 2008-04-29 01:03:22 -0700 | [diff] [blame] | 30 | static int afs_deliver_cb_probe_uuid(struct afs_call *, struct sk_buff *, bool); |
David Howells | 7c80bcc | 2008-04-29 01:03:21 -0700 | [diff] [blame] | 31 | static int afs_deliver_cb_tell_me_about_yourself(struct afs_call *, |
| 32 | struct sk_buff *, bool); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 33 | static void afs_cm_destructor(struct afs_call *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 35 | /* |
| 36 | * CB.CallBack operation type |
| 37 | */ |
| 38 | static const struct afs_call_type afs_SRXCBCallBack = { |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 39 | .name = "CB.CallBack", |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 40 | .deliver = afs_deliver_cb_callback, |
| 41 | .abort_to_error = afs_abort_to_error, |
| 42 | .destructor = afs_cm_destructor, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | }; |
| 44 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 45 | /* |
| 46 | * CB.InitCallBackState operation type |
| 47 | */ |
| 48 | static const struct afs_call_type afs_SRXCBInitCallBackState = { |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 49 | .name = "CB.InitCallBackState", |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 50 | .deliver = afs_deliver_cb_init_call_back_state, |
| 51 | .abort_to_error = afs_abort_to_error, |
| 52 | .destructor = afs_cm_destructor, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | }; |
| 54 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 55 | /* |
David Howells | c35eccb | 2007-04-26 15:58:49 -0700 | [diff] [blame] | 56 | * CB.InitCallBackState3 operation type |
| 57 | */ |
| 58 | static 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 Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 66 | * CB.Probe operation type |
| 67 | */ |
| 68 | static const struct afs_call_type afs_SRXCBProbe = { |
David Howells | 00d3b7a | 2007-04-26 15:57:07 -0700 | [diff] [blame] | 69 | .name = "CB.Probe", |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 70 | .deliver = afs_deliver_cb_probe, |
| 71 | .abort_to_error = afs_abort_to_error, |
| 72 | .destructor = afs_cm_destructor, |
| 73 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | /* |
David Howells | 9396d49 | 2008-04-29 01:03:22 -0700 | [diff] [blame] | 76 | * CB.ProbeUuid operation type |
| 77 | */ |
| 78 | static 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 Howells | 7c80bcc | 2008-04-29 01:03:21 -0700 | [diff] [blame] | 86 | * CB.TellMeAboutYourself operation type |
David Howells | b908fe6 | 2007-04-26 15:58:17 -0700 | [diff] [blame] | 87 | */ |
David Howells | 7c80bcc | 2008-04-29 01:03:21 -0700 | [diff] [blame] | 88 | static const struct afs_call_type afs_SRXCBTellMeAboutYourself = { |
| 89 | .name = "CB.TellMeAboutYourself", |
| 90 | .deliver = afs_deliver_cb_tell_me_about_yourself, |
David Howells | b908fe6 | 2007-04-26 15:58:17 -0700 | [diff] [blame] | 91 | .abort_to_error = afs_abort_to_error, |
| 92 | .destructor = afs_cm_destructor, |
| 93 | }; |
| 94 | |
| 95 | /* |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 96 | * route an incoming cache manager call |
| 97 | * - return T if supported, F if not |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 99 | bool afs_cm_incoming_call(struct afs_call *call) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | { |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 101 | u32 operation_id = ntohl(call->operation_ID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 103 | _enter("{CB.OP %u}", operation_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 105 | 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 Howells | c35eccb | 2007-04-26 15:58:49 -0700 | [diff] [blame] | 112 | case CBInitCallBackState3: |
| 113 | call->type = &afs_SRXCBInitCallBackState3; |
| 114 | return true; |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 115 | case CBProbe: |
| 116 | call->type = &afs_SRXCBProbe; |
| 117 | return true; |
David Howells | 7c80bcc | 2008-04-29 01:03:21 -0700 | [diff] [blame] | 118 | case CBTellMeAboutYourself: |
| 119 | call->type = &afs_SRXCBTellMeAboutYourself; |
David Howells | b908fe6 | 2007-04-26 15:58:17 -0700 | [diff] [blame] | 120 | return true; |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 121 | default: |
| 122 | return false; |
| 123 | } |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 124 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | /* |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 127 | * clean up a cache manager call |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 129 | static void afs_cm_destructor(struct afs_call *call) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | { |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 131 | _enter(""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 133 | afs_put_server(call->server); |
| 134 | call->server = NULL; |
| 135 | kfree(call->buffer); |
| 136 | call->buffer = NULL; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 137 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | /* |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 140 | * allow the fileserver to see if the cache manager is still alive |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 142 | static void SRXAFSCB_CallBack(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | { |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 144 | struct afs_call *call = container_of(work, struct afs_call, work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 146 | _enter(""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 148 | /* be sure to send the reply *before* attempting to spam the AFS server |
| 149 | * with FSFetchStatus requests on the vnodes with broken callbacks lest |
| 150 | * the AFS server get into a vicious cycle of trying to break further |
| 151 | * callbacks because it hadn't received completion of the CBCallBack op |
| 152 | * yet */ |
| 153 | afs_send_empty_reply(call); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 155 | afs_break_callbacks(call->server, call->count, call->request); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | _leave(""); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 157 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | /* |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 160 | * deliver request data to a CB.CallBack call |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 162 | static int afs_deliver_cb_callback(struct afs_call *call, struct sk_buff *skb, |
| 163 | bool last) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | { |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 165 | struct afs_callback *cb; |
| 166 | struct afs_server *server; |
| 167 | struct in_addr addr; |
| 168 | __be32 *bp; |
| 169 | u32 tmp; |
| 170 | int ret, loop; |
| 171 | |
| 172 | _enter("{%u},{%u},%d", call->unmarshall, skb->len, last); |
| 173 | |
| 174 | switch (call->unmarshall) { |
| 175 | case 0: |
| 176 | call->offset = 0; |
| 177 | call->unmarshall++; |
| 178 | |
| 179 | /* extract the FID array and its count in two steps */ |
| 180 | case 1: |
| 181 | _debug("extract FID count"); |
| 182 | ret = afs_extract_data(call, skb, last, &call->tmp, 4); |
| 183 | switch (ret) { |
| 184 | case 0: break; |
| 185 | case -EAGAIN: return 0; |
| 186 | default: return ret; |
| 187 | } |
| 188 | |
| 189 | call->count = ntohl(call->tmp); |
| 190 | _debug("FID count: %u", call->count); |
| 191 | if (call->count > AFSCBMAX) |
| 192 | return -EBADMSG; |
| 193 | |
| 194 | call->buffer = kmalloc(call->count * 3 * 4, GFP_KERNEL); |
| 195 | if (!call->buffer) |
| 196 | return -ENOMEM; |
| 197 | call->offset = 0; |
| 198 | call->unmarshall++; |
| 199 | |
| 200 | case 2: |
| 201 | _debug("extract FID array"); |
| 202 | ret = afs_extract_data(call, skb, last, call->buffer, |
| 203 | call->count * 3 * 4); |
| 204 | switch (ret) { |
| 205 | case 0: break; |
| 206 | case -EAGAIN: return 0; |
| 207 | default: return ret; |
| 208 | } |
| 209 | |
| 210 | _debug("unmarshall FID array"); |
| 211 | call->request = kcalloc(call->count, |
| 212 | sizeof(struct afs_callback), |
| 213 | GFP_KERNEL); |
| 214 | if (!call->request) |
| 215 | return -ENOMEM; |
| 216 | |
| 217 | cb = call->request; |
| 218 | bp = call->buffer; |
| 219 | for (loop = call->count; loop > 0; loop--, cb++) { |
| 220 | cb->fid.vid = ntohl(*bp++); |
| 221 | cb->fid.vnode = ntohl(*bp++); |
| 222 | cb->fid.unique = ntohl(*bp++); |
| 223 | cb->type = AFSCM_CB_UNTYPED; |
| 224 | } |
| 225 | |
| 226 | call->offset = 0; |
| 227 | call->unmarshall++; |
| 228 | |
| 229 | /* extract the callback array and its count in two steps */ |
| 230 | case 3: |
| 231 | _debug("extract CB count"); |
| 232 | ret = afs_extract_data(call, skb, last, &call->tmp, 4); |
| 233 | switch (ret) { |
| 234 | case 0: break; |
| 235 | case -EAGAIN: return 0; |
| 236 | default: return ret; |
| 237 | } |
| 238 | |
| 239 | tmp = ntohl(call->tmp); |
| 240 | _debug("CB count: %u", tmp); |
| 241 | if (tmp != call->count && tmp != 0) |
| 242 | return -EBADMSG; |
| 243 | call->offset = 0; |
| 244 | call->unmarshall++; |
| 245 | if (tmp == 0) |
| 246 | goto empty_cb_array; |
| 247 | |
| 248 | case 4: |
| 249 | _debug("extract CB array"); |
| 250 | ret = afs_extract_data(call, skb, last, call->request, |
| 251 | call->count * 3 * 4); |
| 252 | switch (ret) { |
| 253 | case 0: break; |
| 254 | case -EAGAIN: return 0; |
| 255 | default: return ret; |
| 256 | } |
| 257 | |
| 258 | _debug("unmarshall CB array"); |
| 259 | cb = call->request; |
| 260 | bp = call->buffer; |
| 261 | for (loop = call->count; loop > 0; loop--, cb++) { |
| 262 | cb->version = ntohl(*bp++); |
| 263 | cb->expiry = ntohl(*bp++); |
| 264 | cb->type = ntohl(*bp++); |
| 265 | } |
| 266 | |
| 267 | empty_cb_array: |
| 268 | call->offset = 0; |
| 269 | call->unmarshall++; |
| 270 | |
| 271 | case 5: |
| 272 | _debug("trailer"); |
| 273 | if (skb->len != 0) |
| 274 | return -EBADMSG; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | break; |
| 276 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 278 | if (!last) |
| 279 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 281 | call->state = AFS_CALL_REPLYING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 283 | /* we'll need the file server record as that tells us which set of |
| 284 | * vnodes to operate upon */ |
| 285 | memcpy(&addr, &ip_hdr(skb)->saddr, 4); |
| 286 | server = afs_find_server(&addr); |
| 287 | if (!server) |
| 288 | return -ENOTCONN; |
| 289 | call->server = server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 291 | INIT_WORK(&call->work, SRXAFSCB_CallBack); |
Tejun Heo | 0ad53ee | 2011-01-14 15:56:37 +0000 | [diff] [blame] | 292 | queue_work(afs_wq, &call->work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | return 0; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 294 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | /* |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 297 | * allow the fileserver to request callback state (re-)initialisation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 299 | static void SRXAFSCB_InitCallBackState(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | { |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 301 | struct afs_call *call = container_of(work, struct afs_call, work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 303 | _enter("{%p}", call->server); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 305 | afs_init_callback_state(call->server); |
| 306 | afs_send_empty_reply(call); |
| 307 | _leave(""); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 308 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | /* |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 311 | * deliver request data to a CB.InitCallBackState call |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 313 | static int afs_deliver_cb_init_call_back_state(struct afs_call *call, |
| 314 | struct sk_buff *skb, |
| 315 | bool last) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | { |
| 317 | struct afs_server *server; |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 318 | struct in_addr addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 320 | _enter(",{%u},%d", skb->len, last); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 322 | if (skb->len > 0) |
| 323 | return -EBADMSG; |
| 324 | if (!last) |
| 325 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 327 | /* no unmarshalling required */ |
| 328 | call->state = AFS_CALL_REPLYING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 330 | /* we'll need the file server record as that tells us which set of |
| 331 | * vnodes to operate upon */ |
| 332 | memcpy(&addr, &ip_hdr(skb)->saddr, 4); |
| 333 | server = afs_find_server(&addr); |
| 334 | if (!server) |
| 335 | return -ENOTCONN; |
| 336 | call->server = server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 338 | INIT_WORK(&call->work, SRXAFSCB_InitCallBackState); |
Tejun Heo | 0ad53ee | 2011-01-14 15:56:37 +0000 | [diff] [blame] | 339 | queue_work(afs_wq, &call->work); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 340 | return 0; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 341 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | /* |
David Howells | c35eccb | 2007-04-26 15:58:49 -0700 | [diff] [blame] | 344 | * deliver request data to a CB.InitCallBackState3 call |
| 345 | */ |
| 346 | static int afs_deliver_cb_init_call_back_state3(struct afs_call *call, |
| 347 | struct sk_buff *skb, |
| 348 | bool last) |
| 349 | { |
| 350 | struct afs_server *server; |
| 351 | struct in_addr addr; |
| 352 | |
| 353 | _enter(",{%u},%d", skb->len, last); |
| 354 | |
| 355 | if (!last) |
| 356 | return 0; |
| 357 | |
| 358 | /* no unmarshalling required */ |
| 359 | call->state = AFS_CALL_REPLYING; |
| 360 | |
| 361 | /* we'll need the file server record as that tells us which set of |
| 362 | * vnodes to operate upon */ |
| 363 | memcpy(&addr, &ip_hdr(skb)->saddr, 4); |
| 364 | server = afs_find_server(&addr); |
| 365 | if (!server) |
| 366 | return -ENOTCONN; |
| 367 | call->server = server; |
| 368 | |
| 369 | INIT_WORK(&call->work, SRXAFSCB_InitCallBackState); |
Tejun Heo | 0ad53ee | 2011-01-14 15:56:37 +0000 | [diff] [blame] | 370 | queue_work(afs_wq, &call->work); |
David Howells | c35eccb | 2007-04-26 15:58:49 -0700 | [diff] [blame] | 371 | return 0; |
| 372 | } |
| 373 | |
| 374 | /* |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 375 | * allow the fileserver to see if the cache manager is still alive |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 377 | static void SRXAFSCB_Probe(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | { |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 379 | struct afs_call *call = container_of(work, struct afs_call, work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 381 | _enter(""); |
| 382 | afs_send_empty_reply(call); |
| 383 | _leave(""); |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 384 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | /* |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 387 | * deliver request data to a CB.Probe call |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | */ |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 389 | static int afs_deliver_cb_probe(struct afs_call *call, struct sk_buff *skb, |
| 390 | bool last) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | { |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 392 | _enter(",{%u},%d", skb->len, last); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 394 | if (skb->len > 0) |
| 395 | return -EBADMSG; |
| 396 | if (!last) |
| 397 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 399 | /* no unmarshalling required */ |
| 400 | call->state = AFS_CALL_REPLYING; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 402 | INIT_WORK(&call->work, SRXAFSCB_Probe); |
Tejun Heo | 0ad53ee | 2011-01-14 15:56:37 +0000 | [diff] [blame] | 403 | queue_work(afs_wq, &call->work); |
David Howells | 08e0e7c | 2007-04-26 15:55:03 -0700 | [diff] [blame] | 404 | return 0; |
David Howells | ec26815 | 2007-04-26 15:49:28 -0700 | [diff] [blame] | 405 | } |
David Howells | b908fe6 | 2007-04-26 15:58:17 -0700 | [diff] [blame] | 406 | |
| 407 | /* |
David Howells | 9396d49 | 2008-04-29 01:03:22 -0700 | [diff] [blame] | 408 | * allow the fileserver to quickly find out if the fileserver has been rebooted |
| 409 | */ |
| 410 | static void SRXAFSCB_ProbeUuid(struct work_struct *work) |
| 411 | { |
| 412 | struct afs_call *call = container_of(work, struct afs_call, work); |
| 413 | struct afs_uuid *r = call->request; |
| 414 | |
| 415 | struct { |
| 416 | __be32 match; |
| 417 | } reply; |
| 418 | |
| 419 | _enter(""); |
| 420 | |
| 421 | |
| 422 | if (memcmp(r, &afs_uuid, sizeof(afs_uuid)) == 0) |
| 423 | reply.match = htonl(0); |
| 424 | else |
| 425 | reply.match = htonl(1); |
| 426 | |
| 427 | afs_send_simple_reply(call, &reply, sizeof(reply)); |
| 428 | _leave(""); |
| 429 | } |
| 430 | |
| 431 | /* |
| 432 | * deliver request data to a CB.ProbeUuid call |
| 433 | */ |
| 434 | static int afs_deliver_cb_probe_uuid(struct afs_call *call, struct sk_buff *skb, |
| 435 | bool last) |
| 436 | { |
| 437 | struct afs_uuid *r; |
| 438 | unsigned loop; |
| 439 | __be32 *b; |
| 440 | int ret; |
| 441 | |
| 442 | _enter("{%u},{%u},%d", call->unmarshall, skb->len, last); |
| 443 | |
| 444 | if (skb->len > 0) |
| 445 | return -EBADMSG; |
| 446 | if (!last) |
| 447 | return 0; |
| 448 | |
| 449 | switch (call->unmarshall) { |
| 450 | case 0: |
| 451 | call->offset = 0; |
| 452 | call->buffer = kmalloc(11 * sizeof(__be32), GFP_KERNEL); |
| 453 | if (!call->buffer) |
| 454 | return -ENOMEM; |
| 455 | call->unmarshall++; |
| 456 | |
| 457 | case 1: |
| 458 | _debug("extract UUID"); |
| 459 | ret = afs_extract_data(call, skb, last, call->buffer, |
| 460 | 11 * sizeof(__be32)); |
| 461 | switch (ret) { |
| 462 | case 0: break; |
| 463 | case -EAGAIN: return 0; |
| 464 | default: return ret; |
| 465 | } |
| 466 | |
| 467 | _debug("unmarshall UUID"); |
| 468 | call->request = kmalloc(sizeof(struct afs_uuid), GFP_KERNEL); |
| 469 | if (!call->request) |
| 470 | return -ENOMEM; |
| 471 | |
| 472 | b = call->buffer; |
| 473 | r = call->request; |
| 474 | r->time_low = ntohl(b[0]); |
| 475 | r->time_mid = ntohl(b[1]); |
| 476 | r->time_hi_and_version = ntohl(b[2]); |
| 477 | r->clock_seq_hi_and_reserved = ntohl(b[3]); |
| 478 | r->clock_seq_low = ntohl(b[4]); |
| 479 | |
| 480 | for (loop = 0; loop < 6; loop++) |
| 481 | r->node[loop] = ntohl(b[loop + 5]); |
| 482 | |
| 483 | call->offset = 0; |
| 484 | call->unmarshall++; |
| 485 | |
| 486 | case 2: |
| 487 | _debug("trailer"); |
| 488 | if (skb->len != 0) |
| 489 | return -EBADMSG; |
| 490 | break; |
| 491 | } |
| 492 | |
| 493 | if (!last) |
| 494 | return 0; |
| 495 | |
| 496 | call->state = AFS_CALL_REPLYING; |
| 497 | |
| 498 | INIT_WORK(&call->work, SRXAFSCB_ProbeUuid); |
Tejun Heo | 0ad53ee | 2011-01-14 15:56:37 +0000 | [diff] [blame] | 499 | queue_work(afs_wq, &call->work); |
David Howells | 9396d49 | 2008-04-29 01:03:22 -0700 | [diff] [blame] | 500 | return 0; |
| 501 | } |
| 502 | |
| 503 | /* |
David Howells | b908fe6 | 2007-04-26 15:58:17 -0700 | [diff] [blame] | 504 | * allow the fileserver to ask about the cache manager's capabilities |
| 505 | */ |
David Howells | 7c80bcc | 2008-04-29 01:03:21 -0700 | [diff] [blame] | 506 | static void SRXAFSCB_TellMeAboutYourself(struct work_struct *work) |
David Howells | b908fe6 | 2007-04-26 15:58:17 -0700 | [diff] [blame] | 507 | { |
| 508 | struct afs_interface *ifs; |
| 509 | struct afs_call *call = container_of(work, struct afs_call, work); |
| 510 | int loop, nifs; |
| 511 | |
| 512 | struct { |
| 513 | struct /* InterfaceAddr */ { |
| 514 | __be32 nifs; |
| 515 | __be32 uuid[11]; |
| 516 | __be32 ifaddr[32]; |
| 517 | __be32 netmask[32]; |
| 518 | __be32 mtu[32]; |
| 519 | } ia; |
| 520 | struct /* Capabilities */ { |
| 521 | __be32 capcount; |
| 522 | __be32 caps[1]; |
| 523 | } cap; |
| 524 | } reply; |
| 525 | |
| 526 | _enter(""); |
| 527 | |
| 528 | nifs = 0; |
| 529 | ifs = kcalloc(32, sizeof(*ifs), GFP_KERNEL); |
| 530 | if (ifs) { |
| 531 | nifs = afs_get_ipv4_interfaces(ifs, 32, false); |
| 532 | if (nifs < 0) { |
| 533 | kfree(ifs); |
| 534 | ifs = NULL; |
| 535 | nifs = 0; |
| 536 | } |
| 537 | } |
| 538 | |
| 539 | memset(&reply, 0, sizeof(reply)); |
| 540 | reply.ia.nifs = htonl(nifs); |
| 541 | |
| 542 | reply.ia.uuid[0] = htonl(afs_uuid.time_low); |
| 543 | reply.ia.uuid[1] = htonl(afs_uuid.time_mid); |
| 544 | reply.ia.uuid[2] = htonl(afs_uuid.time_hi_and_version); |
| 545 | reply.ia.uuid[3] = htonl((s8) afs_uuid.clock_seq_hi_and_reserved); |
| 546 | reply.ia.uuid[4] = htonl((s8) afs_uuid.clock_seq_low); |
| 547 | for (loop = 0; loop < 6; loop++) |
| 548 | reply.ia.uuid[loop + 5] = htonl((s8) afs_uuid.node[loop]); |
| 549 | |
| 550 | if (ifs) { |
| 551 | for (loop = 0; loop < nifs; loop++) { |
| 552 | reply.ia.ifaddr[loop] = ifs[loop].address.s_addr; |
| 553 | reply.ia.netmask[loop] = ifs[loop].netmask.s_addr; |
| 554 | reply.ia.mtu[loop] = htonl(ifs[loop].mtu); |
| 555 | } |
Patrick McHardy | 5b35fad | 2007-05-03 03:27:39 -0700 | [diff] [blame] | 556 | kfree(ifs); |
David Howells | b908fe6 | 2007-04-26 15:58:17 -0700 | [diff] [blame] | 557 | } |
| 558 | |
| 559 | reply.cap.capcount = htonl(1); |
| 560 | reply.cap.caps[0] = htonl(AFS_CAP_ERROR_TRANSLATION); |
| 561 | afs_send_simple_reply(call, &reply, sizeof(reply)); |
| 562 | |
| 563 | _leave(""); |
| 564 | } |
| 565 | |
| 566 | /* |
David Howells | 7c80bcc | 2008-04-29 01:03:21 -0700 | [diff] [blame] | 567 | * deliver request data to a CB.TellMeAboutYourself call |
David Howells | b908fe6 | 2007-04-26 15:58:17 -0700 | [diff] [blame] | 568 | */ |
David Howells | 7c80bcc | 2008-04-29 01:03:21 -0700 | [diff] [blame] | 569 | static int afs_deliver_cb_tell_me_about_yourself(struct afs_call *call, |
| 570 | struct sk_buff *skb, bool last) |
David Howells | b908fe6 | 2007-04-26 15:58:17 -0700 | [diff] [blame] | 571 | { |
| 572 | _enter(",{%u},%d", skb->len, last); |
| 573 | |
| 574 | if (skb->len > 0) |
| 575 | return -EBADMSG; |
| 576 | if (!last) |
| 577 | return 0; |
| 578 | |
| 579 | /* no unmarshalling required */ |
| 580 | call->state = AFS_CALL_REPLYING; |
| 581 | |
David Howells | 7c80bcc | 2008-04-29 01:03:21 -0700 | [diff] [blame] | 582 | INIT_WORK(&call->work, SRXAFSCB_TellMeAboutYourself); |
Tejun Heo | 0ad53ee | 2011-01-14 15:56:37 +0000 | [diff] [blame] | 583 | queue_work(afs_wq, &call->work); |
David Howells | b908fe6 | 2007-04-26 15:58:17 -0700 | [diff] [blame] | 584 | return 0; |
| 585 | } |