From: Purva Yeshi <purvayeshi...@gmail.com> [ Upstream commit 487767bff572d46f7c37ad846c4078f6d6c9cc55 ]
Fix Smatch-detected error: drivers/md/dm-zoned-target.c:1073 dmz_iterate_devices() error: uninitialized symbol 'r'. Smatch detects a possible use of the uninitialized variable 'r' in dmz_iterate_devices() because if dmz->nr_ddevs is zero, the loop is skipped and 'r' is returned without being set, leading to undefined behavior. Initialize 'r' to 0 before the loop. This ensures that if there are no devices to iterate over, the function still returns a defined value. Signed-off-by: Purva Yeshi <purvayeshi...@gmail.com> Signed-off-by: Mikulas Patocka <mpato...@redhat.com> Signed-off-by: Sasha Levin <sas...@kernel.org> --- LLM Generated explanations, may be completely bogus: **Backport Status: YES** This commit should be backported to stable kernel trees. Here's my extensive analysis: ## Analysis of the Bug The commit fixes a genuine uninitialized variable bug in `dmz_iterate_devices()` function in drivers/md/dm-zoned-target.c:1073. The bug occurs when: 1. The variable `r` is declared but not initialized at line 1065 2. If `dmz->nr_ddevs` is 0, the for loop at line 1067 is never entered 3. The function returns `r` at line 1073, which contains garbage data This is a clear programming error that can lead to undefined behavior. The function could return any arbitrary value when there are no devices to iterate over. ## Why This Should Be Backported 1. **Real Bug Fix**: This fixes an actual bug that can cause unpredictable behavior. An uninitialized return value can lead to: - Incorrect error handling by callers - Potential system instability - Unpredictable behavior in device mapper operations 2. **Small and Contained Fix**: The fix is minimal - just initializing `r` to 0. This follows the pattern used in other similar iterate_devices implementations like `dm-cache-target.c:3438` where `int r = 0;` is properly initialized. 3. **No Side Effects**: The change has no architectural impact or side effects. It simply ensures the function returns a defined value (0) when there are no devices to iterate, which is the expected behavior. 4. **Affects Users**: While the condition (nr_ddevs == 0) might be rare, it's still a possible configuration that could affect users of dm- zoned devices. The undefined behavior could manifest in various ways depending on what's in memory. 5. **Static Analysis Finding**: This was caught by Smatch static analysis, indicating it's a real code quality issue that should be fixed. 6. **Follows Stable Rules**: The fix is: - Obviously correct - Fixes a real bug (uninitialized variable use) - Minimal risk of regression - Small change (1 line) - No new features or architectural changes ## Technical Context Looking at the code structure, `nr_ddevs` is set from `argc` in line 858, which must be at least 1 based on the check at line 835. However, there could be error paths or future code changes that might result in this function being called with nr_ddevs == 0, making this defensive programming important. The fix aligns with how other device mapper targets handle their iterate_devices functions, where the return value is properly initialized before use. drivers/md/dm-zoned-target.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/md/dm-zoned-target.c b/drivers/md/dm-zoned-target.c index 5da3db06da10..9da329078ea4 100644 --- a/drivers/md/dm-zoned-target.c +++ b/drivers/md/dm-zoned-target.c @@ -1062,7 +1062,7 @@ static int dmz_iterate_devices(struct dm_target *ti, struct dmz_target *dmz = ti->private; unsigned int zone_nr_sectors = dmz_zone_nr_sectors(dmz->metadata); sector_t capacity; - int i, r; + int i, r = 0; for (i = 0; i < dmz->nr_ddevs; i++) { capacity = dmz->dev[i].capacity & ~(zone_nr_sectors - 1); -- 2.39.5