• Marc Dionne's avatar
    afs: Fix loop index mixup in afs_deliver_vl_get_entry_by_name_u() · 4a46fdba
    Marc Dionne authored
    afs_deliver_vl_get_entry_by_name_u() scans through the vl entry
    received from the volume location server and builds a return list
    containing the sites that are currently valid.  When assigning
    values for the return list, the index into the vl entry (i) is used
    rather than the one for the new list (entry->nr_server).  If all
    sites are usable, this works out fine as the indices will match.
    If some sites are not valid, for example if AFS_VLSF_DONTUSE is
    set, fs_mask and the uuid will be set for the wrong return site.
    
    Fix this by using entry->nr_server as the index into the arrays
    being filled in rather than i.
    
    This can lead to EDESTADDRREQ errors if none of the returned sites
    have a valid fs_mask.
    
    Fixes: d2ddc776 ("afs: Overhaul volume and server record caching and fileserver rotation")
    Signed-off-by: default avatarMarc Dionne <marc.dionne@auristor.com>
    Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
    Reviewed-by: default avatarJeffrey Altman <jaltman@auristor.com>
    4a46fdba
vlclient.c 16.1 KB