summaryrefslogtreecommitdiffstats
path: root/sys/fs/nfs
diff options
context:
space:
mode:
authorrmacklem <rmacklem@FreeBSD.org>2012-09-20 02:49:25 +0000
committerrmacklem <rmacklem@FreeBSD.org>2012-09-20 02:49:25 +0000
commitc071417ab75fafe695cda10425f1bcdc10389918 (patch)
treeae0ff57ee81231d9f0632d41e4fff6d7aec42b1a /sys/fs/nfs
parent02ad3abcdd157c2d458fbad597489b46824eea5b (diff)
downloadFreeBSD-src-c071417ab75fafe695cda10425f1bcdc10389918.zip
FreeBSD-src-c071417ab75fafe695cda10425f1bcdc10389918.tar.gz
Modify the NFSv4 client so that it can handle owner
and owner_group strings that consist entirely of digits, interpreting them as the uid/gid number. This change was needed since new (>= 3.3) Linux servers reply with these strings by default. This change is mandated by the rfc3530bis draft. Reported on freebsd-stable@ under the Subject heading "Problem with Linux >= 3.3 as NFSv4 server" by Norbert Aschendorff on Aug. 20, 2012. Tested by: norbert.aschendorff at yahoo.de Reviewed by: jhb MFC after: 2 weeks
Diffstat (limited to 'sys/fs/nfs')
-rw-r--r--sys/fs/nfs/nfs.h1
-rw-r--r--sys/fs/nfs/nfs_commonacl.c4
-rw-r--r--sys/fs/nfs/nfs_commonsubs.c62
-rw-r--r--sys/fs/nfs/nfs_var.h6
4 files changed, 53 insertions, 20 deletions
diff --git a/sys/fs/nfs/nfs.h b/sys/fs/nfs/nfs.h
index c8bb0d6..3d588a5 100644
--- a/sys/fs/nfs/nfs.h
+++ b/sys/fs/nfs/nfs.h
@@ -559,6 +559,7 @@ struct nfsrv_descript {
#define ND_EXGSSINTEGRITY 0x00200000
#define ND_EXGSSPRIVACY 0x00400000
#define ND_INCRSEQID 0x00800000
+#define ND_NFSCL 0x01000000
/*
* ND_GSS should be the "or" of all GSS type authentications.
diff --git a/sys/fs/nfs/nfs_commonacl.c b/sys/fs/nfs/nfs_commonacl.c
index 886e582..fdfbd8d 100644
--- a/sys/fs/nfs/nfs_commonacl.c
+++ b/sys/fs/nfs/nfs_commonacl.c
@@ -101,12 +101,12 @@ nfsrv_dissectace(struct nfsrv_descript *nd, struct acl_entry *acep,
if (gotid == 0) {
if (flag & NFSV4ACE_IDENTIFIERGROUP) {
acep->ae_tag = ACL_GROUP;
- aceerr = nfsv4_strtogid(name, len, &gid, p);
+ aceerr = nfsv4_strtogid(nd, name, len, &gid, p);
if (aceerr == 0)
acep->ae_id = (uid_t)gid;
} else {
acep->ae_tag = ACL_USER;
- aceerr = nfsv4_strtouid(name, len, &uid, p);
+ aceerr = nfsv4_strtouid(nd, name, len, &uid, p);
if (aceerr == 0)
acep->ae_id = uid;
}
diff --git a/sys/fs/nfs/nfs_commonsubs.c b/sys/fs/nfs/nfs_commonsubs.c
index af63c85..71cfbab 100644
--- a/sys/fs/nfs/nfs_commonsubs.c
+++ b/sys/fs/nfs/nfs_commonsubs.c
@@ -1401,12 +1401,12 @@ nfsv4_loadattr(struct nfsrv_descript *nd, vnode_t vp,
}
if (compare) {
if (!(*retcmpp)) {
- if (nfsv4_strtouid(cp, j, &uid, p) ||
+ if (nfsv4_strtouid(nd, cp, j, &uid, p) ||
nap->na_uid != uid)
*retcmpp = NFSERR_NOTSAME;
}
} else if (nap != NULL) {
- if (nfsv4_strtouid(cp, j, &uid, p))
+ if (nfsv4_strtouid(nd, cp, j, &uid, p))
nap->na_uid = nfsrv_defaultuid;
else
nap->na_uid = uid;
@@ -1434,12 +1434,12 @@ nfsv4_loadattr(struct nfsrv_descript *nd, vnode_t vp,
}
if (compare) {
if (!(*retcmpp)) {
- if (nfsv4_strtogid(cp, j, &gid, p) ||
+ if (nfsv4_strtogid(nd, cp, j, &gid, p) ||
nap->na_gid != gid)
*retcmpp = NFSERR_NOTSAME;
}
} else if (nap != NULL) {
- if (nfsv4_strtogid(cp, j, &gid, p))
+ if (nfsv4_strtogid(nd, cp, j, &gid, p))
nap->na_gid = nfsrv_defaultgid;
else
nap->na_gid = gid;
@@ -2594,27 +2594,41 @@ tryagain:
* Convert a string to a uid.
* If no conversion is possible return NFSERR_BADOWNER, otherwise
* return 0.
+ * If this is called from a client side mount using AUTH_SYS and the
+ * string is made up entirely of digits, just convert the string to
+ * a number.
*/
APPLESTATIC int
-nfsv4_strtouid(u_char *str, int len, uid_t *uidp, NFSPROC_T *p)
+nfsv4_strtouid(struct nfsrv_descript *nd, u_char *str, int len, uid_t *uidp,
+ NFSPROC_T *p)
{
int i;
- u_char *cp;
+ char *cp, *endstr, *str0;
struct nfsusrgrp *usrp;
int cnt, ret;
int error = 0;
+ uid_t tuid;
if (len == 0) {
error = NFSERR_BADOWNER;
goto out;
}
+ /* If a string of digits and an AUTH_SYS mount, just convert it. */
+ str0 = str;
+ tuid = (uid_t)strtoul(str0, &endstr, 10);
+ if ((endstr - str0) == len &&
+ (nd->nd_flag & (ND_KERBV | ND_NFSCL)) == ND_NFSCL) {
+ *uidp = tuid;
+ goto out;
+ }
/*
* Look for an '@'.
*/
- cp = str;
- for (i = 0; i < len; i++)
- if (*cp++ == '@')
- break;
+ cp = strchr(str0, '@');
+ if (cp != NULL)
+ i = (int)(cp++ - str0);
+ else
+ i = len;
cnt = 0;
tryagain:
@@ -2783,27 +2797,43 @@ tryagain:
/*
* Convert a string to a gid.
+ * If no conversion is possible return NFSERR_BADOWNER, otherwise
+ * return 0.
+ * If this is called from a client side mount using AUTH_SYS and the
+ * string is made up entirely of digits, just convert the string to
+ * a number.
*/
APPLESTATIC int
-nfsv4_strtogid(u_char *str, int len, gid_t *gidp, NFSPROC_T *p)
+nfsv4_strtogid(struct nfsrv_descript *nd, u_char *str, int len, gid_t *gidp,
+ NFSPROC_T *p)
{
int i;
- u_char *cp;
+ char *cp, *endstr, *str0;
struct nfsusrgrp *usrp;
int cnt, ret;
int error = 0;
+ gid_t tgid;
if (len == 0) {
error = NFSERR_BADOWNER;
goto out;
}
+ /* If a string of digits and an AUTH_SYS mount, just convert it. */
+ str0 = str;
+ tgid = (gid_t)strtoul(str0, &endstr, 10);
+ if ((endstr - str0) == len &&
+ (nd->nd_flag & (ND_KERBV | ND_NFSCL)) == ND_NFSCL) {
+ *gidp = tgid;
+ goto out;
+ }
/*
* Look for an '@'.
*/
- cp = str;
- for (i = 0; i < len; i++)
- if (*cp++ == '@')
- break;
+ cp = strchr(str0, '@');
+ if (cp != NULL)
+ i = (int)(cp++ - str0);
+ else
+ i = len;
cnt = 0;
tryagain:
diff --git a/sys/fs/nfs/nfs_var.h b/sys/fs/nfs/nfs_var.h
index d733073..e5bacb2 100644
--- a/sys/fs/nfs/nfs_var.h
+++ b/sys/fs/nfs/nfs_var.h
@@ -295,9 +295,11 @@ void nfsrv_adj(mbuf_t, int, int);
void nfsrv_postopattr(struct nfsrv_descript *, int, struct nfsvattr *);
int nfsd_errmap(struct nfsrv_descript *);
void nfsv4_uidtostr(uid_t, u_char **, int *, NFSPROC_T *);
-int nfsv4_strtouid(u_char *, int, uid_t *, NFSPROC_T *);
+int nfsv4_strtouid(struct nfsrv_descript *, u_char *, int, uid_t *,
+ NFSPROC_T *);
void nfsv4_gidtostr(gid_t, u_char **, int *, NFSPROC_T *);
-int nfsv4_strtogid(u_char *, int, gid_t *, NFSPROC_T *);
+int nfsv4_strtogid(struct nfsrv_descript *, u_char *, int, gid_t *,
+ NFSPROC_T *);
int nfsrv_checkuidgid(struct nfsrv_descript *, struct nfsvattr *);
void nfsrv_fixattr(struct nfsrv_descript *, vnode_t,
struct nfsvattr *, NFSACL_T *, NFSPROC_T *, nfsattrbit_t *,
OpenPOWER on IntegriCloud