volume: daemon handles new generic volume size upcall
added FS_INFORMATION_CLASS, FILE_FS_SIZE_INFORMATION, FILE_FS_FULL_SIZE_INFORMATION to from_kernel.h moved get_volume_size_info() and byte->unit conversion up to the daemon Signed-off-by: Casey Bodley <cbodley@umich.edu>
This commit is contained in:
parent
b9e8c7f8b2
commit
c13ed30b9a
3 changed files with 104 additions and 17 deletions
|
|
@ -31,30 +31,46 @@
|
|||
#include "daemon_debug.h"
|
||||
|
||||
|
||||
/* windows volume queries want size in 'units', so we have to
|
||||
* convert the nfs space_* attributes from bytes to units */
|
||||
#define SECTORS_PER_UNIT 8
|
||||
#define BYTES_PER_SECTOR 512
|
||||
#define BYTES_PER_UNIT (SECTORS_PER_UNIT * BYTES_PER_SECTOR)
|
||||
|
||||
#define TO_UNITS(bytes) (bytes / BYTES_PER_UNIT)
|
||||
|
||||
|
||||
int parse_volume(unsigned char *buffer, uint32_t length, nfs41_upcall *upcall)
|
||||
{
|
||||
int status;
|
||||
volume_upcall_args *args = &upcall->args.volume;
|
||||
status = safe_read(&buffer, &length, &args->root, sizeof(HANDLE));
|
||||
if (status) goto out;
|
||||
status = safe_read(&buffer, &length, &args->query, sizeof(FS_INFORMATION_CLASS));
|
||||
out:
|
||||
if (status)
|
||||
eprintf("parsing NFS41_VOLUME_QUERY failed with %d\n",
|
||||
status);
|
||||
else
|
||||
dprintf(1, "parsing NFS41_VOLUME_QUERY: root=0x%p\n", args->root);
|
||||
dprintf(1, "parsing NFS41_VOLUME_QUERY: root=0x%p, query=%d\n",
|
||||
args->root, args->query);
|
||||
return status;
|
||||
}
|
||||
|
||||
int handle_volume(nfs41_upcall *upcall)
|
||||
static int get_volume_size_info(
|
||||
IN nfs41_session *session,
|
||||
IN const char *query,
|
||||
OUT OPTIONAL PLONGLONG total_out,
|
||||
OUT OPTIONAL PLONGLONG user_out,
|
||||
OUT OPTIONAL PLONGLONG avail_out)
|
||||
{
|
||||
nfs41_file_info info = { 0 };
|
||||
bitmap4 attr_request = { 2, { 0, FATTR4_WORD1_SPACE_AVAIL |
|
||||
FATTR4_WORD1_SPACE_FREE | FATTR4_WORD1_SPACE_TOTAL } };
|
||||
volume_upcall_args *args = &upcall->args.volume;
|
||||
int status;
|
||||
|
||||
/* query the space_ attributes of the root filesystem */
|
||||
status = nfs41_getattr(nfs41_root_session(args->root),
|
||||
NULL, &attr_request, &info);
|
||||
status = nfs41_getattr(session, NULL, &attr_request, &info);
|
||||
if (status) {
|
||||
eprintf("nfs41_getattr() failed with %s\n",
|
||||
nfs_error_string(status));
|
||||
|
|
@ -62,25 +78,61 @@ int handle_volume(nfs41_upcall *upcall)
|
|||
goto out;
|
||||
}
|
||||
|
||||
args->total = info.space_total; /* total disk space in bytes */
|
||||
args->user = info.space_avail; /* bytes available to this user */
|
||||
args->avail = info.space_free; /* free disk space in bytes */
|
||||
dprintf(2, "Volume: %llu user, %llu free of %llu total\n",
|
||||
args->user, args->avail, args->total);
|
||||
dprintf(2, "%s: %llu user, %llu free of %llu total\n", query,
|
||||
info.space_avail, info.space_free, info.space_total);
|
||||
|
||||
if (total_out) *total_out = TO_UNITS(info.space_total);
|
||||
if (user_out) *user_out = TO_UNITS(info.space_avail);
|
||||
if (avail_out) *avail_out = TO_UNITS(info.space_free);
|
||||
out:
|
||||
return status;
|
||||
}
|
||||
|
||||
int handle_volume(nfs41_upcall *upcall)
|
||||
{
|
||||
volume_upcall_args *args = &upcall->args.volume;
|
||||
nfs41_session *session = nfs41_root_session(args->root);
|
||||
int status;
|
||||
|
||||
switch (args->query) {
|
||||
case FileFsSizeInformation:
|
||||
args->len = sizeof(args->info.size);
|
||||
args->info.size.SectorsPerAllocationUnit = SECTORS_PER_UNIT;
|
||||
args->info.size.BytesPerSector = BYTES_PER_SECTOR;
|
||||
|
||||
status = get_volume_size_info(session, "FileFsSizeInformation",
|
||||
&args->info.size.TotalAllocationUnits.QuadPart,
|
||||
&args->info.size.AvailableAllocationUnits.QuadPart,
|
||||
NULL);
|
||||
break;
|
||||
|
||||
case FileFsFullSizeInformation:
|
||||
args->len = sizeof(args->info.fullsize);
|
||||
args->info.fullsize.SectorsPerAllocationUnit = SECTORS_PER_UNIT;
|
||||
args->info.fullsize.BytesPerSector = BYTES_PER_SECTOR;
|
||||
|
||||
status = get_volume_size_info(session, "FileFsFullSizeInformation",
|
||||
&args->info.fullsize.TotalAllocationUnits.QuadPart,
|
||||
&args->info.fullsize.CallerAvailableAllocationUnits.QuadPart,
|
||||
&args->info.fullsize.ActualAvailableAllocationUnits.QuadPart);
|
||||
break;
|
||||
|
||||
default:
|
||||
eprintf("unhandled fs query class %d\n", args->query);
|
||||
status = ERROR_INVALID_PARAMETER;
|
||||
break;
|
||||
}
|
||||
return status;
|
||||
}
|
||||
|
||||
int marshall_volume(unsigned char *buffer, uint32_t *length, nfs41_upcall *upcall)
|
||||
{
|
||||
int status;
|
||||
volume_upcall_args *args = &upcall->args.volume;
|
||||
|
||||
status = safe_write(&buffer, length, &args->total, sizeof(args->total));
|
||||
status = safe_write(&buffer, length, &args->len, sizeof(args->len));
|
||||
if (status) goto out;
|
||||
status = safe_write(&buffer, length, &args->user, sizeof(args->user));
|
||||
if (status) goto out;
|
||||
status = safe_write(&buffer, length, &args->avail, sizeof(args->avail));
|
||||
status = safe_write(&buffer, length, &args->info, args->len);
|
||||
out:
|
||||
return status;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue