2017-11-21 04:17:50 +01:00
|
|
|
From a7a13690db8fc7508177138265c6930fa11ade3e Mon Sep 17 00:00:00 2001
|
2017-11-06 10:28:09 +01:00
|
|
|
From: Bin Liu <bliu@suse.com>
|
2017-11-21 04:17:50 +01:00
|
|
|
Date: Tue, 21 Nov 2017 11:03:10 +0800
|
|
|
|
Subject: [PATCH] do not convert empty uid gid to 0
|
2017-11-06 10:28:09 +01:00
|
|
|
|
|
|
|
---
|
2017-11-21 04:17:50 +01:00
|
|
|
exec/coroparse.c | 12 ++++++++++++
|
|
|
|
1 file changed, 12 insertions(+)
|
2017-11-06 10:28:09 +01:00
|
|
|
|
|
|
|
diff --git a/exec/coroparse.c b/exec/coroparse.c
|
2017-11-21 04:17:50 +01:00
|
|
|
index 374ed7dd..ac654a11 100644
|
2017-11-06 10:28:09 +01:00
|
|
|
--- a/exec/coroparse.c
|
|
|
|
+++ b/exec/coroparse.c
|
2017-11-21 04:17:50 +01:00
|
|
|
@@ -139,6 +139,12 @@ static int uid_determine (const char *req_user)
|
|
|
|
long int id;
|
2017-11-06 10:28:09 +01:00
|
|
|
char *ep;
|
|
|
|
|
2017-11-21 04:17:50 +01:00
|
|
|
+ if(*req_user == '\0') {
|
|
|
|
+ sprintf (error_string_response,
|
|
|
|
+ "The user can not be empty, please read the documentation.");
|
|
|
|
+ return (-1);
|
|
|
|
+ }
|
|
|
|
+
|
2017-11-06 10:28:09 +01:00
|
|
|
id = strtol(req_user, &ep, 10);
|
2017-11-21 04:17:50 +01:00
|
|
|
if (*ep == '\0' && id >= 0 && id <= UINT_MAX) {
|
2017-11-06 10:28:09 +01:00
|
|
|
return (id);
|
2017-11-21 04:17:50 +01:00
|
|
|
@@ -193,6 +199,12 @@ static int gid_determine (const char *req_group)
|
|
|
|
long int id;
|
2017-11-06 10:28:09 +01:00
|
|
|
char *ep;
|
|
|
|
|
2017-11-21 04:17:50 +01:00
|
|
|
+ if(*req_group == '\0') {
|
|
|
|
+ sprintf (error_string_response,
|
|
|
|
+ "The group can not be empty, please read the documentation.");
|
|
|
|
+ return (-1);
|
|
|
|
+ }
|
|
|
|
+
|
2017-11-06 10:28:09 +01:00
|
|
|
id = strtol(req_group, &ep, 10);
|
2017-11-21 04:17:50 +01:00
|
|
|
if (*ep == '\0' && id >= 0 && id <= UINT_MAX) {
|
2017-11-06 10:28:09 +01:00
|
|
|
return (id);
|
|
|
|
--
|
|
|
|
2.13.6
|
|
|
|
|