1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* AFS Volume Location Service client
4 * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
9 #include <linux/init.h>
10 #include <linux/sched.h>
15 * Deliver reply data to a VL.GetEntryByNameU call.
17 static int afs_deliver_vl_get_entry_by_name_u(struct afs_call
*call
)
19 struct afs_uvldbentry__xdr
*uvldb
;
20 struct afs_vldb_entry
*entry
;
21 u32 nr_servers
, vlflags
;
26 ret
= afs_transfer_reply(call
);
30 /* unmarshall the reply once we've received all of it */
32 entry
= call
->ret_vldb
;
34 nr_servers
= ntohl(uvldb
->nServers
);
35 if (nr_servers
> AFS_NMAXNSERVERS
)
36 nr_servers
= AFS_NMAXNSERVERS
;
38 for (i
= 0; i
< ARRAY_SIZE(uvldb
->name
) - 1; i
++)
39 entry
->name
[i
] = (u8
)ntohl(uvldb
->name
[i
]);
41 entry
->name_len
= strlen(entry
->name
);
43 vlflags
= ntohl(uvldb
->flags
);
44 for (i
= 0; i
< nr_servers
; i
++) {
45 struct afs_uuid__xdr
*xdr
;
46 struct afs_uuid
*uuid
;
47 u32 tmp
= ntohl(uvldb
->serverFlags
[i
]);
49 int n
= entry
->nr_servers
;
51 if (tmp
& AFS_VLSF_RWVOL
) {
52 entry
->fs_mask
[n
] |= AFS_VOL_VTM_RW
;
53 if (vlflags
& AFS_VLF_BACKEXISTS
)
54 entry
->fs_mask
[n
] |= AFS_VOL_VTM_BAK
;
56 if (tmp
& AFS_VLSF_ROVOL
)
57 entry
->fs_mask
[n
] |= AFS_VOL_VTM_RO
;
58 if (!entry
->fs_mask
[n
])
61 xdr
= &uvldb
->serverNumber
[i
];
62 uuid
= (struct afs_uuid
*)&entry
->fs_server
[n
];
63 uuid
->time_low
= xdr
->time_low
;
64 uuid
->time_mid
= htons(ntohl(xdr
->time_mid
));
65 uuid
->time_hi_and_version
= htons(ntohl(xdr
->time_hi_and_version
));
66 uuid
->clock_seq_hi_and_reserved
= (u8
)ntohl(xdr
->clock_seq_hi_and_reserved
);
67 uuid
->clock_seq_low
= (u8
)ntohl(xdr
->clock_seq_low
);
68 for (j
= 0; j
< 6; j
++)
69 uuid
->node
[j
] = (u8
)ntohl(xdr
->node
[j
]);
71 entry
->vlsf_flags
[n
] = tmp
;
72 entry
->addr_version
[n
] = ntohl(uvldb
->serverUnique
[i
]);
76 for (i
= 0; i
< AFS_MAXTYPES
; i
++)
77 entry
->vid
[i
] = ntohl(uvldb
->volumeId
[i
]);
79 if (vlflags
& AFS_VLF_RWEXISTS
)
80 __set_bit(AFS_VLDB_HAS_RW
, &entry
->flags
);
81 if (vlflags
& AFS_VLF_ROEXISTS
)
82 __set_bit(AFS_VLDB_HAS_RO
, &entry
->flags
);
83 if (vlflags
& AFS_VLF_BACKEXISTS
)
84 __set_bit(AFS_VLDB_HAS_BAK
, &entry
->flags
);
86 if (!(vlflags
& (AFS_VLF_RWEXISTS
| AFS_VLF_ROEXISTS
| AFS_VLF_BACKEXISTS
))) {
87 entry
->error
= -ENOMEDIUM
;
88 __set_bit(AFS_VLDB_QUERY_ERROR
, &entry
->flags
);
91 __set_bit(AFS_VLDB_QUERY_VALID
, &entry
->flags
);
92 _leave(" = 0 [done]");
97 * VL.GetEntryByNameU operation type.
99 static const struct afs_call_type afs_RXVLGetEntryByNameU
= {
100 .name
= "VL.GetEntryByNameU",
101 .op
= afs_VL_GetEntryByNameU
,
102 .deliver
= afs_deliver_vl_get_entry_by_name_u
,
103 .destructor
= afs_flat_call_destructor
,
107 * Dispatch a get volume entry by name or ID operation (uuid variant). If the
108 * volname is a decimal number then it's a volume ID not a volume name.
110 struct afs_vldb_entry
*afs_vl_get_entry_by_name_u(struct afs_vl_cursor
*vc
,
114 struct afs_vldb_entry
*entry
;
115 struct afs_call
*call
;
116 struct afs_net
*net
= vc
->cell
->net
;
122 padsz
= (4 - (volnamesz
& 3)) & 3;
123 reqsz
= 8 + volnamesz
+ padsz
;
125 entry
= kzalloc(sizeof(struct afs_vldb_entry
), GFP_KERNEL
);
127 return ERR_PTR(-ENOMEM
);
129 call
= afs_alloc_flat_call(net
, &afs_RXVLGetEntryByNameU
, reqsz
,
130 sizeof(struct afs_uvldbentry__xdr
));
133 return ERR_PTR(-ENOMEM
);
137 call
->ret_vldb
= entry
;
138 call
->max_lifespan
= AFS_VL_MAX_LIFESPAN
;
139 call
->peer
= rxrpc_kernel_get_peer(vc
->alist
->addrs
[vc
->addr_index
].peer
);
140 call
->service_id
= vc
->server
->service_id
;
142 /* Marshall the parameters */
144 *bp
++ = htonl(VLGETENTRYBYNAMEU
);
145 *bp
++ = htonl(volnamesz
);
146 memcpy(bp
, volname
, volnamesz
);
148 memset((void *)bp
+ volnamesz
, 0, padsz
);
150 trace_afs_make_vl_call(call
);
151 afs_make_call(call
, GFP_KERNEL
);
152 afs_wait_for_call_to_complete(call
);
153 vc
->call_abort_code
= call
->abort_code
;
154 vc
->call_error
= call
->error
;
155 vc
->call_responded
= call
->responded
;
157 if (vc
->call_error
) {
159 return ERR_PTR(vc
->call_error
);
165 * Deliver reply data to a VL.GetAddrsU call.
167 * GetAddrsU(IN ListAddrByAttributes *inaddr,
168 * OUT afsUUID *uuidp1,
169 * OUT uint32_t *uniquifier,
170 * OUT uint32_t *nentries,
171 * OUT bulkaddrs *blkaddrs);
173 static int afs_deliver_vl_get_addrs_u(struct afs_call
*call
)
175 struct afs_addr_list
*alist
;
177 u32 uniquifier
, nentries
, count
;
180 _enter("{%u,%zu/%u}",
181 call
->unmarshall
, iov_iter_count(call
->iter
), call
->count
);
183 switch (call
->unmarshall
) {
185 afs_extract_to_buf(call
,
186 sizeof(struct afs_uuid__xdr
) + 3 * sizeof(__be32
));
189 /* Extract the returned uuid, uniquifier, nentries and
193 ret
= afs_extract_data(call
, true);
197 bp
= call
->buffer
+ sizeof(struct afs_uuid__xdr
);
198 uniquifier
= ntohl(*bp
++);
199 nentries
= ntohl(*bp
++);
202 nentries
= min(nentries
, count
);
203 alist
= afs_alloc_addrlist(nentries
);
206 alist
->version
= uniquifier
;
207 call
->ret_alist
= alist
;
209 call
->count2
= nentries
;
213 count
= min(call
->count
, 4U);
214 afs_extract_to_buf(call
, count
* sizeof(__be32
));
216 fallthrough
; /* and extract entries */
218 ret
= afs_extract_data(call
, call
->count
> 4);
222 alist
= call
->ret_alist
;
224 count
= min(call
->count
, 4U);
225 for (i
= 0; i
< count
; i
++) {
226 if (alist
->nr_addrs
< call
->count2
) {
227 ret
= afs_merge_fs_addr4(call
->net
, alist
, *bp
++, AFS_FS_PORT
);
233 call
->count
-= count
;
240 _leave(" = 0 [done]");
245 * VL.GetAddrsU operation type.
247 static const struct afs_call_type afs_RXVLGetAddrsU
= {
248 .name
= "VL.GetAddrsU",
249 .op
= afs_VL_GetAddrsU
,
250 .deliver
= afs_deliver_vl_get_addrs_u
,
251 .destructor
= afs_flat_call_destructor
,
255 * Dispatch an operation to get the addresses for a server, where the server is
258 struct afs_addr_list
*afs_vl_get_addrs_u(struct afs_vl_cursor
*vc
,
261 struct afs_ListAddrByAttributes__xdr
*r
;
262 struct afs_addr_list
*alist
;
263 const struct afs_uuid
*u
= (const struct afs_uuid
*)uuid
;
264 struct afs_call
*call
;
265 struct afs_net
*net
= vc
->cell
->net
;
271 call
= afs_alloc_flat_call(net
, &afs_RXVLGetAddrsU
,
272 sizeof(__be32
) + sizeof(struct afs_ListAddrByAttributes__xdr
),
273 sizeof(struct afs_uuid__xdr
) + 3 * sizeof(__be32
));
275 return ERR_PTR(-ENOMEM
);
278 call
->ret_alist
= NULL
;
279 call
->max_lifespan
= AFS_VL_MAX_LIFESPAN
;
280 call
->peer
= rxrpc_kernel_get_peer(vc
->alist
->addrs
[vc
->addr_index
].peer
);
281 call
->service_id
= vc
->server
->service_id
;
283 /* Marshall the parameters */
285 *bp
++ = htonl(VLGETADDRSU
);
286 r
= (struct afs_ListAddrByAttributes__xdr
*)bp
;
287 r
->Mask
= htonl(AFS_VLADDR_UUID
);
291 r
->uuid
.time_low
= u
->time_low
;
292 r
->uuid
.time_mid
= htonl(ntohs(u
->time_mid
));
293 r
->uuid
.time_hi_and_version
= htonl(ntohs(u
->time_hi_and_version
));
294 r
->uuid
.clock_seq_hi_and_reserved
= htonl(u
->clock_seq_hi_and_reserved
);
295 r
->uuid
.clock_seq_low
= htonl(u
->clock_seq_low
);
296 for (i
= 0; i
< 6; i
++)
297 r
->uuid
.node
[i
] = htonl(u
->node
[i
]);
299 trace_afs_make_vl_call(call
);
300 afs_make_call(call
, GFP_KERNEL
);
301 afs_wait_for_call_to_complete(call
);
302 vc
->call_abort_code
= call
->abort_code
;
303 vc
->call_error
= call
->error
;
304 vc
->call_responded
= call
->responded
;
305 alist
= call
->ret_alist
;
307 if (vc
->call_error
) {
308 afs_put_addrlist(alist
, afs_alist_trace_put_getaddru
);
309 return ERR_PTR(vc
->call_error
);
315 * Deliver reply data to an VL.GetCapabilities operation.
317 static int afs_deliver_vl_get_capabilities(struct afs_call
*call
)
322 _enter("{%u,%zu/%u}",
323 call
->unmarshall
, iov_iter_count(call
->iter
), call
->count
);
325 switch (call
->unmarshall
) {
327 afs_extract_to_tmp(call
);
330 fallthrough
; /* and extract the capabilities word count */
332 ret
= afs_extract_data(call
, true);
336 count
= ntohl(call
->tmp
);
338 call
->count2
= count
;
341 afs_extract_discard(call
, count
* sizeof(__be32
));
343 fallthrough
; /* and extract capabilities words */
345 ret
= afs_extract_data(call
, false);
349 /* TODO: Examine capabilities */
355 _leave(" = 0 [done]");
359 static void afs_destroy_vl_get_capabilities(struct afs_call
*call
)
361 afs_put_addrlist(call
->vl_probe
, afs_alist_trace_put_vlgetcaps
);
362 afs_put_vlserver(call
->net
, call
->vlserver
);
363 afs_flat_call_destructor(call
);
367 * VL.GetCapabilities operation type
369 static const struct afs_call_type afs_RXVLGetCapabilities
= {
370 .name
= "VL.GetCapabilities",
371 .op
= afs_VL_GetCapabilities
,
372 .deliver
= afs_deliver_vl_get_capabilities
,
373 .done
= afs_vlserver_probe_result
,
374 .destructor
= afs_destroy_vl_get_capabilities
,
378 * Probe a volume server for the capabilities that it supports. This can
379 * return up to 196 words.
381 * We use this to probe for service upgrade to determine what the server at the
382 * other end supports.
384 struct afs_call
*afs_vl_get_capabilities(struct afs_net
*net
,
385 struct afs_addr_list
*alist
,
386 unsigned int addr_index
,
388 struct afs_vlserver
*server
,
389 unsigned int server_index
)
391 struct afs_call
*call
;
396 call
= afs_alloc_flat_call(net
, &afs_RXVLGetCapabilities
, 1 * 4, 16 * 4);
398 return ERR_PTR(-ENOMEM
);
401 call
->vlserver
= afs_get_vlserver(server
);
402 call
->server_index
= server_index
;
403 call
->peer
= rxrpc_kernel_get_peer(alist
->addrs
[addr_index
].peer
);
404 call
->vl_probe
= afs_get_addrlist(alist
, afs_alist_trace_get_vlgetcaps
);
405 call
->probe_index
= addr_index
;
406 call
->service_id
= server
->service_id
;
407 call
->upgrade
= true;
409 call
->max_lifespan
= AFS_PROBE_MAX_LIFESPAN
;
411 /* marshall the parameters */
413 *bp
++ = htonl(VLGETCAPABILITIES
);
415 /* Can't take a ref on server */
416 trace_afs_make_vl_call(call
);
417 afs_make_call(call
, GFP_KERNEL
);
422 * Deliver reply data to a YFSVL.GetEndpoints call.
424 * GetEndpoints(IN yfsServerAttributes *attr,
425 * OUT opr_uuid *uuid,
426 * OUT afs_int32 *uniquifier,
427 * OUT endpoints *fsEndpoints,
428 * OUT endpoints *volEndpoints)
430 static int afs_deliver_yfsvl_get_endpoints(struct afs_call
*call
)
432 struct afs_addr_list
*alist
;
434 u32 uniquifier
, size
;
437 _enter("{%u,%zu,%u}",
438 call
->unmarshall
, iov_iter_count(call
->iter
), call
->count2
);
440 switch (call
->unmarshall
) {
442 afs_extract_to_buf(call
, sizeof(uuid_t
) + 3 * sizeof(__be32
));
443 call
->unmarshall
= 1;
445 /* Extract the returned uuid, uniquifier, fsEndpoints count and
446 * either the first fsEndpoint type or the volEndpoints
447 * count if there are no fsEndpoints. */
450 ret
= afs_extract_data(call
, true);
454 bp
= call
->buffer
+ sizeof(uuid_t
);
455 uniquifier
= ntohl(*bp
++);
456 call
->count
= ntohl(*bp
++);
457 call
->count2
= ntohl(*bp
); /* Type or next count */
459 if (call
->count
> YFS_MAXENDPOINTS
)
460 return afs_protocol_error(call
, afs_eproto_yvl_fsendpt_num
);
462 alist
= afs_alloc_addrlist(call
->count
);
465 alist
->version
= uniquifier
;
466 call
->ret_alist
= alist
;
468 if (call
->count
== 0)
469 goto extract_volendpoints
;
472 switch (call
->count2
) {
473 case YFS_ENDPOINT_IPV4
:
474 size
= sizeof(__be32
) * (1 + 1 + 1);
476 case YFS_ENDPOINT_IPV6
:
477 size
= sizeof(__be32
) * (1 + 4 + 1);
480 return afs_protocol_error(call
, afs_eproto_yvl_fsendpt_type
);
483 size
+= sizeof(__be32
);
484 afs_extract_to_buf(call
, size
);
485 call
->unmarshall
= 2;
487 fallthrough
; /* and extract fsEndpoints[] entries */
489 ret
= afs_extract_data(call
, true);
493 alist
= call
->ret_alist
;
495 switch (call
->count2
) {
496 case YFS_ENDPOINT_IPV4
:
497 if (ntohl(bp
[0]) != sizeof(__be32
) * 2)
498 return afs_protocol_error(
499 call
, afs_eproto_yvl_fsendpt4_len
);
500 ret
= afs_merge_fs_addr4(call
->net
, alist
, bp
[1], ntohl(bp
[2]));
505 case YFS_ENDPOINT_IPV6
:
506 if (ntohl(bp
[0]) != sizeof(__be32
) * 5)
507 return afs_protocol_error(
508 call
, afs_eproto_yvl_fsendpt6_len
);
509 ret
= afs_merge_fs_addr6(call
->net
, alist
, bp
+ 1, ntohl(bp
[5]));
515 return afs_protocol_error(call
, afs_eproto_yvl_fsendpt_type
);
518 /* Got either the type of the next entry or the count of
519 * volEndpoints if no more fsEndpoints.
521 call
->count2
= ntohl(*bp
++);
525 goto next_fsendpoint
;
527 extract_volendpoints
:
528 /* Extract the list of volEndpoints. */
529 call
->count
= call
->count2
;
532 if (call
->count
> YFS_MAXENDPOINTS
)
533 return afs_protocol_error(call
, afs_eproto_yvl_vlendpt_type
);
535 afs_extract_to_buf(call
, 1 * sizeof(__be32
));
536 call
->unmarshall
= 3;
538 /* Extract the type of volEndpoints[0]. Normally we would
539 * extract the type of the next endpoint when we extract the
540 * data of the current one, but this is the first...
544 ret
= afs_extract_data(call
, true);
551 call
->count2
= ntohl(*bp
++);
552 switch (call
->count2
) {
553 case YFS_ENDPOINT_IPV4
:
554 size
= sizeof(__be32
) * (1 + 1 + 1);
556 case YFS_ENDPOINT_IPV6
:
557 size
= sizeof(__be32
) * (1 + 4 + 1);
560 return afs_protocol_error(call
, afs_eproto_yvl_vlendpt_type
);
564 size
+= sizeof(__be32
); /* Get next type too */
565 afs_extract_to_buf(call
, size
);
566 call
->unmarshall
= 4;
568 fallthrough
; /* and extract volEndpoints[] entries */
570 ret
= afs_extract_data(call
, true);
575 switch (call
->count2
) {
576 case YFS_ENDPOINT_IPV4
:
577 if (ntohl(bp
[0]) != sizeof(__be32
) * 2)
578 return afs_protocol_error(
579 call
, afs_eproto_yvl_vlendpt4_len
);
582 case YFS_ENDPOINT_IPV6
:
583 if (ntohl(bp
[0]) != sizeof(__be32
) * 5)
584 return afs_protocol_error(
585 call
, afs_eproto_yvl_vlendpt6_len
);
589 return afs_protocol_error(call
, afs_eproto_yvl_vlendpt_type
);
592 /* Got either the type of the next entry or the count of
593 * volEndpoints if no more fsEndpoints.
597 goto next_volendpoint
;
600 afs_extract_discard(call
, 0);
601 call
->unmarshall
= 5;
603 fallthrough
; /* Done */
605 ret
= afs_extract_data(call
, false);
608 call
->unmarshall
= 6;
615 _leave(" = 0 [done]");
620 * YFSVL.GetEndpoints operation type.
622 static const struct afs_call_type afs_YFSVLGetEndpoints
= {
623 .name
= "YFSVL.GetEndpoints",
624 .op
= afs_YFSVL_GetEndpoints
,
625 .deliver
= afs_deliver_yfsvl_get_endpoints
,
626 .destructor
= afs_flat_call_destructor
,
630 * Dispatch an operation to get the addresses for a server, where the server is
633 struct afs_addr_list
*afs_yfsvl_get_endpoints(struct afs_vl_cursor
*vc
,
636 struct afs_addr_list
*alist
;
637 struct afs_call
*call
;
638 struct afs_net
*net
= vc
->cell
->net
;
643 call
= afs_alloc_flat_call(net
, &afs_YFSVLGetEndpoints
,
644 sizeof(__be32
) * 2 + sizeof(*uuid
),
645 sizeof(struct in6_addr
) + sizeof(__be32
) * 3);
647 return ERR_PTR(-ENOMEM
);
650 call
->ret_alist
= NULL
;
651 call
->max_lifespan
= AFS_VL_MAX_LIFESPAN
;
652 call
->peer
= rxrpc_kernel_get_peer(vc
->alist
->addrs
[vc
->addr_index
].peer
);
653 call
->service_id
= vc
->server
->service_id
;
655 /* Marshall the parameters */
657 *bp
++ = htonl(YVLGETENDPOINTS
);
658 *bp
++ = htonl(YFS_SERVER_UUID
);
659 memcpy(bp
, uuid
, sizeof(*uuid
)); /* Type opr_uuid */
661 trace_afs_make_vl_call(call
);
662 afs_make_call(call
, GFP_KERNEL
);
663 afs_wait_for_call_to_complete(call
);
664 vc
->call_abort_code
= call
->abort_code
;
665 vc
->call_error
= call
->error
;
666 vc
->call_responded
= call
->responded
;
667 alist
= call
->ret_alist
;
669 if (vc
->call_error
) {
670 afs_put_addrlist(alist
, afs_alist_trace_put_getaddru
);
671 return ERR_PTR(vc
->call_error
);
677 * Deliver reply data to a YFSVL.GetCellName operation.
679 static int afs_deliver_yfsvl_get_cell_name(struct afs_call
*call
)
682 u32 namesz
, paddedsz
;
685 _enter("{%u,%zu/%u}",
686 call
->unmarshall
, iov_iter_count(call
->iter
), call
->count
);
688 switch (call
->unmarshall
) {
690 afs_extract_to_tmp(call
);
693 fallthrough
; /* and extract the cell name length */
695 ret
= afs_extract_data(call
, true);
699 namesz
= ntohl(call
->tmp
);
700 if (namesz
> AFS_MAXCELLNAME
)
701 return afs_protocol_error(call
, afs_eproto_cellname_len
);
702 paddedsz
= (namesz
+ 3) & ~3;
703 call
->count
= namesz
;
704 call
->count2
= paddedsz
- namesz
;
706 cell_name
= kmalloc(namesz
+ 1, GFP_KERNEL
);
709 cell_name
[namesz
] = 0;
710 call
->ret_str
= cell_name
;
712 afs_extract_begin(call
, cell_name
, namesz
);
715 fallthrough
; /* and extract cell name */
717 ret
= afs_extract_data(call
, true);
721 afs_extract_discard(call
, call
->count2
);
724 fallthrough
; /* and extract padding */
726 ret
= afs_extract_data(call
, false);
734 _leave(" = 0 [done]");
739 * VL.GetCapabilities operation type
741 static const struct afs_call_type afs_YFSVLGetCellName
= {
742 .name
= "YFSVL.GetCellName",
743 .op
= afs_YFSVL_GetCellName
,
744 .deliver
= afs_deliver_yfsvl_get_cell_name
,
745 .destructor
= afs_flat_call_destructor
,
749 * Probe a volume server for the capabilities that it supports. This can
750 * return up to 196 words.
752 * We use this to probe for service upgrade to determine what the server at the
753 * other end supports.
755 char *afs_yfsvl_get_cell_name(struct afs_vl_cursor
*vc
)
757 struct afs_call
*call
;
758 struct afs_net
*net
= vc
->cell
->net
;
764 call
= afs_alloc_flat_call(net
, &afs_YFSVLGetCellName
, 1 * 4, 0);
766 return ERR_PTR(-ENOMEM
);
769 call
->ret_str
= NULL
;
770 call
->max_lifespan
= AFS_VL_MAX_LIFESPAN
;
771 call
->peer
= rxrpc_kernel_get_peer(vc
->alist
->addrs
[vc
->addr_index
].peer
);
772 call
->service_id
= vc
->server
->service_id
;
774 /* marshall the parameters */
776 *bp
++ = htonl(YVLGETCELLNAME
);
778 /* Can't take a ref on server */
779 trace_afs_make_vl_call(call
);
780 afs_make_call(call
, GFP_KERNEL
);
781 afs_wait_for_call_to_complete(call
);
782 vc
->call_abort_code
= call
->abort_code
;
783 vc
->call_error
= call
->error
;
784 vc
->call_responded
= call
->responded
;
785 cellname
= call
->ret_str
;
787 if (vc
->call_error
) {
789 return ERR_PTR(vc
->call_error
);