2023-07-24 11:37:58

by kernel test robot

[permalink] [raw]
Subject: drivers/pnp/pnpacpi/core.c:253:17: warning: 'strncpy' specified bound 50 equals destination size

tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 6eaae198076080886b9e7d57f4ae06fa782f90ef
commit: a91a9ffbd3a55a0ae1bb75e2b6e85b2a03f64e8f RISC-V: Add support to build the ACPI core
date: 8 weeks ago
config: riscv-randconfig-r032-20230724 (https://download.01.org/0day-ci/archive/20230724/[email protected]/config)
compiler: riscv64-linux-gcc (GCC) 12.3.0
reproduce: (https://download.01.org/0day-ci/archive/20230724/[email protected]/reproduce)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <[email protected]>
| Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/

All warnings (new ones prefixed by >>):

drivers/pnp/pnpacpi/core.c: In function 'pnpacpi_add_device.isra':
>> drivers/pnp/pnpacpi/core.c:253:17: warning: 'strncpy' specified bound 50 equals destination size [-Wstringop-truncation]
253 | strncpy(dev->name, acpi_device_name(device), sizeof(dev->name));
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


vim +/strncpy +253 drivers/pnp/pnpacpi/core.c

420a0f66378c84 Dmitry Torokhov 2010-09-18 208
^1da177e4c3f41 Linus Torvalds 2005-04-16 209 static int __init pnpacpi_add_device(struct acpi_device *device)
^1da177e4c3f41 Linus Torvalds 2005-04-16 210 {
^1da177e4c3f41 Linus Torvalds 2005-04-16 211 struct pnp_dev *dev;
844142c3f80c66 Rasmus Villemoes 2015-09-09 212 const char *pnpid;
7f47fa6c2ff15f Bjorn Helgaas 2009-09-21 213 struct acpi_hardware_id *id;
249135d1a2ea3c Dmitry Torokhov 2013-12-15 214 int error;
^1da177e4c3f41 Linus Torvalds 2005-04-16 215
2905875344f977 Adrian Hunter 2012-11-23 216 /* Skip devices that are already bound */
2905875344f977 Adrian Hunter 2012-11-23 217 if (device->physical_node_count)
2905875344f977 Adrian Hunter 2012-11-23 218 return 0;
2905875344f977 Adrian Hunter 2012-11-23 219
39a0ad871000d2 Zhao Yakui 2008-08-11 220 /*
39a0ad871000d2 Zhao Yakui 2008-08-11 221 * If a PnPacpi device is not present , the device
39a0ad871000d2 Zhao Yakui 2008-08-11 222 * driver should not be loaded.
39a0ad871000d2 Zhao Yakui 2008-08-11 223 */
0e77e2c416e8fa Zhang Rui 2013-09-03 224 if (!acpi_has_method(device->handle, "_CRS"))
420a0f66378c84 Dmitry Torokhov 2010-09-18 225 return 0;
420a0f66378c84 Dmitry Torokhov 2010-09-18 226
420a0f66378c84 Dmitry Torokhov 2010-09-18 227 pnpid = pnpacpi_get_id(device);
420a0f66378c84 Dmitry Torokhov 2010-09-18 228 if (!pnpid)
420a0f66378c84 Dmitry Torokhov 2010-09-18 229 return 0;
420a0f66378c84 Dmitry Torokhov 2010-09-18 230
eec15edbb0e144 Zhang Rui 2014-05-30 231 if (!device->status.present)
^1da177e4c3f41 Linus Torvalds 2005-04-16 232 return 0;
^1da177e4c3f41 Linus Torvalds 2005-04-16 233
420a0f66378c84 Dmitry Torokhov 2010-09-18 234 dev = pnp_alloc_dev(&pnpacpi_protocol, num, pnpid);
bda1e4e5a3d976 Bjorn Helgaas 2008-04-28 235 if (!dev)
^1da177e4c3f41 Linus Torvalds 2005-04-16 236 return -ENOMEM;
bda1e4e5a3d976 Bjorn Helgaas 2008-04-28 237
2eb1eb02dda368 Rafael J. Wysocki 2015-03-13 238 ACPI_COMPANION_SET(&dev->dev, device);
c4da6940a7a41c Bjorn Helgaas 2009-11-17 239 dev->data = device;
07d4e9af109221 Bjorn Helgaas 2007-07-26 240 /* .enabled means the device can decode the resources */
^1da177e4c3f41 Linus Torvalds 2005-04-16 241 dev->active = device->status.enabled;
0e77e2c416e8fa Zhang Rui 2013-09-03 242 if (acpi_has_method(device->handle, "_SRS"))
^1da177e4c3f41 Linus Torvalds 2005-04-16 243 dev->capabilities |= PNP_CONFIGURABLE;
^1da177e4c3f41 Linus Torvalds 2005-04-16 244 dev->capabilities |= PNP_READ;
856608ee5e1ea3 Shaohua Li 2008-01-12 245 if (device->flags.dynamic_status && (dev->capabilities & PNP_CONFIGURABLE))
^1da177e4c3f41 Linus Torvalds 2005-04-16 246 dev->capabilities |= PNP_WRITE;
^1da177e4c3f41 Linus Torvalds 2005-04-16 247 if (device->flags.removable)
^1da177e4c3f41 Linus Torvalds 2005-04-16 248 dev->capabilities |= PNP_REMOVABLE;
0e77e2c416e8fa Zhang Rui 2013-09-03 249 if (acpi_has_method(device->handle, "_DIS"))
^1da177e4c3f41 Linus Torvalds 2005-04-16 250 dev->capabilities |= PNP_DISABLE;
^1da177e4c3f41 Linus Torvalds 2005-04-16 251
^1da177e4c3f41 Linus Torvalds 2005-04-16 252 if (strlen(acpi_device_name(device)))
^1da177e4c3f41 Linus Torvalds 2005-04-16 @253 strncpy(dev->name, acpi_device_name(device), sizeof(dev->name));
^1da177e4c3f41 Linus Torvalds 2005-04-16 254 else
^1da177e4c3f41 Linus Torvalds 2005-04-16 255 strncpy(dev->name, acpi_device_bid(device), sizeof(dev->name));
^1da177e4c3f41 Linus Torvalds 2005-04-16 256
d152cf5d0c3325 Bjorn Helgaas 2008-04-28 257 if (dev->active)
d152cf5d0c3325 Bjorn Helgaas 2008-04-28 258 pnpacpi_parse_allocated_resource(dev);
^1da177e4c3f41 Linus Torvalds 2005-04-16 259
d152cf5d0c3325 Bjorn Helgaas 2008-04-28 260 if (dev->capabilities & PNP_CONFIGURABLE)
d152cf5d0c3325 Bjorn Helgaas 2008-04-28 261 pnpacpi_parse_resource_option_data(dev);
^1da177e4c3f41 Linus Torvalds 2005-04-16 262
7f47fa6c2ff15f Bjorn Helgaas 2009-09-21 263 list_for_each_entry(id, &device->pnp.ids, list) {
420a0f66378c84 Dmitry Torokhov 2010-09-18 264 if (!strcmp(id->id, pnpid))
^1da177e4c3f41 Linus Torvalds 2005-04-16 265 continue;
7f47fa6c2ff15f Bjorn Helgaas 2009-09-21 266 if (!ispnpidacpi(id->id))
7f47fa6c2ff15f Bjorn Helgaas 2009-09-21 267 continue;
7f47fa6c2ff15f Bjorn Helgaas 2009-09-21 268 pnp_add_id(dev, id->id);
^1da177e4c3f41 Linus Torvalds 2005-04-16 269 }
^1da177e4c3f41 Linus Torvalds 2005-04-16 270
^1da177e4c3f41 Linus Torvalds 2005-04-16 271 /* clear out the damaged flags */
^1da177e4c3f41 Linus Torvalds 2005-04-16 272 if (!dev->active)
f44900020926b2 Bjorn Helgaas 2008-04-28 273 pnp_init_resources(dev);
249135d1a2ea3c Dmitry Torokhov 2013-12-15 274
249135d1a2ea3c Dmitry Torokhov 2013-12-15 275 error = pnp_add_device(dev);
249135d1a2ea3c Dmitry Torokhov 2013-12-15 276 if (error) {
249135d1a2ea3c Dmitry Torokhov 2013-12-15 277 put_device(&dev->dev);
249135d1a2ea3c Dmitry Torokhov 2013-12-15 278 return error;
249135d1a2ea3c Dmitry Torokhov 2013-12-15 279 }
249135d1a2ea3c Dmitry Torokhov 2013-12-15 280
^1da177e4c3f41 Linus Torvalds 2005-04-16 281 num++;
^1da177e4c3f41 Linus Torvalds 2005-04-16 282
2eb1eb02dda368 Rafael J. Wysocki 2015-03-13 283 return 0;
^1da177e4c3f41 Linus Torvalds 2005-04-16 284 }
^1da177e4c3f41 Linus Torvalds 2005-04-16 285

:::::: The code at line 253 was first introduced by commit
:::::: 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 Linux-2.6.12-rc2

:::::: TO: Linus Torvalds <[email protected]>
:::::: CC: Linus Torvalds <[email protected]>

--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki


2023-07-24 15:21:41

by Sunil V L

[permalink] [raw]
Subject: Re: drivers/pnp/pnpacpi/core.c:253:17: warning: 'strncpy' specified bound 50 equals destination size

+Rafael.

On Mon, Jul 24, 2023 at 07:32:36PM +0800, kernel test robot wrote:
> tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
> head: 6eaae198076080886b9e7d57f4ae06fa782f90ef
> commit: a91a9ffbd3a55a0ae1bb75e2b6e85b2a03f64e8f RISC-V: Add support to build the ACPI core
> date: 8 weeks ago
> config: riscv-randconfig-r032-20230724 (https://download.01.org/0day-ci/archive/20230724/[email protected]/config)
> compiler: riscv64-linux-gcc (GCC) 12.3.0
> reproduce: (https://download.01.org/0day-ci/archive/20230724/[email protected]/reproduce)
>
> If you fix the issue in a separate patch/commit (i.e. not just a new version of
> the same patch/commit), kindly add following tags
> | Reported-by: kernel test robot <[email protected]>
> | Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/
>
> All warnings (new ones prefixed by >>):
>
> drivers/pnp/pnpacpi/core.c: In function 'pnpacpi_add_device.isra':
> >> drivers/pnp/pnpacpi/core.c:253:17: warning: 'strncpy' specified bound 50 equals destination size [-Wstringop-truncation]
> 253 | strncpy(dev->name, acpi_device_name(device), sizeof(dev->name));
> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
I need some help here to understand what needs to be done. This is a
common code across architectures. Apart from the fact that ACPI is
enabled for the first time for RISC-V, I am unable to understand why
this warning is seen now. Is this because only RISC-V gcc enables this
warning by default? I don't see this with clang tool chain. If this is
expected warning, is there a way to suppress?

Thanks!
Sunil

>
> vim +/strncpy +253 drivers/pnp/pnpacpi/core.c
>
> 420a0f66378c84 Dmitry Torokhov 2010-09-18 208
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 209 static int __init pnpacpi_add_device(struct acpi_device *device)
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 210 {
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 211 struct pnp_dev *dev;
> 844142c3f80c66 Rasmus Villemoes 2015-09-09 212 const char *pnpid;
> 7f47fa6c2ff15f Bjorn Helgaas 2009-09-21 213 struct acpi_hardware_id *id;
> 249135d1a2ea3c Dmitry Torokhov 2013-12-15 214 int error;
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 215
> 2905875344f977 Adrian Hunter 2012-11-23 216 /* Skip devices that are already bound */
> 2905875344f977 Adrian Hunter 2012-11-23 217 if (device->physical_node_count)
> 2905875344f977 Adrian Hunter 2012-11-23 218 return 0;
> 2905875344f977 Adrian Hunter 2012-11-23 219
> 39a0ad871000d2 Zhao Yakui 2008-08-11 220 /*
> 39a0ad871000d2 Zhao Yakui 2008-08-11 221 * If a PnPacpi device is not present , the device
> 39a0ad871000d2 Zhao Yakui 2008-08-11 222 * driver should not be loaded.
> 39a0ad871000d2 Zhao Yakui 2008-08-11 223 */
> 0e77e2c416e8fa Zhang Rui 2013-09-03 224 if (!acpi_has_method(device->handle, "_CRS"))
> 420a0f66378c84 Dmitry Torokhov 2010-09-18 225 return 0;
> 420a0f66378c84 Dmitry Torokhov 2010-09-18 226
> 420a0f66378c84 Dmitry Torokhov 2010-09-18 227 pnpid = pnpacpi_get_id(device);
> 420a0f66378c84 Dmitry Torokhov 2010-09-18 228 if (!pnpid)
> 420a0f66378c84 Dmitry Torokhov 2010-09-18 229 return 0;
> 420a0f66378c84 Dmitry Torokhov 2010-09-18 230
> eec15edbb0e144 Zhang Rui 2014-05-30 231 if (!device->status.present)
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 232 return 0;
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 233
> 420a0f66378c84 Dmitry Torokhov 2010-09-18 234 dev = pnp_alloc_dev(&pnpacpi_protocol, num, pnpid);
> bda1e4e5a3d976 Bjorn Helgaas 2008-04-28 235 if (!dev)
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 236 return -ENOMEM;
> bda1e4e5a3d976 Bjorn Helgaas 2008-04-28 237
> 2eb1eb02dda368 Rafael J. Wysocki 2015-03-13 238 ACPI_COMPANION_SET(&dev->dev, device);
> c4da6940a7a41c Bjorn Helgaas 2009-11-17 239 dev->data = device;
> 07d4e9af109221 Bjorn Helgaas 2007-07-26 240 /* .enabled means the device can decode the resources */
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 241 dev->active = device->status.enabled;
> 0e77e2c416e8fa Zhang Rui 2013-09-03 242 if (acpi_has_method(device->handle, "_SRS"))
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 243 dev->capabilities |= PNP_CONFIGURABLE;
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 244 dev->capabilities |= PNP_READ;
> 856608ee5e1ea3 Shaohua Li 2008-01-12 245 if (device->flags.dynamic_status && (dev->capabilities & PNP_CONFIGURABLE))
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 246 dev->capabilities |= PNP_WRITE;
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 247 if (device->flags.removable)
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 248 dev->capabilities |= PNP_REMOVABLE;
> 0e77e2c416e8fa Zhang Rui 2013-09-03 249 if (acpi_has_method(device->handle, "_DIS"))
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 250 dev->capabilities |= PNP_DISABLE;
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 251
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 252 if (strlen(acpi_device_name(device)))
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 @253 strncpy(dev->name, acpi_device_name(device), sizeof(dev->name));
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 254 else
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 255 strncpy(dev->name, acpi_device_bid(device), sizeof(dev->name));
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 256
> d152cf5d0c3325 Bjorn Helgaas 2008-04-28 257 if (dev->active)
> d152cf5d0c3325 Bjorn Helgaas 2008-04-28 258 pnpacpi_parse_allocated_resource(dev);
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 259
> d152cf5d0c3325 Bjorn Helgaas 2008-04-28 260 if (dev->capabilities & PNP_CONFIGURABLE)
> d152cf5d0c3325 Bjorn Helgaas 2008-04-28 261 pnpacpi_parse_resource_option_data(dev);
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 262
> 7f47fa6c2ff15f Bjorn Helgaas 2009-09-21 263 list_for_each_entry(id, &device->pnp.ids, list) {
> 420a0f66378c84 Dmitry Torokhov 2010-09-18 264 if (!strcmp(id->id, pnpid))
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 265 continue;
> 7f47fa6c2ff15f Bjorn Helgaas 2009-09-21 266 if (!ispnpidacpi(id->id))
> 7f47fa6c2ff15f Bjorn Helgaas 2009-09-21 267 continue;
> 7f47fa6c2ff15f Bjorn Helgaas 2009-09-21 268 pnp_add_id(dev, id->id);
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 269 }
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 270
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 271 /* clear out the damaged flags */
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 272 if (!dev->active)
> f44900020926b2 Bjorn Helgaas 2008-04-28 273 pnp_init_resources(dev);
> 249135d1a2ea3c Dmitry Torokhov 2013-12-15 274
> 249135d1a2ea3c Dmitry Torokhov 2013-12-15 275 error = pnp_add_device(dev);
> 249135d1a2ea3c Dmitry Torokhov 2013-12-15 276 if (error) {
> 249135d1a2ea3c Dmitry Torokhov 2013-12-15 277 put_device(&dev->dev);
> 249135d1a2ea3c Dmitry Torokhov 2013-12-15 278 return error;
> 249135d1a2ea3c Dmitry Torokhov 2013-12-15 279 }
> 249135d1a2ea3c Dmitry Torokhov 2013-12-15 280
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 281 num++;
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 282
> 2eb1eb02dda368 Rafael J. Wysocki 2015-03-13 283 return 0;
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 284 }
> ^1da177e4c3f41 Linus Torvalds 2005-04-16 285
>
> :::::: The code at line 253 was first introduced by commit
> :::::: 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 Linux-2.6.12-rc2
>
> :::::: TO: Linus Torvalds <[email protected]>
> :::::: CC: Linus Torvalds <[email protected]>
>
> --
> 0-DAY CI Kernel Test Service
> https://github.com/intel/lkp-tests/wiki

2023-07-24 17:43:54

by Rafael J. Wysocki

[permalink] [raw]
Subject: Re: drivers/pnp/pnpacpi/core.c:253:17: warning: 'strncpy' specified bound 50 equals destination size

On Mon, Jul 24, 2023 at 4:20 PM Sunil V L <[email protected]> wrote:
>
> +Rafael.
>
> On Mon, Jul 24, 2023 at 07:32:36PM +0800, kernel test robot wrote:
> > tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
> > head: 6eaae198076080886b9e7d57f4ae06fa782f90ef
> > commit: a91a9ffbd3a55a0ae1bb75e2b6e85b2a03f64e8f RISC-V: Add support to build the ACPI core
> > date: 8 weeks ago
> > config: riscv-randconfig-r032-20230724 (https://download.01.org/0day-ci/archive/20230724/[email protected]/config)
> > compiler: riscv64-linux-gcc (GCC) 12.3.0
> > reproduce: (https://download.01.org/0day-ci/archive/20230724/[email protected]/reproduce)
> >
> > If you fix the issue in a separate patch/commit (i.e. not just a new version of
> > the same patch/commit), kindly add following tags
> > | Reported-by: kernel test robot <[email protected]>
> > | Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/
> >
> > All warnings (new ones prefixed by >>):
> >
> > drivers/pnp/pnpacpi/core.c: In function 'pnpacpi_add_device.isra':
> > >> drivers/pnp/pnpacpi/core.c:253:17: warning: 'strncpy' specified bound 50 equals destination size [-Wstringop-truncation]
> > 253 | strncpy(dev->name, acpi_device_name(device), sizeof(dev->name));
> > | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> >
> I need some help here to understand what needs to be done. This is a
> common code across architectures. Apart from the fact that ACPI is
> enabled for the first time for RISC-V, I am unable to understand why
> this warning is seen now. Is this because only RISC-V gcc enables this
> warning by default? I don't see this with clang tool chain. If this is
> expected warning, is there a way to suppress?

I think that this is relevant information:

https://stackoverflow.com/questions/50198319/gcc-8-wstringop-truncation-what-is-the-good-practice

Thanks!

2023-07-25 05:31:37

by Sunil V L

[permalink] [raw]
Subject: Re: drivers/pnp/pnpacpi/core.c:253:17: warning: 'strncpy' specified bound 50 equals destination size

On Mon, Jul 24, 2023 at 07:15:22PM +0200, Rafael J. Wysocki wrote:
> On Mon, Jul 24, 2023 at 4:20 PM Sunil V L <[email protected]> wrote:
> >
> > +Rafael.
> >
> > On Mon, Jul 24, 2023 at 07:32:36PM +0800, kernel test robot wrote:
> > > tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
> > > head: 6eaae198076080886b9e7d57f4ae06fa782f90ef
> > > commit: a91a9ffbd3a55a0ae1bb75e2b6e85b2a03f64e8f RISC-V: Add support to build the ACPI core
> > > date: 8 weeks ago
> > > config: riscv-randconfig-r032-20230724 (https://download.01.org/0day-ci/archive/20230724/[email protected]/config)
> > > compiler: riscv64-linux-gcc (GCC) 12.3.0
> > > reproduce: (https://download.01.org/0day-ci/archive/20230724/[email protected]/reproduce)
> > >
> > > If you fix the issue in a separate patch/commit (i.e. not just a new version of
> > > the same patch/commit), kindly add following tags
> > > | Reported-by: kernel test robot <[email protected]>
> > > | Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/
> > >
> > > All warnings (new ones prefixed by >>):
> > >
> > > drivers/pnp/pnpacpi/core.c: In function 'pnpacpi_add_device.isra':
> > > >> drivers/pnp/pnpacpi/core.c:253:17: warning: 'strncpy' specified bound 50 equals destination size [-Wstringop-truncation]
> > > 253 | strncpy(dev->name, acpi_device_name(device), sizeof(dev->name));
> > > | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > >
> > I need some help here to understand what needs to be done. This is a
> > common code across architectures. Apart from the fact that ACPI is
> > enabled for the first time for RISC-V, I am unable to understand why
> > this warning is seen now. Is this because only RISC-V gcc enables this
> > warning by default? I don't see this with clang tool chain. If this is
> > expected warning, is there a way to suppress?
>
> I think that this is relevant information:
>
> https://stackoverflow.com/questions/50198319/gcc-8-wstringop-truncation-what-is-the-good-practice
>
Thank you very much! Rafael. Let me send a patch to append a NUL
explicitly to fix this issue. However, I still wonder why this code
added in 2005 getting this warning only now. Why is this not being seen
with other architecture builds?

Thanks!
Sunil

2023-07-25 09:22:31

by Rafael J. Wysocki

[permalink] [raw]
Subject: Re: drivers/pnp/pnpacpi/core.c:253:17: warning: 'strncpy' specified bound 50 equals destination size

On Tue, Jul 25, 2023 at 7:08 AM Sunil V L <[email protected]> wrote:
>
> On Mon, Jul 24, 2023 at 07:15:22PM +0200, Rafael J. Wysocki wrote:
> > On Mon, Jul 24, 2023 at 4:20 PM Sunil V L <[email protected]> wrote:
> > >
> > > +Rafael.
> > >
> > > On Mon, Jul 24, 2023 at 07:32:36PM +0800, kernel test robot wrote:
> > > > tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
> > > > head: 6eaae198076080886b9e7d57f4ae06fa782f90ef
> > > > commit: a91a9ffbd3a55a0ae1bb75e2b6e85b2a03f64e8f RISC-V: Add support to build the ACPI core
> > > > date: 8 weeks ago
> > > > config: riscv-randconfig-r032-20230724 (https://download.01.org/0day-ci/archive/20230724/[email protected]/config)
> > > > compiler: riscv64-linux-gcc (GCC) 12.3.0
> > > > reproduce: (https://download.01.org/0day-ci/archive/20230724/[email protected]/reproduce)
> > > >
> > > > If you fix the issue in a separate patch/commit (i.e. not just a new version of
> > > > the same patch/commit), kindly add following tags
> > > > | Reported-by: kernel test robot <[email protected]>
> > > > | Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/
> > > >
> > > > All warnings (new ones prefixed by >>):
> > > >
> > > > drivers/pnp/pnpacpi/core.c: In function 'pnpacpi_add_device.isra':
> > > > >> drivers/pnp/pnpacpi/core.c:253:17: warning: 'strncpy' specified bound 50 equals destination size [-Wstringop-truncation]
> > > > 253 | strncpy(dev->name, acpi_device_name(device), sizeof(dev->name));
> > > > | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > > >
> > > I need some help here to understand what needs to be done. This is a
> > > common code across architectures. Apart from the fact that ACPI is
> > > enabled for the first time for RISC-V, I am unable to understand why
> > > this warning is seen now. Is this because only RISC-V gcc enables this
> > > warning by default? I don't see this with clang tool chain. If this is
> > > expected warning, is there a way to suppress?
> >
> > I think that this is relevant information:
> >
> > https://stackoverflow.com/questions/50198319/gcc-8-wstringop-truncation-what-is-the-good-practice
> >
> Thank you very much! Rafael. Let me send a patch to append a NUL
> explicitly to fix this issue. However, I still wonder why this code
> added in 2005 getting this warning only now. Why is this not being seen
> with other architecture builds?

I don't know.