blob: f94d1abdc3ebc47e5750098fddc4098fb9f3df2f [file] [log] [blame]
David Howellsec268152007-04-26 15:49:28 -07001/* AFS Volume Location Service client
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
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/init.h>
14#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include "internal.h"
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017/*
David Howells08e0e7c2007-04-26 15:55:03 -070018 * map volume locator abort codes to error codes
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 */
David Howells08e0e7c2007-04-26 15:55:03 -070020static int afs_vl_abort_to_error(u32 abort_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021{
David Howells08e0e7c2007-04-26 15:55:03 -070022 _enter("%u", abort_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
David Howells08e0e7c2007-04-26 15:55:03 -070024 switch (abort_code) {
25 case AFSVL_IDEXIST: return -EEXIST;
26 case AFSVL_IO: return -EREMOTEIO;
27 case AFSVL_NAMEEXIST: return -EEXIST;
28 case AFSVL_CREATEFAIL: return -EREMOTEIO;
29 case AFSVL_NOENT: return -ENOMEDIUM;
30 case AFSVL_EMPTY: return -ENOMEDIUM;
31 case AFSVL_ENTDELETED: return -ENOMEDIUM;
32 case AFSVL_BADNAME: return -EINVAL;
33 case AFSVL_BADINDEX: return -EINVAL;
34 case AFSVL_BADVOLTYPE: return -EINVAL;
35 case AFSVL_BADSERVER: return -EINVAL;
36 case AFSVL_BADPARTITION: return -EINVAL;
37 case AFSVL_REPSFULL: return -EFBIG;
38 case AFSVL_NOREPSERVER: return -ENOENT;
39 case AFSVL_DUPREPSERVER: return -EEXIST;
40 case AFSVL_RWNOTFOUND: return -ENOENT;
41 case AFSVL_BADREFCOUNT: return -EINVAL;
42 case AFSVL_SIZEEXCEEDED: return -EINVAL;
43 case AFSVL_BADENTRY: return -EINVAL;
44 case AFSVL_BADVOLIDBUMP: return -EINVAL;
45 case AFSVL_IDALREADYHASHED: return -EINVAL;
46 case AFSVL_ENTRYLOCKED: return -EBUSY;
47 case AFSVL_BADVOLOPER: return -EBADRQC;
48 case AFSVL_BADRELLOCKTYPE: return -EINVAL;
49 case AFSVL_RERELEASE: return -EREMOTEIO;
50 case AFSVL_BADSERVERFLAG: return -EINVAL;
51 case AFSVL_PERM: return -EACCES;
52 case AFSVL_NOMEM: return -EREMOTEIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 default:
David Howells08e0e7c2007-04-26 15:55:03 -070054 return afs_abort_to_error(abort_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 }
David Howellsec268152007-04-26 15:49:28 -070056}
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/*
David Howells08e0e7c2007-04-26 15:55:03 -070059 * deliver reply data to a VL.GetEntryByXXX call
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 */
David Howells08e0e7c2007-04-26 15:55:03 -070061static int afs_deliver_vl_get_entry_by_xxx(struct afs_call *call,
62 struct sk_buff *skb, bool last)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
David Howells08e0e7c2007-04-26 15:55:03 -070064 struct afs_cache_vlocation *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 __be32 *bp;
David Howells08e0e7c2007-04-26 15:55:03 -070066 u32 tmp;
David Howells372ee162016-08-03 14:11:40 +010067 int loop, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
David Howells08e0e7c2007-04-26 15:55:03 -070069 _enter(",,%u", last);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
David Howells372ee162016-08-03 14:11:40 +010071 ret = afs_transfer_reply(call, skb, last);
72 if (ret < 0)
73 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
David Howells08e0e7c2007-04-26 15:55:03 -070075 /* unmarshall the reply once we've received all of it */
76 entry = call->reply;
77 bp = call->buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
David Howells08e0e7c2007-04-26 15:55:03 -070079 for (loop = 0; loop < 64; loop++)
80 entry->name[loop] = ntohl(*bp++);
81 entry->name[loop] = 0;
82 bp++; /* final NUL */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
David Howells08e0e7c2007-04-26 15:55:03 -070084 bp++; /* type */
85 entry->nservers = ntohl(*bp++);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
David Howells08e0e7c2007-04-26 15:55:03 -070087 for (loop = 0; loop < 8; loop++)
88 entry->servers[loop].s_addr = *bp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
David Howells08e0e7c2007-04-26 15:55:03 -070090 bp += 8; /* partition IDs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
David Howells08e0e7c2007-04-26 15:55:03 -070092 for (loop = 0; loop < 8; loop++) {
93 tmp = ntohl(*bp++);
94 entry->srvtmask[loop] = 0;
95 if (tmp & AFS_VLSF_RWVOL)
96 entry->srvtmask[loop] |= AFS_VOL_VTM_RW;
97 if (tmp & AFS_VLSF_ROVOL)
98 entry->srvtmask[loop] |= AFS_VOL_VTM_RO;
99 if (tmp & AFS_VLSF_BACKVOL)
100 entry->srvtmask[loop] |= AFS_VOL_VTM_BAK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 }
102
David Howells08e0e7c2007-04-26 15:55:03 -0700103 entry->vid[0] = ntohl(*bp++);
104 entry->vid[1] = ntohl(*bp++);
105 entry->vid[2] = ntohl(*bp++);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
David Howells08e0e7c2007-04-26 15:55:03 -0700107 bp++; /* clone ID */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
David Howells08e0e7c2007-04-26 15:55:03 -0700109 tmp = ntohl(*bp++); /* flags */
110 entry->vidmask = 0;
111 if (tmp & AFS_VLF_RWEXISTS)
112 entry->vidmask |= AFS_VOL_VTM_RW;
113 if (tmp & AFS_VLF_ROEXISTS)
114 entry->vidmask |= AFS_VOL_VTM_RO;
115 if (tmp & AFS_VLF_BACKEXISTS)
116 entry->vidmask |= AFS_VOL_VTM_BAK;
117 if (!entry->vidmask)
118 return -EBADMSG;
119
120 _leave(" = 0 [done]");
121 return 0;
David Howellsec268152007-04-26 15:49:28 -0700122}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124/*
David Howells08e0e7c2007-04-26 15:55:03 -0700125 * VL.GetEntryByName operation type
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 */
David Howells08e0e7c2007-04-26 15:55:03 -0700127static const struct afs_call_type afs_RXVLGetEntryByName = {
David Howells00d3b7a2007-04-26 15:57:07 -0700128 .name = "VL.GetEntryByName",
David Howells08e0e7c2007-04-26 15:55:03 -0700129 .deliver = afs_deliver_vl_get_entry_by_xxx,
130 .abort_to_error = afs_vl_abort_to_error,
131 .destructor = afs_flat_call_destructor,
132};
133
134/*
135 * VL.GetEntryById operation type
136 */
137static const struct afs_call_type afs_RXVLGetEntryById = {
David Howells00d3b7a2007-04-26 15:57:07 -0700138 .name = "VL.GetEntryById",
David Howells08e0e7c2007-04-26 15:55:03 -0700139 .deliver = afs_deliver_vl_get_entry_by_xxx,
140 .abort_to_error = afs_vl_abort_to_error,
141 .destructor = afs_flat_call_destructor,
142};
143
144/*
145 * dispatch a get volume entry by name operation
146 */
147int afs_vl_get_entry_by_name(struct in_addr *addr,
David Howells00d3b7a2007-04-26 15:57:07 -0700148 struct key *key,
David Howells08e0e7c2007-04-26 15:55:03 -0700149 const char *volname,
150 struct afs_cache_vlocation *entry,
151 const struct afs_wait_mode *wait_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
David Howells08e0e7c2007-04-26 15:55:03 -0700153 struct afs_call *call;
154 size_t volnamesz, reqsz, padsz;
155 __be32 *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
David Howells08e0e7c2007-04-26 15:55:03 -0700157 _enter("");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
David Howells08e0e7c2007-04-26 15:55:03 -0700159 volnamesz = strlen(volname);
160 padsz = (4 - (volnamesz & 3)) & 3;
161 reqsz = 8 + volnamesz + padsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
David Howells08e0e7c2007-04-26 15:55:03 -0700163 call = afs_alloc_flat_call(&afs_RXVLGetEntryByName, reqsz, 384);
164 if (!call)
165 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
David Howells00d3b7a2007-04-26 15:57:07 -0700167 call->key = key;
David Howells08e0e7c2007-04-26 15:55:03 -0700168 call->reply = entry;
169 call->service_id = VL_SERVICE;
170 call->port = htons(AFS_VL_PORT);
171
172 /* marshall the parameters */
173 bp = call->request;
174 *bp++ = htonl(VLGETENTRYBYNAME);
175 *bp++ = htonl(volnamesz);
176 memcpy(bp, volname, volnamesz);
177 if (padsz > 0)
178 memset((void *) bp + volnamesz, 0, padsz);
179
180 /* initiate the call */
181 return afs_make_call(addr, call, GFP_KERNEL, wait_mode);
David Howellsec268152007-04-26 15:49:28 -0700182}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184/*
David Howells08e0e7c2007-04-26 15:55:03 -0700185 * dispatch a get volume entry by ID operation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 */
David Howells08e0e7c2007-04-26 15:55:03 -0700187int afs_vl_get_entry_by_id(struct in_addr *addr,
David Howells00d3b7a2007-04-26 15:57:07 -0700188 struct key *key,
David Howells08e0e7c2007-04-26 15:55:03 -0700189 afs_volid_t volid,
190 afs_voltype_t voltype,
191 struct afs_cache_vlocation *entry,
192 const struct afs_wait_mode *wait_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
David Howells08e0e7c2007-04-26 15:55:03 -0700194 struct afs_call *call;
195 __be32 *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
David Howells08e0e7c2007-04-26 15:55:03 -0700197 _enter("");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
David Howells08e0e7c2007-04-26 15:55:03 -0700199 call = afs_alloc_flat_call(&afs_RXVLGetEntryById, 12, 384);
200 if (!call)
201 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
David Howells00d3b7a2007-04-26 15:57:07 -0700203 call->key = key;
David Howells08e0e7c2007-04-26 15:55:03 -0700204 call->reply = entry;
205 call->service_id = VL_SERVICE;
206 call->port = htons(AFS_VL_PORT);
207
208 /* marshall the parameters */
209 bp = call->request;
210 *bp++ = htonl(VLGETENTRYBYID);
211 *bp++ = htonl(volid);
212 *bp = htonl(voltype);
213
214 /* initiate the call */
215 return afs_make_call(addr, call, GFP_KERNEL, wait_mode);
David Howellsec268152007-04-26 15:49:28 -0700216}