]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
SUNRPC: return proper error from get_expiry()
authorNeilBrown <neilb@suse.de>
Wed, 8 Mar 2023 06:51:00 +0000 (17:51 +1100)
committerChuck Lever <chuck.lever@oracle.com>
Wed, 26 Apr 2023 13:05:00 +0000 (09:05 -0400)
The get_expiry() function currently returns a timestamp, and uses the
special return value of 0 to indicate an error.

Unfortunately this causes a problem when 0 is the correct return value.

On a system with no RTC it is possible that the boot time will be seen
to be "3".  When exportfs probes to see if a particular filesystem
supports NFS export it tries to cache information with an expiry time of
"3".  The intention is for this to be "long in the past".  Even with no
RTC it will not be far in the future (at most a second or two) so this
is harmless.
But if the boot time happens to have been calculated to be "3", then
get_expiry will fail incorrectly as it converts the number to "seconds
since bootime" - 0.

To avoid this problem we change get_expiry() to report the error quite
separately from the expiry time.  The error is now the return value.
The expiry time is reported through a by-reference parameter.

Reported-by: Jerry Zhang <jerry@skydio.com>
Tested-by: Jerry Zhang <jerry@skydio.com>
Signed-off-by: NeilBrown <neilb@suse.de>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
fs/nfsd/export.c
fs/nfsd/nfs4idmap.c
include/linux/sunrpc/cache.h
net/sunrpc/auth_gss/svcauth_gss.c
net/sunrpc/svcauth_unix.c

index 668c7527b17e81e5e37d5465a91d30d566a33bc2..6da74aebe1fb045789f2bf686bf4cecaa2a4b251 100644 (file)
@@ -123,11 +123,11 @@ static int expkey_parse(struct cache_detail *cd, char *mesg, int mlen)
 
        /* OK, we seem to have a valid key */
        key.h.flags = 0;
-       key.h.expiry_time = get_expiry(&mesg);
-       if (key.h.expiry_time == 0)
+       err = get_expiry(&mesg, &key.h.expiry_time);
+       if (err)
                goto out;
 
-       key.ek_client = dom;    
+       key.ek_client = dom;
        key.ek_fsidtype = fsidtype;
        memcpy(key.ek_fsid, buf, len);
 
@@ -610,9 +610,8 @@ static int svc_export_parse(struct cache_detail *cd, char *mesg, int mlen)
        exp.ex_devid_map = NULL;
 
        /* expiry */
-       err = -EINVAL;
-       exp.h.expiry_time = get_expiry(&mesg);
-       if (exp.h.expiry_time == 0)
+       err = get_expiry(&mesg, &exp.h.expiry_time);
+       if (err)
                goto out3;
 
        /* flags */
@@ -624,7 +623,7 @@ static int svc_export_parse(struct cache_detail *cd, char *mesg, int mlen)
                if (err || an_int < 0)
                        goto out3;
                exp.ex_flags= an_int;
-       
+
                /* anon uid */
                err = get_int(&mesg, &an_int);
                if (err)
index 5e9809aff37ebcd3792024b70fced4df745be274..7a806ac13e317e021afcfaa5a711db158ee4e41c 100644 (file)
@@ -240,8 +240,8 @@ idtoname_parse(struct cache_detail *cd, char *buf, int buflen)
                goto out;
 
        /* expiry */
-       ent.h.expiry_time = get_expiry(&buf);
-       if (ent.h.expiry_time == 0)
+       error = get_expiry(&buf, &ent.h.expiry_time);
+       if (error)
                goto out;
 
        error = -ENOMEM;
@@ -408,8 +408,8 @@ nametoid_parse(struct cache_detail *cd, char *buf, int buflen)
        memcpy(ent.name, buf1, sizeof(ent.name));
 
        /* expiry */
-       ent.h.expiry_time = get_expiry(&buf);
-       if (ent.h.expiry_time == 0)
+       error = get_expiry(&buf, &ent.h.expiry_time);
+       if (error)
                goto out;
 
        /* ID */
index ec5a555df96f22b059dd3c178135ae514220382a..518bd28f5ab8c8d56770ceec03d74c96c09a8279 100644 (file)
@@ -300,17 +300,18 @@ static inline int get_time(char **bpp, time64_t *time)
        return 0;
 }
 
-static inline time64_t get_expiry(char **bpp)
+static inline int get_expiry(char **bpp, time64_t *rvp)
 {
-       time64_t rv;
+       int error;
        struct timespec64 boot;
 
-       if (get_time(bpp, &rv))
-               return 0;
-       if (rv < 0)
-               return 0;
+       error = get_time(bpp, rvp);
+       if (error)
+               return error;
+
        getboottime64(&boot);
-       return rv - boot.tv_sec;
+       (*rvp) -= boot.tv_sec;
+       return 0;
 }
 
 #endif /*  _LINUX_SUNRPC_CACHE_H_ */
index 9c843974bb48b2f59607f8afd18394171758244f..c4a566737085cd58ddf0eb7446859baf9b8a58be 100644 (file)
@@ -257,11 +257,11 @@ static int rsi_parse(struct cache_detail *cd,
 
        rsii.h.flags = 0;
        /* expiry */
-       expiry = get_expiry(&mesg);
-       status = -EINVAL;
-       if (expiry == 0)
+       status = get_expiry(&mesg, &expiry);
+       if (status)
                goto out;
 
+       status = -EINVAL;
        /* major/minor */
        len = qword_get(&mesg, buf, mlen);
        if (len <= 0)
@@ -483,11 +483,11 @@ static int rsc_parse(struct cache_detail *cd,
 
        rsci.h.flags = 0;
        /* expiry */
-       expiry = get_expiry(&mesg);
-       status = -EINVAL;
-       if (expiry == 0)
+       status = get_expiry(&mesg, &expiry);
+       if (status)
                goto out;
 
+       status = -EINVAL;
        rscp = rsc_lookup(cd, &rsci);
        if (!rscp)
                goto out;
index 4246363cb0951c0fba470844ee63ed22d2bc7de9..4485088ce27b6ef6baed4fb55f8116a77a1ca034 100644 (file)
@@ -225,9 +225,9 @@ static int ip_map_parse(struct cache_detail *cd,
                return -EINVAL;
        }
 
-       expiry = get_expiry(&mesg);
-       if (expiry ==0)
-               return -EINVAL;
+       err = get_expiry(&mesg, &expiry);
+       if (err)
+               return err;
 
        /* domainname, or empty for NEGATIVE */
        len = qword_get(&mesg, buf, mlen);
@@ -506,9 +506,9 @@ static int unix_gid_parse(struct cache_detail *cd,
        uid = make_kuid(current_user_ns(), id);
        ug.uid = uid;
 
-       expiry = get_expiry(&mesg);
-       if (expiry == 0)
-               return -EINVAL;
+       err = get_expiry(&mesg, &expiry);
+       if (err)
+               return err;
 
        rv = get_int(&mesg, &gids);
        if (rv || gids < 0 || gids > 8192)