treewide: Use struct_size() for devm_kmalloc() and friends
authorKees Cook <keescook@chromium.org>
Tue, 8 May 2018 23:08:53 +0000 (16:08 -0700)
committerKees Cook <keescook@chromium.org>
Wed, 6 Jun 2018 18:15:43 +0000 (11:15 -0700)
Replaces open-coded struct size calculations with struct_size() for
devm_*, f2fs_*, and sock_* allocations. Automatically generated (and
manually adjusted) from the following Coccinelle script:

// Direct reference to struct field.
@@
identifier alloc =~ "devm_kmalloc|devm_kzalloc|sock_kmalloc|f2fs_kmalloc|f2fs_kzalloc";
expression HANDLE;
expression GFP;
identifier VAR, ELEMENT;
expression COUNT;
@@

- alloc(HANDLE, sizeof(*VAR) + COUNT * sizeof(*VAR->ELEMENT), GFP)
+ alloc(HANDLE, struct_size(VAR, ELEMENT, COUNT), GFP)

// mr = kzalloc(sizeof(*mr) + m * sizeof(mr->map[0]), GFP_KERNEL);
@@
identifier alloc =~ "devm_kmalloc|devm_kzalloc|sock_kmalloc|f2fs_kmalloc|f2fs_kzalloc";
expression HANDLE;
expression GFP;
identifier VAR, ELEMENT;
expression COUNT;
@@

- alloc(HANDLE, sizeof(*VAR) + COUNT * sizeof(VAR->ELEMENT[0]), GFP)
+ alloc(HANDLE, struct_size(VAR, ELEMENT, COUNT), GFP)

// Same pattern, but can't trivially locate the trailing element name,
// or variable name.
@@
identifier alloc =~ "devm_kmalloc|devm_kzalloc|sock_kmalloc|f2fs_kmalloc|f2fs_kzalloc";
expression HANDLE;
expression GFP;
expression SOMETHING, COUNT, ELEMENT;
@@

- alloc(HANDLE, sizeof(SOMETHING) + COUNT * sizeof(ELEMENT), GFP)
+ alloc(HANDLE, CHECKME_struct_size(&SOMETHING, ELEMENT, COUNT), GFP)

Signed-off-by: Kees Cook <keescook@chromium.org>
32 files changed:
crypto/af_alg.c
drivers/clk/bcm/clk-bcm2835-aux.c
drivers/clk/bcm/clk-bcm2835.c
drivers/clk/clk-s2mps11.c
drivers/clk/clk-scmi.c
drivers/clk/davinci/da8xx-cfgchip.c
drivers/clk/mvebu/armada-37xx-periph.c
drivers/clk/mvebu/armada-37xx-tbg.c
drivers/clk/qcom/clk-spmi-pmic-div.c
drivers/clk/samsung/clk-exynos-audss.c
drivers/clk/samsung/clk-exynos5433.c
drivers/clk/samsung/clk-s3c2410-dclk.c
drivers/clk/samsung/clk-s5pv210-audss.c
drivers/dma/bcm-sba-raid.c
drivers/dma/nbpfaxi.c
drivers/dma/sprd-dma.c
drivers/gpio/gpio-uniphier.c
drivers/hwspinlock/sirf_hwspinlock.c
drivers/input/keyboard/cap11xx.c
drivers/mfd/qcom-pm8xxx.c
drivers/misc/cb710/core.c
drivers/mtd/spi-nor/aspeed-smc.c
drivers/net/can/peak_canfd/peak_pciefd_main.c
drivers/pinctrl/samsung/pinctrl-s3c64xx.c
drivers/pinctrl/uniphier/pinctrl-uniphier-core.c
drivers/regulator/mc13783-regulator.c
drivers/regulator/mc13892-regulator.c
drivers/rtc/rtc-ac100.c
drivers/soc/actions/owl-sps.c
drivers/soc/rockchip/pm_domains.c
drivers/thermal/qcom/tsens.c
sound/soc/qcom/apq8016_sbc.c

