mirror of
https://git.openafs.org/openafs.git
synced 2025-01-31 05:27:44 +00:00
OPENAFS-SA-2018-002 ptserver: prevent PR_ListEntries information leak
PR_ListEntries (pts listentries) does not properly initialize its output buffers. This leaks ptserver memory over the wire: struct prlistentries - up to 62 bytes for each entry name (PR_MAXNAMELEN 64 - 'a\0') Initialize the buffer, and remove the now redundant memset for the reserved fields. (cherry picked from commit 9d1aeb5d761581a35bef2042e9116b96e9ae3bf5) Change-Id: I679c205502941891cbb34f10e648a6f9d83c3c60
This commit is contained in:
parent
2d22756de7
commit
e19ad4cdde
@ -1538,6 +1538,7 @@ put_prentries(struct prentry *tentry, prentries *bulkentries)
|
||||
entry = bulkentries->prentries_val;
|
||||
entry += bulkentries->prentries_len;
|
||||
|
||||
memset(entry, 0, sizeof(*entry));
|
||||
entry->flags = tentry->flags >> PRIVATE_SHIFT;
|
||||
if (entry->flags == 0) {
|
||||
entry->flags =
|
||||
@ -1552,7 +1553,6 @@ put_prentries(struct prentry *tentry, prentries *bulkentries)
|
||||
entry->nusers = tentry->nusers;
|
||||
entry->count = tentry->count;
|
||||
strncpy(entry->name, tentry->name, PR_MAXNAMELEN);
|
||||
memset(entry->reserved, 0, sizeof(entry->reserved));
|
||||
bulkentries->prentries_len++;
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user