Blame SOURCES/quota-4.01-Prevent-from-grace-period-overflow-in-RPC-transport.patch

370c56
From d850a85b2374fe1b83779c0fc61463057eeca4ab Mon Sep 17 00:00:00 2001
370c56
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
370c56
Date: Mon, 24 Feb 2014 15:54:32 +0100
370c56
Subject: [PATCH] Prevent from grace period overflow in RPC transport
370c56
MIME-Version: 1.0
370c56
Content-Type: text/plain; charset=UTF-8
370c56
Content-Transfer-Encoding: 8bit
370c56
370c56
The RPC transports grace time as unsigned int, but the value stored
370c56
there and retrivedd from is treated as singed difference against current time.
370c56
370c56
This leads to overflow after expiring the grace time which is
370c56
presented as an enourmously large grace time instead of "none" in the
370c56
quota(1) output.
370c56
370c56
There also possible an overflow when the time difference is still
370c56
bigger than an int can represent.
370c56
370c56
This first issue is solved by explicit type cast to/from int32_t, the
370c56
second issue is fixes by limiting the value into int32_t range.
370c56
370c56
<https://sourceforge.net/p/linuxquota/bugs/115/>
370c56
370c56
Signed-off-by: Petr Písař <ppisar@redhat.com>
370c56
Signed-off-by: Jan Kara <jack@suse.cz>
370c56
---
370c56
 quotasys.c      | 13 +++++++++++++
370c56
 quotasys.h      |  4 ++++
370c56
 rquota_client.c | 10 ++++++----
370c56
 rquota_server.c |  9 +++++----
370c56
 4 files changed, 28 insertions(+), 8 deletions(-)
370c56
370c56
diff --git a/quotasys.c b/quotasys.c
370c56
index 120125a..a5737a8 100644
370c56
--- a/quotasys.c
370c56
+++ b/quotasys.c
370c56
@@ -23,6 +23,7 @@
370c56
 #include <sys/types.h>
370c56
 #include <sys/stat.h>
370c56
 #include <sys/vfs.h>
370c56
+#include <stdint.h>
370c56
 
370c56
 #include "pot.h"
370c56
 #include "bylabel.h"
370c56
@@ -323,6 +324,18 @@ void difftime2str(time_t seconds, char *buf)
370c56
 }
370c56
 
370c56
 /*
370c56
+ * Round difference of two time_t values into int32_t
370c56
+ */
370c56
+int32_t difftime2net(time_t later, time_t sooner)
370c56
+{
370c56
+	if ((later - sooner) > INT32_MAX)
370c56
+		return INT32_MAX;
370c56
+	if ((later - sooner) < INT32_MIN)
370c56
+		return INT32_MIN;
370c56
+	return (later - sooner);
370c56
+}
370c56
+
370c56
+/*
370c56
  * Convert time to printable form
370c56
  */
370c56
 void time2str(time_t seconds, char *buf, int flags)
370c56
diff --git a/quotasys.h b/quotasys.h
370c56
index e79f8cd..d8d79fe 100644
370c56
--- a/quotasys.h
370c56
+++ b/quotasys.h
370c56
@@ -8,6 +8,7 @@
370c56
 #define GUARD_QUOTASYS_H
370c56
 
370c56
 #include <sys/types.h>
370c56
+#include <inttypes.h>
370c56
 #include "mntopt.h"
370c56
 #include "quota.h"
370c56
 
370c56
@@ -100,6 +101,9 @@ int util2kernfmt(int fmt);
370c56
 /* Convert time difference between given time and current time to printable form */
370c56
 void difftime2str(time_t, char *);
370c56
 
370c56
+/* Round difference of two time_t values into int32_t */
370c56
+int32_t difftime2net(time_t later, time_t sooner);
370c56
+
370c56
 /* Convert time to printable form */
370c56
 void time2str(time_t, char *, int);
370c56
 
370c56
diff --git a/rquota_client.c b/rquota_client.c
370c56
index e26e066..9d4055e 100644
370c56
--- a/rquota_client.c
370c56
+++ b/rquota_client.c
370c56
@@ -32,11 +32,13 @@
370c56
 #include <string.h>
370c56
 #include <signal.h>
370c56
 #include <time.h>
370c56
+#include <stdint.h>
370c56
 
