Browse Source

qcacmn: Explicit cast for boundary checks for unsigned cfg items

The meta table containing the min and max values for
any cfg item is of type int32_t. This is used to do boundary
checks for unsigned int cfg items whose max:
possible value will be higher.

Type cast the signed int min, max meta data to unsigned int
before we do the boundary checks.

Change-Id: I18a3047a3afa78864c76b813ca93f5b82f2274a7
CRs-Fixed: 2213359
Vivek 7 years ago
parent
commit
24f704eefc
1 changed files with 15 additions and 6 deletions
  1. 15 6
      cfg/src/cfg.c

+ 15 - 6
cfg/src/cfg.c

@@ -122,6 +122,16 @@ static void cfg_uint_item_handler(struct cfg_value_store *store,
 	QDF_STATUS status;
 	uint32_t *store_value = cfg_value_ptr(store, meta);
 	uint32_t value;
+	uint32_t min;
+	uint32_t max;
+
+	/**
+	 * Since meta min and max are of type int32_t
+	 * We need explicit type casting to avoid
+	 * implicit wrap around for uint32_t type cfg data.
+	*/
+	min = (uint32_t)meta->min;
+	max = (uint32_t)meta->max;
 
 	status = qdf_uint32_parse(str_value, &value);
 	if (QDF_IS_STATUS_ERROR(status)) {
@@ -130,14 +140,13 @@ static void cfg_uint_item_handler(struct cfg_value_store *store,
 		return;
 	}
 
-	QDF_BUG(meta->min >= 0);
-	QDF_BUG(meta->min <= meta->max);
-	if (meta->min < 0 || meta->min > meta->max) {
+	QDF_BUG(min <= max);
+	if (min > max) {
 		cfg_err("Invalid config item meta for %s", meta->name);
 		return;
 	}
 
-	if (value >= meta->min && value <= meta->max) {
+	if (value >= min && value <= max) {
 		*store_value = value;
 		return;
 	}
@@ -150,12 +159,12 @@ static void cfg_uint_item_handler(struct cfg_value_store *store,
 		/* store already contains default */
 		break;
 	case CFG_VALUE_OR_CLAMP:
-		*store_value = __cfg_clamp(value, meta->min, meta->max);
+		*store_value = __cfg_clamp(value, min, max);
 		break;
 	}
 
 	cfg_err("%s=%u - Out of range [%d, %d]; Using %u",
-		meta->name, value, meta->min, meta->max, *store_value);
+		meta->name, value, min, max, *store_value);
 }
 
 static void cfg_bool_item_handler(struct cfg_value_store *store,