forked from openzfs/zfs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Illumos openzfs#3098 zfs userspace/groupspace fail
3098 zfs userspace/groupspace fail without saying why when run as non-root Reviewed by: Eric Schrock <[email protected]> Approved by: Richard Lowe <[email protected]> References: https://www.illumos.org/issues/3098 illumos/illumos-gate@70f56fa Ported-by: Tim Chase <[email protected]> Signed-off-by: Brian Behlendorf <[email protected]> Closes openzfs#1596
- Loading branch information
Showing
2 changed files
with
26 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,10 +21,10 @@ | |
|
||
/* | ||
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. | ||
* Copyright (c) 2010 Nexenta Systems, Inc. All rights reserved. | ||
* Copyright (c) 2012 by Delphix. All rights reserved. | ||
* Copyright (c) 2012 DEY Storage Systems, Inc. All rights reserved. | ||
* Copyright (c) 2012 Pawel Jakub Dawidek <[email protected]>. | ||
* Copyright 2012 Nexenta Systems, Inc. All rights reserved. | ||
*/ | ||
|
||
#include <ctype.h> | ||
|
@@ -4337,35 +4337,40 @@ zfs_userspace(zfs_handle_t *zhp, zfs_userquota_prop_t type, | |
zfs_userspace_cb_t func, void *arg) | ||
{ | ||
zfs_cmd_t zc = { "\0", "\0", "\0", "\0", 0 }; | ||
int error; | ||
zfs_useracct_t buf[100]; | ||
libzfs_handle_t *hdl = zhp->zfs_hdl; | ||
int ret; | ||
|
||
(void) strlcpy(zc.zc_name, zhp->zfs_name, sizeof (zc.zc_name)); | ||
|
||
zc.zc_objset_type = type; | ||
zc.zc_nvlist_dst = (uintptr_t)buf; | ||
|
||
/* CONSTCOND */ | ||
while (1) { | ||
for (;;) { | ||
zfs_useracct_t *zua = buf; | ||
|
||
zc.zc_nvlist_dst_size = sizeof (buf); | ||
error = ioctl(zhp->zfs_hdl->libzfs_fd, | ||
ZFS_IOC_USERSPACE_MANY, &zc); | ||
if (error || zc.zc_nvlist_dst_size == 0) | ||
if (zfs_ioctl(hdl, ZFS_IOC_USERSPACE_MANY, &zc) != 0) { | ||
char errbuf[ZFS_MAXNAMELEN + 32]; | ||
|
||
(void) snprintf(errbuf, sizeof (errbuf), | ||
dgettext(TEXT_DOMAIN, | ||
"cannot get used/quota for %s"), zc.zc_name); | ||
return (zfs_standard_error_fmt(hdl, errno, errbuf)); | ||
} | ||
if (zc.zc_nvlist_dst_size == 0) | ||
break; | ||
|
||
while (zc.zc_nvlist_dst_size > 0) { | ||
error = func(arg, zua->zu_domain, zua->zu_rid, | ||
zua->zu_space); | ||
if (error != 0) | ||
return (error); | ||
if ((ret = func(arg, zua->zu_domain, zua->zu_rid, | ||
zua->zu_space)) != 0) | ||
return (ret); | ||
zua++; | ||
zc.zc_nvlist_dst_size -= sizeof (zfs_useracct_t); | ||
} | ||
} | ||
|
||
return (error); | ||
return (0); | ||
} | ||
|
||
int | ||
|