370c56
 #include "mntopt.h"
370c56
 #include "rquota.h"
370c56
 #include "common.h"
370c56
 #include "quotaio.h"
370c56
+#include "quotasys.h"
370c56
 
370c56
 #if defined(RPC)
370c56
 
370c56
@@ -54,11 +56,11 @@ static inline void clinet2utildqblk(struct util_dqblk *u, struct rquota *n)
370c56
 	u->dqb_curspace = ((qsize_t)n->rq_curblocks) * n->rq_bsize;
370c56
 	time(&now;;
370c56
 	if (n->rq_btimeleft)
370c56
-		u->dqb_btime = n->rq_btimeleft + now;
370c56
+		u->dqb_btime = (int32_t)n->rq_btimeleft + now;
370c56
 	else
370c56
 		u->dqb_btime = 0;
370c56
 	if (n->rq_ftimeleft)
370c56
-		u->dqb_itime = n->rq_ftimeleft + now;
370c56
+		u->dqb_itime = (int32_t)n->rq_ftimeleft + now;
370c56
 	else
370c56
 		u->dqb_itime = 0;
370c56
 }
370c56
@@ -76,11 +78,11 @@ static inline void cliutil2netdqblk(struct sq_dqblk *n, struct util_dqblk *u)
370c56
 	n->rq_curblocks = toqb(u->dqb_curspace);
370c56
 	n->rq_curfiles = u->dqb_curinodes;
370c56
 	if (u->dqb_btime)
370c56
-		n->rq_btimeleft = u->dqb_btime - now;
370c56
+		n->rq_btimeleft = difftime2net(u->dqb_btime, now);
370c56
 	else
370c56
 		n->rq_btimeleft = 0;
370c56
 	if (u->dqb_itime)
370c56
-		n->rq_ftimeleft = u->dqb_itime - now;
370c56
+		n->rq_ftimeleft = difftime2net(u->dqb_itime, now);
370c56
 	else
370c56
 		n->rq_ftimeleft = 0;
370c56
 }
370c56
diff --git a/rquota_server.c b/rquota_server.c
370c56
index bf66e4d..09cf6ed 100644
370c56
--- a/rquota_server.c
370c56
+++ b/rquota_server.c
370c56
@@ -25,6 +25,7 @@
370c56
 #include <stdio.h>
370c56
 #include <syslog.h>
370c56
 #include <time.h>
370c56
+#include <stdint.h>
370c56
 
370c56
 #include "mntopt.h"
370c56
 #include "quotaops.h"
370c56
@@ -82,11 +83,11 @@ static inline void servnet2utildqblk(struct util_dqblk *u, sq_dqblk * n)
370c56
 	u->dqb_curspace = ((qsize_t)n->rq_curblocks) << RPC_DQBLK_SIZE_BITS;
370c56
 	u->dqb_curinodes = n->rq_curfiles;
370c56
 	if (n->rq_btimeleft)
370c56
-		u->dqb_btime = n->rq_btimeleft + now;
370c56
+		u->dqb_btime = (int32_t)n->rq_btimeleft + now;
370c56
 	else
370c56
 		u->dqb_btime = 0;
370c56
 	if (n->rq_ftimeleft)
370c56
-		u->dqb_itime = n->rq_ftimeleft + now;
370c56
+		u->dqb_itime = (int32_t)n->rq_ftimeleft + now;
370c56
 	else
370c56
 		u->dqb_itime = 0;
370c56
 }
370c56
@@ -127,11 +128,11 @@ static inline void servutil2netdqblk(struct rquota *n, struct util_dqblk *u)
370c56
 
370c56
 	time(&now;;
370c56
 	if (u->dqb_btime)
370c56
-		n->rq_btimeleft = u->dqb_btime - now;
370c56
+		n->rq_btimeleft = difftime2net(u->dqb_btime, now);
370c56
 	else
370c56
 		n->rq_btimeleft = 0;
370c56
 	if (u->dqb_itime)
370c56
-		n->rq_ftimeleft = u->dqb_itime - now;
370c56
+		n->rq_ftimeleft = difftime2net(u->dqb_itime, now);
370c56
 	else
370c56
 		n->rq_ftimeleft = 0;
370c56
 }
370c56
-- 
370c56
2.5.0
370c56