index 7846c0c..bcbf677 100644 (file)
@@ -501,8 +501,8 @@ int af_alg_alloc_tsgl(struct sock *sk)
                sg = sgl->sg;
 
        if (!sg || sgl->cur >= MAX_SGL_ENTS) {
-               sgl = sock_kmalloc(sk, sizeof(*sgl) +
-                                      sizeof(sgl->sg[0]) * (MAX_SGL_ENTS + 1),
+               sgl = sock_kmalloc(sk,
+                                  struct_size(sgl, sg, (MAX_SGL_ENTS + 1)),
                                   GFP_KERNEL);
                if (!sgl)
                        return -ENOMEM;
index 77e276d..f225ad2 100644 (file)
@@ -40,8 +40,10 @@ static int bcm2835_aux_clk_probe(struct platform_device *pdev)
        if (IS_ERR(reg))
                return PTR_ERR(reg);
 
-       onecell = devm_kmalloc(dev, sizeof(*onecell) + sizeof(*onecell->hws) *
-                              BCM2835_AUX_CLOCK_COUNT, GFP_KERNEL);
+       onecell = devm_kmalloc(dev,
+                              struct_size(onecell, hws,
+                                          BCM2835_AUX_CLOCK_COUNT),
+                              GFP_KERNEL);
        if (!onecell)
                return -ENOMEM;
        onecell->num = BCM2835_AUX_CLOCK_COUNT;
index fa0d5c8..6d4e69e 100644 (file)
@@ -2147,8 +2147,8 @@ static int bcm2835_clk_probe(struct platform_device *pdev)
        size_t i;
        int ret;
 
-       cprman = devm_kzalloc(dev, sizeof(*cprman) +
-                             sizeof(*cprman->onecell.hws) * asize,
+       cprman = devm_kzalloc(dev,
+                             struct_size(cprman, onecell.hws, asize),
                              GFP_KERNEL);
        if (!cprman)
                return -ENOMEM;
index fbaa84a..d44e0ee 100644 (file)
@@ -147,8 +147,8 @@ static int s2mps11_clk_probe(struct platform_device *pdev)
        if (!s2mps11_clks)
                return -ENOMEM;
 
-       clk_data = devm_kzalloc(&pdev->dev, sizeof(*clk_data) +
-                               sizeof(*clk_data->hws) * S2MPS11_CLKS_NUM,
+       clk_data = devm_kzalloc(&pdev->dev,
+                               struct_size(clk_data, hws, S2MPS11_CLKS_NUM),
                                GFP_KERNEL);
        if (!clk_data)
                return -ENOMEM;
index 488c213..bb2a6f2 100644 (file)
@@ -137,8 +137,8 @@ static int scmi_clocks_probe(struct scmi_device *sdev)
                return -EINVAL;
        }
 
-       clk_data = devm_kzalloc(dev, sizeof(*clk_data) +
-                               sizeof(*clk_data->hws) * count, GFP_KERNEL);
+       clk_data = devm_kzalloc(dev, struct_size(clk_data, hws, count),
+                               GFP_KERNEL);
        if (!clk_data)
                return -ENOMEM;
 
index c971111..aae62a5 100644 (file)
@@ -650,8 +650,8 @@ static int of_da8xx_usb_phy_clk_init(struct device *dev, struct regmap *regmap)
        struct da8xx_usb0_clk48 *usb0;
        struct da8xx_usb1_clk48 *usb1;
 
-       clk_data = devm_kzalloc(dev, sizeof(*clk_data) + 2 *
-                               sizeof(*clk_data->hws), GFP_KERNEL);
+       clk_data = devm_kzalloc(dev, struct_size(clk_data, hws, 2),
+                               GFP_KERNEL);
        if (!clk_data)
                return -ENOMEM;
 
index 87213ea..6860bd5 100644 (file)
@@ -667,9 +667,10 @@ static int armada_3700_periph_clock_probe(struct platform_device *pdev)
        if (!driver_data)
                return -ENOMEM;
 
-       driver_data->hw_data = devm_kzalloc(dev, sizeof(*driver_data->hw_data) +
-                           sizeof(*driver_data->hw_data->hws) * num_periph,
-                           GFP_KERNEL);
+       driver_data->hw_data = devm_kzalloc(dev,
+                                           struct_size(driver_data->hw_data,
+                                                       hws, num_periph),
+                                           GFP_KERNEL);
        if (!driver_data->hw_data)
                return -ENOMEM;
        driver_data->hw_data->num = num_periph;
index aa80db1..7ff041f 100644 (file)
@@ -91,8 +91,8 @@ static int armada_3700_tbg_clock_probe(struct platform_device *pdev)
        void __iomem *reg;
        int i, ret;
 
-       hw_tbg_data = devm_kzalloc(&pdev->dev, sizeof(*hw_tbg_data)
-                                  + sizeof(*hw_tbg_data->hws) * NUM_TBG,
+       hw_tbg_data = devm_kzalloc(&pdev->dev,
+                                  struct_size(hw_tbg_data, hws, NUM_TBG),
                                   GFP_KERNEL);
        if (!hw_tbg_data)
                return -ENOMEM;
index 8672ab8..c90dfdd 100644 (file)
@@ -239,8 +239,7 @@ static int spmi_pmic_clkdiv_probe(struct platform_device *pdev)
        if (!nclks)
                return -EINVAL;
 
-       cc = devm_kzalloc(dev, sizeof(*cc) + sizeof(*cc->clks) * nclks,
-                         GFP_KERNEL);
+       cc = devm_kzalloc(dev, struct_size(cc, clks, nclks), GFP_KERNEL);
        if (!cc)
                return -ENOMEM;
        cc->nclks = nclks;
index b4b057c..f659c5c 100644 (file)
@@ -149,8 +149,8 @@ static int exynos_audss_clk_probe(struct platform_device *pdev)
        epll = ERR_PTR(-ENODEV);
 
        clk_data = devm_kzalloc(dev,
-                               sizeof(*clk_data) +
-                               sizeof(*clk_data->hws) * EXYNOS_AUDSS_MAX_CLKS,
+                               struct_size(clk_data, hws,
+                                           EXYNOS_AUDSS_MAX_CLKS),
                                GFP_KERNEL);
        if (!clk_data)
                return -ENOMEM;
index 5305ace..162de44 100644 (file)
@@ -5505,8 +5505,8 @@ static int __init exynos5433_cmu_probe(struct platform_device *pdev)
 
        info = of_device_get_match_data(dev);
 
-       data = devm_kzalloc(dev, sizeof(*data) +
-                           sizeof(*data->ctx.clk_data.hws) * info->nr_clk_ids,
+       data = devm_kzalloc(dev,
+                           struct_size(data, ctx.clk_data.hws, info->nr_clk_ids),
                            GFP_KERNEL);
        if (!data)
                return -ENOMEM;
index 077df3e..66a9047 100644 (file)
@@ -247,9 +247,10 @@ static int s3c24xx_dclk_probe(struct platform_device *pdev)
        struct clk_hw **clk_table;
        int ret, i;
 
-       s3c24xx_dclk = devm_kzalloc(&pdev->dev, sizeof(*s3c24xx_dclk) +
-                           sizeof(*s3c24xx_dclk->clk_data.hws) * DCLK_MAX_CLKS,
-                           GFP_KERNEL);
+       s3c24xx_dclk = devm_kzalloc(&pdev->dev,
+                                   struct_size(s3c24xx_dclk, clk_data.hws,
+                                               DCLK_MAX_CLKS),
+                                   GFP_KERNEL);
        if (!s3c24xx_dclk)
                return -ENOMEM;
 
index b964141..22b18e7 100644 (file)
@@ -81,8 +81,7 @@ static int s5pv210_audss_clk_probe(struct platform_device *pdev)
        }
 
        clk_data = devm_kzalloc(&pdev->dev,
-                               sizeof(*clk_data) +
-                               sizeof(*clk_data->hws) * AUDSS_MAX_CLKS,
+                               struct_size(clk_data, hws, AUDSS_MAX_CLKS),
                                GFP_KERNEL);
 
        if (!clk_data)
index 3956a01..72878ac 100644 (file)
@@ -1499,9 +1499,8 @@ static int sba_prealloc_channel_resources(struct sba_device *sba)
 
        for (i = 0; i < sba->max_req; i++) {
                req = devm_kzalloc(sba->dev,
-                               sizeof(*req) +
-                               sba->max_cmd_per_req * sizeof(req->cmds[0]),
-                               GFP_KERNEL);
+                                  struct_size(req, cmds, sba->max_cmd_per_req),
+                                  GFP_KERNEL);
                if (!req) {
                        ret = -ENOMEM;
                        goto fail_free_cmds_pool;
index 5055933..2f9974d 100644 (file)
@@ -1305,8 +1305,8 @@ static int nbpf_probe(struct platform_device *pdev)
        cfg = of_device_get_match_data(dev);
        num_channels = cfg->num_channels;
 
-       nbpf = devm_kzalloc(dev, sizeof(*nbpf) + num_channels *
-                           sizeof(nbpf->chan[0]), GFP_KERNEL);
+       nbpf = devm_kzalloc(dev, struct_size(nbpf, chan, num_channels),
+                           GFP_KERNEL);
        if (!nbpf)
                return -ENOMEM;
 
index b106e8a..52ebccb 100644 (file)
@@ -805,8 +805,8 @@ static int sprd_dma_probe(struct platform_device *pdev)
                return ret;
        }
 
-       sdev = devm_kzalloc(&pdev->dev, sizeof(*sdev) +
-                           sizeof(*dma_chn) * chn_count,
+       sdev = devm_kzalloc(&pdev->dev,
+                           struct_size(sdev, channels, chn_count),
                            GFP_KERNEL);
        if (!sdev)
                return -ENOMEM;
index 761d827..d3cf950 100644 (file)
@@ -371,8 +371,7 @@ static int uniphier_gpio_probe(struct platform_device *pdev)
                return ret;
 
        nregs = uniphier_gpio_get_nbanks(ngpios) * 2 + 3;
-       priv = devm_kzalloc(dev,
-                           sizeof(*priv) + sizeof(priv->saved_vals[0]) * nregs,
+       priv = devm_kzalloc(dev, struct_size(priv, saved_vals, nregs),
                            GFP_KERNEL);
        if (!priv)
                return -ENOMEM;
index 1601854..cb38e48 100644 (file)
@@ -62,8 +62,10 @@ static int sirf_hwspinlock_probe(struct platform_device *pdev)
        if (!pdev->dev.of_node)
                return -ENODEV;
 
-       hwspin = devm_kzalloc(&pdev->dev, sizeof(*hwspin) +
-                       sizeof(*hwlock) * HW_SPINLOCK_NUMBER, GFP_KERNEL);
+       hwspin = devm_kzalloc(&pdev->dev,
+                             struct_size(hwspin, bank.lock,
+                                         HW_SPINLOCK_NUMBER),
+                             GFP_KERNEL);
        if (!hwspin)
                return -ENOMEM;
 
index 1a1eaca..312916f 100644 (file)
@@ -357,8 +357,7 @@ static int cap11xx_i2c_probe(struct i2c_client *i2c_client,
        }
 
        priv = devm_kzalloc(dev,
-                           sizeof(*priv) +
-                               cap->num_channels * sizeof(priv->keycodes[0]),
+                           struct_size(priv, keycodes, cap->num_channels),
                            GFP_KERNEL);
        if (!priv)
                return -ENOMEM;
index f08758f..e6e8d81 100644 (file)
@@ -563,8 +563,8 @@ static int pm8xxx_probe(struct platform_device *pdev)
        pr_info("PMIC revision 2: %02X\n", val);
        rev |= val << BITS_PER_BYTE;
 
-       chip = devm_kzalloc(&pdev->dev, sizeof(*chip) +
-                           sizeof(chip->config[0]) * data->num_irqs,
+       chip = devm_kzalloc(&pdev->dev,
+                           struct_size(chip, config, data->num_irqs),
                            GFP_KERNEL);
        if (!chip)
                return -ENOMEM;
index fb397e7..4d4acf7 100644 (file)
@@ -232,8 +232,8 @@ static int cb710_probe(struct pci_dev *pdev,
        if (val & CB710_SLOT_SM)
                ++n;
 
-       chip = devm_kzalloc(&pdev->dev,
-               sizeof(*chip) + n * sizeof(*chip->slot), GFP_KERNEL);
+       chip = devm_kzalloc(&pdev->dev, struct_size(chip, slot, n),
+                           GFP_KERNEL);
        if (!chip)
                return -ENOMEM;
 
index 8d3cbe2..95e5446 100644 (file)
@@ -861,8 +861,9 @@ static int aspeed_smc_probe(struct platform_device *pdev)
                return -ENODEV;
        info = match->data;
 
-       controller = devm_kzalloc(&pdev->dev, sizeof(*controller) +
-               info->nce * sizeof(controller->chips[0]), GFP_KERNEL);
+       controller = devm_kzalloc(&pdev->dev,
+                                 struct_size(controller, chips, info->nce),
+                                 GFP_KERNEL);
        if (!controller)
                return -ENOMEM;
        controller->info = info;
index 3c51a88..b9e2857 100644 (file)
@@ -752,8 +752,7 @@ static int peak_pciefd_probe(struct pci_dev *pdev,
                can_count = 1;
 
        /* allocate board structure object */
-       pciefd = devm_kzalloc(&pdev->dev, sizeof(*pciefd) +
-                             can_count * sizeof(*pciefd->can),
+       pciefd = devm_kzalloc(&pdev->dev, struct_size(pciefd, can, can_count),
                              GFP_KERNEL);
        if (!pciefd) {
                err = -ENOMEM;
index 288e656..c399f09 100644 (file)
@@ -483,8 +483,8 @@ static int s3c64xx_eint_gpio_init(struct samsung_pinctrl_drv_data *d)
                ++nr_domains;
        }
 
-       data = devm_kzalloc(dev, sizeof(*data)
-                       + nr_domains * sizeof(*data->domains), GFP_KERNEL);
+       data = devm_kzalloc(dev, struct_size(data, domains, nr_domains),
+                           GFP_KERNEL);
        if (!data)
                return -ENOMEM;
        data->drvdata = d;
index ec0f77a..add8e87 100644 (file)
@@ -759,8 +759,7 @@ static int uniphier_pinctrl_add_reg_region(struct device *dev,
 
        nregs = DIV_ROUND_UP(count * width, 32);
 
-       region = devm_kzalloc(dev,
-                             sizeof(*region) + sizeof(region->vals[0]) * nregs,
+       region = devm_kzalloc(dev, struct_size(region, vals, nregs),
                              GFP_KERNEL);
        if (!region)
                return -ENOMEM;
index fe4c7d6..0e0277b 100644 (file)
@@ -409,9 +409,9 @@ static int mc13783_regulator_probe(struct platform_device *pdev)
        if (num_regulators <= 0)
                return -EINVAL;
 
-       priv = devm_kzalloc(&pdev->dev, sizeof(*priv) +
-                       num_regulators * sizeof(priv->regulators[0]),
-                       GFP_KERNEL);
+       priv = devm_kzalloc(&pdev->dev,
+                           struct_size(priv, regulators, num_regulators),
+                           GFP_KERNEL);
        if (!priv)
                return -ENOMEM;
 
index 0d17c92..15dd7bc 100644 (file)
@@ -547,9 +547,9 @@ static int mc13892_regulator_probe(struct platform_device *pdev)
        if (num_regulators <= 0)
                return -EINVAL;
 
-       priv = devm_kzalloc(&pdev->dev, sizeof(*priv) +
-               num_regulators * sizeof(priv->regulators[0]),
-               GFP_KERNEL);
+       priv = devm_kzalloc(&pdev->dev,
+                           struct_size(priv, regulators, num_regulators),
+                           GFP_KERNEL);
        if (!priv)
                return -ENOMEM;
 
index 3fe576f..784b676 100644 (file)
@@ -317,10 +317,10 @@ static int ac100_rtc_register_clks(struct ac100_rtc_dev *chip)
        const char *parents[2] = {AC100_RTC_32K_NAME};
        int i, ret;
 
-       chip->clk_data = devm_kzalloc(chip->dev, sizeof(*chip->clk_data) +
-                                                sizeof(*chip->clk_data->hws) *
-                                                AC100_CLKOUT_NUM,
-                                                GFP_KERNEL);
+       chip->clk_data = devm_kzalloc(chip->dev,
+                                     struct_size(chip->clk_data, hws,
+                                                 AC100_CLKOUT_NUM),
+                                     GFP_KERNEL);
        if (!chip->clk_data)
                return -ENOMEM;
 
index 8477f0f..032921d 100644 (file)
@@ -117,8 +117,8 @@ static int owl_sps_probe(struct platform_device *pdev)
 
        sps_info = match->data;
 
-       sps = devm_kzalloc(&pdev->dev, sizeof(*sps) +
-                          sps_info->num_domains * sizeof(sps->domains[0]),
+       sps = devm_kzalloc(&pdev->dev,
+                          struct_size(sps, domains, sps_info->num_domains),
                           GFP_KERNEL);
        if (!sps)
                return -ENOMEM;
index 53efc38..111c44f 100644 (file)
@@ -626,8 +626,7 @@ static int rockchip_pm_domain_probe(struct platform_device *pdev)
        pmu_info = match->data;
 
        pmu = devm_kzalloc(dev,
-                          sizeof(*pmu) +
-                               pmu_info->num_domains * sizeof(pmu->domains[0]),
+                          struct_size(pmu, domains, pmu_info->num_domains),
                           GFP_KERNEL);
        if (!pmu)
                return -ENOMEM;
index 3f9fe6a..c2c3442 100644 (file)
@@ -112,7 +112,6 @@ static int tsens_probe(struct platform_device *pdev)
        int ret, i;
        struct device *dev;
        struct device_node *np;
-       struct tsens_sensor *s;
        struct tsens_device *tmdev;
        const struct tsens_data *data;
        const struct of_device_id *id;
@@ -135,8 +134,9 @@ static int tsens_probe(struct platform_device *pdev)
                return -EINVAL;
        }
 
-       tmdev = devm_kzalloc(dev, sizeof(*tmdev) +
-                            data->num_sensors * sizeof(*s), GFP_KERNEL);
+       tmdev = devm_kzalloc(dev,
+                            struct_size(tmdev, sensor, data->num_sensors),
+                            GFP_KERNEL);
        if (!tmdev)
                return -ENOMEM;
 
index 7044287..1dd23bb 100644 (file)
@@ -147,7 +147,8 @@ static struct apq8016_sbc_data *apq8016_sbc_parse_of(struct snd_soc_card *card)
        num_links = of_get_child_count(node);
 
        /* Allocate the private data and the DAI link array */
-       data = devm_kzalloc(dev, sizeof(*data) + sizeof(*link) * num_links,
+       data = devm_kzalloc(dev,
+                           struct_size(data, dai_link, num_links),
                            GFP_KERNEL);
        if (!data)
                return ERR_PTR(-ENOMEM);